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_COMMON_OPERATOR_H_ | 5 #ifndef V8_COMPILER_COMMON_OPERATOR_H_ |
6 #define V8_COMPILER_COMMON_OPERATOR_H_ | 6 #define V8_COMPILER_COMMON_OPERATOR_H_ |
7 | 7 |
8 #include "src/compiler/machine-type.h" | 8 #include "src/compiler/machine-type.h" |
9 #include "src/unique.h" | 9 #include "src/unique.h" |
10 | 10 |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 const Operator* IfFalse(); | 166 const Operator* IfFalse(); |
167 const Operator* Throw(); | 167 const Operator* Throw(); |
168 const Operator* Terminate(int effects); | 168 const Operator* Terminate(int effects); |
169 const Operator* Return(); | 169 const Operator* Return(); |
170 | 170 |
171 const Operator* Start(int num_formal_parameters); | 171 const Operator* Start(int num_formal_parameters); |
172 const Operator* Loop(int control_input_count); | 172 const Operator* Loop(int control_input_count); |
173 const Operator* Merge(int control_input_count); | 173 const Operator* Merge(int control_input_count); |
174 const Operator* Parameter(int index); | 174 const Operator* Parameter(int index); |
175 | 175 |
| 176 const Operator* OsrNormalEntry(); |
| 177 const Operator* OsrLoopEntry(); |
| 178 const Operator* OsrValue(int index); |
| 179 |
176 const Operator* Int32Constant(int32_t); | 180 const Operator* Int32Constant(int32_t); |
177 const Operator* Int64Constant(int64_t); | 181 const Operator* Int64Constant(int64_t); |
178 const Operator* Float32Constant(volatile float); | 182 const Operator* Float32Constant(volatile float); |
179 const Operator* Float64Constant(volatile double); | 183 const Operator* Float64Constant(volatile double); |
180 const Operator* ExternalConstant(const ExternalReference&); | 184 const Operator* ExternalConstant(const ExternalReference&); |
181 const Operator* NumberConstant(volatile double); | 185 const Operator* NumberConstant(volatile double); |
182 const Operator* HeapConstant(const Unique<HeapObject>&); | 186 const Operator* HeapConstant(const Unique<HeapObject>&); |
183 | 187 |
184 const Operator* Select(MachineType, BranchHint = BranchHint::kNone); | 188 const Operator* Select(MachineType, BranchHint = BranchHint::kNone); |
185 const Operator* Phi(MachineType type, int arguments); | 189 const Operator* Phi(MachineType type, int arguments); |
(...skipping 15 matching lines...) Expand all Loading... |
201 Zone* const zone_; | 205 Zone* const zone_; |
202 | 206 |
203 DISALLOW_COPY_AND_ASSIGN(CommonOperatorBuilder); | 207 DISALLOW_COPY_AND_ASSIGN(CommonOperatorBuilder); |
204 }; | 208 }; |
205 | 209 |
206 } // namespace compiler | 210 } // namespace compiler |
207 } // namespace internal | 211 } // namespace internal |
208 } // namespace v8 | 212 } // namespace v8 |
209 | 213 |
210 #endif // V8_COMPILER_COMMON_OPERATOR_H_ | 214 #endif // V8_COMPILER_COMMON_OPERATOR_H_ |
OLD | NEW |