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

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

Issue 1518673002: Remove dummy control / effect edges from RMA Call nodes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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
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 18 matching lines...) Expand all
29 : InterpreterAssembler(test->isolate(), test->zone(), bytecode) {} 29 : InterpreterAssembler(test->isolate(), test->zone(), bytecode) {}
30 ~InterpreterAssemblerForTest() override {} 30 ~InterpreterAssemblerForTest() override {}
31 31
32 Matcher<Node*> IsLoad(const Matcher<LoadRepresentation>& rep_matcher, 32 Matcher<Node*> IsLoad(const Matcher<LoadRepresentation>& rep_matcher,
33 const Matcher<Node*>& base_matcher, 33 const Matcher<Node*>& base_matcher,
34 const Matcher<Node*>& index_matcher); 34 const Matcher<Node*>& index_matcher);
35 Matcher<Node*> IsStore(const Matcher<StoreRepresentation>& rep_matcher, 35 Matcher<Node*> IsStore(const Matcher<StoreRepresentation>& rep_matcher,
36 const Matcher<Node*>& base_matcher, 36 const Matcher<Node*>& base_matcher,
37 const Matcher<Node*>& index_matcher, 37 const Matcher<Node*>& index_matcher,
38 const Matcher<Node*>& value_matcher); 38 const Matcher<Node*>& value_matcher);
39 template <class... A>
40 Matcher<Node*> IsCall(
41 const Matcher<const CallDescriptor*>& descriptor_matcher,
42 A... args);
43 39
44 Matcher<Node*> IsBytecodeOperand(int offset); 40 Matcher<Node*> IsBytecodeOperand(int offset);
45 Matcher<Node*> IsBytecodeOperandSignExtended(int offset); 41 Matcher<Node*> IsBytecodeOperandSignExtended(int offset);
46 Matcher<Node*> IsBytecodeOperandShort(int offset); 42 Matcher<Node*> IsBytecodeOperandShort(int offset);
47 43
48 using InterpreterAssembler::call_descriptor; 44 using InterpreterAssembler::call_descriptor;
49 using InterpreterAssembler::graph; 45 using InterpreterAssembler::graph;
50 46
51 private: 47 private:
52 DISALLOW_COPY_AND_ASSIGN(InterpreterAssemblerForTest); 48 DISALLOW_COPY_AND_ASSIGN(InterpreterAssemblerForTest);
53 }; 49 };
54 }; 50 };
55 51
56 } // namespace compiler 52 } // namespace compiler
57 } // namespace internal 53 } // namespace internal
58 } // namespace v8 54 } // namespace v8
59 55
60 #endif // V8_UNITTESTS_COMPILER_INTERPRETER_ASSEMBLER_UNITTEST_H_ 56 #endif // V8_UNITTESTS_COMPILER_INTERPRETER_ASSEMBLER_UNITTEST_H_
OLDNEW
« no previous file with comments | « src/compiler/raw-machine-assembler.cc ('k') | test/unittests/compiler/interpreter-assembler-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698