| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 V(ChangeTaggedToUint32) \ | 151 V(ChangeTaggedToUint32) \ |
| 152 V(ChangeTaggedToFloat64) \ | 152 V(ChangeTaggedToFloat64) \ |
| 153 V(ChangeInt32ToTagged) \ | 153 V(ChangeInt32ToTagged) \ |
| 154 V(ChangeUint32ToTagged) \ | 154 V(ChangeUint32ToTagged) \ |
| 155 V(ChangeFloat64ToTagged) \ | 155 V(ChangeFloat64ToTagged) \ |
| 156 V(ChangeBoolToBit) \ | 156 V(ChangeBoolToBit) \ |
| 157 V(ChangeBitToBool) \ | 157 V(ChangeBitToBool) \ |
| 158 V(LoadField) \ | 158 V(LoadField) \ |
| 159 V(LoadElement) \ | 159 V(LoadElement) \ |
| 160 V(StoreField) \ | 160 V(StoreField) \ |
| 161 V(StoreElement) | 161 V(StoreElement) \ |
| 162 V(ObjectIsSmi) \ |
| 163 V(ObjectIsNonNegativeSmi) |
| 162 | 164 |
| 163 // Opcodes for Machine-level operators. | 165 // Opcodes for Machine-level operators. |
| 164 #define MACHINE_OP_LIST(V) \ | 166 #define MACHINE_OP_LIST(V) \ |
| 165 V(Load) \ | 167 V(Load) \ |
| 166 V(Store) \ | 168 V(Store) \ |
| 167 V(Word32And) \ | 169 V(Word32And) \ |
| 168 V(Word32Or) \ | 170 V(Word32Or) \ |
| 169 V(Word32Xor) \ | 171 V(Word32Xor) \ |
| 170 V(Word32Shl) \ | 172 V(Word32Shl) \ |
| 171 V(Word32Shr) \ | 173 V(Word32Shr) \ |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 return false; | 317 return false; |
| 316 } | 318 } |
| 317 } | 319 } |
| 318 }; | 320 }; |
| 319 | 321 |
| 320 } // namespace compiler | 322 } // namespace compiler |
| 321 } // namespace internal | 323 } // namespace internal |
| 322 } // namespace v8 | 324 } // namespace v8 |
| 323 | 325 |
| 324 #endif // V8_COMPILER_OPCODES_H_ | 326 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |