| 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 template <class... A> |
| 42 Matcher<Node*> IsCall(const Matcher<CallDescriptor*>& descriptor_matcher, |
| 43 A... args); |
| 44 |
| 41 Matcher<Node*> IsBytecodeOperand(int operand); | 45 Matcher<Node*> IsBytecodeOperand(int operand); |
| 42 Matcher<Node*> IsBytecodeOperandSignExtended(int operand); | 46 Matcher<Node*> IsBytecodeOperandSignExtended(int operand); |
| 43 | 47 |
| 44 using InterpreterAssembler::call_descriptor; | 48 using InterpreterAssembler::call_descriptor; |
| 45 using InterpreterAssembler::graph; | 49 using InterpreterAssembler::graph; |
| 46 | 50 |
| 47 private: | 51 private: |
| 48 DISALLOW_COPY_AND_ASSIGN(InterpreterAssemblerForTest); | 52 DISALLOW_COPY_AND_ASSIGN(InterpreterAssemblerForTest); |
| 49 }; | 53 }; |
| 50 }; | 54 }; |
| 51 | 55 |
| 52 } // namespace compiler | 56 } // namespace compiler |
| 53 } // namespace internal | 57 } // namespace internal |
| 54 } // namespace v8 | 58 } // namespace v8 |
| 55 | 59 |
| 56 #endif // V8_UNITTESTS_COMPILER_INTERPRETER_ASSEMBLER_UNITTEST_H_ | 60 #endif // V8_UNITTESTS_COMPILER_INTERPRETER_ASSEMBLER_UNITTEST_H_ |
| OLD | NEW |