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 30 matching lines...) Expand all Loading... |
41 | 41 |
42 // Target-specific opcodes that specify which assembly sequence to emit. | 42 // Target-specific opcodes that specify which assembly sequence to emit. |
43 // Most opcodes specify a single instruction. | 43 // Most opcodes specify a single instruction. |
44 #define COMMON_ARCH_OPCODE_LIST(V) \ | 44 #define COMMON_ARCH_OPCODE_LIST(V) \ |
45 V(ArchCallCodeObject) \ | 45 V(ArchCallCodeObject) \ |
46 V(ArchTailCallCodeObjectFromJSFunction) \ | 46 V(ArchTailCallCodeObjectFromJSFunction) \ |
47 V(ArchTailCallCodeObject) \ | 47 V(ArchTailCallCodeObject) \ |
48 V(ArchCallJSFunction) \ | 48 V(ArchCallJSFunction) \ |
49 V(ArchTailCallJSFunctionFromJSFunction) \ | 49 V(ArchTailCallJSFunctionFromJSFunction) \ |
50 V(ArchTailCallJSFunction) \ | 50 V(ArchTailCallJSFunction) \ |
| 51 V(ArchTailCallAddress) \ |
51 V(ArchPrepareCallCFunction) \ | 52 V(ArchPrepareCallCFunction) \ |
52 V(ArchCallCFunction) \ | 53 V(ArchCallCFunction) \ |
53 V(ArchPrepareTailCall) \ | 54 V(ArchPrepareTailCall) \ |
54 V(ArchJmp) \ | 55 V(ArchJmp) \ |
55 V(ArchLookupSwitch) \ | 56 V(ArchLookupSwitch) \ |
56 V(ArchTableSwitch) \ | 57 V(ArchTableSwitch) \ |
57 V(ArchNop) \ | 58 V(ArchNop) \ |
58 V(ArchThrowTerminator) \ | 59 V(ArchThrowTerminator) \ |
59 V(ArchDeoptimize) \ | 60 V(ArchDeoptimize) \ |
60 V(ArchRet) \ | 61 V(ArchRet) \ |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 typedef BitField<AddressingMode, 8, 5> AddressingModeField; | 172 typedef BitField<AddressingMode, 8, 5> AddressingModeField; |
172 typedef BitField<FlagsMode, 13, 2> FlagsModeField; | 173 typedef BitField<FlagsMode, 13, 2> FlagsModeField; |
173 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField; | 174 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField; |
174 typedef BitField<int, 20, 12> MiscField; | 175 typedef BitField<int, 20, 12> MiscField; |
175 | 176 |
176 } // namespace compiler | 177 } // namespace compiler |
177 } // namespace internal | 178 } // namespace internal |
178 } // namespace v8 | 179 } // namespace v8 |
179 | 180 |
180 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ | 181 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ |
OLD | NEW |