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 | 42 |
43 // Target-specific opcodes that specify which assembly sequence to emit. | 43 // Target-specific opcodes that specify which assembly sequence to emit. |
44 // Most opcodes specify a single instruction. | 44 // Most opcodes specify a single instruction. |
45 #define COMMON_ARCH_OPCODE_LIST(V) \ | 45 #define COMMON_ARCH_OPCODE_LIST(V) \ |
46 V(ArchCallCodeObject) \ | 46 V(ArchCallCodeObject) \ |
47 V(ArchTailCallCodeObjectFromJSFunction) \ | 47 V(ArchTailCallCodeObjectFromJSFunction) \ |
48 V(ArchTailCallCodeObject) \ | 48 V(ArchTailCallCodeObject) \ |
49 V(ArchCallJSFunction) \ | 49 V(ArchCallJSFunction) \ |
50 V(ArchTailCallJSFunctionFromJSFunction) \ | 50 V(ArchTailCallJSFunctionFromJSFunction) \ |
51 V(ArchTailCallJSFunction) \ | |
52 V(ArchTailCallAddress) \ | 51 V(ArchTailCallAddress) \ |
53 V(ArchPrepareCallCFunction) \ | 52 V(ArchPrepareCallCFunction) \ |
54 V(ArchCallCFunction) \ | 53 V(ArchCallCFunction) \ |
55 V(ArchPrepareTailCall) \ | 54 V(ArchPrepareTailCall) \ |
56 V(ArchJmp) \ | 55 V(ArchJmp) \ |
57 V(ArchLookupSwitch) \ | 56 V(ArchLookupSwitch) \ |
58 V(ArchTableSwitch) \ | 57 V(ArchTableSwitch) \ |
59 V(ArchNop) \ | 58 V(ArchNop) \ |
60 V(ArchDebugBreak) \ | 59 V(ArchDebugBreak) \ |
61 V(ArchComment) \ | 60 V(ArchComment) \ |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 typedef BitField<AddressingMode, 8, 5> AddressingModeField; | 209 typedef BitField<AddressingMode, 8, 5> AddressingModeField; |
211 typedef BitField<FlagsMode, 13, 2> FlagsModeField; | 210 typedef BitField<FlagsMode, 13, 2> FlagsModeField; |
212 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField; | 211 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField; |
213 typedef BitField<int, 20, 12> MiscField; | 212 typedef BitField<int, 20, 12> MiscField; |
214 | 213 |
215 } // namespace compiler | 214 } // namespace compiler |
216 } // namespace internal | 215 } // namespace internal |
217 } // namespace v8 | 216 } // namespace v8 |
218 | 217 |
219 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ | 218 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ |
OLD | NEW |