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 #include "test/unittests/interpreter/interpreter-assembler-unittest.h" | 5 #include "test/unittests/interpreter/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 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
711 | 711 |
712 TARGET_TEST_F(InterpreterAssemblerTest, LoadTypeFeedbackVector) { | 712 TARGET_TEST_F(InterpreterAssemblerTest, LoadTypeFeedbackVector) { |
713 TRACED_FOREACH(interpreter::Bytecode, bytecode, kBytecodes) { | 713 TRACED_FOREACH(interpreter::Bytecode, bytecode, kBytecodes) { |
714 InterpreterAssemblerForTest m(this, bytecode); | 714 InterpreterAssemblerForTest m(this, bytecode); |
715 Node* feedback_vector = m.LoadTypeFeedbackVector(); | 715 Node* feedback_vector = m.LoadTypeFeedbackVector(); |
716 | 716 |
717 Matcher<Node*> load_function_matcher = | 717 Matcher<Node*> load_function_matcher = |
718 m.IsLoad(MachineType::AnyTagged(), IsLoadParentFramePointer(), | 718 m.IsLoad(MachineType::AnyTagged(), IsLoadParentFramePointer(), |
719 IsIntPtrConstant(Register::function_closure().ToOperand() | 719 IsIntPtrConstant(Register::function_closure().ToOperand() |
720 << kPointerSizeLog2)); | 720 << kPointerSizeLog2)); |
721 Matcher<Node*> load_shared_function_info_matcher = | 721 Matcher<Node*> load_literals_matcher = m.IsLoad( |
722 m.IsLoad(MachineType::AnyTagged(), load_function_matcher, | 722 MachineType::AnyTagged(), load_function_matcher, |
723 IsIntPtrConstant(JSFunction::kSharedFunctionInfoOffset - | 723 IsIntPtrConstant(JSFunction::kLiteralsOffset - kHeapObjectTag)); |
724 kHeapObjectTag)); | |
725 | 724 |
726 EXPECT_THAT( | 725 EXPECT_THAT(feedback_vector, |
727 feedback_vector, | 726 m.IsLoad(MachineType::AnyTagged(), load_literals_matcher, |
728 m.IsLoad(MachineType::AnyTagged(), load_shared_function_info_matcher, | 727 IsIntPtrConstant(LiteralsArray::kFeedbackVectorOffset - |
729 IsIntPtrConstant(SharedFunctionInfo::kFeedbackVectorOffset - | 728 kHeapObjectTag))); |
730 kHeapObjectTag))); | |
731 } | 729 } |
732 } | 730 } |
733 | 731 |
734 } // namespace interpreter | 732 } // namespace interpreter |
735 } // namespace internal | 733 } // namespace internal |
736 } // namespace v8 | 734 } // namespace v8 |
OLD | NEW |