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

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

Issue 2294743003: [wasm] simd scalar lowering F32x4Add and I32x4Add (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 3 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 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 'test-version.cc', 185 'test-version.cc',
186 'test-weakmaps.cc', 186 'test-weakmaps.cc',
187 'test-weaksets.cc', 187 'test-weaksets.cc',
188 'trace-extension.cc', 188 'trace-extension.cc',
189 'wasm/test-run-wasm.cc', 189 'wasm/test-run-wasm.cc',
190 'wasm/test-run-wasm-64.cc', 190 'wasm/test-run-wasm-64.cc',
191 'wasm/test-run-wasm-asmjs.cc', 191 'wasm/test-run-wasm-asmjs.cc',
192 'wasm/test-run-wasm-interpreter.cc', 192 'wasm/test-run-wasm-interpreter.cc',
193 'wasm/test-run-wasm-js.cc', 193 'wasm/test-run-wasm-js.cc',
194 'wasm/test-run-wasm-module.cc', 194 'wasm/test-run-wasm-module.cc',
195 'wasm/test-run-wasm-module-helper.h',
195 'wasm/test-run-wasm-relocation.cc', 196 'wasm/test-run-wasm-relocation.cc',
196 'wasm/test-run-wasm-try-catch.cc', 197 'wasm/test-run-wasm-try-catch.cc',
197 'wasm/test-signatures.h', 198 'wasm/test-signatures.h',
198 'wasm/test-wasm-function-name-table.cc', 199 'wasm/test-wasm-function-name-table.cc',
199 'wasm/test-wasm-stack.cc', 200 'wasm/test-wasm-stack.cc',
200 'wasm/test-wasm-trap-position.cc', 201 'wasm/test-wasm-trap-position.cc',
201 'wasm/wasm-run-utils.h', 202 'wasm/wasm-run-utils.h',
202 ], 203 ],
203 'cctest_sources_ia32': [ ### gcmole(arch:ia32) ### 204 'cctest_sources_ia32': [ ### gcmole(arch:ia32) ###
204 'test-assembler-ia32.cc', 205 'test-assembler-ia32.cc',
205 'test-code-stubs.cc', 206 'test-code-stubs.cc',
206 'test-code-stubs-ia32.cc', 207 'test-code-stubs-ia32.cc',
207 'test-disasm-ia32.cc', 208 'test-disasm-ia32.cc',
208 'test-macro-assembler-ia32.cc', 209 'test-macro-assembler-ia32.cc',
209 'test-log-stack-tracer.cc', 210 'test-log-stack-tracer.cc',
210 'test-run-wasm-relocation-ia32.cc' 211 'test-run-wasm-relocation-ia32.cc'
211 ], 212 ],
212 'cctest_sources_x64': [ ### gcmole(arch:x64) ### 213 'cctest_sources_x64': [ ### gcmole(arch:x64) ###
213 'test-assembler-x64.cc', 214 'test-assembler-x64.cc',
214 'test-code-stubs.cc', 215 'test-code-stubs.cc',
215 'test-code-stubs-x64.cc', 216 'test-code-stubs-x64.cc',
216 'test-disasm-x64.cc', 217 'test-disasm-x64.cc',
217 'test-macro-assembler-x64.cc', 218 'test-macro-assembler-x64.cc',
218 'test-log-stack-tracer.cc', 219 'test-log-stack-tracer.cc',
219 'test-run-wasm-relocation-x64.cc', 220 'test-run-wasm-relocation-x64.cc',
220 'wasm/test-run-wasm-simd.cc' 221 'wasm/test-run-wasm-simd.cc',
222 'wasm/test-run-wasm-simd-lowering.cc',
gdeepti 2016/08/30 17:16:06 Is there a reason we run the tests only on x64? Ig
aseemgarg 2016/10/10 17:35:17 I set it up to run on architectures where the othe
221 ], 223 ],
222 'cctest_sources_arm': [ ### gcmole(arch:arm) ### 224 'cctest_sources_arm': [ ### gcmole(arch:arm) ###
223 'test-assembler-arm.cc', 225 'test-assembler-arm.cc',
224 'test-code-stubs.cc', 226 'test-code-stubs.cc',
225 'test-code-stubs-arm.cc', 227 'test-code-stubs-arm.cc',
226 'test-disasm-arm.cc', 228 'test-disasm-arm.cc',
227 'test-macro-assembler-arm.cc', 229 'test-macro-assembler-arm.cc',
228 'test-run-wasm-relocation-arm.cc' 230 'test-run-wasm-relocation-arm.cc'
229 ], 231 ],
230 'cctest_sources_arm64': [ ### gcmole(arch:arm64) ### 232 'cctest_sources_arm64': [ ### gcmole(arch:arm64) ###
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 '../../gypfiles/isolate.gypi', 490 '../../gypfiles/isolate.gypi',
489 ], 491 ],
490 'sources': [ 492 'sources': [
491 'cctest.isolate', 493 'cctest.isolate',
492 ], 494 ],
493 }, 495 },
494 ], 496 ],
495 }], 497 }],
496 ], 498 ],
497 } 499 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698