| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(ArgumentsElementsState) \ | 62 V(ArgumentsElementsState) \ |
| 63 V(ArgumentsLengthState) \ |
| 63 V(ObjectState) \ | 64 V(ObjectState) \ |
| 64 V(TypedObjectState) \ | 65 V(TypedObjectState) \ |
| 65 V(Call) \ | 66 V(Call) \ |
| 66 V(Parameter) \ | 67 V(Parameter) \ |
| 67 V(OsrValue) \ | 68 V(OsrValue) \ |
| 68 V(OsrGuard) \ | 69 V(OsrGuard) \ |
| 69 V(LoopExit) \ | 70 V(LoopExit) \ |
| 70 V(LoopExitValue) \ | 71 V(LoopExitValue) \ |
| 71 V(LoopExitEffect) \ | 72 V(LoopExitEffect) \ |
| 72 V(Projection) \ | 73 V(Projection) \ |
| (...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 } | 790 } |
| 790 }; | 791 }; |
| 791 | 792 |
| 792 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 793 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 793 | 794 |
| 794 } // namespace compiler | 795 } // namespace compiler |
| 795 } // namespace internal | 796 } // namespace internal |
| 796 } // namespace v8 | 797 } // namespace v8 |
| 797 | 798 |
| 798 #endif // V8_COMPILER_OPCODES_H_ | 799 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |