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

Side by Side Diff: test/unittests/compiler/interpreter-assembler-unittest.cc

Issue 1668103002: Type Feedback Vector lives in the closure (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Created 4 years, 10 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
« no previous file with comments | « test/mjsunit/mjsunit.status ('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 #include "test/unittests/compiler/interpreter-assembler-unittest.h" 5 #include "test/unittests/compiler/interpreter-assembler-unittest.h"
6 6
7 #include "src/code-factory.h" 7 #include "src/code-factory.h"
8 #include "src/compiler/graph.h" 8 #include "src/compiler/graph.h"
9 #include "src/compiler/node.h" 9 #include "src/compiler/node.h"
10 #include "src/interface-descriptors.h" 10 #include "src/interface-descriptors.h"
(...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 TARGET_TEST_F(InterpreterAssemblerTest, LoadTypeFeedbackVector) { 680 TARGET_TEST_F(InterpreterAssemblerTest, LoadTypeFeedbackVector) {
681 TRACED_FOREACH(interpreter::Bytecode, bytecode, kBytecodes) { 681 TRACED_FOREACH(interpreter::Bytecode, bytecode, kBytecodes) {
682 InterpreterAssemblerForTest m(this, bytecode); 682 InterpreterAssemblerForTest m(this, bytecode);
683 Node* feedback_vector = m.LoadTypeFeedbackVector(); 683 Node* feedback_vector = m.LoadTypeFeedbackVector();
684 684
685 Matcher<Node*> load_function_matcher = 685 Matcher<Node*> load_function_matcher =
686 m.IsLoad(MachineType::AnyTagged(), 686 m.IsLoad(MachineType::AnyTagged(),
687 IsParameter(Linkage::kInterpreterRegisterFileParameter), 687 IsParameter(Linkage::kInterpreterRegisterFileParameter),
688 IsIntPtrConstant( 688 IsIntPtrConstant(
689 InterpreterFrameConstants::kFunctionFromRegisterPointer)); 689 InterpreterFrameConstants::kFunctionFromRegisterPointer));
690 Matcher<Node*> load_shared_function_info_matcher = 690 Matcher<Node*> load_literals_matcher = m.IsLoad(
691 m.IsLoad(MachineType::AnyTagged(), load_function_matcher, 691 MachineType::AnyTagged(), load_function_matcher,
692 IsIntPtrConstant(JSFunction::kSharedFunctionInfoOffset - 692 IsIntPtrConstant(JSFunction::kLiteralsOffset - kHeapObjectTag));
693 kHeapObjectTag));
694 693
695 EXPECT_THAT( 694 EXPECT_THAT(feedback_vector,
696 feedback_vector, 695 m.IsLoad(MachineType::AnyTagged(), load_literals_matcher,
697 m.IsLoad(MachineType::AnyTagged(), load_shared_function_info_matcher, 696 IsIntPtrConstant(LiteralsArray::kFeedbackVectorOffset -
698 IsIntPtrConstant(SharedFunctionInfo::kFeedbackVectorOffset - 697 kHeapObjectTag)));
699 kHeapObjectTag)));
700 } 698 }
701 } 699 }
702 700
703 } // namespace compiler 701 } // namespace compiler
704 } // namespace internal 702 } // namespace internal
705 } // namespace v8 703 } // namespace v8
OLDNEW
« no previous file with comments | « test/mjsunit/mjsunit.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698