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

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

Issue 1673333004: [Interpreter] Make InterpreterAssembler a subclass of CodeStubAssembler. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address review comments. Created 4 years, 10 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
OLDNEW
(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_
OLDNEW
« no previous file with comments | « src/x87/interface-descriptors-x87.cc ('k') | test/unittests/compiler/interpreter-assembler-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698