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 #include <iosfwd> | 8 #include <iosfwd> |
9 | 9 |
10 // Opcodes for control operators. | 10 // Opcodes for control operators. |
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 V(Float64ExtractHighWord32) \ | 331 V(Float64ExtractHighWord32) \ |
332 V(Float64InsertLowWord32) \ | 332 V(Float64InsertLowWord32) \ |
333 V(Float64InsertHighWord32) \ | 333 V(Float64InsertHighWord32) \ |
334 V(LoadStackPointer) \ | 334 V(LoadStackPointer) \ |
335 V(LoadFramePointer) \ | 335 V(LoadFramePointer) \ |
336 V(LoadParentFramePointer) \ | 336 V(LoadParentFramePointer) \ |
337 V(CheckedLoad) \ | 337 V(CheckedLoad) \ |
338 V(CheckedStore) \ | 338 V(CheckedStore) \ |
339 V(Int32PairAdd) \ | 339 V(Int32PairAdd) \ |
340 V(Int32PairSub) \ | 340 V(Int32PairSub) \ |
| 341 V(Int32PairMul) \ |
341 V(Word32PairShl) \ | 342 V(Word32PairShl) \ |
342 V(Word32PairShr) \ | 343 V(Word32PairShr) \ |
343 V(Word32PairSar) | 344 V(Word32PairSar) |
344 | 345 |
345 #define VALUE_OP_LIST(V) \ | 346 #define VALUE_OP_LIST(V) \ |
346 COMMON_OP_LIST(V) \ | 347 COMMON_OP_LIST(V) \ |
347 SIMPLIFIED_OP_LIST(V) \ | 348 SIMPLIFIED_OP_LIST(V) \ |
348 MACHINE_OP_LIST(V) \ | 349 MACHINE_OP_LIST(V) \ |
349 JS_OP_LIST(V) | 350 JS_OP_LIST(V) |
350 | 351 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 } | 420 } |
420 }; | 421 }; |
421 | 422 |
422 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 423 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
423 | 424 |
424 } // namespace compiler | 425 } // namespace compiler |
425 } // namespace internal | 426 } // namespace internal |
426 } // namespace v8 | 427 } // namespace v8 |
427 | 428 |
428 #endif // V8_COMPILER_OPCODES_H_ | 429 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |