| 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_OPCODES_H_ | 5 #ifndef V8_COMPILER_OPCODES_H_ |
| 6 #define V8_COMPILER_OPCODES_H_ | 6 #define V8_COMPILER_OPCODES_H_ |
| 7 | 7 |
| 8 // Opcodes for control operators. | 8 // Opcodes for control operators. |
| 9 #define INNER_CONTROL_OP_LIST(V) \ | 9 #define INNER_CONTROL_OP_LIST(V) \ |
| 10 V(Dead) \ | 10 V(Dead) \ |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 V(NumberEqual) \ | 141 V(NumberEqual) \ |
| 142 V(NumberLessThan) \ | 142 V(NumberLessThan) \ |
| 143 V(NumberLessThanOrEqual) \ | 143 V(NumberLessThanOrEqual) \ |
| 144 V(NumberAdd) \ | 144 V(NumberAdd) \ |
| 145 V(NumberSubtract) \ | 145 V(NumberSubtract) \ |
| 146 V(NumberMultiply) \ | 146 V(NumberMultiply) \ |
| 147 V(NumberDivide) \ | 147 V(NumberDivide) \ |
| 148 V(NumberModulus) \ | 148 V(NumberModulus) \ |
| 149 V(NumberToInt32) \ | 149 V(NumberToInt32) \ |
| 150 V(NumberToUint32) \ | 150 V(NumberToUint32) \ |
| 151 V(PlainPrimitiveToNumber) \ |
| 151 V(ReferenceEqual) \ | 152 V(ReferenceEqual) \ |
| 152 V(StringEqual) \ | 153 V(StringEqual) \ |
| 153 V(StringLessThan) \ | 154 V(StringLessThan) \ |
| 154 V(StringLessThanOrEqual) \ | 155 V(StringLessThanOrEqual) \ |
| 155 V(StringAdd) \ | 156 V(StringAdd) \ |
| 156 V(ChangeTaggedToInt32) \ | 157 V(ChangeTaggedToInt32) \ |
| 157 V(ChangeTaggedToUint32) \ | 158 V(ChangeTaggedToUint32) \ |
| 158 V(ChangeTaggedToFloat64) \ | 159 V(ChangeTaggedToFloat64) \ |
| 159 V(ChangeInt32ToTagged) \ | 160 V(ChangeInt32ToTagged) \ |
| 160 V(ChangeUint32ToTagged) \ | 161 V(ChangeUint32ToTagged) \ |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 return false; | 329 return false; |
| 329 } | 330 } |
| 330 } | 331 } |
| 331 }; | 332 }; |
| 332 | 333 |
| 333 } // namespace compiler | 334 } // namespace compiler |
| 334 } // namespace internal | 335 } // namespace internal |
| 335 } // namespace v8 | 336 } // namespace v8 |
| 336 | 337 |
| 337 #endif // V8_COMPILER_OPCODES_H_ | 338 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |