| OLD | NEW |
| 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_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/assembler.h" | 8 #include "src/assembler.h" |
| 9 #include "src/base/compiler-specific.h" | 9 #include "src/base/compiler-specific.h" |
| 10 #include "src/compiler/frame-states.h" | 10 #include "src/compiler/frame-states.h" |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 const Operator* OsrLoopEntry(); | 217 const Operator* OsrLoopEntry(); |
| 218 const Operator* OsrValue(int index); | 218 const Operator* OsrValue(int index); |
| 219 const Operator* OsrGuard(OsrGuardType type); | 219 const Operator* OsrGuard(OsrGuardType type); |
| 220 | 220 |
| 221 const Operator* Int32Constant(int32_t); | 221 const Operator* Int32Constant(int32_t); |
| 222 const Operator* Int64Constant(int64_t); | 222 const Operator* Int64Constant(int64_t); |
| 223 const Operator* Float32Constant(volatile float); | 223 const Operator* Float32Constant(volatile float); |
| 224 const Operator* Float64Constant(volatile double); | 224 const Operator* Float64Constant(volatile double); |
| 225 const Operator* ExternalConstant(const ExternalReference&); | 225 const Operator* ExternalConstant(const ExternalReference&); |
| 226 const Operator* NumberConstant(volatile double); | 226 const Operator* NumberConstant(volatile double); |
| 227 const Operator* PointerConstant(intptr_t); |
| 227 const Operator* HeapConstant(const Handle<HeapObject>&); | 228 const Operator* HeapConstant(const Handle<HeapObject>&); |
| 228 | 229 |
| 229 const Operator* RelocatableInt32Constant(int32_t value, | 230 const Operator* RelocatableInt32Constant(int32_t value, |
| 230 RelocInfo::Mode rmode); | 231 RelocInfo::Mode rmode); |
| 231 const Operator* RelocatableInt64Constant(int64_t value, | 232 const Operator* RelocatableInt64Constant(int64_t value, |
| 232 RelocInfo::Mode rmode); | 233 RelocInfo::Mode rmode); |
| 233 | 234 |
| 234 const Operator* Select(MachineRepresentation, BranchHint = BranchHint::kNone); | 235 const Operator* Select(MachineRepresentation, BranchHint = BranchHint::kNone); |
| 235 const Operator* Phi(MachineRepresentation representation, | 236 const Operator* Phi(MachineRepresentation representation, |
| 236 int value_input_count); | 237 int value_input_count); |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 Zone* const zone_; | 272 Zone* const zone_; |
| 272 | 273 |
| 273 DISALLOW_COPY_AND_ASSIGN(CommonOperatorBuilder); | 274 DISALLOW_COPY_AND_ASSIGN(CommonOperatorBuilder); |
| 274 }; | 275 }; |
| 275 | 276 |
| 276 } // namespace compiler | 277 } // namespace compiler |
| 277 } // namespace internal | 278 } // namespace internal |
| 278 } // namespace v8 | 279 } // namespace v8 |
| 279 | 280 |
| 280 #endif // V8_COMPILER_COMMON_OPERATOR_H_ | 281 #endif // V8_COMPILER_COMMON_OPERATOR_H_ |
| OLD | NEW |