| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 V(Select) \ | 52 V(Select) \ |
| 53 V(Phi) \ | 53 V(Phi) \ |
| 54 V(EffectPhi) \ | 54 V(EffectPhi) \ |
| 55 V(InductionVariablePhi) \ | 55 V(InductionVariablePhi) \ |
| 56 V(Checkpoint) \ | 56 V(Checkpoint) \ |
| 57 V(BeginRegion) \ | 57 V(BeginRegion) \ |
| 58 V(FinishRegion) \ | 58 V(FinishRegion) \ |
| 59 V(FrameState) \ | 59 V(FrameState) \ |
| 60 V(StateValues) \ | 60 V(StateValues) \ |
| 61 V(TypedStateValues) \ | 61 V(TypedStateValues) \ |
| 62 V(ArgumentsObjectState) \ |
| 62 V(ObjectState) \ | 63 V(ObjectState) \ |
| 63 V(TypedObjectState) \ | 64 V(TypedObjectState) \ |
| 64 V(Call) \ | 65 V(Call) \ |
| 65 V(Parameter) \ | 66 V(Parameter) \ |
| 66 V(OsrValue) \ | 67 V(OsrValue) \ |
| 67 V(OsrGuard) \ | 68 V(OsrGuard) \ |
| 68 V(LoopExit) \ | 69 V(LoopExit) \ |
| 69 V(LoopExitValue) \ | 70 V(LoopExitValue) \ |
| 70 V(LoopExitEffect) \ | 71 V(LoopExitEffect) \ |
| 71 V(Projection) \ | 72 V(Projection) \ |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 V(JSStoreContext) \ | 154 V(JSStoreContext) \ |
| 154 V(JSCreateFunctionContext) \ | 155 V(JSCreateFunctionContext) \ |
| 155 V(JSCreateCatchContext) \ | 156 V(JSCreateCatchContext) \ |
| 156 V(JSCreateWithContext) \ | 157 V(JSCreateWithContext) \ |
| 157 V(JSCreateBlockContext) \ | 158 V(JSCreateBlockContext) \ |
| 158 V(JSCreateScriptContext) | 159 V(JSCreateScriptContext) |
| 159 | 160 |
| 160 #define JS_OTHER_OP_LIST(V) \ | 161 #define JS_OTHER_OP_LIST(V) \ |
| 161 V(JSCallConstruct) \ | 162 V(JSCallConstruct) \ |
| 162 V(JSCallConstructWithSpread) \ | 163 V(JSCallConstructWithSpread) \ |
| 164 V(JSCallForwardVarargs) \ |
| 163 V(JSCallFunction) \ | 165 V(JSCallFunction) \ |
| 164 V(JSCallFunctionWithSpread) \ | 166 V(JSCallFunctionWithSpread) \ |
| 165 V(JSCallRuntime) \ | 167 V(JSCallRuntime) \ |
| 166 V(JSConvertReceiver) \ | 168 V(JSConvertReceiver) \ |
| 167 V(JSForInNext) \ | 169 V(JSForInNext) \ |
| 168 V(JSForInPrepare) \ | 170 V(JSForInPrepare) \ |
| 169 V(JSLoadMessage) \ | 171 V(JSLoadMessage) \ |
| 170 V(JSStoreMessage) \ | 172 V(JSStoreMessage) \ |
| 171 V(JSLoadModule) \ | 173 V(JSLoadModule) \ |
| 172 V(JSStoreModule) \ | 174 V(JSStoreModule) \ |
| (...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 } | 812 } |
| 811 }; | 813 }; |
| 812 | 814 |
| 813 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 815 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 814 | 816 |
| 815 } // namespace compiler | 817 } // namespace compiler |
| 816 } // namespace internal | 818 } // namespace internal |
| 817 } // namespace v8 | 819 } // namespace v8 |
| 818 | 820 |
| 819 #endif // V8_COMPILER_OPCODES_H_ | 821 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |