| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 V(StringLessThanOrEqual) \ | 150 V(StringLessThanOrEqual) \ |
| 151 V(StringAdd) \ | 151 V(StringAdd) \ |
| 152 V(ChangeTaggedToInt32) \ | 152 V(ChangeTaggedToInt32) \ |
| 153 V(ChangeTaggedToUint32) \ | 153 V(ChangeTaggedToUint32) \ |
| 154 V(ChangeTaggedToFloat64) \ | 154 V(ChangeTaggedToFloat64) \ |
| 155 V(ChangeInt32ToTagged) \ | 155 V(ChangeInt32ToTagged) \ |
| 156 V(ChangeUint32ToTagged) \ | 156 V(ChangeUint32ToTagged) \ |
| 157 V(ChangeFloat64ToTagged) \ | 157 V(ChangeFloat64ToTagged) \ |
| 158 V(ChangeBoolToBit) \ | 158 V(ChangeBoolToBit) \ |
| 159 V(ChangeBitToBool) \ | 159 V(ChangeBitToBool) \ |
| 160 V(ObjectIsSmi) \ |
| 161 V(ObjectIsNonNegativeSmi) \ |
| 160 V(LoadField) \ | 162 V(LoadField) \ |
| 161 V(LoadElement) \ | 163 V(LoadElement) \ |
| 162 V(StoreField) \ | 164 V(StoreField) \ |
| 163 V(StoreElement) \ | 165 V(StoreElement) \ |
| 164 V(ObjectIsSmi) \ | 166 V(LoadBuffer) \ |
| 165 V(ObjectIsNonNegativeSmi) | 167 V(StoreBuffer) \ |
| 168 V(BoundsCheck) |
| 166 | 169 |
| 167 // Opcodes for Machine-level operators. | 170 // Opcodes for Machine-level operators. |
| 168 #define MACHINE_OP_LIST(V) \ | 171 #define MACHINE_OP_LIST(V) \ |
| 169 V(Load) \ | 172 V(Load) \ |
| 170 V(Store) \ | 173 V(Store) \ |
| 171 V(Word32And) \ | 174 V(Word32And) \ |
| 172 V(Word32Or) \ | 175 V(Word32Or) \ |
| 173 V(Word32Xor) \ | 176 V(Word32Xor) \ |
| 174 V(Word32Shl) \ | 177 V(Word32Shl) \ |
| 175 V(Word32Shr) \ | 178 V(Word32Shr) \ |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 return false; | 332 return false; |
| 330 } | 333 } |
| 331 } | 334 } |
| 332 }; | 335 }; |
| 333 | 336 |
| 334 } // namespace compiler | 337 } // namespace compiler |
| 335 } // namespace internal | 338 } // namespace internal |
| 336 } // namespace v8 | 339 } // namespace v8 |
| 337 | 340 |
| 338 #endif // V8_COMPILER_OPCODES_H_ | 341 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |