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 #include "src/globals.h" | 10 #include "src/globals.h" |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 V(FrameState) \ | 59 V(FrameState) \ |
60 V(StateValues) \ | 60 V(StateValues) \ |
61 V(TypedStateValues) \ | 61 V(TypedStateValues) \ |
62 V(ArgumentsElementsState) \ | 62 V(ArgumentsElementsState) \ |
63 V(ArgumentsLengthState) \ | 63 V(ArgumentsLengthState) \ |
64 V(ObjectState) \ | 64 V(ObjectState) \ |
65 V(TypedObjectState) \ | 65 V(TypedObjectState) \ |
66 V(Call) \ | 66 V(Call) \ |
67 V(Parameter) \ | 67 V(Parameter) \ |
68 V(OsrValue) \ | 68 V(OsrValue) \ |
69 V(OsrGuard) \ | |
70 V(LoopExit) \ | 69 V(LoopExit) \ |
71 V(LoopExitValue) \ | 70 V(LoopExitValue) \ |
72 V(LoopExitEffect) \ | 71 V(LoopExitEffect) \ |
73 V(Projection) \ | 72 V(Projection) \ |
74 V(Retain) \ | 73 V(Retain) \ |
75 V(TypeGuard) | 74 V(TypeGuard) |
76 | 75 |
77 #define COMMON_OP_LIST(V) \ | 76 #define COMMON_OP_LIST(V) \ |
78 CONSTANT_OP_LIST(V) \ | 77 CONSTANT_OP_LIST(V) \ |
79 INNER_OP_LIST(V) \ | 78 INNER_OP_LIST(V) \ |
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
831 } | 830 } |
832 }; | 831 }; |
833 | 832 |
834 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 833 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
835 | 834 |
836 } // namespace compiler | 835 } // namespace compiler |
837 } // namespace internal | 836 } // namespace internal |
838 } // namespace v8 | 837 } // namespace v8 |
839 | 838 |
840 #endif // V8_COMPILER_OPCODES_H_ | 839 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |