| 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 MACHINE_COMPARE_BINOP_LIST(V) \ | 201 MACHINE_COMPARE_BINOP_LIST(V) \ |
| 202 V(Load) \ | 202 V(Load) \ |
| 203 V(Store) \ | 203 V(Store) \ |
| 204 V(Word32And) \ | 204 V(Word32And) \ |
| 205 V(Word32Or) \ | 205 V(Word32Or) \ |
| 206 V(Word32Xor) \ | 206 V(Word32Xor) \ |
| 207 V(Word32Shl) \ | 207 V(Word32Shl) \ |
| 208 V(Word32Shr) \ | 208 V(Word32Shr) \ |
| 209 V(Word32Sar) \ | 209 V(Word32Sar) \ |
| 210 V(Word32Ror) \ | 210 V(Word32Ror) \ |
| 211 V(Word32Clz) \ |
| 211 V(Word64And) \ | 212 V(Word64And) \ |
| 212 V(Word64Or) \ | 213 V(Word64Or) \ |
| 213 V(Word64Xor) \ | 214 V(Word64Xor) \ |
| 214 V(Word64Shl) \ | 215 V(Word64Shl) \ |
| 215 V(Word64Shr) \ | 216 V(Word64Shr) \ |
| 216 V(Word64Sar) \ | 217 V(Word64Sar) \ |
| 217 V(Word64Ror) \ | 218 V(Word64Ror) \ |
| 218 V(Int32Add) \ | 219 V(Int32Add) \ |
| 219 V(Int32AddWithOverflow) \ | 220 V(Int32AddWithOverflow) \ |
| 220 V(Int32Sub) \ | 221 V(Int32Sub) \ |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || | 333 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || |
| 333 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); | 334 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); |
| 334 } | 335 } |
| 335 }; | 336 }; |
| 336 | 337 |
| 337 } // namespace compiler | 338 } // namespace compiler |
| 338 } // namespace internal | 339 } // namespace internal |
| 339 } // namespace v8 | 340 } // namespace v8 |
| 340 | 341 |
| 341 #endif // V8_COMPILER_OPCODES_H_ | 342 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |