summaryrefslogtreecommitdiff
path: root/scripts/test/generate_lld_tests.py
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2019-12-20 16:02:34 -0800
committerGitHub <noreply@github.com>2019-12-20 16:02:34 -0800
commitf62e171c38bea14302f9b79f7941a248ea704425 (patch)
tree918bc227e58be2ddb8e8254d16ebb8ff7a55494d /scripts/test/generate_lld_tests.py
parentbd4cac987f19ee4f59b161a77b996ff1de46c4b9 (diff)
downloadbinaryen-f62e171c38bea14302f9b79f7941a248ea704425.tar.gz
binaryen-f62e171c38bea14302f9b79f7941a248ea704425.tar.bz2
binaryen-f62e171c38bea14302f9b79f7941a248ea704425.zip
Reland "Fix renaming in FixInvokeFunctionNamesWalker (#2513)" (#2542)
* Reland "Fix renaming in FixInvokeFunctionNamesWalker (#2513)" In the previous iteration of this change we were not calling `renameFunctions` for each of the functions we removed. The problem manifested itself when we rename the imported function to `emscripten_longjmp_jmpbuf` to `emscripten_longjmp`. In this case the import of `emscripten_longjmp` already exists so we remove the import of `emscripten_longjmp_jmpbuf` but we were not correclty calling renameFunctions to handle the rename of all the uses. Add an additional test case to cover the failures that we saw on the emscripten tree.
Diffstat (limited to 'scripts/test/generate_lld_tests.py')
-rwxr-xr-xscripts/test/generate_lld_tests.py16
1 files changed, 10 insertions, 6 deletions
diff --git a/scripts/test/generate_lld_tests.py b/scripts/test/generate_lld_tests.py
index 64fcff2ac..1f9324a88 100755
--- a/scripts/test/generate_lld_tests.py
+++ b/scripts/test/generate_lld_tests.py
@@ -30,8 +30,8 @@ def files_with_extensions(path, extensions):
yield file, ext
-def generate_wast_files(llvm_bin, emscripten_root):
- print('\n[ building wast files from C sources... ]\n')
+def generate_wat_files(llvm_bin, emscripten_root):
+ print('\n[ building wat files from C sources... ]\n')
lld_path = os.path.join(shared.options.binaryen_test, 'lld')
for src_file, ext in files_with_extensions(lld_path, ['.c', '.cpp']):
@@ -42,11 +42,11 @@ def generate_wast_files(llvm_bin, emscripten_root):
obj_path = os.path.join(lld_path, obj_file)
wasm_file = src_file.replace(ext, '.wasm')
- wast_file = src_file.replace(ext, '.wast')
+ wat_file = src_file.replace(ext, '.wat')
obj_path = os.path.join(lld_path, obj_file)
wasm_path = os.path.join(lld_path, wasm_file)
- wast_path = os.path.join(lld_path, wast_file)
+ wat_path = os.path.join(lld_path, wat_file)
is_shared = 'shared' in src_file
compile_cmd = [
@@ -70,6 +70,10 @@ def generate_wast_files(llvm_bin, emscripten_root):
'--export', '__data_end',
'--global-base=568',
]
+ # We had a regression where this test only worked if debug names
+ # were included.
+ if 'longjmp' in src_file:
+ link_cmd.append('--strip-debug')
if is_shared:
compile_cmd.append('-fPIC')
compile_cmd.append('-fvisibility=default')
@@ -80,7 +84,7 @@ def generate_wast_files(llvm_bin, emscripten_root):
try:
support.run_command(compile_cmd)
support.run_command(link_cmd)
- support.run_command(shared.WASM_DIS + [wasm_path, '-o', wast_path])
+ support.run_command(shared.WASM_DIS + [wasm_path, '-o', wat_path])
finally:
# Don't need the .o or .wasm files, don't leave them around
shared.delete_from_orbit(obj_path)
@@ -91,4 +95,4 @@ if __name__ == '__main__':
if len(shared.options.positional_args) != 2:
print('Usage: generate_lld_tests.py [llvm/bin/dir] [path/to/emscripten]')
sys.exit(1)
- generate_wast_files(*shared.options.positional_args)
+ generate_wat_files(*shared.options.positional_args)