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 4 years ago
parent 736ce8d1a3
commit c3d8fa0e8e

@ -28,6 +28,7 @@ import (
"os"
"os/exec"
"path/filepath"
"reflect"
"runtime"
"strings"
"time"
@ -1050,11 +1051,15 @@ func transformGo(file *ast.File, info *types.Info, blacklist map[types.Object]st
return true
}
// log.Printf("%#v %T", node, obj)
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) {
case *types.Var:
parentScope := obj.Parent()
if parentScope != nil && parentScope != pkg.Scope() {
// identifiers of non-global variables never show up in the binary
return true
@ -1087,7 +1092,6 @@ func transformGo(file *ast.File, info *types.Info, blacklist map[types.Object]st
}
}
case *types.TypeName:
parentScope := obj.Parent()
if parentScope != pkg.Scope() {
// identifiers of non-global types never show up in the binary
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
}
actionID := buildInfo.actionID
if !isPrivate(path) {
return true // only private packages are transformed
}
if id := buildInfo.imports[path].actionID; len(id) > 0 {
garbledPkg, err := garbledImport(path)
if err != nil {
panic(err) // shouldn't happen
}
// 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
}
actionID = id

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

Loading…
Cancel
Save