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