diff options
author | Sam Clegg <sbc@chromium.org> | 2020-10-13 10:59:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-13 08:59:21 -0700 |
commit | 8943fcc31d12545043043c06c037cf6dfee14722 (patch) | |
tree | 2f991a27910739895a364aa2c496e2be6eee05cf /test/lld/main_module_table_2.wat.out | |
parent | 639dc87a9ea6a633acca5b5ababfe81f8059cf5f (diff) | |
download | binaryen-8943fcc31d12545043043c06c037cf6dfee14722.tar.gz binaryen-8943fcc31d12545043043c06c037cf6dfee14722.tar.bz2 binaryen-8943fcc31d12545043043c06c037cf6dfee14722.zip |
EmscriptenPIC: Remove internalization of GOT entries (#3211)
wasm-ld now does this better than binaryen and does
it by default when linking and executable and optionally
with `-Bsymbolic` when linking a shared library.
See https://reviews.llvm.org/D89152
Diffstat (limited to 'test/lld/main_module_table_2.wat.out')
-rw-r--r-- | test/lld/main_module_table_2.wat.out | 25 |
1 files changed, 7 insertions, 18 deletions
diff --git a/test/lld/main_module_table_2.wat.out b/test/lld/main_module_table_2.wat.out index 69ef69622..201a58fa4 100644 --- a/test/lld/main_module_table_2.wat.out +++ b/test/lld/main_module_table_2.wat.out @@ -1,31 +1,21 @@ (module (type $none_=>_none (func)) - (type $i32_=>_none (func (param i32))) - (import "env" "table" (table $timport$9 2 funcref)) - (elem (global.get $__table_base) $__stdio_write) + (type $none_=>_i32 (func (result i32))) + (import "env" "table" (table $timport$9 1 funcref)) (import "env" "__stack_pointer" (global $sp_import i32)) - (import "env" "__table_base" (global $__table_base i32)) + (import "env" "fp$__stdio_write$v" (func $fp$__stdio_write$v (result i32))) (global $gimport$9 (mut i32) (i32.const 0)) (global $global i32 (i32.const 42)) (global $sp (mut i32) (global.get $sp_import)) (export "__stdio_write" (func $__stdio_write)) (export "__data_end" (global $global)) - (export "dynCall_v" (func $dynCall_v)) (export "__assign_got_enties" (func $__assign_got_enties)) (func $__stdio_write (nop) ) (func $__assign_got_enties (global.set $gimport$9 - (i32.add - (global.get $__table_base) - (i32.const 0) - ) - ) - ) - (func $dynCall_v (param $fptr i32) - (call_indirect (type $none_=>_none) - (local.get $fptr) + (call $fp$__stdio_write$v) ) ) ) @@ -33,19 +23,18 @@ --BEGIN METADATA -- { "staticBump": 4294966770, - "tableSize": 2, + "tableSize": 1, "initializers": [ "__assign_got_enties" ], "declares": [ + "fp$__stdio_write$v" ], "externs": [ - "___stack_pointer", - "___table_base" + "___stack_pointer" ], "exports": [ "__stdio_write", - "dynCall_v", "__assign_got_enties" ], "namedGlobals": { |