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

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

Issue 2156753002: [Intepreter] Always use BytecodeGraphBuilder when --turbo-from-bytecode (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Review comments Created 4 years, 5 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
« no previous file with comments | « src/runtime-profiler.cc ('k') | test/cctest/compiler/function-tester.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 394
395 # Pass but take too long with the simulator. 395 # Pass but take too long with the simulator.
396 'test-api/Threading1': [PASS, SLOW], 396 'test-api/Threading1': [PASS, SLOW],
397 'test-api/Threading2': [PASS, SLOW], 397 'test-api/Threading2': [PASS, SLOW],
398 'test-api/ExternalArrays': [PASS, SLOW], 398 'test-api/ExternalArrays': [PASS, SLOW],
399 399
400 }], # 'arch == ppc64 and simulator_run == True' 400 }], # 'arch == ppc64 and simulator_run == True'
401 401
402 ############################################################################## 402 ##############################################################################
403 ['ignition or ignition_turbofan', { 403 ['ignition or ignition_turbofan', {
404 # TODO(rmcilroy,4837): Inlining is currently disabled for the BytecodeGraphBui lder
405 # (see InliningPhase::Run). Also, we don't set a LoadContextSlot for a functio n as
406 # immutable in the BytecodeGraphBuilder, therefore no inlining happens.
407 'test-run-inlining/InlineLoopGuardedTwice': [FAIL],
408 'test-run-inlining/InlineSurplusArgumentsDeopt': [FAIL],
409 'test-run-inlining/InlineTwice': [FAIL],
410 'test-run-inlining/InlineSurplusArgumentsObject': [FAIL],
411 'test-run-inlining/InlineTwiceDependentDiamond': [FAIL],
412 'test-run-inlining/InlineWithArguments': [FAIL],
413 'test-run-inlining/InlineLoopUnguardedTwice': [FAIL],
414 'test-run-inlining/InlineOmitArgumentsObject': [FAIL],
415 'test-run-inlining/InlineLoopUnguardedOnce': [FAIL],
416 'test-run-inlining/InlineOmitArgumentsDeopt': [FAIL],
417 'test-run-inlining/InlineTwiceDependentDiamondDifferent': [FAIL],
418 'test-run-inlining/SimpleInliningContext': [FAIL],
419 'test-run-inlining/InlineMutuallyRecursive': [FAIL],
420 'test-run-inlining/InlineLoopGuardedEmpty': [FAIL],
421 'test-run-inlining/InlineLoopGuardedOnce': [FAIL],
422 'test-run-inlining/InlineOmitArguments': [FAIL],
423 'test-run-inlining/SimpleInlining': [FAIL],
424 'test-run-inlining/InlineLoopUnguardedEmpty': [FAIL],
425 'test-run-inlining/InlineNestedBuiltin': [FAIL],
426 'test-run-inlining/InlineSurplusArguments': [FAIL],
427 'test-run-inlining/InlineBuiltin': [FAIL],
428 'test-run-inlining/InlineTwiceDependent': [FAIL],
429 'test-run-inlining/SimpleInliningContextDeopt': [FAIL],
430
431 # TODO(rmcilroy,4766): Requires BytecodeGraphBuilder to track source position
432 # on nodes (behind --turbo_source_positions flag).
433 'test-cpu-profiler/TickLinesOptimized': [FAIL],
434
404 # TODO(rmcilroy,4680): Related to lack of code flushing. Check failed: !functi on->shared()->is_compiled() || function->IsOptimized(). 435 # TODO(rmcilroy,4680): Related to lack of code flushing. Check failed: !functi on->shared()->is_compiled() || function->IsOptimized().
405 'test-heap/TestCodeFlushingPreAged': [FAIL], 436 'test-heap/TestCodeFlushingPreAged': [FAIL],
406 'test-heap/TestCodeFlushingIncrementalScavenge': [FAIL], 437 'test-heap/TestCodeFlushingIncrementalScavenge': [FAIL],
407 'test-heap/TestCodeFlushing': [FAIL], 438 'test-heap/TestCodeFlushing': [FAIL],
408 'test-heap/TestCodeFlushingIncremental': [FAIL], 439 'test-heap/TestCodeFlushingIncremental': [FAIL],
409 'test-heap/TestCodeFlushingIncrementalAbort': [PASS, ['mode == debug or dcheck _always_on == True', FAIL]], 440 'test-heap/TestCodeFlushingIncrementalAbort': [PASS, ['mode == debug or dcheck _always_on == True', FAIL]],
410 441
411 # TODO(rmcilroy,4680): Fails to find the correct function name for the 442 # TODO(rmcilroy,4680): Fails to find the correct function name for the
412 # anonymous function. Fails without ignition but with --no-lazy also, so seems 443 # anonymous function. Fails without ignition but with --no-lazy also, so seems
413 # to be an issue when eagerly parsing. 444 # to be an issue when eagerly parsing.
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 'test-heap/OptimizedPretenuringNestedDoubleLiterals': [FAIL], 481 'test-heap/OptimizedPretenuringNestedDoubleLiterals': [FAIL],
451 'test-heap/OptimizedPretenuringNestedMixedArrayLiterals': [FAIL], 482 'test-heap/OptimizedPretenuringNestedMixedArrayLiterals': [FAIL],
452 'test-heap/OptimizedPretenuringNestedObjectLiterals': [FAIL], 483 'test-heap/OptimizedPretenuringNestedObjectLiterals': [FAIL],
453 'test-heap/OptimizedPretenuringObjectArrayLiterals': [FAIL], 484 'test-heap/OptimizedPretenuringObjectArrayLiterals': [FAIL],
454 485
455 # BUG(4751). Flaky with Ignition. 486 # BUG(4751). Flaky with Ignition.
456 'test-cpu-profiler/JsNativeJsSample': [SKIP], 487 'test-cpu-profiler/JsNativeJsSample': [SKIP],
457 }], # ignition or ignition_turbofan 488 }], # ignition or ignition_turbofan
458 489
459 ] 490 ]
OLDNEW
« no previous file with comments | « src/runtime-profiler.cc ('k') | test/cctest/compiler/function-tester.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698