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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
50 V(Checkpoint) \ | 50 V(Checkpoint) \ |
51 V(BeginRegion) \ | 51 V(BeginRegion) \ |
52 V(FinishRegion) \ | 52 V(FinishRegion) \ |
53 V(FrameState) \ | 53 V(FrameState) \ |
54 V(StateValues) \ | 54 V(StateValues) \ |
55 V(TypedStateValues) \ | 55 V(TypedStateValues) \ |
56 V(ObjectState) \ | 56 V(ObjectState) \ |
57 V(Call) \ | 57 V(Call) \ |
58 V(Parameter) \ | 58 V(Parameter) \ |
59 V(OsrValue) \ | 59 V(OsrValue) \ |
60 V(LoopExit) \ | |
Michael Starzinger
2016/07/14 13:09:40
suggestion: Technically this is a control node, we
| |
61 V(LoopExitValue) \ | |
62 V(LoopExitEffect) \ | |
60 V(Projection) | 63 V(Projection) |
61 | 64 |
62 #define COMMON_OP_LIST(V) \ | 65 #define COMMON_OP_LIST(V) \ |
63 CONSTANT_OP_LIST(V) \ | 66 CONSTANT_OP_LIST(V) \ |
64 INNER_OP_LIST(V) \ | 67 INNER_OP_LIST(V) \ |
65 V(Dead) | 68 V(Dead) |
66 | 69 |
67 // Opcodes for JavaScript operators. | 70 // Opcodes for JavaScript operators. |
68 #define JS_COMPARE_BINOP_LIST(V) \ | 71 #define JS_COMPARE_BINOP_LIST(V) \ |
69 V(JSEqual) \ | 72 V(JSEqual) \ |
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
715 } | 718 } |
716 }; | 719 }; |
717 | 720 |
718 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 721 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
719 | 722 |
720 } // namespace compiler | 723 } // namespace compiler |
721 } // namespace internal | 724 } // namespace internal |
722 } // namespace v8 | 725 } // namespace v8 |
723 | 726 |
724 #endif // V8_COMPILER_OPCODES_H_ | 727 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |