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_COMPILER_INTERPRETER_ASSEMBLER_UNITTEST_H_ | 5 #ifndef V8_UNITTESTS_COMPILER_INTERPRETER_ASSEMBLER_UNITTEST_H_ |
6 #define V8_UNITTESTS_COMPILER_INTERPRETER_ASSEMBLER_UNITTEST_H_ | 6 #define V8_UNITTESTS_COMPILER_INTERPRETER_ASSEMBLER_UNITTEST_H_ |
7 | 7 |
8 #include "src/compiler/interpreter-assembler.h" | 8 #include "src/compiler/interpreter-assembler.h" |
9 #include "src/compiler/linkage.h" | 9 #include "src/compiler/linkage.h" |
10 #include "src/compiler/machine-operator.h" | 10 #include "src/compiler/machine-operator.h" |
(...skipping 20 matching lines...) Expand all Loading... |
31 | 31 |
32 Graph* GetCompletedGraph(); | 32 Graph* GetCompletedGraph(); |
33 | 33 |
34 Matcher<Node*> IsLoad(const Matcher<LoadRepresentation>& rep_matcher, | 34 Matcher<Node*> IsLoad(const Matcher<LoadRepresentation>& rep_matcher, |
35 const Matcher<Node*>& base_matcher, | 35 const Matcher<Node*>& base_matcher, |
36 const Matcher<Node*>& index_matcher); | 36 const Matcher<Node*>& index_matcher); |
37 Matcher<Node*> IsStore(const Matcher<StoreRepresentation>& rep_matcher, | 37 Matcher<Node*> IsStore(const Matcher<StoreRepresentation>& rep_matcher, |
38 const Matcher<Node*>& base_matcher, | 38 const Matcher<Node*>& base_matcher, |
39 const Matcher<Node*>& index_matcher, | 39 const Matcher<Node*>& index_matcher, |
40 const Matcher<Node*>& value_matcher); | 40 const Matcher<Node*>& value_matcher); |
| 41 Matcher<Node*> IsBytecodeOperand(int operand); |
| 42 Matcher<Node*> IsBytecodeOperandSignExtended(int operand); |
41 | 43 |
42 using InterpreterAssembler::call_descriptor; | 44 using InterpreterAssembler::call_descriptor; |
43 using InterpreterAssembler::graph; | 45 using InterpreterAssembler::graph; |
44 | 46 |
45 private: | 47 private: |
46 DISALLOW_COPY_AND_ASSIGN(InterpreterAssemblerForTest); | 48 DISALLOW_COPY_AND_ASSIGN(InterpreterAssemblerForTest); |
47 }; | 49 }; |
48 }; | 50 }; |
49 | 51 |
50 } // namespace compiler | 52 } // namespace compiler |
51 } // namespace internal | 53 } // namespace internal |
52 } // namespace v8 | 54 } // namespace v8 |
53 | 55 |
54 #endif // V8_UNITTESTS_COMPILER_INTERPRETER_ASSEMBLER_UNITTEST_H_ | 56 #endif // V8_UNITTESTS_COMPILER_INTERPRETER_ASSEMBLER_UNITTEST_H_ |
OLD | NEW |