Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Unified Diff: tools/toolchain_tester/toolchain_config.py

Issue 1698523003: Subzero: Add x86-64 to the bots. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Disable Subzero x86-64 translator tests for now Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/spec2k/run_all.sh ('k') | tools/toolchain_tester/torture_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/toolchain_tester/toolchain_config.py
diff --git a/tools/toolchain_tester/toolchain_config.py b/tools/toolchain_tester/toolchain_config.py
index c85a08c5e745f18957f9d28c9d5c5a5c583150b0..89fd8d432a03e9a381ab9f0ed90846de9a4ef27c 100644
--- a/tools/toolchain_tester/toolchain_config.py
+++ b/tools/toolchain_tester/toolchain_config.py
@@ -408,6 +408,34 @@ TOOLCHAIN_CONFIGS['llvm_pnacl_x86-64_O0_O0'] = ToolchainConfig(
attributes=['x86-64', 'O0f', 'O0b'],
TRANSLATE_FLAGS = '-translate-fast')
+# Based on llvm_pnacl_x86-64_O0 with TRANSLATE_FLAGS+=--use-sz
+TOOLCHAIN_CONFIGS['llvm_pnacl_x86-64_O0_sz'] = ToolchainConfig(
+ base=TOOLCHAIN_CONFIGS['llvm_pnacl_x86-64_O0'],
+ desc='pnacl llvm with Subzero [x8664]',
+ attributes=['x86-64', 'O0f', 'O2b_sz'],
+ TRANSLATE_FLAGS = '--use-sz')
+
+# Based on llvm_pnacl_x86-64_O3 with TRANSLATE_FLAGS+=--use-sz
+TOOLCHAIN_CONFIGS['llvm_pnacl_x86-64_O3_sz'] = ToolchainConfig(
+ base=TOOLCHAIN_CONFIGS['llvm_pnacl_x86-64_O3'],
+ desc='pnacl llvm with Subzero [x8664]',
+ attributes=['x86-64', 'O3f', 'O2b_sz'],
+ TRANSLATE_FLAGS = '--use-sz')
+
+# Based on llvm_pnacl_x86-64_O3_O0 with TRANSLATE_FLAGS+=--use-sz
+TOOLCHAIN_CONFIGS['llvm_pnacl_x86-64_O3_O0_sz'] = ToolchainConfig(
+ base=TOOLCHAIN_CONFIGS['llvm_pnacl_x86-64_O3_O0'],
+ desc='pnacl llvm with Subzero -Om1 [x8664]',
+ attributes=['x86-64', 'O3f', 'O0b_sz'],
+ TRANSLATE_FLAGS = '-translate-fast --use-sz')
+
+# Based on llvm_pnacl_x86-64_O0_O0 with TRANSLATE_FLAGS+=--use-sz
+TOOLCHAIN_CONFIGS['llvm_pnacl_x86-64_O0_O0_sz'] = ToolchainConfig(
+ base=TOOLCHAIN_CONFIGS['llvm_pnacl_x86-64_O0_O0'],
+ desc='pnacl llvm with Subzero -Om1 [x8664]',
+ attributes=['x86-64', 'O0f', 'O0b_sz'],
+ TRANSLATE_FLAGS = '-translate-fast --use-sz')
+
######################################################################
# CLANG + SEL_LDR
######################################################################
« no previous file with comments | « tests/spec2k/run_all.sh ('k') | tools/toolchain_tester/torture_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698