| 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/compiler/frame-states.h" | 8 #include "src/compiler/frame-states.h" |
| 9 #include "src/compiler/machine-type.h" | 9 #include "src/compiler/machine-type.h" |
| 10 #include "src/unique.h" | 10 #include "src/unique.h" |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 const Operator* IfSuccess(); | 117 const Operator* IfSuccess(); |
| 118 const Operator* IfException(IfExceptionHint hint); | 118 const Operator* IfException(IfExceptionHint hint); |
| 119 const Operator* Switch(size_t control_output_count); | 119 const Operator* Switch(size_t control_output_count); |
| 120 const Operator* IfValue(int32_t value); | 120 const Operator* IfValue(int32_t value); |
| 121 const Operator* IfDefault(); | 121 const Operator* IfDefault(); |
| 122 const Operator* Throw(); | 122 const Operator* Throw(); |
| 123 const Operator* Deoptimize(); | 123 const Operator* Deoptimize(); |
| 124 const Operator* Return(); | 124 const Operator* Return(); |
| 125 const Operator* Terminate(); | 125 const Operator* Terminate(); |
| 126 | 126 |
| 127 const Operator* Start(int num_formal_parameters); | 127 const Operator* Start(int value_output_count); |
| 128 const Operator* Loop(int control_input_count); | 128 const Operator* Loop(int control_input_count); |
| 129 const Operator* Merge(int control_input_count); | 129 const Operator* Merge(int control_input_count); |
| 130 const Operator* Parameter(int index, const char* debug_name = nullptr); | 130 const Operator* Parameter(int index, const char* debug_name = nullptr); |
| 131 | 131 |
| 132 const Operator* OsrNormalEntry(); | 132 const Operator* OsrNormalEntry(); |
| 133 const Operator* OsrLoopEntry(); | 133 const Operator* OsrLoopEntry(); |
| 134 const Operator* OsrValue(int index); | 134 const Operator* OsrValue(int index); |
| 135 | 135 |
| 136 const Operator* Int32Constant(int32_t); | 136 const Operator* Int32Constant(int32_t); |
| 137 const Operator* Int64Constant(int64_t); | 137 const Operator* Int64Constant(int64_t); |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 Zone* const zone_; | 172 Zone* const zone_; |
| 173 | 173 |
| 174 DISALLOW_COPY_AND_ASSIGN(CommonOperatorBuilder); | 174 DISALLOW_COPY_AND_ASSIGN(CommonOperatorBuilder); |
| 175 }; | 175 }; |
| 176 | 176 |
| 177 } // namespace compiler | 177 } // namespace compiler |
| 178 } // namespace internal | 178 } // namespace internal |
| 179 } // namespace v8 | 179 } // namespace v8 |
| 180 | 180 |
| 181 #endif // V8_COMPILER_COMMON_OPERATOR_H_ | 181 #endif // V8_COMPILER_COMMON_OPERATOR_H_ |
| OLD | NEW |