Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(608)

Side by Side Diff: test/unittests/interpreter/interpreter-assembler-unittest.h

Issue 2246463002: [compiler] Remove compiler internals from CodeAssembler. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/cctest/compiler/test-code-assembler.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « test/cctest/compiler/test-code-assembler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698