1 //===- HexagonBaseInfo.h - Top level definitions for Hexagon ----*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file contains small standalone helper functions and enum definitions for
10 // the Hexagon target useful for the compiler back-end and the MC libraries.
11 // As such, it deliberately does not include references to LLVM core
12 // code gen types, passes, etc..
14 //===----------------------------------------------------------------------===//
16 #ifndef LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONBASEINFO_H
17 #define LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONBASEINFO_H
19 #include "HexagonDepITypes.h"
20 #include "MCTargetDesc/HexagonMCTargetDesc.h"
24 /// HexagonII - This namespace holds all of the target specific flags that
25 /// instruction info tracks.
27 unsigned const TypeCVI_FIRST
= TypeCVI_4SLOT_MPY
;
28 unsigned const TypeCVI_LAST
= TypeCVI_ZW
;
31 NoAddrMode
= 0, // No addressing mode
32 Absolute
= 1, // Absolute addressing mode
33 AbsoluteSet
= 2, // Absolute set addressing mode
34 BaseImmOffset
= 3, // Indirect with offset
35 BaseLongOffset
= 4, // Indirect with long offset
36 BaseRegOffset
= 5, // Indirect with register offset
37 PostInc
= 6 // Post increment addressing mode
49 // MCInstrDesc TSFlags
50 // *** Must match HexagonInstrFormat*.td ***
52 // This 7-bit field describes the insn type.
59 // Packed only with A or X-type instructions.
62 // Only A-type instruction in first slot or nothing.
63 RestrictSlot1AOKPos
= 9,
64 RestrictSlot1AOKMask
= 0x1,
66 // Predicated instructions.
69 PredicatedFalsePos
= 11,
70 PredicatedFalseMask
= 0x1,
71 PredicatedNewPos
= 12,
72 PredicatedNewMask
= 0x1,
73 PredicateLatePos
= 13,
74 PredicateLateMask
= 0x1,
76 // New-Value consumer instructions.
79 // New-Value producer instructions.
81 hasNewValueMask
= 0x1,
82 // Which operand consumes or produces a new value.
85 // Stores that can become new-value stores.
88 // New-value store instructions.
91 // Loads that can become current-value loads.
94 // Current-value load instructions.
100 ExtendableMask
= 0x1,
101 // Insns must be extended.
104 // Which operand may be extended.
105 ExtendableOpPos
= 25,
106 ExtendableOpMask
= 0x7,
107 // Signed or unsigned range.
108 ExtentSignedPos
= 28,
109 ExtentSignedMask
= 0x1,
110 // Number of bits of range before extending operand.
112 ExtentBitsMask
= 0x1f,
113 // Alignment power-of-two before extending operand.
115 ExtentAlignMask
= 0x3,
124 RestrictNoSlot1StorePos
= 39,
125 RestrictNoSlot1StoreMask
= 0x1,
127 // Addressing mode for load/store instructions.
130 // Access size for load/store instructions.
131 MemAccessSizePos
= 45,
132 MemAccesSizeMask
= 0xf,
134 // Branch predicted taken.
138 // Floating-point instructions.
142 // New-Value producer-2 instructions.
143 hasNewValuePos2
= 52,
144 hasNewValueMask2
= 0x1,
145 // Which operand consumes or produces a new value.
147 NewValueOpMask2
= 0x7,
149 // Accumulator instructions.
151 AccumulatorMask
= 0x1,
153 // Complex XU, prevent xu competition by preferring slot3
154 PrefersSlot3Pos
= 57,
155 PrefersSlot3Mask
= 0x1,
168 // *** The code above must match HexagonInstrFormat*.td *** //
170 // Hexagon specific MO operand flag mask.
171 enum HexagonMOTargetFlagVal
{
172 // Hexagon-specific MachineOperand target flags.
174 // When changing these, make sure to update
175 // getSerializableDirectMachineOperandTargetFlags and
176 // getSerializableBitmaskMachineOperandTargetFlags if needed.
179 /// MO_PCREL - On a symbol operand, indicates a PC-relative relocation
180 /// Used for computing a global address for PIC compilations
183 /// MO_GOT - Indicates a GOT-relative relocation
186 // Low or high part of a symbol.
190 // Offset from the base of the SDA.
193 // MO_GDGOT - indicates GOT relative relocation for TLS
194 // GeneralDynamic method
197 // MO_GDPLT - indicates PLT relative relocation for TLS
198 // GeneralDynamic method
201 // MO_IE - indicates non PIC relocation for TLS
202 // Initial Executable method
205 // MO_IEGOT - indicates PIC relocation for TLS
206 // Initial Executable method
209 // MO_TPREL - indicates relocation for TLS
210 // local Executable method
213 // HMOTF_ConstExtended
214 // Addendum to above, indicates a const extended op
215 // Can be used as a mask.
216 HMOTF_ConstExtended
= 0x80,
218 // Union of all bitmasks (currently only HMOTF_ConstExtended).
219 MO_Bitmasks
= HMOTF_ConstExtended
222 // Hexagon Sub-instruction classes.
223 enum SubInstructionGroup
{
233 // Hexagon Compound classes.
242 INST_PARSE_MASK
= 0x0000c000,
243 INST_PARSE_PACKET_END
= 0x0000c000,
244 INST_PARSE_LOOP_END
= 0x00008000,
245 INST_PARSE_NOT_END
= 0x00004000,
246 INST_PARSE_DUPLEX
= 0x00000000,
247 INST_PARSE_EXTENDER
= 0x00000000
250 enum InstIClassBits
: unsigned {
251 INST_ICLASS_MASK
= 0xf0000000,
252 INST_ICLASS_EXTENDER
= 0x00000000,
253 INST_ICLASS_J_1
= 0x10000000,
254 INST_ICLASS_J_2
= 0x20000000,
255 INST_ICLASS_LD_ST_1
= 0x30000000,
256 INST_ICLASS_LD_ST_2
= 0x40000000,
257 INST_ICLASS_J_3
= 0x50000000,
258 INST_ICLASS_CR
= 0x60000000,
259 INST_ICLASS_ALU32_1
= 0x70000000,
260 INST_ICLASS_XTYPE_1
= 0x80000000,
261 INST_ICLASS_LD
= 0x90000000,
262 INST_ICLASS_ST
= 0xa0000000,
263 INST_ICLASS_ALU32_2
= 0xb0000000,
264 INST_ICLASS_XTYPE_2
= 0xc0000000,
265 INST_ICLASS_XTYPE_3
= 0xd0000000,
266 INST_ICLASS_XTYPE_4
= 0xe0000000,
267 INST_ICLASS_ALU32_3
= 0xf0000000
270 LLVM_ATTRIBUTE_UNUSED
271 static unsigned getMemAccessSizeInBytes(MemAccessSize S
) {
273 case ByteAccess
: return 1;
274 case HalfWordAccess
: return 2;
275 case WordAccess
: return 4;
276 case DoubleWordAccess
: return 8;
280 } // end namespace HexagonII
282 } // end namespace llvm
284 #endif // LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONBASEINFO_H