| OLD | NEW |
| 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 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 516 'test-heap/IncrementalMarkingPreservesMonomorphicCallIC': [FAIL], | 516 'test-heap/IncrementalMarkingPreservesMonomorphicCallIC': [FAIL], |
| 517 'test-heap/CellsInOptimizedCodeAreWeak': [FAIL], | 517 'test-heap/CellsInOptimizedCodeAreWeak': [FAIL], |
| 518 | 518 |
| 519 # TODO(mythria,4680): Lack of code-ageing in interpreter. | 519 # TODO(mythria,4680): Lack of code-ageing in interpreter. |
| 520 'test-heap/Regress169209': [FAIL], | 520 'test-heap/Regress169209': [FAIL], |
| 521 | 521 |
| 522 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache | 522 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache |
| 523 # in interpreter. | 523 # in interpreter. |
| 524 'test-heap/CompilationCacheCachingBehavior': [FAIL], | 524 'test-heap/CompilationCacheCachingBehavior': [FAIL], |
| 525 | 525 |
| 526 # TODO(rmcilroy,4680): Fails with eager compilation due to SharedFunctionInfo | |
| 527 # being null in compiler.cc Renumber(), meaning MaybeDisableOptimization never | |
| 528 # gets called. | |
| 529 'test-profile-generator/BailoutReason': [FAIL], | |
| 530 | |
| 531 # TODO(mstarzinger,4680): Fails due to the turbo-asm pipeline only being taken | 526 # TODO(mstarzinger,4680): Fails due to the turbo-asm pipeline only being taken |
| 532 # in compiler.cc GetLazyCode for uncompiled code, and no similar path for eage
r | 527 # in compiler.cc GetLazyCode for uncompiled code, and no similar path for eage
r |
| 533 # code. | 528 # code. |
| 534 'test-api/TurboAsmDisablesNeuter': [FAIL], | 529 'test-api/TurboAsmDisablesNeuter': [FAIL], |
| 535 | 530 |
| 536 # TODO(rmcilroy,4837): We don't set a LoadContextSlot for a function as | 531 # TODO(rmcilroy,4837): We don't set a LoadContextSlot for a function as |
| 537 # immutable in the BytecodeGraphBuilder, therefore no inlining happens. | 532 # immutable in the BytecodeGraphBuilder, therefore no inlining happens. |
| 538 'test-run-inlining/InlineLoopGuardedTwice': [FAIL], | 533 'test-run-inlining/InlineLoopGuardedTwice': [FAIL], |
| 539 'test-run-inlining/InlineSurplusArgumentsDeopt': [FAIL], | 534 'test-run-inlining/InlineSurplusArgumentsDeopt': [FAIL], |
| 540 'test-run-inlining/InlineTwice': [FAIL], | 535 'test-run-inlining/InlineTwice': [FAIL], |
| (...skipping 10 matching lines...) Expand all Loading... |
| 551 'test-run-inlining/InlineLoopGuardedEmpty': [FAIL], | 546 'test-run-inlining/InlineLoopGuardedEmpty': [FAIL], |
| 552 'test-run-inlining/InlineLoopGuardedOnce': [FAIL], | 547 'test-run-inlining/InlineLoopGuardedOnce': [FAIL], |
| 553 'test-run-inlining/InlineOmitArguments': [FAIL], | 548 'test-run-inlining/InlineOmitArguments': [FAIL], |
| 554 'test-run-inlining/SimpleInlining': [FAIL], | 549 'test-run-inlining/SimpleInlining': [FAIL], |
| 555 'test-run-inlining/InlineLoopUnguardedEmpty': [FAIL], | 550 'test-run-inlining/InlineLoopUnguardedEmpty': [FAIL], |
| 556 'test-run-inlining/InlineNestedBuiltin': [FAIL], | 551 'test-run-inlining/InlineNestedBuiltin': [FAIL], |
| 557 'test-run-inlining/InlineSurplusArguments': [FAIL], | 552 'test-run-inlining/InlineSurplusArguments': [FAIL], |
| 558 'test-run-inlining/InlineBuiltin': [FAIL], | 553 'test-run-inlining/InlineBuiltin': [FAIL], |
| 559 'test-run-inlining/InlineTwiceDependent': [FAIL], | 554 'test-run-inlining/InlineTwiceDependent': [FAIL], |
| 560 'test-run-inlining/SimpleInliningContextDeopt': [FAIL], | 555 'test-run-inlining/SimpleInliningContextDeopt': [FAIL], |
| 561 'test-debug/DebugBreakInline': [FAIL], | |
| 562 }], # ignition == True | 556 }], # ignition == True |
| 563 | 557 |
| 564 ] | 558 ] |
| OLD | NEW |