blob: 01044f0fa8cef0f3054af282038719101a7abd26 [file] [log] [blame]
Jia Liub22310f2012-02-18 12:03:15 +00001//===-- HexagonBaseInfo.h - Top level definitions for Hexagon --*- C++ -*--===//
Brendon Cahoon6f358372012-02-08 18:25:47 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains small standalone helper functions and enum definitions for
11// the Hexagon target useful for the compiler back-end and the MC libraries.
12// As such, it deliberately does not include references to LLVM core
13// code gen types, passes, etc..
14//
15//===----------------------------------------------------------------------===//
16
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000017#ifndef LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONBASEINFO_H
18#define LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONBASEINFO_H
Brendon Cahoon6f358372012-02-08 18:25:47 +000019
Jyotsna Vermae758da22013-02-19 18:18:36 +000020#include "HexagonMCTargetDesc.h"
21#include "llvm/Support/ErrorHandling.h"
22
Brendon Cahoon6f358372012-02-08 18:25:47 +000023namespace llvm {
24
25/// HexagonII - This namespace holds all of the target specific flags that
26/// instruction info tracks.
27///
28namespace HexagonII {
Sirish Pande545983e2012-02-09 15:20:33 +000029 // *** The code below must match HexagonInstrFormat*.td *** //
Brendon Cahoon6f358372012-02-08 18:25:47 +000030
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000031 // Insn types.
32 // *** Must match HexagonInstrFormat*.td ***
33 enum Type {
Jyotsna Vermae758da22013-02-19 18:18:36 +000034 TypePSEUDO = 0,
35 TypeALU32 = 1,
36 TypeCR = 2,
37 TypeJR = 3,
38 TypeJ = 4,
39 TypeLD = 5,
40 TypeST = 6,
41 TypeSYSTEM = 7,
42 TypeXTYPE = 8,
43 TypeMEMOP = 9,
44 TypeNV = 10,
45 TypePREFIX = 30, // Such as extenders.
46 TypeENDLOOP = 31 // Such as end of a HW loop.
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000047 };
48
Jyotsna Verma66493602012-11-14 20:38:48 +000049 enum SubTarget {
50 HasV2SubT = 0xf,
51 HasV2SubTOnly = 0x1,
52 NoV2SubT = 0x0,
53 HasV3SubT = 0xe,
54 HasV3SubTOnly = 0x2,
55 NoV3SubT = 0x1,
56 HasV4SubT = 0xc,
57 NoV4SubT = 0x3,
58 HasV5SubT = 0x8,
59 NoV5SubT = 0x7
60 };
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000061
Jyotsna Verma66493602012-11-14 20:38:48 +000062 enum AddrMode {
63 NoAddrMode = 0, // No addressing mode
64 Absolute = 1, // Absolute addressing mode
65 AbsoluteSet = 2, // Absolute set addressing mode
66 BaseImmOffset = 3, // Indirect with offset
67 BaseLongOffset = 4, // Indirect with long offset
Jyotsna Vermaa03eb9b2013-05-07 15:06:29 +000068 BaseRegOffset = 5, // Indirect with register offset
69 PostInc = 6 // Post increment addressing mode
Jyotsna Verma66493602012-11-14 20:38:48 +000070 };
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000071
Jyotsna Vermae758da22013-02-19 18:18:36 +000072 enum MemAccessSize {
73 NoMemAccess = 0, // Not a memory acces instruction.
74 ByteAccess = 1, // Byte access instruction (memb).
75 HalfWordAccess = 2, // Half word access instruction (memh).
Robert Wilhelm2788d3e2013-09-28 13:42:22 +000076 WordAccess = 3, // Word access instruction (memw).
Jyotsna Vermae758da22013-02-19 18:18:36 +000077 DoubleWordAccess = 4 // Double word access instruction (memd)
78 };
79
Brendon Cahoon6f358372012-02-08 18:25:47 +000080 // MCInstrDesc TSFlags
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000081 // *** Must match HexagonInstrFormat*.td ***
Brendon Cahoon6f358372012-02-08 18:25:47 +000082 enum {
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000083 // This 5-bit field describes the insn type.
84 TypePos = 0,
85 TypeMask = 0x1f,
86
87 // Solo instructions.
88 SoloPos = 5,
89 SoloMask = 0x1,
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +000090 // Packed only with A or X-type instructions.
91 SoloAXPos = 6,
92 SoloAXMask = 0x1,
93 // Only A-type instruction in first slot or nothing.
94 SoloAin1Pos = 7,
95 SoloAin1Mask = 0x1,
Brendon Cahoon6f358372012-02-08 18:25:47 +000096
97 // Predicated instructions.
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +000098 PredicatedPos = 8,
Jyotsna Verma66493602012-11-14 20:38:48 +000099 PredicatedMask = 0x1,
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000100 PredicatedFalsePos = 9,
Jyotsna Vermae758da22013-02-19 18:18:36 +0000101 PredicatedFalseMask = 0x1,
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000102 PredicatedNewPos = 10,
Jyotsna Verma66493602012-11-14 20:38:48 +0000103 PredicatedNewMask = 0x1,
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000104 PredicateLatePos = 11,
105 PredicateLateMask = 0x1,
Jyotsna Verma66493602012-11-14 20:38:48 +0000106
Jyotsna Vermae758da22013-02-19 18:18:36 +0000107 // New-Value consumer instructions.
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000108 NewValuePos = 12,
Jyotsna Vermae758da22013-02-19 18:18:36 +0000109 NewValueMask = 0x1,
Jyotsna Vermae758da22013-02-19 18:18:36 +0000110 // New-Value producer instructions.
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000111 hasNewValuePos = 13,
Jyotsna Vermae758da22013-02-19 18:18:36 +0000112 hasNewValueMask = 0x1,
Jyotsna Vermae758da22013-02-19 18:18:36 +0000113 // Which operand consumes or produces a new value.
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000114 NewValueOpPos = 14,
Jyotsna Vermae758da22013-02-19 18:18:36 +0000115 NewValueOpMask = 0x7,
Jyotsna Vermae758da22013-02-19 18:18:36 +0000116 // Stores that can become new-value stores.
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000117 mayNVStorePos = 17,
Jyotsna Verma66493602012-11-14 20:38:48 +0000118 mayNVStoreMask = 0x1,
Jyotsna Vermae758da22013-02-19 18:18:36 +0000119 // New-value store instructions.
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000120 NVStorePos = 18,
Jyotsna Verma66493602012-11-14 20:38:48 +0000121 NVStoreMask = 0x1,
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000122 // Loads that can become current-value loads.
123 mayCVLoadPos = 19,
124 mayCVLoadMask = 0x1,
125 // Current-value load instructions.
126 CVLoadPos = 20,
127 CVLoadMask = 0x1,
Jyotsna Verma66493602012-11-14 20:38:48 +0000128
129 // Extendable insns.
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000130 ExtendablePos = 21,
Jyotsna Verma66493602012-11-14 20:38:48 +0000131 ExtendableMask = 0x1,
Jyotsna Verma66493602012-11-14 20:38:48 +0000132 // Insns must be extended.
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000133 ExtendedPos = 22,
Jyotsna Verma66493602012-11-14 20:38:48 +0000134 ExtendedMask = 0x1,
Jyotsna Verma66493602012-11-14 20:38:48 +0000135 // Which operand may be extended.
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000136 ExtendableOpPos = 23,
Jyotsna Verma66493602012-11-14 20:38:48 +0000137 ExtendableOpMask = 0x7,
Jyotsna Verma66493602012-11-14 20:38:48 +0000138 // Signed or unsigned range.
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000139 ExtentSignedPos = 26,
Jyotsna Verma66493602012-11-14 20:38:48 +0000140 ExtentSignedMask = 0x1,
Jyotsna Verma66493602012-11-14 20:38:48 +0000141 // Number of bits of range before extending operand.
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000142 ExtentBitsPos = 27,
Jyotsna Verma66493602012-11-14 20:38:48 +0000143 ExtentBitsMask = 0x1f,
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000144 // Alignment power-of-two before extending operand.
145 ExtentAlignPos = 32,
146 ExtentAlignMask = 0x3,
Jyotsna Verma66493602012-11-14 20:38:48 +0000147
148 // Valid subtargets
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000149 validSubTargetPos = 34,
Jyotsna Verma66493602012-11-14 20:38:48 +0000150 validSubTargetMask = 0xf,
151
Jyotsna Vermae758da22013-02-19 18:18:36 +0000152 // Addressing mode for load/store instructions.
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000153 AddrModePos = 40,
Jyotsna Vermae758da22013-02-19 18:18:36 +0000154 AddrModeMask = 0x7,
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000155 // Access size for load/store instructions.
156 MemAccessSizePos = 43,
157 MemAccesSizeMask = 0x7,
Jyotsna Verma66493602012-11-14 20:38:48 +0000158
Jyotsna Vermaf98a1ec2014-05-07 19:07:34 +0000159 // Branch predicted taken.
160 TakenPos = 47,
161 TakenMask = 0x1,
162
163 // Floating-point instructions.
164 FPPos = 48,
165 FPMask = 0x1
Jyotsna Vermae758da22013-02-19 18:18:36 +0000166 };
Brendon Cahoon6f358372012-02-08 18:25:47 +0000167
Sirish Pande545983e2012-02-09 15:20:33 +0000168 // *** The code above must match HexagonInstrFormat*.td *** //
Brendon Cahoon6f358372012-02-08 18:25:47 +0000169
Jyotsna Verma84256432013-03-01 17:37:13 +0000170 // Hexagon specific MO operand flag mask.
171 enum HexagonMOTargetFlagVal {
172 //===------------------------------------------------------------------===//
173 // Hexagon Specific MachineOperand flags.
174 MO_NO_FLAG,
175
176 HMOTF_ConstExtended = 1,
177
178 /// MO_PCREL - On a symbol operand, indicates a PC-relative relocation
179 /// Used for computing a global address for PIC compilations
180 MO_PCREL,
181
182 /// MO_GOT - Indicates a GOT-relative relocation
183 MO_GOT,
184
185 // Low or high part of a symbol.
186 MO_LO16, MO_HI16,
187
188 // Offset from the base of the SDA.
189 MO_GPREL
190 };
191
Brendon Cahoon6f358372012-02-08 18:25:47 +0000192} // End namespace HexagonII.
193
194} // End namespace llvm.
195
196#endif