| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 V(PlainPrimitiveToNumber) \ | 165 V(PlainPrimitiveToNumber) \ |
| 166 V(StringAdd) \ | 166 V(StringAdd) \ |
| 167 V(ChangeTaggedToInt32) \ | 167 V(ChangeTaggedToInt32) \ |
| 168 V(ChangeTaggedToUint32) \ | 168 V(ChangeTaggedToUint32) \ |
| 169 V(ChangeTaggedToFloat64) \ | 169 V(ChangeTaggedToFloat64) \ |
| 170 V(ChangeInt32ToTagged) \ | 170 V(ChangeInt32ToTagged) \ |
| 171 V(ChangeUint32ToTagged) \ | 171 V(ChangeUint32ToTagged) \ |
| 172 V(ChangeFloat64ToTagged) \ | 172 V(ChangeFloat64ToTagged) \ |
| 173 V(ChangeBoolToBit) \ | 173 V(ChangeBoolToBit) \ |
| 174 V(ChangeBitToBool) \ | 174 V(ChangeBitToBool) \ |
| 175 V(Allocate) \ |
| 175 V(LoadField) \ | 176 V(LoadField) \ |
| 176 V(LoadBuffer) \ | 177 V(LoadBuffer) \ |
| 177 V(LoadElement) \ | 178 V(LoadElement) \ |
| 178 V(StoreField) \ | 179 V(StoreField) \ |
| 179 V(StoreBuffer) \ | 180 V(StoreBuffer) \ |
| 180 V(StoreElement) \ | 181 V(StoreElement) \ |
| 181 V(ObjectIsSmi) \ | 182 V(ObjectIsSmi) \ |
| 182 V(ObjectIsNonNegativeSmi) | 183 V(ObjectIsNonNegativeSmi) |
| 183 | 184 |
| 184 // Opcodes for Machine-level operators. | 185 // Opcodes for Machine-level operators. |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || | 345 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || |
| 345 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); | 346 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); |
| 346 } | 347 } |
| 347 }; | 348 }; |
| 348 | 349 |
| 349 } // namespace compiler | 350 } // namespace compiler |
| 350 } // namespace internal | 351 } // namespace internal |
| 351 } // namespace v8 | 352 } // namespace v8 |
| 352 | 353 |
| 353 #endif // V8_COMPILER_OPCODES_H_ | 354 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |