| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 V(Phi) \ | 50 V(Phi) \ |
| 51 V(EffectPhi) \ | 51 V(EffectPhi) \ |
| 52 V(InductionVariablePhi) \ | 52 V(InductionVariablePhi) \ |
| 53 V(Checkpoint) \ | 53 V(Checkpoint) \ |
| 54 V(BeginRegion) \ | 54 V(BeginRegion) \ |
| 55 V(FinishRegion) \ | 55 V(FinishRegion) \ |
| 56 V(FrameState) \ | 56 V(FrameState) \ |
| 57 V(StateValues) \ | 57 V(StateValues) \ |
| 58 V(TypedStateValues) \ | 58 V(TypedStateValues) \ |
| 59 V(ObjectState) \ | 59 V(ObjectState) \ |
| 60 V(TypedObjectState) \ |
| 60 V(Call) \ | 61 V(Call) \ |
| 61 V(Parameter) \ | 62 V(Parameter) \ |
| 62 V(OsrValue) \ | 63 V(OsrValue) \ |
| 63 V(OsrGuard) \ | 64 V(OsrGuard) \ |
| 64 V(LoopExit) \ | 65 V(LoopExit) \ |
| 65 V(LoopExitValue) \ | 66 V(LoopExitValue) \ |
| 66 V(LoopExitEffect) \ | 67 V(LoopExitEffect) \ |
| 67 V(Projection) \ | 68 V(Projection) \ |
| 68 V(Retain) \ | 69 V(Retain) \ |
| 69 V(TypeGuard) | 70 V(TypeGuard) |
| (...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 } | 789 } |
| 789 }; | 790 }; |
| 790 | 791 |
| 791 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 792 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 792 | 793 |
| 793 } // namespace compiler | 794 } // namespace compiler |
| 794 } // namespace internal | 795 } // namespace internal |
| 795 } // namespace v8 | 796 } // namespace v8 |
| 796 | 797 |
| 797 #endif // V8_COMPILER_OPCODES_H_ | 798 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |