| 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/compiler/frame-states.h" | 9 #include "src/compiler/frame-states.h" |
| 10 #include "src/machine-type.h" | 10 #include "src/machine-type.h" |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 | 179 |
| 180 const Operator* RelocatableInt32Constant(int32_t value, | 180 const Operator* RelocatableInt32Constant(int32_t value, |
| 181 RelocInfo::Mode rmode); | 181 RelocInfo::Mode rmode); |
| 182 const Operator* RelocatableInt64Constant(int64_t value, | 182 const Operator* RelocatableInt64Constant(int64_t value, |
| 183 RelocInfo::Mode rmode); | 183 RelocInfo::Mode rmode); |
| 184 | 184 |
| 185 const Operator* Select(MachineRepresentation, BranchHint = BranchHint::kNone); | 185 const Operator* Select(MachineRepresentation, BranchHint = BranchHint::kNone); |
| 186 const Operator* Phi(MachineRepresentation representation, | 186 const Operator* Phi(MachineRepresentation representation, |
| 187 int value_input_count); | 187 int value_input_count); |
| 188 const Operator* EffectPhi(int effect_input_count); | 188 const Operator* EffectPhi(int effect_input_count); |
| 189 const Operator* CheckPoint(); | 189 const Operator* Checkpoint(); |
| 190 const Operator* BeginRegion(); | 190 const Operator* BeginRegion(); |
| 191 const Operator* FinishRegion(); | 191 const Operator* FinishRegion(); |
| 192 const Operator* StateValues(int arguments); | 192 const Operator* StateValues(int arguments); |
| 193 const Operator* ObjectState(int pointer_slots, int id); | 193 const Operator* ObjectState(int pointer_slots, int id); |
| 194 const Operator* TypedStateValues(const ZoneVector<MachineType>* types); | 194 const Operator* TypedStateValues(const ZoneVector<MachineType>* types); |
| 195 const Operator* FrameState(BailoutId bailout_id, | 195 const Operator* FrameState(BailoutId bailout_id, |
| 196 OutputFrameStateCombine state_combine, | 196 OutputFrameStateCombine state_combine, |
| 197 const FrameStateFunctionInfo* function_info); | 197 const FrameStateFunctionInfo* function_info); |
| 198 const Operator* Call(const CallDescriptor* descriptor); | 198 const Operator* Call(const CallDescriptor* descriptor); |
| 199 const Operator* TailCall(const CallDescriptor* descriptor); | 199 const Operator* TailCall(const CallDescriptor* descriptor); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 215 Zone* const zone_; | 215 Zone* const zone_; |
| 216 | 216 |
| 217 DISALLOW_COPY_AND_ASSIGN(CommonOperatorBuilder); | 217 DISALLOW_COPY_AND_ASSIGN(CommonOperatorBuilder); |
| 218 }; | 218 }; |
| 219 | 219 |
| 220 } // namespace compiler | 220 } // namespace compiler |
| 221 } // namespace internal | 221 } // namespace internal |
| 222 } // namespace v8 | 222 } // namespace v8 |
| 223 | 223 |
| 224 #endif // V8_COMPILER_COMMON_OPERATOR_H_ | 224 #endif // V8_COMPILER_COMMON_OPERATOR_H_ |
| OLD | NEW |