OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_NODE_PROPERTIES_H_ | 5 #ifndef V8_COMPILER_NODE_PROPERTIES_H_ |
6 #define V8_COMPILER_NODE_PROPERTIES_H_ | 6 #define V8_COMPILER_NODE_PROPERTIES_H_ |
7 | 7 |
8 #include "src/compiler/node.h" | 8 #include "src/compiler/node.h" |
9 #include "src/types.h" | 9 #include "src/compiler/types.h" |
10 | 10 |
11 namespace v8 { | 11 namespace v8 { |
12 namespace internal { | 12 namespace internal { |
13 namespace compiler { | 13 namespace compiler { |
14 | 14 |
15 class Graph; | 15 class Graph; |
16 class Operator; | 16 class Operator; |
17 class CommonOperatorBuilder; | 17 class CommonOperatorBuilder; |
18 | 18 |
19 // A facade that simplifies access to the different kinds of inputs to a node. | 19 // A facade that simplifies access to the different kinds of inputs to a node. |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 | 161 |
162 private: | 162 private: |
163 static inline bool IsInputRange(Edge edge, int first, int count); | 163 static inline bool IsInputRange(Edge edge, int first, int count); |
164 }; | 164 }; |
165 | 165 |
166 } // namespace compiler | 166 } // namespace compiler |
167 } // namespace internal | 167 } // namespace internal |
168 } // namespace v8 | 168 } // namespace v8 |
169 | 169 |
170 #endif // V8_COMPILER_NODE_PROPERTIES_H_ | 170 #endif // V8_COMPILER_NODE_PROPERTIES_H_ |
OLD | NEW |