1
0
mirror of https://github.com/golang/go synced 2024-11-19 23:24:45 -07:00

cmd/cgo: modify source as text, not as AST

Cgo has always operated by rewriting the AST and invoking go/printer.
This CL converts it to use the AST to make decisions but then apply
its edits directly to the underlying source text. This approach worked
better in rsc.io/grind (used during the C to Go conversion) and also
more recently in cmd/cover. It guarantees that all comments and
line numbers are preserved exactly.

This eliminates a lot of special concern about comments and
problems with cgo not preserving meaningful comments.
Combined with the CL changing cmd/cover to use the same
approach, it means that the combination of applying cgo and
applying cover still guarantees all comments and line numbers
are preserved exactly.

This sets us up to fix some cgo vs cover bugs by swapping
the order in which they run during the go command.

This also sets up #16623 a bit: the edit list being
accumulated here is nearly exactly what you'd want
to pass to the compiler for that issue.

Change-Id: I7611815be22e7c5c0d4fc3fa11832c42b32c4eb3
Reviewed-on: https://go-review.googlesource.com/77153
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Russ Cox 2017-11-10 11:45:16 -05:00
parent 1d47a14591
commit 85c3ebf4dd
5 changed files with 86 additions and 60 deletions

View File

@ -58,6 +58,8 @@ func (f *File) ParseGo(name string, src []byte) {
// so we use ast1 to look for the doc comments on import "C" // so we use ast1 to look for the doc comments on import "C"
// and on exported functions, and we use ast2 for translating // and on exported functions, and we use ast2 for translating
// and reprinting. // and reprinting.
// In cgo mode, we ignore ast2 and just apply edits directly
// the text behind ast1. In godefs mode we modify and print ast2.
ast1 := parse(name, src, parser.ParseComments) ast1 := parse(name, src, parser.ParseComments)
ast2 := parse(name, src, 0) ast2 := parse(name, src, 0)
@ -97,30 +99,47 @@ func (f *File) ParseGo(name string, src []byte) {
} }
// In ast2, strip the import "C" line. // In ast2, strip the import "C" line.
w := 0 if *godefs {
for _, decl := range ast2.Decls { w := 0
d, ok := decl.(*ast.GenDecl) for _, decl := range ast2.Decls {
if !ok { d, ok := decl.(*ast.GenDecl)
ast2.Decls[w] = decl if !ok {
ast2.Decls[w] = decl
w++
continue
}
ws := 0
for _, spec := range d.Specs {
s, ok := spec.(*ast.ImportSpec)
if !ok || s.Path.Value != `"C"` {
d.Specs[ws] = spec
ws++
}
}
if ws == 0 {
continue
}
d.Specs = d.Specs[0:ws]
ast2.Decls[w] = d
w++ w++
continue
} }
ws := 0 ast2.Decls = ast2.Decls[0:w]
for _, spec := range d.Specs { } else {
s, ok := spec.(*ast.ImportSpec) for _, decl := range ast2.Decls {
if !ok || s.Path.Value != `"C"` { d, ok := decl.(*ast.GenDecl)
d.Specs[ws] = spec if !ok {
ws++ continue
}
for _, spec := range d.Specs {
if s, ok := spec.(*ast.ImportSpec); ok && s.Path.Value == `"C"` {
// Replace "C" with _ "unsafe", to keep program valid.
// (Deleting import statement or clause is not safe if it is followed
// in the source by an explicit semicolon.)
f.Edit.Replace(f.offset(s.Path.Pos()), f.offset(s.Path.End()), `_ "unsafe"`)
}
} }
} }
if ws == 0 {
continue
}
d.Specs = d.Specs[0:ws]
ast2.Decls[w] = d
w++
} }
ast2.Decls = ast2.Decls[0:w]
// Accumulate pointers to uses of C.x. // Accumulate pointers to uses of C.x.
if f.Ref == nil { if f.Ref == nil {

View File

@ -169,21 +169,8 @@ func (p *Package) Translate(f *File) {
p.loadDWARF(f, needType) p.loadDWARF(f, needType)
} }
if p.rewriteCalls(f) { if p.rewriteCalls(f) {
// Add `import _cgo_unsafe "unsafe"` as the first decl // Add `import _cgo_unsafe "unsafe"` after the package statement.
// after the package statement. f.Edit.Insert(f.offset(f.AST.Name.End()), "; import _cgo_unsafe \"unsafe\"")
imp := &ast.GenDecl{
Tok: token.IMPORT,
Specs: []ast.Spec{
&ast.ImportSpec{
Name: ast.NewIdent("_cgo_unsafe"),
Path: &ast.BasicLit{
Kind: token.STRING,
Value: `"unsafe"`,
},
},
},
}
f.AST.Decls = append([]ast.Decl{imp}, f.AST.Decls...)
} }
p.rewriteRef(f) p.rewriteRef(f)
} }
@ -718,8 +705,9 @@ func (p *Package) rewriteCall(f *File, call *Call, name *Name) bool {
stmts = append(stmts, stmt) stmts = append(stmts, stmt)
} }
const cgoMarker = "__cgo__###__marker__"
fcall := &ast.CallExpr{ fcall := &ast.CallExpr{
Fun: call.Call.Fun, Fun: ast.NewIdent(cgoMarker),
Args: nargs, Args: nargs,
} }
ftype := &ast.FuncType{ ftype := &ast.FuncType{
@ -741,31 +729,26 @@ func (p *Package) rewriteCall(f *File, call *Call, name *Name) bool {
} }
} }
// There is a Ref pointing to the old call.Call.Fun. // If this call expects two results, we have to
// adjust the results of the function we generated.
for _, ref := range f.Ref { for _, ref := range f.Ref {
if ref.Expr == &call.Call.Fun { if ref.Expr == &call.Call.Fun && ref.Context == ctxCall2 {
ref.Expr = &fcall.Fun if ftype.Results == nil {
// An explicit void argument
// If this call expects two results, we have to // looks odd but it seems to
// adjust the results of the function we generated. // be how cgo has worked historically.
if ref.Context == ctxCall2 { ftype.Results = &ast.FieldList{
if ftype.Results == nil { List: []*ast.Field{
// An explicit void argument &ast.Field{
// looks odd but it seems to Type: ast.NewIdent("_Ctype_void"),
// be how cgo has worked historically.
ftype.Results = &ast.FieldList{
List: []*ast.Field{
&ast.Field{
Type: ast.NewIdent("_Ctype_void"),
},
}, },
} },
} }
ftype.Results.List = append(ftype.Results.List,
&ast.Field{
Type: ast.NewIdent("error"),
})
} }
ftype.Results.List = append(ftype.Results.List,
&ast.Field{
Type: ast.NewIdent("error"),
})
} }
} }
@ -779,14 +762,16 @@ func (p *Package) rewriteCall(f *File, call *Call, name *Name) bool {
Results: []ast.Expr{fcall}, Results: []ast.Expr{fcall},
} }
} }
call.Call.Fun = &ast.FuncLit{ lit := &ast.FuncLit{
Type: ftype, Type: ftype,
Body: &ast.BlockStmt{ Body: &ast.BlockStmt{
List: append(stmts, fbody), List: append(stmts, fbody),
}, },
} }
call.Call.Lparen = token.NoPos text := strings.Replace(gofmt(lit), "\n", ";", -1)
call.Call.Rparen = token.NoPos repl := strings.Split(text, cgoMarker)
f.Edit.Insert(f.offset(call.Call.Fun.Pos()), repl[0])
f.Edit.Insert(f.offset(call.Call.Fun.End()), repl[1])
return needsUnsafe return needsUnsafe
} }
@ -1175,6 +1160,7 @@ func (p *Package) rewriteRef(f *File) {
error_(r.Pos(), "must call C.%s", fixGo(r.Name.Go)) error_(r.Pos(), "must call C.%s", fixGo(r.Name.Go))
} }
} }
if *godefs { if *godefs {
// Substitute definition for mangled type name. // Substitute definition for mangled type name.
if id, ok := expr.(*ast.Ident); ok { if id, ok := expr.(*ast.Ident); ok {
@ -1196,7 +1182,17 @@ func (p *Package) rewriteRef(f *File) {
expr = &ast.Ident{NamePos: pos, Name: x.Name} expr = &ast.Ident{NamePos: pos, Name: x.Name}
} }
// Change AST, because some later processing depends on it,
// and also because -godefs mode still prints the AST.
old := *r.Expr
*r.Expr = expr *r.Expr = expr
// Record source-level edit for cgo output.
repl := gofmt(expr)
if r.Name.Kind != "type" {
repl = "(" + repl + ")"
}
f.Edit.Replace(f.offset(old.Pos()), f.offset(old.End()), repl)
} }
// Remove functions only used as expressions, so their respective // Remove functions only used as expressions, so their respective

View File

@ -25,6 +25,7 @@ import (
"sort" "sort"
"strings" "strings"
"cmd/internal/edit"
"cmd/internal/objabi" "cmd/internal/objabi"
) )
@ -57,6 +58,11 @@ type File struct {
ExpFunc []*ExpFunc // exported functions for this file ExpFunc []*ExpFunc // exported functions for this file
Name map[string]*Name // map from Go name to Name Name map[string]*Name // map from Go name to Name
NamePos map[*Name]token.Pos // map from Name to position of the first reference NamePos map[*Name]token.Pos // map from Name to position of the first reference
Edit *edit.Buffer
}
func (f *File) offset(p token.Pos) int {
return fset.Position(p).Offset
} }
func nameKeys(m map[string]*Name) []string { func nameKeys(m map[string]*Name) []string {
@ -284,6 +290,7 @@ func main() {
} }
f := new(File) f := new(File)
f.Edit = edit.NewBuffer(b)
f.ParseGo(input, b) f.ParseGo(input, b)
f.DiscardCgoDirectives() f.DiscardCgoDirectives()
fs[i] = f fs[i] = f
@ -308,7 +315,9 @@ func main() {
if cref.Name.Kind != "type" { if cref.Name.Kind != "type" {
break break
} }
old := *cref.Expr
*cref.Expr = cref.Name.Type.Go *cref.Expr = cref.Name.Type.Go
f.Edit.Replace(f.offset(old.Pos()), f.offset(old.End()), gofmt(cref.Name.Type.Go))
} }
} }
if nerrors > 0 { if nerrors > 0 {

View File

@ -535,7 +535,8 @@ func (p *Package) writeOutput(f *File, srcfile string) {
// Write Go output: Go input with rewrites of C.xxx to _C_xxx. // Write Go output: Go input with rewrites of C.xxx to _C_xxx.
fmt.Fprintf(fgo1, "// Created by cgo - DO NOT EDIT\n\n") fmt.Fprintf(fgo1, "// Created by cgo - DO NOT EDIT\n\n")
conf.Fprint(fgo1, fset, f.AST) fmt.Fprintf(fgo1, "//line %s:1\n", srcfile)
fgo1.Write(f.Edit.Bytes())
// While we process the vars and funcs, also write gcc output. // While we process the vars and funcs, also write gcc output.
// Gcc output starts with the preamble. // Gcc output starts with the preamble.

View File

@ -52,6 +52,7 @@ var bootstrapDirs = []string{
"cmd/internal/bio", "cmd/internal/bio",
"cmd/internal/gcprog", "cmd/internal/gcprog",
"cmd/internal/dwarf", "cmd/internal/dwarf",
"cmd/internal/edit",
"cmd/internal/objabi", "cmd/internal/objabi",
"cmd/internal/obj", "cmd/internal/obj",
"cmd/internal/obj/arm", "cmd/internal/obj/arm",