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

Side by Side Diff: test/cctest/cctest.gyp

Issue 2514663002: [simd] Disable Simd Scalar lowering for x64, enable tests for all other architectures. (Closed)
Patch Set: Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 'trace-extension.h', 205 'trace-extension.h',
206 'types-fuzz.h', 206 'types-fuzz.h',
207 'wasm/test-managed.cc', 207 'wasm/test-managed.cc',
208 'wasm/test-run-wasm.cc', 208 'wasm/test-run-wasm.cc',
209 'wasm/test-run-wasm-64.cc', 209 'wasm/test-run-wasm-64.cc',
210 'wasm/test-run-wasm-asmjs.cc', 210 'wasm/test-run-wasm-asmjs.cc',
211 'wasm/test-run-wasm-interpreter.cc', 211 'wasm/test-run-wasm-interpreter.cc',
212 'wasm/test-run-wasm-js.cc', 212 'wasm/test-run-wasm-js.cc',
213 'wasm/test-run-wasm-module.cc', 213 'wasm/test-run-wasm-module.cc',
214 'wasm/test-run-wasm-relocation.cc', 214 'wasm/test-run-wasm-relocation.cc',
215 'wasm/test-run-wasm-simd-lowering.cc',
215 'wasm/test-wasm-stack.cc', 216 'wasm/test-wasm-stack.cc',
216 'wasm/test-wasm-trap-position.cc', 217 'wasm/test-wasm-trap-position.cc',
217 'wasm/wasm-run-utils.h', 218 'wasm/wasm-run-utils.h',
218 ], 219 ],
219 'cctest_sources_ia32': [ ### gcmole(arch:ia32) ### 220 'cctest_sources_ia32': [ ### gcmole(arch:ia32) ###
220 'test-assembler-ia32.cc', 221 'test-assembler-ia32.cc',
221 'test-code-stubs.cc', 222 'test-code-stubs.cc',
222 'test-code-stubs.h', 223 'test-code-stubs.h',
223 'test-code-stubs-ia32.cc', 224 'test-code-stubs-ia32.cc',
224 'test-disasm-ia32.cc', 225 'test-disasm-ia32.cc',
225 'test-macro-assembler-ia32.cc', 226 'test-macro-assembler-ia32.cc',
226 'test-log-stack-tracer.cc', 227 'test-log-stack-tracer.cc',
227 'test-run-wasm-relocation-ia32.cc' 228 'test-run-wasm-relocation-ia32.cc'
228 ], 229 ],
229 'cctest_sources_x64': [ ### gcmole(arch:x64) ### 230 'cctest_sources_x64': [ ### gcmole(arch:x64) ###
230 'test-assembler-x64.cc', 231 'test-assembler-x64.cc',
231 'test-code-stubs.cc', 232 'test-code-stubs.cc',
232 'test-code-stubs.h', 233 'test-code-stubs.h',
233 'test-code-stubs-x64.cc', 234 'test-code-stubs-x64.cc',
234 'test-disasm-x64.cc', 235 'test-disasm-x64.cc',
235 'test-macro-assembler-x64.cc', 236 'test-macro-assembler-x64.cc',
236 'test-log-stack-tracer.cc', 237 'test-log-stack-tracer.cc',
237 'test-run-wasm-relocation-x64.cc', 238 'test-run-wasm-relocation-x64.cc',
238 'wasm/test-run-wasm-simd.cc', 239 'wasm/test-run-wasm-simd.cc',
239 'wasm/test-run-wasm-simd-lowering.cc',
240 ], 240 ],
241 'cctest_sources_arm': [ ### gcmole(arch:arm) ### 241 'cctest_sources_arm': [ ### gcmole(arch:arm) ###
242 'test-assembler-arm.cc', 242 'test-assembler-arm.cc',
243 'test-code-stubs.cc', 243 'test-code-stubs.cc',
244 'test-code-stubs.h', 244 'test-code-stubs.h',
245 'test-code-stubs-arm.cc', 245 'test-code-stubs-arm.cc',
246 'test-disasm-arm.cc', 246 'test-disasm-arm.cc',
247 'test-macro-assembler-arm.cc', 247 'test-macro-assembler-arm.cc',
248 'test-run-wasm-relocation-arm.cc' 248 'test-run-wasm-relocation-arm.cc'
249 ], 249 ],
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 '../../gypfiles/isolate.gypi', 516 '../../gypfiles/isolate.gypi',
517 ], 517 ],
518 'sources': [ 518 'sources': [
519 'cctest.isolate', 519 'cctest.isolate',
520 ], 520 ],
521 }, 521 },
522 ], 522 ],
523 }], 523 }],
524 ], 524 ],
525 } 525 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698