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 24 matching lines...) Expand all Loading... |
35 | 35 |
36 // Target-specific opcodes that specify which assembly sequence to emit. | 36 // Target-specific opcodes that specify which assembly sequence to emit. |
37 // Most opcodes specify a single instruction. | 37 // Most opcodes specify a single instruction. |
38 #define ARCH_OPCODE_LIST(V) \ | 38 #define ARCH_OPCODE_LIST(V) \ |
39 V(ArchCallCodeObject) \ | 39 V(ArchCallCodeObject) \ |
40 V(ArchTailCallCodeObject) \ | 40 V(ArchTailCallCodeObject) \ |
41 V(ArchCallJSFunction) \ | 41 V(ArchCallJSFunction) \ |
42 V(ArchTailCallJSFunction) \ | 42 V(ArchTailCallJSFunction) \ |
43 V(ArchPrepareCallCFunction) \ | 43 V(ArchPrepareCallCFunction) \ |
44 V(ArchCallCFunction) \ | 44 V(ArchCallCFunction) \ |
| 45 V(ArchLazyBailout) \ |
45 V(ArchJmp) \ | 46 V(ArchJmp) \ |
46 V(ArchLookupSwitch) \ | 47 V(ArchLookupSwitch) \ |
47 V(ArchTableSwitch) \ | 48 V(ArchTableSwitch) \ |
48 V(ArchNop) \ | 49 V(ArchNop) \ |
49 V(ArchDeoptimize) \ | 50 V(ArchDeoptimize) \ |
50 V(ArchRet) \ | 51 V(ArchRet) \ |
51 V(ArchStackPointer) \ | 52 V(ArchStackPointer) \ |
52 V(ArchFramePointer) \ | 53 V(ArchFramePointer) \ |
53 V(ArchTruncateDoubleToI) \ | 54 V(ArchTruncateDoubleToI) \ |
54 V(CheckedLoadInt8) \ | 55 V(CheckedLoadInt8) \ |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 typedef BitField<AddressingMode, 8, 5> AddressingModeField; | 151 typedef BitField<AddressingMode, 8, 5> AddressingModeField; |
151 typedef BitField<FlagsMode, 13, 2> FlagsModeField; | 152 typedef BitField<FlagsMode, 13, 2> FlagsModeField; |
152 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField; | 153 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField; |
153 typedef BitField<int, 20, 12> MiscField; | 154 typedef BitField<int, 20, 12> MiscField; |
154 | 155 |
155 } // namespace compiler | 156 } // namespace compiler |
156 } // namespace internal | 157 } // namespace internal |
157 } // namespace v8 | 158 } // namespace v8 |
158 | 159 |
159 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ | 160 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ |
OLD | NEW |