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

Side by Side Diff: test/cctest/interpreter/test-bytecode-generator.cc

Issue 1489413006: Revert of Provide call counts for constructor calls, surface them as a vector IC. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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/x64/interface-descriptors-x64.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // TODO(rmcilroy): Remove this define after this flag is turned on globally 5 // TODO(rmcilroy): Remove this define after this flag is turned on globally
6 #define V8_IMMINENT_DEPRECATION_WARNINGS 6 #define V8_IMMINENT_DEPRECATION_WARNINGS
7 7
8 #include "src/v8.h" 8 #include "src/v8.h"
9 9
10 #include "src/compiler.h" 10 #include "src/compiler.h"
(...skipping 3532 matching lines...) Expand 10 before | Expand all | Expand 10 after
3543 } 3543 }
3544 } 3544 }
3545 3545
3546 3546
3547 TEST(CallNew) { 3547 TEST(CallNew) {
3548 InitializedHandleScope handle_scope; 3548 InitializedHandleScope handle_scope;
3549 BytecodeGeneratorHelper helper; 3549 BytecodeGeneratorHelper helper;
3550 Zone zone; 3550 Zone zone;
3551 3551
3552 FeedbackVectorSpec feedback_spec(&zone); 3552 FeedbackVectorSpec feedback_spec(&zone);
3553 FeedbackVectorSlot slot1 = feedback_spec.AddConstructICSlot(); 3553 FeedbackVectorSlot slot1 = feedback_spec.AddGeneralSlot();
3554 FeedbackVectorSlot slot2 = feedback_spec.AddLoadICSlot(); 3554 FeedbackVectorSlot slot2 = feedback_spec.AddLoadICSlot();
3555 USE(slot1); 3555 USE(slot1);
3556 3556
3557 Handle<i::TypeFeedbackVector> vector = 3557 Handle<i::TypeFeedbackVector> vector =
3558 i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec); 3558 i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec);
3559 3559
3560 ExpectedSnippet<InstanceType> snippets[] = { 3560 ExpectedSnippet<InstanceType> snippets[] = {
3561 {"function bar() { this.value = 0; }\n" 3561 {"function bar() { this.value = 0; }\n"
3562 "function f() { return new bar(); }\n" 3562 "function f() { return new bar(); }\n"
3563 "f()", 3563 "f()",
(...skipping 1896 matching lines...) Expand 10 before | Expand all | Expand 10 after
5460 for (size_t i = 0; i < arraysize(snippets); i++) { 5460 for (size_t i = 0; i < arraysize(snippets); i++) {
5461 Handle<BytecodeArray> bytecode_array = 5461 Handle<BytecodeArray> bytecode_array =
5462 helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet); 5462 helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
5463 CheckBytecodeArrayEqual(snippets[i], bytecode_array); 5463 CheckBytecodeArrayEqual(snippets[i], bytecode_array);
5464 } 5464 }
5465 } 5465 }
5466 5466
5467 } // namespace interpreter 5467 } // namespace interpreter
5468 } // namespace internal 5468 } // namespace internal
5469 } // namespace v8 5469 } // namespace v8
OLDNEW
« no previous file with comments | « src/x64/interface-descriptors-x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698