| 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 CONTROL_OP_LIST(V) \ | 9 #define CONTROL_OP_LIST(V) \ |
| 10 V(Start) \ | 10 V(Start) \ |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 SIMPLIFIED_COMPARE_BINOP_LIST(V) \ | 156 SIMPLIFIED_COMPARE_BINOP_LIST(V) \ |
| 157 V(BooleanNot) \ | 157 V(BooleanNot) \ |
| 158 V(BooleanToNumber) \ | 158 V(BooleanToNumber) \ |
| 159 V(NumberAdd) \ | 159 V(NumberAdd) \ |
| 160 V(NumberSubtract) \ | 160 V(NumberSubtract) \ |
| 161 V(NumberMultiply) \ | 161 V(NumberMultiply) \ |
| 162 V(NumberDivide) \ | 162 V(NumberDivide) \ |
| 163 V(NumberModulus) \ | 163 V(NumberModulus) \ |
| 164 V(NumberToInt32) \ | 164 V(NumberToInt32) \ |
| 165 V(NumberToUint32) \ | 165 V(NumberToUint32) \ |
| 166 V(PlainPrimitiveToNumber) \ | |
| 167 V(StringAdd) \ | 166 V(StringAdd) \ |
| 168 V(ChangeTaggedToInt32) \ | 167 V(ChangeTaggedToInt32) \ |
| 169 V(ChangeTaggedToUint32) \ | 168 V(ChangeTaggedToUint32) \ |
| 170 V(ChangeTaggedToFloat64) \ | 169 V(ChangeTaggedToFloat64) \ |
| 171 V(ChangeInt32ToTagged) \ | 170 V(ChangeInt32ToTagged) \ |
| 172 V(ChangeUint32ToTagged) \ | 171 V(ChangeUint32ToTagged) \ |
| 173 V(ChangeFloat64ToTagged) \ | 172 V(ChangeFloat64ToTagged) \ |
| 174 V(ChangeBoolToBit) \ | 173 V(ChangeBoolToBit) \ |
| 175 V(ChangeBitToBool) \ | 174 V(ChangeBitToBool) \ |
| 176 V(Allocate) \ | 175 V(Allocate) \ |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || | 345 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || |
| 347 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); | 346 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); |
| 348 } | 347 } |
| 349 }; | 348 }; |
| 350 | 349 |
| 351 } // namespace compiler | 350 } // namespace compiler |
| 352 } // namespace internal | 351 } // namespace internal |
| 353 } // namespace v8 | 352 } // namespace v8 |
| 354 | 353 |
| 355 #endif // V8_COMPILER_OPCODES_H_ | 354 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |