OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |