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

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

Issue 2153433002: [Interpreter] Collect type feedback for 'new' in the bytecode handler (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Added a TODO as suggested by Benedikt. 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
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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 'test-heap/TestCodeFlushingIncrementalAbort': [PASS, ['mode == debug or dcheck _always_on == True', NO_IGNITION]], 129 'test-heap/TestCodeFlushingIncrementalAbort': [PASS, ['mode == debug or dcheck _always_on == True', NO_IGNITION]],
130 130
131 # TODO(rmcilroy,4680): Fails to find the correct function name for the 131 # TODO(rmcilroy,4680): Fails to find the correct function name for the
132 # anonymous function. Fails without ignition but with --no-lazy also, so seems 132 # anonymous function. Fails without ignition but with --no-lazy also, so seems
133 # to be an issue when eagerly parsing. 133 # to be an issue when eagerly parsing.
134 'test-func-name-inference/ReturnAnonymousFunction': [PASS, NO_IGNITION], 134 'test-func-name-inference/ReturnAnonymousFunction': [PASS, NO_IGNITION],
135 135
136 # TODO(mythria,4780): Related to type feedback support for Array function. 136 # TODO(mythria,4780): Related to type feedback support for Array function.
137 'test-feedback-vector/VectorCallFeedbackForArray': [PASS, NO_IGNITION], 137 'test-feedback-vector/VectorCallFeedbackForArray': [PASS, NO_IGNITION],
138 138
139 # TODO(mythria,4780): Related to type feedback support for constructor.
140 'test-feedback-vector/VectorConstructCounts': [PASS, NO_IGNITION],
141 'test-heap/WeakFunctionInConstructor': [PASS, NO_IGNITION],
142 'test-heap/IncrementalMarkingClearsMonomorphicConstructor': [PASS, NO_IGNITION ],
143 'test-heap/IncrementalMarkingPreservesMonomorphicConstructor': [PASS, NO_IGNIT ION],
144
145 # TODO(mythria,4680): Lack of code-ageing in interpreter. 139 # TODO(mythria,4680): Lack of code-ageing in interpreter.
146 'test-heap/Regress169209': [PASS, NO_IGNITION], 140 'test-heap/Regress169209': [PASS, NO_IGNITION],
147 141
148 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache 142 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache
149 # in interpreter. 143 # in interpreter.
150 'test-heap/CompilationCacheCachingBehavior': [PASS, NO_IGNITION], 144 'test-heap/CompilationCacheCachingBehavior': [PASS, NO_IGNITION],
151 145
152 # TODO(mstarzinger,4680): Fails due to the turbo-asm pipeline only being taken 146 # TODO(mstarzinger,4680): Fails due to the turbo-asm pipeline only being taken
153 # in compiler.cc GetLazyCode for uncompiled code, and no similar path for eage r 147 # in compiler.cc GetLazyCode for uncompiled code, and no similar path for eage r
154 # code. 148 # code.
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 'test-heap/TestCodeFlushingIncrementalAbort': [PASS, ['mode == debug or dcheck _always_on == True', FAIL]], 413 'test-heap/TestCodeFlushingIncrementalAbort': [PASS, ['mode == debug or dcheck _always_on == True', FAIL]],
420 414
421 # TODO(rmcilroy,4680): Fails to find the correct function name for the 415 # TODO(rmcilroy,4680): Fails to find the correct function name for the
422 # anonymous function. Fails without ignition but with --no-lazy also, so seems 416 # anonymous function. Fails without ignition but with --no-lazy also, so seems
423 # to be an issue when eagerly parsing. 417 # to be an issue when eagerly parsing.
424 'test-func-name-inference/ReturnAnonymousFunction': [FAIL], 418 'test-func-name-inference/ReturnAnonymousFunction': [FAIL],
425 419
426 # TODO(mythria,4780): Related to type feedback support for Array function. 420 # TODO(mythria,4780): Related to type feedback support for Array function.
427 'test-feedback-vector/VectorCallFeedbackForArray': [FAIL], 421 'test-feedback-vector/VectorCallFeedbackForArray': [FAIL],
428 422
429 # TODO(mythria,4780): Related to type feedback support for constructor.
430 'test-feedback-vector/VectorConstructCounts': [FAIL],
431 'test-heap/WeakFunctionInConstructor': [FAIL],
432 'test-heap/IncrementalMarkingClearsMonomorphicConstructor': [FAIL],
433 'test-heap/IncrementalMarkingPreservesMonomorphicConstructor': [FAIL],
434
435 # TODO(mythria,4680): Lack of code-ageing in interpreter. 423 # TODO(mythria,4680): Lack of code-ageing in interpreter.
436 'test-heap/Regress169209': [FAIL], 424 'test-heap/Regress169209': [FAIL],
437 425
438 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache 426 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache
439 # in interpreter. 427 # in interpreter.
440 'test-heap/CompilationCacheCachingBehavior': [FAIL], 428 'test-heap/CompilationCacheCachingBehavior': [FAIL],
441 429
442 # TODO(mstarzinger,4680): Fails due to the turbo-asm pipeline only being taken 430 # TODO(mstarzinger,4680): Fails due to the turbo-asm pipeline only being taken
443 # in compiler.cc GetLazyCode for uncompiled code, and no similar path for eage r 431 # in compiler.cc GetLazyCode for uncompiled code, and no similar path for eage r
444 # code. 432 # code.
(...skipping 11 matching lines...) Expand all
456 'test-heap/OptimizedPretenuringNestedDoubleLiterals': [FAIL], 444 'test-heap/OptimizedPretenuringNestedDoubleLiterals': [FAIL],
457 'test-heap/OptimizedPretenuringNestedMixedArrayLiterals': [FAIL], 445 'test-heap/OptimizedPretenuringNestedMixedArrayLiterals': [FAIL],
458 'test-heap/OptimizedPretenuringNestedObjectLiterals': [FAIL], 446 'test-heap/OptimizedPretenuringNestedObjectLiterals': [FAIL],
459 'test-heap/OptimizedPretenuringObjectArrayLiterals': [FAIL], 447 'test-heap/OptimizedPretenuringObjectArrayLiterals': [FAIL],
460 448
461 # BUG(4751). Flaky with Ignition. 449 # BUG(4751). Flaky with Ignition.
462 'test-cpu-profiler/JsNativeJsSample': [SKIP], 450 'test-cpu-profiler/JsNativeJsSample': [SKIP],
463 }], # ignition or ignition_turbofan 451 }], # ignition or ignition_turbofan
464 452
465 ] 453 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698