| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef V8_UNITTESTS_COMPILER_INTERPRETER_ASSEMBLER_UNITTEST_H_ | |
| 6 #define V8_UNITTESTS_COMPILER_INTERPRETER_ASSEMBLER_UNITTEST_H_ | |
| 7 | |
| 8 #include "src/compiler/interpreter-assembler.h" | |
| 9 #include "src/compiler/linkage.h" | |
| 10 #include "src/compiler/machine-operator.h" | |
| 11 #include "test/unittests/test-utils.h" | |
| 12 #include "testing/gmock-support.h" | |
| 13 | |
| 14 namespace v8 { | |
| 15 namespace internal { | |
| 16 namespace compiler { | |
| 17 | |
| 18 using ::testing::Matcher; | |
| 19 | |
| 20 class InterpreterAssemblerTest : public TestWithIsolateAndZone { | |
| 21 public: | |
| 22 InterpreterAssemblerTest() {} | |
| 23 ~InterpreterAssemblerTest() override {} | |
| 24 | |
| 25 class InterpreterAssemblerForTest final : public InterpreterAssembler { | |
| 26 public: | |
| 27 InterpreterAssemblerForTest(InterpreterAssemblerTest* test, | |
| 28 interpreter::Bytecode bytecode) | |
| 29 : InterpreterAssembler(test->isolate(), test->zone(), bytecode) {} | |
| 30 ~InterpreterAssemblerForTest() override {} | |
| 31 | |
| 32 Matcher<Node*> IsLoad(const Matcher<LoadRepresentation>& rep_matcher, | |
| 33 const Matcher<Node*>& base_matcher, | |
| 34 const Matcher<Node*>& index_matcher); | |
| 35 Matcher<Node*> IsStore(const Matcher<StoreRepresentation>& rep_matcher, | |
| 36 const Matcher<Node*>& base_matcher, | |
| 37 const Matcher<Node*>& index_matcher, | |
| 38 const Matcher<Node*>& value_matcher); | |
| 39 | |
| 40 Matcher<Node*> IsBytecodeOperand(int offset); | |
| 41 Matcher<Node*> IsBytecodeOperandSignExtended(int offset); | |
| 42 Matcher<Node*> IsBytecodeOperandShort(int offset); | |
| 43 Matcher<Node*> IsBytecodeOperandShortSignExtended(int offset); | |
| 44 | |
| 45 using InterpreterAssembler::call_descriptor; | |
| 46 using InterpreterAssembler::graph; | |
| 47 | |
| 48 private: | |
| 49 DISALLOW_COPY_AND_ASSIGN(InterpreterAssemblerForTest); | |
| 50 }; | |
| 51 }; | |
| 52 | |
| 53 } // namespace compiler | |
| 54 } // namespace internal | |
| 55 } // namespace v8 | |
| 56 | |
| 57 #endif // V8_UNITTESTS_COMPILER_INTERPRETER_ASSEMBLER_UNITTEST_H_ | |
| OLD | NEW |