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

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: rebase. 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 'test-heap/TestCodeFlushingIncrementalAbort': [PASS, ['mode == debug or dcheck _always_on == True', NO_IGNITION]], 127 'test-heap/TestCodeFlushingIncrementalAbort': [PASS, ['mode == debug or dcheck _always_on == True', NO_IGNITION]],
128 128
129 # TODO(rmcilroy,4680): Fails to find the correct function name for the 129 # TODO(rmcilroy,4680): Fails to find the correct function name for the
130 # anonymous function. Fails without ignition but with --no-lazy also, so seems 130 # anonymous function. Fails without ignition but with --no-lazy also, so seems
131 # to be an issue when eagerly parsing. 131 # to be an issue when eagerly parsing.
132 'test-func-name-inference/ReturnAnonymousFunction': [PASS, NO_IGNITION], 132 'test-func-name-inference/ReturnAnonymousFunction': [PASS, NO_IGNITION],
133 133
134 # TODO(mythria,4780): Related to type feedback support for Array function. 134 # TODO(mythria,4780): Related to type feedback support for Array function.
135 'test-feedback-vector/VectorCallFeedbackForArray': [PASS, NO_IGNITION], 135 'test-feedback-vector/VectorCallFeedbackForArray': [PASS, NO_IGNITION],
136 136
137 # TODO(mythria,4780): Related to type feedback support for constructor.
138 'test-feedback-vector/VectorConstructCounts': [PASS, NO_IGNITION],
139 'test-heap/WeakFunctionInConstructor': [PASS, NO_IGNITION],
140 'test-heap/IncrementalMarkingClearsMonomorphicConstructor': [PASS, NO_IGNITION ],
141 'test-heap/IncrementalMarkingPreservesMonomorphicConstructor': [PASS, NO_IGNIT ION],
142
143 # TODO(mythria,4680): Lack of code-ageing in interpreter. 137 # TODO(mythria,4680): Lack of code-ageing in interpreter.
144 'test-heap/Regress169209': [PASS, NO_IGNITION], 138 'test-heap/Regress169209': [PASS, NO_IGNITION],
145 139
146 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache 140 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache
147 # in interpreter. 141 # in interpreter.
148 'test-heap/CompilationCacheCachingBehavior': [PASS, NO_IGNITION], 142 'test-heap/CompilationCacheCachingBehavior': [PASS, NO_IGNITION],
149 143
150 # TODO(mstarzinger,4680): Fails due to the turbo-asm pipeline only being taken 144 # TODO(mstarzinger,4680): Fails due to the turbo-asm pipeline only being taken
151 # in compiler.cc GetLazyCode for uncompiled code, and no similar path for eage r 145 # in compiler.cc GetLazyCode for uncompiled code, and no similar path for eage r
152 # code. 146 # code.
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 'test-heap/TestCodeFlushingIncrementalAbort': [PASS, ['mode == debug or dcheck _always_on == True', FAIL]], 403 'test-heap/TestCodeFlushingIncrementalAbort': [PASS, ['mode == debug or dcheck _always_on == True', FAIL]],
410 404
411 # TODO(rmcilroy,4680): Fails to find the correct function name for the 405 # 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 406 # anonymous function. Fails without ignition but with --no-lazy also, so seems
413 # to be an issue when eagerly parsing. 407 # to be an issue when eagerly parsing.
414 'test-func-name-inference/ReturnAnonymousFunction': [FAIL], 408 'test-func-name-inference/ReturnAnonymousFunction': [FAIL],
415 409
416 # TODO(mythria,4780): Related to type feedback support for Array function. 410 # TODO(mythria,4780): Related to type feedback support for Array function.
417 'test-feedback-vector/VectorCallFeedbackForArray': [FAIL], 411 'test-feedback-vector/VectorCallFeedbackForArray': [FAIL],
418 412
419 # TODO(mythria,4780): Related to type feedback support for constructor.
420 'test-feedback-vector/VectorConstructCounts': [FAIL],
421 'test-heap/WeakFunctionInConstructor': [FAIL],
422 'test-heap/IncrementalMarkingClearsMonomorphicConstructor': [FAIL],
423 'test-heap/IncrementalMarkingPreservesMonomorphicConstructor': [FAIL],
424
425 # TODO(mythria,4680): Lack of code-ageing in interpreter. 413 # TODO(mythria,4680): Lack of code-ageing in interpreter.
426 'test-heap/Regress169209': [FAIL], 414 'test-heap/Regress169209': [FAIL],
427 415
428 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache 416 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache
429 # in interpreter. 417 # in interpreter.
430 'test-heap/CompilationCacheCachingBehavior': [FAIL], 418 'test-heap/CompilationCacheCachingBehavior': [FAIL],
431 419
432 # TODO(mstarzinger,4680): Fails due to the turbo-asm pipeline only being taken 420 # TODO(mstarzinger,4680): Fails due to the turbo-asm pipeline only being taken
433 # in compiler.cc GetLazyCode for uncompiled code, and no similar path for eage r 421 # in compiler.cc GetLazyCode for uncompiled code, and no similar path for eage r
434 # code. 422 # code.
(...skipping 15 matching lines...) Expand all
450 'test-heap/OptimizedPretenuringNestedDoubleLiterals': [FAIL], 438 'test-heap/OptimizedPretenuringNestedDoubleLiterals': [FAIL],
451 'test-heap/OptimizedPretenuringNestedMixedArrayLiterals': [FAIL], 439 'test-heap/OptimizedPretenuringNestedMixedArrayLiterals': [FAIL],
452 'test-heap/OptimizedPretenuringNestedObjectLiterals': [FAIL], 440 'test-heap/OptimizedPretenuringNestedObjectLiterals': [FAIL],
453 'test-heap/OptimizedPretenuringObjectArrayLiterals': [FAIL], 441 'test-heap/OptimizedPretenuringObjectArrayLiterals': [FAIL],
454 442
455 # BUG(4751). Flaky with Ignition. 443 # BUG(4751). Flaky with Ignition.
456 'test-cpu-profiler/JsNativeJsSample': [SKIP], 444 'test-cpu-profiler/JsNativeJsSample': [SKIP],
457 }], # ignition or ignition_turbofan 445 }], # ignition or ignition_turbofan
458 446
459 ] 447 ]
OLDNEW
« no previous file with comments | « src/interpreter/interpreter-assembler.cc ('k') | test/cctest/interpreter/bytecode_expectations/CallNew.golden » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698