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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 V(Float64RoundTruncate) \ | 319 V(Float64RoundTruncate) \ |
320 V(Float64RoundTiesAway) \ | 320 V(Float64RoundTiesAway) \ |
321 V(Float32RoundTiesEven) \ | 321 V(Float32RoundTiesEven) \ |
322 V(Float64RoundTiesEven) \ | 322 V(Float64RoundTiesEven) \ |
323 V(Float64ExtractLowWord32) \ | 323 V(Float64ExtractLowWord32) \ |
324 V(Float64ExtractHighWord32) \ | 324 V(Float64ExtractHighWord32) \ |
325 V(Float64InsertLowWord32) \ | 325 V(Float64InsertLowWord32) \ |
326 V(Float64InsertHighWord32) \ | 326 V(Float64InsertHighWord32) \ |
327 V(LoadStackPointer) \ | 327 V(LoadStackPointer) \ |
328 V(LoadFramePointer) \ | 328 V(LoadFramePointer) \ |
| 329 V(LoadParentFramePointer) \ |
329 V(CheckedLoad) \ | 330 V(CheckedLoad) \ |
330 V(CheckedStore) | 331 V(CheckedStore) |
331 | 332 |
332 #define VALUE_OP_LIST(V) \ | 333 #define VALUE_OP_LIST(V) \ |
333 COMMON_OP_LIST(V) \ | 334 COMMON_OP_LIST(V) \ |
334 SIMPLIFIED_OP_LIST(V) \ | 335 SIMPLIFIED_OP_LIST(V) \ |
335 MACHINE_OP_LIST(V) \ | 336 MACHINE_OP_LIST(V) \ |
336 JS_OP_LIST(V) | 337 JS_OP_LIST(V) |
337 | 338 |
338 // The combination of all operators at all levels and the common operators. | 339 // The combination of all operators at all levels and the common operators. |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 } | 407 } |
407 }; | 408 }; |
408 | 409 |
409 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 410 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
410 | 411 |
411 } // namespace compiler | 412 } // namespace compiler |
412 } // namespace internal | 413 } // namespace internal |
413 } // namespace v8 | 414 } // namespace v8 |
414 | 415 |
415 #endif // V8_COMPILER_OPCODES_H_ | 416 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |