start supporting asm functions better
Spotted while trying to link a program using unix.Syscall, since its implementation is assembly. Telling if a function couldn't be garbled isn't trivial. If that function belongs to an imported package, we only load its export data instead of type-checking from source, so we don't have all the information needed. Instead, use the gc export data importer to import two versions of each dependency: its original version, for the initial type-checking, and its garbled version, to check if any of its exported names weren't garbled. Updates #9.pull/22/head
parent
53272a1eda
commit
a7da406207
@ -0,0 +1,49 @@
|
||||
garble build
|
||||
exec ./main
|
||||
cmp stdout main.stdout
|
||||
binsubstr main$exe 'privateAdd' 'PublicAdd'
|
||||
|
||||
[short] stop # no need to verify this with -short
|
||||
|
||||
go build
|
||||
exec ./main
|
||||
cmp stdout main.stdout
|
||||
|
||||
-- go.mod --
|
||||
module foo.com/main
|
||||
-- main.go --
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"foo.com/main/imported"
|
||||
)
|
||||
|
||||
func privateAdd(x, y int64) int64
|
||||
|
||||
func main() {
|
||||
fmt.Println(privateAdd(1, 2))
|
||||
fmt.Println(imported.PublicAdd(3, 4))
|
||||
}
|
||||
-- main.s --
|
||||
TEXT ·privateAdd(SB),$0-24
|
||||
MOVQ x+0(FP), BX
|
||||
MOVQ y+8(FP), BP
|
||||
ADDQ BP, BX
|
||||
MOVQ BX, ret+16(FP)
|
||||
RET
|
||||
-- imported/imported.go --
|
||||
package imported
|
||||
|
||||
func PublicAdd(x, y int64) int64
|
||||
-- imported/imported.s --
|
||||
TEXT ·PublicAdd(SB),$0-24
|
||||
MOVQ x+0(FP), BX
|
||||
MOVQ y+8(FP), BP
|
||||
ADDQ BP, BX
|
||||
MOVQ BX, ret+16(FP)
|
||||
RET
|
||||
-- main.stdout --
|
||||
3
|
||||
7
|
Loading…
Reference in New Issue