OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_INSTRUCTION_CODES_H_ | 5 #ifndef V8_COMPILER_INSTRUCTION_CODES_H_ |
6 #define V8_COMPILER_INSTRUCTION_CODES_H_ | 6 #define V8_COMPILER_INSTRUCTION_CODES_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 | 9 |
10 #if V8_TARGET_ARCH_ARM | 10 #if V8_TARGET_ARCH_ARM |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 V(ArchTailCallJSFunction) \ | 50 V(ArchTailCallJSFunction) \ |
51 V(ArchTailCallAddress) \ | 51 V(ArchTailCallAddress) \ |
52 V(ArchPrepareCallCFunction) \ | 52 V(ArchPrepareCallCFunction) \ |
53 V(ArchCallCFunction) \ | 53 V(ArchCallCFunction) \ |
54 V(ArchPrepareTailCall) \ | 54 V(ArchPrepareTailCall) \ |
55 V(ArchJmp) \ | 55 V(ArchJmp) \ |
56 V(ArchLookupSwitch) \ | 56 V(ArchLookupSwitch) \ |
57 V(ArchTableSwitch) \ | 57 V(ArchTableSwitch) \ |
58 V(ArchNop) \ | 58 V(ArchNop) \ |
59 V(ArchDebugBreak) \ | 59 V(ArchDebugBreak) \ |
60 V(ArchImpossible) \ | |
61 V(ArchComment) \ | 60 V(ArchComment) \ |
62 V(ArchThrowTerminator) \ | 61 V(ArchThrowTerminator) \ |
63 V(ArchDeoptimize) \ | 62 V(ArchDeoptimize) \ |
64 V(ArchRet) \ | 63 V(ArchRet) \ |
65 V(ArchStackPointer) \ | 64 V(ArchStackPointer) \ |
66 V(ArchFramePointer) \ | 65 V(ArchFramePointer) \ |
67 V(ArchParentFramePointer) \ | 66 V(ArchParentFramePointer) \ |
68 V(ArchTruncateDoubleToI) \ | 67 V(ArchTruncateDoubleToI) \ |
69 V(ArchStoreWithWriteBarrier) \ | 68 V(ArchStoreWithWriteBarrier) \ |
70 V(CheckedLoadInt8) \ | 69 V(CheckedLoadInt8) \ |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 typedef BitField<AddressingMode, 8, 5> AddressingModeField; | 205 typedef BitField<AddressingMode, 8, 5> AddressingModeField; |
207 typedef BitField<FlagsMode, 13, 2> FlagsModeField; | 206 typedef BitField<FlagsMode, 13, 2> FlagsModeField; |
208 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField; | 207 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField; |
209 typedef BitField<int, 20, 12> MiscField; | 208 typedef BitField<int, 20, 12> MiscField; |
210 | 209 |
211 } // namespace compiler | 210 } // namespace compiler |
212 } // namespace internal | 211 } // namespace internal |
213 } // namespace v8 | 212 } // namespace v8 |
214 | 213 |
215 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ | 214 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ |
OLD | NEW |