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 #ifndef V8_UNITTESTS_INTERPRETER_INTERPRETER_ASSEMBLER_UNITTEST_H_ | 5 #ifndef V8_UNITTESTS_INTERPRETER_INTERPRETER_ASSEMBLER_UNITTEST_H_ |
6 #define V8_UNITTESTS_INTERPRETER_INTERPRETER_ASSEMBLER_UNITTEST_H_ | 6 #define V8_UNITTESTS_INTERPRETER_INTERPRETER_ASSEMBLER_UNITTEST_H_ |
7 | 7 |
8 #include "src/compiler/machine-operator.h" | 8 #include "src/compiler/machine-operator.h" |
9 #include "src/interpreter/interpreter-assembler.h" | 9 #include "src/interpreter/interpreter-assembler.h" |
10 #include "test/unittests/test-utils.h" | 10 #include "test/unittests/test-utils.h" |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 Matcher<compiler::Node*> IsUnsignedShortOperand(int offset); | 45 Matcher<compiler::Node*> IsUnsignedShortOperand(int offset); |
46 Matcher<compiler::Node*> IsSignedShortOperand(int offset); | 46 Matcher<compiler::Node*> IsSignedShortOperand(int offset); |
47 Matcher<compiler::Node*> IsUnsignedQuadOperand(int offset); | 47 Matcher<compiler::Node*> IsUnsignedQuadOperand(int offset); |
48 Matcher<compiler::Node*> IsSignedQuadOperand(int offset); | 48 Matcher<compiler::Node*> IsSignedQuadOperand(int offset); |
49 | 49 |
50 Matcher<compiler::Node*> IsSignedOperand(int offset, | 50 Matcher<compiler::Node*> IsSignedOperand(int offset, |
51 OperandSize operand_size); | 51 OperandSize operand_size); |
52 Matcher<compiler::Node*> IsUnsignedOperand(int offset, | 52 Matcher<compiler::Node*> IsUnsignedOperand(int offset, |
53 OperandSize operand_size); | 53 OperandSize operand_size); |
54 | 54 |
55 using InterpreterAssembler::graph; | |
56 | |
57 private: | 55 private: |
58 DISALLOW_COPY_AND_ASSIGN(InterpreterAssemblerForTest); | 56 DISALLOW_COPY_AND_ASSIGN(InterpreterAssemblerForTest); |
59 }; | 57 }; |
60 }; | 58 }; |
61 | 59 |
62 } // namespace interpreter | 60 } // namespace interpreter |
63 } // namespace internal | 61 } // namespace internal |
64 } // namespace v8 | 62 } // namespace v8 |
65 | 63 |
66 #endif // V8_UNITTESTS_INTERPRETER_INTERPRETER_ASSEMBLER_UNITTEST_H_ | 64 #endif // V8_UNITTESTS_INTERPRETER_INTERPRETER_ASSEMBLER_UNITTEST_H_ |
OLD | NEW |