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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
338 V(Float64RoundTiesEven) \ | 338 V(Float64RoundTiesEven) \ |
339 V(Float64ExtractLowWord32) \ | 339 V(Float64ExtractLowWord32) \ |
340 V(Float64ExtractHighWord32) \ | 340 V(Float64ExtractHighWord32) \ |
341 V(Float64InsertLowWord32) \ | 341 V(Float64InsertLowWord32) \ |
342 V(Float64InsertHighWord32) \ | 342 V(Float64InsertHighWord32) \ |
343 V(LoadStackPointer) \ | 343 V(LoadStackPointer) \ |
344 V(LoadFramePointer) \ | 344 V(LoadFramePointer) \ |
345 V(LoadParentFramePointer) \ | 345 V(LoadParentFramePointer) \ |
346 V(CheckedLoad) \ | 346 V(CheckedLoad) \ |
347 V(CheckedStore) \ | 347 V(CheckedStore) \ |
| 348 V(UnalignedLoad) \ |
| 349 V(UnalignedStore) \ |
348 V(Int32PairAdd) \ | 350 V(Int32PairAdd) \ |
349 V(Int32PairSub) \ | 351 V(Int32PairSub) \ |
350 V(Int32PairMul) \ | 352 V(Int32PairMul) \ |
351 V(Word32PairShl) \ | 353 V(Word32PairShl) \ |
352 V(Word32PairShr) \ | 354 V(Word32PairShr) \ |
353 V(Word32PairSar) | 355 V(Word32PairSar) |
354 | 356 |
355 #define VALUE_OP_LIST(V) \ | 357 #define VALUE_OP_LIST(V) \ |
356 COMMON_OP_LIST(V) \ | 358 COMMON_OP_LIST(V) \ |
357 SIMPLIFIED_OP_LIST(V) \ | 359 SIMPLIFIED_OP_LIST(V) \ |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
429 } | 431 } |
430 }; | 432 }; |
431 | 433 |
432 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 434 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
433 | 435 |
434 } // namespace compiler | 436 } // namespace compiler |
435 } // namespace internal | 437 } // namespace internal |
436 } // namespace v8 | 438 } // namespace v8 |
437 | 439 |
438 #endif // V8_COMPILER_OPCODES_H_ | 440 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |