fix a related bug when two objects share the same name in the same package and one is garbled but the other one is not

pull/161/head
Andrew LeFevre 5 years ago
parent 736ce8d1a3
commit c3d8fa0e8e

@ -28,6 +28,7 @@ import (
"os" "os"
"os/exec" "os/exec"
"path/filepath" "path/filepath"
"reflect"
"runtime" "runtime"
"strings" "strings"
"time" "time"
@ -1050,11 +1051,15 @@ func transformGo(file *ast.File, info *types.Info, blacklist map[types.Object]st
return true return true
} }
// log.Printf("%#v %T", node, obj)
path := pkg.Path() path := pkg.Path()
if !isPrivate(path) {
return true // only private packages are transformed
}
// log.Printf("%#v %T", node, obj)
parentScope := obj.Parent()
switch x := obj.(type) { switch x := obj.(type) {
case *types.Var: case *types.Var:
parentScope := obj.Parent()
if parentScope != nil && parentScope != pkg.Scope() { if parentScope != nil && parentScope != pkg.Scope() {
// identifiers of non-global variables never show up in the binary // identifiers of non-global variables never show up in the binary
return true return true
@ -1087,7 +1092,6 @@ func transformGo(file *ast.File, info *types.Info, blacklist map[types.Object]st
} }
} }
case *types.TypeName: case *types.TypeName:
parentScope := obj.Parent()
if parentScope != pkg.Scope() { if parentScope != pkg.Scope() {
// identifiers of non-global types never show up in the binary // identifiers of non-global types never show up in the binary
return true return true
@ -1130,16 +1134,15 @@ func transformGo(file *ast.File, info *types.Info, blacklist map[types.Object]st
return true // we only want to rename the above return true // we only want to rename the above
} }
actionID := buildInfo.actionID actionID := buildInfo.actionID
if !isPrivate(path) {
return true // only private packages are transformed
}
if id := buildInfo.imports[path].actionID; len(id) > 0 { if id := buildInfo.imports[path].actionID; len(id) > 0 {
garbledPkg, err := garbledImport(path) garbledPkg, err := garbledImport(path)
if err != nil { if err != nil {
panic(err) // shouldn't happen panic(err) // shouldn't happen
} }
// Check if the imported name wasn't garbled, e.g. if it's assembly. // Check if the imported name wasn't garbled, e.g. if it's assembly.
if garbledPkg.Scope().Lookup(obj.Name()) != nil { // If the object returned from the garbled package's scope has a different type as the object
// we're searching for, they are most likely two separate objects with the same name, so ok to garble
if o := garbledPkg.Scope().Lookup(obj.Name()); o != nil && reflect.TypeOf(o) == reflect.TypeOf(obj) {
return true return true
} }
actionID = id actionID = id

@ -52,7 +52,8 @@ func main() {
fmt.Println(imported.ImportedFunc('x')) fmt.Println(imported.ImportedFunc('x'))
fmt.Println(imported.ImportedType(3)) fmt.Println(imported.ImportedType(3))
fmt.Println(imported.ReflectInDefinedVar.ExportedField2) fmt.Println(imported.ReflectInDefinedVar.ExportedField2)
fmt.Println(imported.NormalStruct{}) fmt.Println(imported.ReflectInDefined{ExportedField2: 5})
fmt.Println(imported.NormalStruct{SharedName: 3})
printfWithoutPackage("%T\n", imported.ReflectTypeOf(2)) printfWithoutPackage("%T\n", imported.ReflectTypeOf(2))
printfWithoutPackage("%T\n", imported.ReflectTypeOfIndirect(4)) printfWithoutPackage("%T\n", imported.ReflectTypeOfIndirect(4))
@ -130,8 +131,10 @@ var ReflectInDefinedVar = ReflectInDefined{ExportedField2: 9000}
var _ = reflect.TypeOf(ReflectInDefinedVar) var _ = reflect.TypeOf(ReflectInDefinedVar)
const SharedName = 2
type NormalStruct struct { type NormalStruct struct {
NormalExportedField int SharedName int
normalUnexportedField int normalUnexportedField int
} }
@ -145,7 +148,8 @@ imported const value
x x
3 3
9000 9000
{0 0} {5 0}
{3 0}
ReflectTypeOf ReflectTypeOf
ReflectTypeOfIndirect ReflectTypeOfIndirect
ReflectValueOf{ExportedField:"abc", unexportedField:""} ReflectValueOf{ExportedField:"abc", unexportedField:""}

Loading…
Cancel
Save