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

Side by Side Diff: src/compiler/graph-unittest.h

Issue 549063002: [turbofan] Fix Projection operator parameter type. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix2 Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « src/compiler/common-operator.h ('k') | src/compiler/graph-unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_COMPILER_GRAPH_UNITTEST_H_ 5 #ifndef V8_COMPILER_GRAPH_UNITTEST_H_
6 #define V8_COMPILER_GRAPH_UNITTEST_H_ 6 #define V8_COMPILER_GRAPH_UNITTEST_H_
7 7
8 #include "src/compiler/common-operator.h" 8 #include "src/compiler/common-operator.h"
9 #include "src/compiler/graph.h" 9 #include "src/compiler/graph.h"
10 #include "src/compiler/machine-operator.h" 10 #include "src/compiler/machine-operator.h"
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 Matcher<Node*> IsHeapConstant( 66 Matcher<Node*> IsHeapConstant(
67 const Matcher<Unique<HeapObject> >& value_matcher); 67 const Matcher<Unique<HeapObject> >& value_matcher);
68 Matcher<Node*> IsFloat64Constant(const Matcher<double>& value_matcher); 68 Matcher<Node*> IsFloat64Constant(const Matcher<double>& value_matcher);
69 Matcher<Node*> IsInt32Constant(const Matcher<int32_t>& value_matcher); 69 Matcher<Node*> IsInt32Constant(const Matcher<int32_t>& value_matcher);
70 Matcher<Node*> IsInt64Constant(const Matcher<int64_t>& value_matcher); 70 Matcher<Node*> IsInt64Constant(const Matcher<int64_t>& value_matcher);
71 Matcher<Node*> IsNumberConstant(const Matcher<double>& value_matcher); 71 Matcher<Node*> IsNumberConstant(const Matcher<double>& value_matcher);
72 Matcher<Node*> IsPhi(const Matcher<MachineType>& type_matcher, 72 Matcher<Node*> IsPhi(const Matcher<MachineType>& type_matcher,
73 const Matcher<Node*>& value0_matcher, 73 const Matcher<Node*>& value0_matcher,
74 const Matcher<Node*>& value1_matcher, 74 const Matcher<Node*>& value1_matcher,
75 const Matcher<Node*>& merge_matcher); 75 const Matcher<Node*>& merge_matcher);
76 Matcher<Node*> IsProjection(const Matcher<int32_t>& index_matcher, 76 Matcher<Node*> IsProjection(const Matcher<size_t>& index_matcher,
77 const Matcher<Node*>& base_matcher); 77 const Matcher<Node*>& base_matcher);
78 Matcher<Node*> IsCall(const Matcher<CallDescriptor*>& descriptor_matcher, 78 Matcher<Node*> IsCall(const Matcher<CallDescriptor*>& descriptor_matcher,
79 const Matcher<Node*>& value0_matcher, 79 const Matcher<Node*>& value0_matcher,
80 const Matcher<Node*>& value1_matcher, 80 const Matcher<Node*>& value1_matcher,
81 const Matcher<Node*>& value2_matcher, 81 const Matcher<Node*>& value2_matcher,
82 const Matcher<Node*>& value3_matcher, 82 const Matcher<Node*>& value3_matcher,
83 const Matcher<Node*>& effect_matcher, 83 const Matcher<Node*>& effect_matcher,
84 const Matcher<Node*>& control_matcher); 84 const Matcher<Node*>& control_matcher);
85 85
86 Matcher<Node*> IsLoad(const Matcher<MachineType>& type_matcher, 86 Matcher<Node*> IsLoad(const Matcher<MachineType>& type_matcher,
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 Matcher<Node*> IsChangeUint32ToFloat64(const Matcher<Node*>& input_matcher); 123 Matcher<Node*> IsChangeUint32ToFloat64(const Matcher<Node*>& input_matcher);
124 Matcher<Node*> IsChangeUint32ToUint64(const Matcher<Node*>& input_matcher); 124 Matcher<Node*> IsChangeUint32ToUint64(const Matcher<Node*>& input_matcher);
125 Matcher<Node*> IsTruncateFloat64ToInt32(const Matcher<Node*>& input_matcher); 125 Matcher<Node*> IsTruncateFloat64ToInt32(const Matcher<Node*>& input_matcher);
126 Matcher<Node*> IsTruncateInt64ToInt32(const Matcher<Node*>& input_matcher); 126 Matcher<Node*> IsTruncateInt64ToInt32(const Matcher<Node*>& input_matcher);
127 127
128 } // namespace compiler 128 } // namespace compiler
129 } // namespace internal 129 } // namespace internal
130 } // namespace v8 130 } // namespace v8
131 131
132 #endif // V8_COMPILER_GRAPH_UNITTEST_H_ 132 #endif // V8_COMPILER_GRAPH_UNITTEST_H_
OLDNEW
« no previous file with comments | « src/compiler/common-operator.h ('k') | src/compiler/graph-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698