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

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

Issue 2713613005: [wasm]implement simd lowering for F32x4 and I32x4 binops (Closed)
Patch Set: [wasm]implement simd lowering for F32x4 and I32x4 binops Created 3 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 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 ], 223 ],
224 'cctest_sources_ia32': [ ### gcmole(arch:ia32) ### 224 'cctest_sources_ia32': [ ### gcmole(arch:ia32) ###
225 'test-assembler-ia32.cc', 225 'test-assembler-ia32.cc',
226 'test-code-stubs.cc', 226 'test-code-stubs.cc',
227 'test-code-stubs.h', 227 'test-code-stubs.h',
228 'test-code-stubs-ia32.cc', 228 'test-code-stubs-ia32.cc',
229 'test-disasm-ia32.cc', 229 'test-disasm-ia32.cc',
230 'test-macro-assembler-ia32.cc', 230 'test-macro-assembler-ia32.cc',
231 'test-log-stack-tracer.cc', 231 'test-log-stack-tracer.cc',
232 'test-run-wasm-relocation-ia32.cc', 232 'test-run-wasm-relocation-ia32.cc',
233 'wasm/test-run-wasm-simd-lowering.cc' 233 'wasm/test-run-wasm-simd-lowering.cc',
234 'wasm/test-wasm-simd-common.h',
235 'wasm/test-wasm-simd-common.cc'
234 ], 236 ],
235 'cctest_sources_x64': [ ### gcmole(arch:x64) ### 237 'cctest_sources_x64': [ ### gcmole(arch:x64) ###
236 'test-assembler-x64.cc', 238 'test-assembler-x64.cc',
237 'test-code-stubs.cc', 239 'test-code-stubs.cc',
238 'test-code-stubs.h', 240 'test-code-stubs.h',
239 'test-code-stubs-x64.cc', 241 'test-code-stubs-x64.cc',
240 'test-disasm-x64.cc', 242 'test-disasm-x64.cc',
241 'test-macro-assembler-x64.cc', 243 'test-macro-assembler-x64.cc',
242 'test-log-stack-tracer.cc', 244 'test-log-stack-tracer.cc',
243 'test-run-wasm-relocation-x64.cc', 245 'test-run-wasm-relocation-x64.cc',
244 'wasm/test-run-wasm-simd.cc', 246 'wasm/test-run-wasm-simd.cc',
247 'wasm/test-wasm-simd-common.h',
248 'wasm/test-wasm-simd-common.cc'
245 ], 249 ],
246 'cctest_sources_arm': [ ### gcmole(arch:arm) ### 250 'cctest_sources_arm': [ ### gcmole(arch:arm) ###
247 'test-assembler-arm.cc', 251 'test-assembler-arm.cc',
248 'test-code-stubs.cc', 252 'test-code-stubs.cc',
249 'test-code-stubs.h', 253 'test-code-stubs.h',
250 'test-code-stubs-arm.cc', 254 'test-code-stubs-arm.cc',
251 'test-disasm-arm.cc', 255 'test-disasm-arm.cc',
252 'test-macro-assembler-arm.cc', 256 'test-macro-assembler-arm.cc',
253 'test-run-wasm-relocation-arm.cc', 257 'test-run-wasm-relocation-arm.cc',
254 'test-simulator-arm.cc', 258 'test-simulator-arm.cc',
255 'wasm/test-run-wasm-simd-lowering.cc' 259 'wasm/test-run-wasm-simd-lowering.cc',
260 'wasm/test-wasm-simd-common.h',
261 'wasm/test-wasm-simd-common.cc'
256 ], 262 ],
257 'cctest_sources_arm64': [ ### gcmole(arch:arm64) ### 263 'cctest_sources_arm64': [ ### gcmole(arch:arm64) ###
258 'test-utils-arm64.cc', 264 'test-utils-arm64.cc',
259 'test-utils-arm64.h', 265 'test-utils-arm64.h',
260 'test-assembler-arm64.cc', 266 'test-assembler-arm64.cc',
261 'test-code-stubs.cc', 267 'test-code-stubs.cc',
262 'test-code-stubs.h', 268 'test-code-stubs.h',
263 'test-code-stubs-arm64.cc', 269 'test-code-stubs-arm64.cc',
264 'test-disasm-arm64.cc', 270 'test-disasm-arm64.cc',
265 'test-fuzz-arm64.cc', 271 'test-fuzz-arm64.cc',
266 'test-javascript-arm64.cc', 272 'test-javascript-arm64.cc',
267 'test-js-arm64-variables.cc', 273 'test-js-arm64-variables.cc',
268 'test-run-wasm-relocation-arm64.cc', 274 'test-run-wasm-relocation-arm64.cc',
269 'wasm/test-run-wasm-simd-lowering.cc' 275 'wasm/test-run-wasm-simd-lowering.cc',
276 'wasm/test-wasm-simd-common.h',
277 'wasm/test-wasm-simd-common.cc'
270 ], 278 ],
271 'cctest_sources_s390': [ ### gcmole(arch:s390) ### 279 'cctest_sources_s390': [ ### gcmole(arch:s390) ###
272 'test-assembler-s390.cc', 280 'test-assembler-s390.cc',
273 'test-code-stubs.cc', 281 'test-code-stubs.cc',
274 'test-code-stubs.h', 282 'test-code-stubs.h',
275 'test-disasm-s390.cc', 283 'test-disasm-s390.cc',
276 'wasm/test-run-wasm-simd-lowering.cc' 284 'wasm/test-run-wasm-simd-lowering.cc',
285 'wasm/test-wasm-simd-common.h',
286 'wasm/test-wasm-simd-common.cc'
277 ], 287 ],
278 'cctest_sources_ppc': [ ### gcmole(arch:ppc) ### 288 'cctest_sources_ppc': [ ### gcmole(arch:ppc) ###
279 'test-assembler-ppc.cc', 289 'test-assembler-ppc.cc',
280 'test-code-stubs.cc', 290 'test-code-stubs.cc',
281 'test-code-stubs.h', 291 'test-code-stubs.h',
282 'test-disasm-ppc.cc', 292 'test-disasm-ppc.cc',
283 'wasm/test-run-wasm-simd-lowering.cc' 293 'wasm/test-run-wasm-simd-lowering.cc',
294 'wasm/test-wasm-simd-common.h',
295 'wasm/test-wasm-simd-common.cc'
284 ], 296 ],
285 'cctest_sources_mips': [ ### gcmole(arch:mips) ### 297 'cctest_sources_mips': [ ### gcmole(arch:mips) ###
286 'test-assembler-mips.cc', 298 'test-assembler-mips.cc',
287 'test-code-stubs.cc', 299 'test-code-stubs.cc',
288 'test-code-stubs.h', 300 'test-code-stubs.h',
289 'test-code-stubs-mips.cc', 301 'test-code-stubs-mips.cc',
290 'test-disasm-mips.cc', 302 'test-disasm-mips.cc',
291 'test-macro-assembler-mips.cc', 303 'test-macro-assembler-mips.cc',
292 'wasm/test-run-wasm-simd-lowering.cc' 304 'wasm/test-run-wasm-simd-lowering.cc',
305 'wasm/test-wasm-simd-common.h',
306 'wasm/test-wasm-simd-common.cc'
293 ], 307 ],
294 'cctest_sources_mipsel': [ ### gcmole(arch:mipsel) ### 308 'cctest_sources_mipsel': [ ### gcmole(arch:mipsel) ###
295 'test-assembler-mips.cc', 309 'test-assembler-mips.cc',
296 'test-code-stubs.cc', 310 'test-code-stubs.cc',
297 'test-code-stubs.h', 311 'test-code-stubs.h',
298 'test-code-stubs-mips.cc', 312 'test-code-stubs-mips.cc',
299 'test-disasm-mips.cc', 313 'test-disasm-mips.cc',
300 'test-macro-assembler-mips.cc', 314 'test-macro-assembler-mips.cc',
301 'wasm/test-run-wasm-simd-lowering.cc' 315 'wasm/test-run-wasm-simd-lowering.cc',
316 'wasm/test-wasm-simd-common.h',
317 'wasm/test-wasm-simd-common.cc'
302 ], 318 ],
303 'cctest_sources_mips64': [ ### gcmole(arch:mips64) ### 319 'cctest_sources_mips64': [ ### gcmole(arch:mips64) ###
304 'test-assembler-mips64.cc', 320 'test-assembler-mips64.cc',
305 'test-code-stubs.cc', 321 'test-code-stubs.cc',
306 'test-code-stubs.h', 322 'test-code-stubs.h',
307 'test-code-stubs-mips64.cc', 323 'test-code-stubs-mips64.cc',
308 'test-disasm-mips64.cc', 324 'test-disasm-mips64.cc',
309 'test-macro-assembler-mips64.cc', 325 'test-macro-assembler-mips64.cc',
310 'wasm/test-run-wasm-simd-lowering.cc' 326 'wasm/test-run-wasm-simd-lowering.cc',
327 'wasm/test-wasm-simd-common.h',
328 'wasm/test-wasm-simd-common.cc'
311 ], 329 ],
312 'cctest_sources_mips64el': [ ### gcmole(arch:mips64el) ### 330 'cctest_sources_mips64el': [ ### gcmole(arch:mips64el) ###
313 'test-assembler-mips64.cc', 331 'test-assembler-mips64.cc',
314 'test-code-stubs.cc', 332 'test-code-stubs.cc',
315 'test-code-stubs.h', 333 'test-code-stubs.h',
316 'test-code-stubs-mips64.cc', 334 'test-code-stubs-mips64.cc',
317 'test-disasm-mips64.cc', 335 'test-disasm-mips64.cc',
318 'test-macro-assembler-mips64.cc', 336 'test-macro-assembler-mips64.cc',
319 'wasm/test-run-wasm-simd-lowering.cc' 337 'wasm/test-run-wasm-simd-lowering.cc',
338 'wasm/test-wasm-simd-common.h',
339 'wasm/test-wasm-simd-common.cc'
320 ], 340 ],
321 'cctest_sources_x87': [ ### gcmole(arch:x87) ### 341 'cctest_sources_x87': [ ### gcmole(arch:x87) ###
322 'test-assembler-x87.cc', 342 'test-assembler-x87.cc',
323 'test-code-stubs.cc', 343 'test-code-stubs.cc',
324 'test-code-stubs.h', 344 'test-code-stubs.h',
325 'test-code-stubs-x87.cc', 345 'test-code-stubs-x87.cc',
326 'test-disasm-x87.cc', 346 'test-disasm-x87.cc',
327 'test-macro-assembler-x87.cc', 347 'test-macro-assembler-x87.cc',
328 'test-log-stack-tracer.cc', 348 'test-log-stack-tracer.cc',
329 'test-run-wasm-relocation-x87.cc', 349 'test-run-wasm-relocation-x87.cc',
330 'wasm/test-run-wasm-simd-lowering.cc' 350 'wasm/test-run-wasm-simd-lowering.cc',
351 'wasm/test-wasm-simd-common.h',
352 'wasm/test-wasm-simd-common.cc'
331 ], 353 ],
332 }, 354 },
333 'includes': ['../../gypfiles/toolchain.gypi', '../../gypfiles/features.gypi'], 355 'includes': ['../../gypfiles/toolchain.gypi', '../../gypfiles/features.gypi'],
334 'targets': [ 356 'targets': [
335 { 357 {
336 'target_name': 'cctest', 358 'target_name': 'cctest',
337 'type': 'executable', 359 'type': 'executable',
338 'dependencies': [ 360 'dependencies': [
339 'resources', 361 'resources',
340 '../../src/v8.gyp:v8_libbase', 362 '../../src/v8.gyp:v8_libbase',
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 '../../gypfiles/isolate.gypi', 555 '../../gypfiles/isolate.gypi',
534 ], 556 ],
535 'sources': [ 557 'sources': [
536 'cctest.isolate', 558 'cctest.isolate',
537 ], 559 ],
538 }, 560 },
539 ], 561 ],
540 }], 562 }],
541 ], 563 ],
542 } 564 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698