blob: b4db977e3613c450796c9467df0b28e8b9374132 [file] [log] [blame]
Colin LeMahieu2c769202014-11-06 17:05:51 +00001//===-- HexagonAsmBackend.cpp - Hexagon Assembler Backend -----------------===//
2//
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
Colin LeMahieu86f218e2015-05-30 18:55:47 +000010#include "Hexagon.h"
11#include "HexagonFixupKinds.h"
Colin LeMahieu2c769202014-11-06 17:05:51 +000012#include "HexagonMCTargetDesc.h"
Colin LeMahieu86f218e2015-05-30 18:55:47 +000013#include "MCTargetDesc/HexagonBaseInfo.h"
14#include "MCTargetDesc/HexagonMCInstrInfo.h"
Colin LeMahieu2c769202014-11-06 17:05:51 +000015#include "llvm/MC/MCAsmBackend.h"
Colin LeMahieu86f218e2015-05-30 18:55:47 +000016#include "llvm/MC/MCAssembler.h"
Colin LeMahieu2c769202014-11-06 17:05:51 +000017#include "llvm/MC/MCELFObjectWriter.h"
Colin LeMahieua6750772015-06-03 17:34:16 +000018#include "llvm/MC/MCFixupKindInfo.h"
19#include "llvm/Support/TargetRegistry.h"
Colin LeMahieu2c769202014-11-06 17:05:51 +000020
21using namespace llvm;
Colin LeMahieu86f218e2015-05-30 18:55:47 +000022using namespace Hexagon;
Colin LeMahieu2c769202014-11-06 17:05:51 +000023
24namespace {
25
26class HexagonAsmBackend : public MCAsmBackend {
Colin LeMahieua6750772015-06-03 17:34:16 +000027 uint8_t OSABI;
28 StringRef CPU;
Colin LeMahieu86f218e2015-05-30 18:55:47 +000029 mutable uint64_t relaxedCnt;
30 std::unique_ptr <MCInstrInfo> MCII;
31 std::unique_ptr <MCInst *> RelaxTarget;
Colin LeMahieu2c769202014-11-06 17:05:51 +000032public:
Colin LeMahieua6750772015-06-03 17:34:16 +000033 HexagonAsmBackend(Target const &T, uint8_t OSABI, StringRef CPU) :
34 OSABI(OSABI), MCII (T.createMCInstrInfo()), RelaxTarget(new MCInst *){}
Colin LeMahieu2c769202014-11-06 17:05:51 +000035
Colin LeMahieua6750772015-06-03 17:34:16 +000036 MCObjectWriter *createObjectWriter(raw_pwrite_stream &OS) const override {
37 return createHexagonELFObjectWriter(OS, OSABI, CPU);
38 }
39
40 unsigned getNumFixupKinds() const override {
41 return Hexagon::NumTargetFixupKinds;
42 }
43
44 const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const override {
45 const static MCFixupKindInfo Infos[Hexagon::NumTargetFixupKinds] = {
46 // This table *must* be in same the order of fixup_* kinds in
47 // HexagonFixupKinds.h.
48 //
49 // namei offset bits flags
50 {"fixup_Hexagon_B22_PCREL", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
51 {"fixup_Hexagon_B15_PCREL", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
52 {"fixup_Hexagon_B7_PCREL", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
53 {"fixup_Hexagon_LO16", 0, 32, 0},
54 {"fixup_Hexagon_HI16", 0, 32, 0},
55 {"fixup_Hexagon_32", 0, 32, 0},
56 {"fixup_Hexagon_16", 0, 32, 0},
57 {"fixup_Hexagon_8", 0, 32, 0},
58 {"fixup_Hexagon_GPREL16_0", 0, 32, 0},
59 {"fixup_Hexagon_GPREL16_1", 0, 32, 0},
60 {"fixup_Hexagon_GPREL16_2", 0, 32, 0},
61 {"fixup_Hexagon_GPREL16_3", 0, 32, 0},
62 {"fixup_Hexagon_HL16", 0, 32, 0},
63 {"fixup_Hexagon_B13_PCREL", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
64 {"fixup_Hexagon_B9_PCREL", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
65 {"fixup_Hexagon_B32_PCREL_X", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
66 {"fixup_Hexagon_32_6_X", 0, 32, 0},
67 {"fixup_Hexagon_B22_PCREL_X", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
68 {"fixup_Hexagon_B15_PCREL_X", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
69 {"fixup_Hexagon_B13_PCREL_X", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
70 {"fixup_Hexagon_B9_PCREL_X", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
71 {"fixup_Hexagon_B7_PCREL_X", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
72 {"fixup_Hexagon_16_X", 0, 32, 0},
73 {"fixup_Hexagon_12_X", 0, 32, 0},
74 {"fixup_Hexagon_11_X", 0, 32, 0},
75 {"fixup_Hexagon_10_X", 0, 32, 0},
76 {"fixup_Hexagon_9_X", 0, 32, 0},
77 {"fixup_Hexagon_8_X", 0, 32, 0},
78 {"fixup_Hexagon_7_X", 0, 32, 0},
79 {"fixup_Hexagon_6_X", 0, 32, 0},
80 {"fixup_Hexagon_32_PCREL", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
81 {"fixup_Hexagon_COPY", 0, 32, 0},
82 {"fixup_Hexagon_GLOB_DAT", 0, 32, 0},
83 {"fixup_Hexagon_JMP_SLOT", 0, 32, 0},
84 {"fixup_Hexagon_RELATIVE", 0, 32, 0},
85 {"fixup_Hexagon_PLT_B22_PCREL", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
86 {"fixup_Hexagon_GOTREL_LO16", 0, 32, 0},
87 {"fixup_Hexagon_GOTREL_HI16", 0, 32, 0},
88 {"fixup_Hexagon_GOTREL_32", 0, 32, 0},
89 {"fixup_Hexagon_GOT_LO16", 0, 32, 0},
90 {"fixup_Hexagon_GOT_HI16", 0, 32, 0},
91 {"fixup_Hexagon_GOT_32", 0, 32, 0},
92 {"fixup_Hexagon_GOT_16", 0, 32, 0},
93 {"fixup_Hexagon_DTPMOD_32", 0, 32, 0},
94 {"fixup_Hexagon_DTPREL_LO16", 0, 32, 0},
95 {"fixup_Hexagon_DTPREL_HI16", 0, 32, 0},
96 {"fixup_Hexagon_DTPREL_32", 0, 32, 0},
97 {"fixup_Hexagon_DTPREL_16", 0, 32, 0},
98 {"fixup_Hexagon_GD_PLT_B22_PCREL", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
99 {"fixup_Hexagon_LD_PLT_B22_PCREL", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
100 {"fixup_Hexagon_GD_GOT_LO16", 0, 32, 0},
101 {"fixup_Hexagon_GD_GOT_HI16", 0, 32, 0},
102 {"fixup_Hexagon_GD_GOT_32", 0, 32, 0},
103 {"fixup_Hexagon_GD_GOT_16", 0, 32, 0},
104 {"fixup_Hexagon_LD_GOT_LO16", 0, 32, 0},
105 {"fixup_Hexagon_LD_GOT_HI16", 0, 32, 0},
106 {"fixup_Hexagon_LD_GOT_32", 0, 32, 0},
107 {"fixup_Hexagon_LD_GOT_16", 0, 32, 0},
108 {"fixup_Hexagon_IE_LO16", 0, 32, 0},
109 {"fixup_Hexagon_IE_HI16", 0, 32, 0},
110 {"fixup_Hexagon_IE_32", 0, 32, 0},
111 {"fixup_Hexagon_IE_16", 0, 32, 0},
112 {"fixup_Hexagon_IE_GOT_LO16", 0, 32, 0},
113 {"fixup_Hexagon_IE_GOT_HI16", 0, 32, 0},
114 {"fixup_Hexagon_IE_GOT_32", 0, 32, 0},
115 {"fixup_Hexagon_IE_GOT_16", 0, 32, 0},
116 {"fixup_Hexagon_TPREL_LO16", 0, 32, 0},
117 {"fixup_Hexagon_TPREL_HI16", 0, 32, 0},
118 {"fixup_Hexagon_TPREL_32", 0, 32, 0},
119 {"fixup_Hexagon_TPREL_16", 0, 32, 0},
120 {"fixup_Hexagon_6_PCREL_X", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
121 {"fixup_Hexagon_GOTREL_32_6_X", 0, 32, 0},
122 {"fixup_Hexagon_GOTREL_16_X", 0, 32, 0},
123 {"fixup_Hexagon_GOTREL_11_X", 0, 32, 0},
124 {"fixup_Hexagon_GOT_32_6_X", 0, 32, 0},
125 {"fixup_Hexagon_GOT_16_X", 0, 32, 0},
126 {"fixup_Hexagon_GOT_11_X", 0, 32, 0},
127 {"fixup_Hexagon_DTPREL_32_6_X", 0, 32, 0},
128 {"fixup_Hexagon_DTPREL_16_X", 0, 32, 0},
129 {"fixup_Hexagon_DTPREL_11_X", 0, 32, 0},
130 {"fixup_Hexagon_GD_GOT_32_6_X", 0, 32, 0},
131 {"fixup_Hexagon_GD_GOT_16_X", 0, 32, 0},
132 {"fixup_Hexagon_GD_GOT_11_X", 0, 32, 0},
133 {"fixup_Hexagon_LD_GOT_32_6_X", 0, 32, 0},
134 {"fixup_Hexagon_LD_GOT_16_X", 0, 32, 0},
135 {"fixup_Hexagon_LD_GOT_11_X", 0, 32, 0},
136 {"fixup_Hexagon_IE_32_6_X", 0, 32, 0},
137 {"fixup_Hexagon_IE_16_X", 0, 32, 0},
138 {"fixup_Hexagon_IE_GOT_32_6_X", 0, 32, 0},
139 {"fixup_Hexagon_IE_GOT_16_X", 0, 32, 0},
140 {"fixup_Hexagon_IE_GOT_11_X", 0, 32, 0},
141 {"fixup_Hexagon_TPREL_32_6_X", 0, 32, 0},
142 {"fixup_Hexagon_TPREL_16_X", 0, 32, 0},
143 {"fixup_Hexagon_TPREL_11_X", 0, 32, 0}};
144
145 if (Kind < FirstTargetFixupKind) {
146 return MCAsmBackend::getFixupKindInfo(Kind);
147 }
148
149 assert(unsigned(Kind - FirstTargetFixupKind) < getNumFixupKinds() &&
150 "Invalid kind!");
151 return Infos[Kind - FirstTargetFixupKind];
152 }
Colin LeMahieu2c769202014-11-06 17:05:51 +0000153
154 void applyFixup(MCFixup const & /*Fixup*/, char * /*Data*/,
155 unsigned /*DataSize*/, uint64_t /*Value*/,
156 bool /*IsPCRel*/) const override {
157 return;
158 }
159
Colin LeMahieu86f218e2015-05-30 18:55:47 +0000160 bool isInstRelaxable(MCInst const &HMI) const {
161 const MCInstrDesc &MCID = HexagonMCInstrInfo::getDesc(*MCII, HMI);
Colin LeMahieu86f218e2015-05-30 18:55:47 +0000162 bool Relaxable = false;
163 // Branches and loop-setup insns are handled as necessary by relaxation.
164 if (llvm::HexagonMCInstrInfo::getType(*MCII, HMI) == HexagonII::TypeJ ||
165 (llvm::HexagonMCInstrInfo::getType(*MCII, HMI) == HexagonII::TypeNV &&
166 MCID.isBranch()) ||
167 (llvm::HexagonMCInstrInfo::getType(*MCII, HMI) == HexagonII::TypeCR &&
168 HMI.getOpcode() != Hexagon::C4_addipc))
169 if (HexagonMCInstrInfo::isExtendable(*MCII, HMI))
170 Relaxable = true;
171
172 return Relaxable;
173 }
174
175 /// MayNeedRelaxation - Check whether the given instruction may need
176 /// relaxation.
177 ///
178 /// \param Inst - The instruction to test.
Colin LeMahieub510fb32015-05-30 20:03:07 +0000179 bool mayNeedRelaxation(MCInst const &Inst) const override {
Colin LeMahieu86f218e2015-05-30 18:55:47 +0000180 assert(HexagonMCInstrInfo::isBundle(Inst));
181 bool PreviousIsExtender = false;
182 for (auto const &I : HexagonMCInstrInfo::bundleInstructions(Inst)) {
183 auto const &Inst = *I.getInst();
184 if (!PreviousIsExtender) {
185 if (isInstRelaxable(Inst))
186 return true;
187 }
188 PreviousIsExtender = HexagonMCInstrInfo::isImmext(Inst);
189 }
Colin LeMahieu2c769202014-11-06 17:05:51 +0000190 return false;
191 }
192
Colin LeMahieu86f218e2015-05-30 18:55:47 +0000193 /// fixupNeedsRelaxation - Target specific predicate for whether a given
194 /// fixup requires the associated instruction to be relaxed.
195 bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved,
196 uint64_t Value,
197 const MCRelaxableFragment *DF,
Colin LeMahieub510fb32015-05-30 20:03:07 +0000198 const MCAsmLayout &Layout) const override {
Colin LeMahieu86f218e2015-05-30 18:55:47 +0000199 MCInst const &MCB = DF->getInst();
200 assert(HexagonMCInstrInfo::isBundle(MCB));
201
202 *RelaxTarget = nullptr;
203 MCInst &MCI = const_cast<MCInst &>(HexagonMCInstrInfo::instruction(
204 MCB, Fixup.getOffset() / HEXAGON_INSTR_SIZE));
205 // If we cannot resolve the fixup value, it requires relaxation.
206 if (!Resolved) {
207 switch ((unsigned)Fixup.getKind()) {
208 case fixup_Hexagon_B22_PCREL:
209 // GetFixupCount assumes B22 won't relax
210 // Fallthrough
211 default:
212 return false;
213 break;
214 case fixup_Hexagon_B13_PCREL:
215 case fixup_Hexagon_B15_PCREL:
216 case fixup_Hexagon_B9_PCREL:
217 case fixup_Hexagon_B7_PCREL: {
218 if (HexagonMCInstrInfo::bundleSize(MCB) < HEXAGON_PACKET_SIZE) {
219 ++relaxedCnt;
220 *RelaxTarget = &MCI;
221 return true;
222 } else {
223 return false;
224 }
225 break;
226 }
227 }
228 }
229 bool Relaxable = isInstRelaxable(MCI);
230 if (Relaxable == false)
231 return false;
232
233 MCFixupKind Kind = Fixup.getKind();
234 int64_t sValue = Value;
235 int64_t maxValue;
236
237 switch ((unsigned)Kind) {
238 case fixup_Hexagon_B7_PCREL:
239 maxValue = 1 << 8;
240 break;
241 case fixup_Hexagon_B9_PCREL:
242 maxValue = 1 << 10;
243 break;
244 case fixup_Hexagon_B15_PCREL:
245 maxValue = 1 << 16;
246 break;
247 case fixup_Hexagon_B22_PCREL:
248 maxValue = 1 << 23;
249 break;
250 default:
251 maxValue = INT64_MAX;
252 break;
253 }
254
255 bool isFarAway = -maxValue > sValue || sValue > maxValue - 1;
256
257 if (isFarAway) {
258 if (HexagonMCInstrInfo::bundleSize(MCB) < HEXAGON_PACKET_SIZE) {
259 ++relaxedCnt;
260 *RelaxTarget = &MCI;
261 return true;
262 }
263 }
264
265 return false;
266 }
267
268 /// Simple predicate for targets where !Resolved implies requiring relaxation
269 bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
270 const MCRelaxableFragment *DF,
271 const MCAsmLayout &Layout) const override {
272 llvm_unreachable("Handled by fixupNeedsRelaxationAdvanced");
Colin LeMahieu2c769202014-11-06 17:05:51 +0000273 }
274
275 void relaxInstruction(MCInst const & /*Inst*/,
276 MCInst & /*Res*/) const override {
277 llvm_unreachable("relaxInstruction() unimplemented");
278 }
279
280 bool writeNopData(uint64_t /*Count*/,
281 MCObjectWriter * /*OW*/) const override {
282 return true;
283 }
284};
285} // end anonymous namespace
286
Colin LeMahieu2c769202014-11-06 17:05:51 +0000287namespace llvm {
288MCAsmBackend *createHexagonAsmBackend(Target const &T,
289 MCRegisterInfo const & /*MRI*/,
Colin LeMahieua6750772015-06-03 17:34:16 +0000290 StringRef TT, StringRef CPU) {
Colin LeMahieu2c769202014-11-06 17:05:51 +0000291 uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(Triple(TT).getOS());
Colin LeMahieua6750772015-06-03 17:34:16 +0000292 return new HexagonAsmBackend(T, OSABI, CPU);
Colin LeMahieu2c769202014-11-06 17:05:51 +0000293}
294}