| 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 #if V8_TARGET_ARCH_ARM | 8 #if V8_TARGET_ARCH_ARM |
| 9 #include "src/compiler/arm/instruction-codes-arm.h" | 9 #include "src/compiler/arm/instruction-codes-arm.h" |
| 10 #elif V8_TARGET_ARCH_ARM64 | 10 #elif V8_TARGET_ARCH_ARM64 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 namespace v8 { | 22 namespace v8 { |
| 23 namespace internal { | 23 namespace internal { |
| 24 | 24 |
| 25 class OStream; | 25 class OStream; |
| 26 | 26 |
| 27 namespace compiler { | 27 namespace compiler { |
| 28 | 28 |
| 29 // Target-specific opcodes that specify which assembly sequence to emit. | 29 // Target-specific opcodes that specify which assembly sequence to emit. |
| 30 // Most opcodes specify a single instruction. | 30 // Most opcodes specify a single instruction. |
| 31 #define ARCH_OPCODE_LIST(V) \ | 31 #define ARCH_OPCODE_LIST(V) \ |
| 32 V(ArchCallAddress) \ | |
| 33 V(ArchCallCodeObject) \ | 32 V(ArchCallCodeObject) \ |
| 34 V(ArchCallJSFunction) \ | 33 V(ArchCallJSFunction) \ |
| 35 V(ArchDrop) \ | |
| 36 V(ArchJmp) \ | 34 V(ArchJmp) \ |
| 37 V(ArchNop) \ | 35 V(ArchNop) \ |
| 38 V(ArchRet) \ | 36 V(ArchRet) \ |
| 39 V(ArchTruncateDoubleToI) \ | 37 V(ArchTruncateDoubleToI) \ |
| 40 TARGET_ARCH_OPCODE_LIST(V) | 38 TARGET_ARCH_OPCODE_LIST(V) |
| 41 | 39 |
| 42 enum ArchOpcode { | 40 enum ArchOpcode { |
| 43 #define DECLARE_ARCH_OPCODE(Name) k##Name, | 41 #define DECLARE_ARCH_OPCODE(Name) k##Name, |
| 44 ARCH_OPCODE_LIST(DECLARE_ARCH_OPCODE) | 42 ARCH_OPCODE_LIST(DECLARE_ARCH_OPCODE) |
| 45 #undef DECLARE_ARCH_OPCODE | 43 #undef DECLARE_ARCH_OPCODE |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 typedef BitField<AddressingMode, 7, 4> AddressingModeField; | 110 typedef BitField<AddressingMode, 7, 4> AddressingModeField; |
| 113 typedef BitField<FlagsMode, 11, 2> FlagsModeField; | 111 typedef BitField<FlagsMode, 11, 2> FlagsModeField; |
| 114 typedef BitField<FlagsCondition, 13, 5> FlagsConditionField; | 112 typedef BitField<FlagsCondition, 13, 5> FlagsConditionField; |
| 115 typedef BitField<int, 13, 19> MiscField; | 113 typedef BitField<int, 13, 19> MiscField; |
| 116 | 114 |
| 117 } // namespace compiler | 115 } // namespace compiler |
| 118 } // namespace internal | 116 } // namespace internal |
| 119 } // namespace v8 | 117 } // namespace v8 |
| 120 | 118 |
| 121 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ | 119 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ |
| OLD | NEW |