| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 V(ArchTailCallJSFunctionFromJSFunction) \ | 49 V(ArchTailCallJSFunctionFromJSFunction) \ |
| 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(ArchThrowTerminator) \ | 60 V(ArchThrowTerminator) \ |
| 60 V(ArchDeoptimize) \ | 61 V(ArchDeoptimize) \ |
| 61 V(ArchRet) \ | 62 V(ArchRet) \ |
| 62 V(ArchStackPointer) \ | 63 V(ArchStackPointer) \ |
| 63 V(ArchFramePointer) \ | 64 V(ArchFramePointer) \ |
| 64 V(ArchParentFramePointer) \ | 65 V(ArchParentFramePointer) \ |
| 65 V(ArchTruncateDoubleToI) \ | 66 V(ArchTruncateDoubleToI) \ |
| 66 V(ArchStoreWithWriteBarrier) \ | 67 V(ArchStoreWithWriteBarrier) \ |
| 67 V(CheckedLoadInt8) \ | 68 V(CheckedLoadInt8) \ |
| 68 V(CheckedLoadUint8) \ | 69 V(CheckedLoadUint8) \ |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 typedef BitField<AddressingMode, 8, 5> AddressingModeField; | 181 typedef BitField<AddressingMode, 8, 5> AddressingModeField; |
| 181 typedef BitField<FlagsMode, 13, 2> FlagsModeField; | 182 typedef BitField<FlagsMode, 13, 2> FlagsModeField; |
| 182 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField; | 183 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField; |
| 183 typedef BitField<int, 20, 12> MiscField; | 184 typedef BitField<int, 20, 12> MiscField; |
| 184 | 185 |
| 185 } // namespace compiler | 186 } // namespace compiler |
| 186 } // namespace internal | 187 } // namespace internal |
| 187 } // namespace v8 | 188 } // namespace v8 |
| 188 | 189 |
| 189 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ | 190 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ |
| OLD | NEW |