blob: 1eee852996fdb33dd7d0d156dfde36c8b5b2a3e7 [file] [log] [blame]
Sid Manning7da3f9a2014-10-03 13:18:11 +00001//===-- HexagonMCCodeEmitter.cpp - Hexagon Target Descriptions ------------===//
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
10#include "Hexagon.h"
11#include "MCTargetDesc/HexagonBaseInfo.h"
Colin LeMahieub6625652015-05-01 21:14:21 +000012#include "MCTargetDesc/HexagonFixupKinds.h"
Sid Manning7da3f9a2014-10-03 13:18:11 +000013#include "MCTargetDesc/HexagonMCCodeEmitter.h"
Colin LeMahieuaf304e52015-02-19 19:00:00 +000014#include "MCTargetDesc/HexagonMCInstrInfo.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000015#include "MCTargetDesc/HexagonMCTargetDesc.h"
Sid Manning7da3f9a2014-10-03 13:18:11 +000016#include "llvm/ADT/Statistic.h"
17#include "llvm/MC/MCCodeEmitter.h"
18#include "llvm/MC/MCContext.h"
19#include "llvm/MC/MCExpr.h"
20#include "llvm/MC/MCInst.h"
21#include "llvm/MC/MCInstrInfo.h"
22#include "llvm/MC/MCRegisterInfo.h"
23#include "llvm/MC/MCSubtargetInfo.h"
24#include "llvm/Support/Debug.h"
Benjamin Kramer50e2a292015-06-04 15:03:02 +000025#include "llvm/Support/EndianStream.h"
Sid Manning7da3f9a2014-10-03 13:18:11 +000026#include "llvm/Support/raw_ostream.h"
27
28#define DEBUG_TYPE "mccodeemitter"
29
30using namespace llvm;
31using namespace Hexagon;
32
33STATISTIC(MCNumEmitted, "Number of MC instructions emitted");
34
Sid Manning7da3f9a2014-10-03 13:18:11 +000035HexagonMCCodeEmitter::HexagonMCCodeEmitter(MCInstrInfo const &aMII,
Sid Manning7da3f9a2014-10-03 13:18:11 +000036 MCContext &aMCT)
Colin LeMahieub6625652015-05-01 21:14:21 +000037 : MCT(aMCT), MCII(aMII), Addend(new unsigned(0)),
Colin LeMahieu68d967d2015-05-29 14:44:13 +000038 Extended(new bool(false)), CurrentBundle(new MCInst const *) {}
39
40uint32_t HexagonMCCodeEmitter::parseBits(size_t Instruction, size_t Last,
41 MCInst const &MCB,
42 MCInst const &MCI) const {
Colin LeMahieube8c4532015-06-05 16:00:11 +000043 bool Duplex = HexagonMCInstrInfo::isDuplex(MCII, MCI);
Colin LeMahieu68d967d2015-05-29 14:44:13 +000044 if (Instruction == 0) {
45 if (HexagonMCInstrInfo::isInnerLoop(MCB)) {
Colin LeMahieube8c4532015-06-05 16:00:11 +000046 assert(!Duplex);
Colin LeMahieu68d967d2015-05-29 14:44:13 +000047 assert(Instruction != Last);
48 return HexagonII::INST_PARSE_LOOP_END;
49 }
50 }
51 if (Instruction == 1) {
52 if (HexagonMCInstrInfo::isOuterLoop(MCB)) {
Colin LeMahieube8c4532015-06-05 16:00:11 +000053 assert(!Duplex);
Colin LeMahieu68d967d2015-05-29 14:44:13 +000054 assert(Instruction != Last);
55 return HexagonII::INST_PARSE_LOOP_END;
56 }
57 }
Colin LeMahieube8c4532015-06-05 16:00:11 +000058 if (Duplex) {
59 assert(Instruction == Last);
60 return HexagonII::INST_PARSE_DUPLEX;
61 }
Colin LeMahieu68d967d2015-05-29 14:44:13 +000062 if(Instruction == Last)
63 return HexagonII::INST_PARSE_PACKET_END;
64 return HexagonII::INST_PARSE_NOT_END;
65}
Sid Manning7da3f9a2014-10-03 13:18:11 +000066
Jim Grosbach91df21f2015-05-15 19:13:16 +000067void HexagonMCCodeEmitter::encodeInstruction(MCInst const &MI, raw_ostream &OS,
Sid Manning7da3f9a2014-10-03 13:18:11 +000068 SmallVectorImpl<MCFixup> &Fixups,
69 MCSubtargetInfo const &STI) const {
Colin LeMahieu68d967d2015-05-29 14:44:13 +000070 MCInst &HMB = const_cast<MCInst &>(MI);
71
72 assert(HexagonMCInstrInfo::isBundle(HMB));
73 DEBUG(dbgs() << "Encoding bundle\n";);
74 *Addend = 0;
75 *Extended = false;
76 *CurrentBundle = &MI;
77 size_t Instruction = 0;
78 size_t Last = HexagonMCInstrInfo::bundleSize(HMB) - 1;
79 for (auto &I : HexagonMCInstrInfo::bundleInstructions(HMB)) {
80 MCInst &HMI = const_cast<MCInst &>(*I.getInst());
81 EncodeSingleInstruction(HMI, OS, Fixups, STI,
82 parseBits(Instruction, Last, HMB, HMI),
83 Instruction);
84 *Extended = HexagonMCInstrInfo::isImmext(HMI);
85 *Addend += HEXAGON_INSTR_SIZE;
86 ++Instruction;
87 }
88 return;
89}
90
91/// EncodeSingleInstruction - Emit a single
92void HexagonMCCodeEmitter::EncodeSingleInstruction(
93 const MCInst &MI, raw_ostream &OS, SmallVectorImpl<MCFixup> &Fixups,
94 const MCSubtargetInfo &STI, uint32_t Parse, size_t Index) const {
95 MCInst HMB = MI;
96 assert(!HexagonMCInstrInfo::isBundle(HMB));
97 uint64_t Binary;
98
99 // Pseudo instructions don't get encoded and shouldn't be here
100 // in the first place!
101 assert(!HexagonMCInstrInfo::getDesc(MCII, HMB).isPseudo() &&
102 "pseudo-instruction found");
103 DEBUG(dbgs() << "Encoding insn"
104 " `" << HexagonMCInstrInfo::getName(MCII, HMB) << "'"
105 "\n");
106
107 if (HexagonMCInstrInfo::isNewValue(MCII, HMB)) {
108 // Calculate the new value distance to the associated producer
109 MCOperand &MCO =
110 HMB.getOperand(HexagonMCInstrInfo::getNewValueOp(MCII, HMB));
111 unsigned SOffset = 0;
112 unsigned Register = MCO.getReg();
113 unsigned Register1;
114 auto Instructions = HexagonMCInstrInfo::bundleInstructions(**CurrentBundle);
115 auto i = Instructions.begin() + Index - 1;
116 for (;; --i) {
117 assert(i != Instructions.begin() - 1 && "Couldn't find producer");
118 MCInst const &Inst = *i->getInst();
119 if (HexagonMCInstrInfo::isImmext(Inst))
120 continue;
121 ++SOffset;
122 Register1 =
123 HexagonMCInstrInfo::hasNewValue(MCII, Inst)
124 ? HexagonMCInstrInfo::getNewValueOperand(MCII, Inst).getReg()
125 : static_cast<unsigned>(Hexagon::NoRegister);
126 if (Register != Register1)
127 // This isn't the register we're looking for
128 continue;
129 if (!HexagonMCInstrInfo::isPredicated(MCII, Inst))
130 // Producer is unpredicated
131 break;
132 assert(HexagonMCInstrInfo::isPredicated(MCII, HMB) &&
133 "Unpredicated consumer depending on predicated producer");
134 if (HexagonMCInstrInfo::isPredicatedTrue(MCII, Inst) ==
135 HexagonMCInstrInfo::isPredicatedTrue(MCII, HMB))
136 // Producer predicate sense matched ours
137 break;
138 }
139 // Hexagon PRM 10.11 Construct Nt from distance
140 unsigned Offset = SOffset;
141 Offset <<= 1;
142 MCO.setReg(Offset + Hexagon::R0);
143 }
144
145 Binary = getBinaryCodeForInstr(HMB, Fixups, STI);
146 // Check for unimplemented instructions. Immediate extenders
147 // are encoded as zero, so they need to be accounted for.
148 if ((!Binary) &&
149 ((HMB.getOpcode() != DuplexIClass0) && (HMB.getOpcode() != A4_ext) &&
150 (HMB.getOpcode() != A4_ext_b) && (HMB.getOpcode() != A4_ext_c) &&
151 (HMB.getOpcode() != A4_ext_g))) {
152 // Use a A2_nop for unimplemented instructions.
153 DEBUG(dbgs() << "Unimplemented inst: "
154 " `" << HexagonMCInstrInfo::getName(MCII, HMB) << "'"
155 "\n");
156 llvm_unreachable("Unimplemented Instruction");
157 }
158 Binary |= Parse;
Colin LeMahieube8c4532015-06-05 16:00:11 +0000159
160 // if we need to emit a duplexed instruction
161 if (HMB.getOpcode() >= Hexagon::DuplexIClass0 &&
162 HMB.getOpcode() <= Hexagon::DuplexIClassF) {
163 assert(Parse == HexagonII::INST_PARSE_DUPLEX &&
164 "Emitting duplex without duplex parse bits");
165 unsigned dupIClass;
166 switch (HMB.getOpcode()) {
167 case Hexagon::DuplexIClass0:
168 dupIClass = 0;
169 break;
170 case Hexagon::DuplexIClass1:
171 dupIClass = 1;
172 break;
173 case Hexagon::DuplexIClass2:
174 dupIClass = 2;
175 break;
176 case Hexagon::DuplexIClass3:
177 dupIClass = 3;
178 break;
179 case Hexagon::DuplexIClass4:
180 dupIClass = 4;
181 break;
182 case Hexagon::DuplexIClass5:
183 dupIClass = 5;
184 break;
185 case Hexagon::DuplexIClass6:
186 dupIClass = 6;
187 break;
188 case Hexagon::DuplexIClass7:
189 dupIClass = 7;
190 break;
191 case Hexagon::DuplexIClass8:
192 dupIClass = 8;
193 break;
194 case Hexagon::DuplexIClass9:
195 dupIClass = 9;
196 break;
197 case Hexagon::DuplexIClassA:
198 dupIClass = 10;
199 break;
200 case Hexagon::DuplexIClassB:
201 dupIClass = 11;
202 break;
203 case Hexagon::DuplexIClassC:
204 dupIClass = 12;
205 break;
206 case Hexagon::DuplexIClassD:
207 dupIClass = 13;
208 break;
209 case Hexagon::DuplexIClassE:
210 dupIClass = 14;
211 break;
212 case Hexagon::DuplexIClassF:
213 dupIClass = 15;
214 break;
215 default:
216 llvm_unreachable("Unimplemented DuplexIClass");
217 break;
218 }
219 // 29 is the bit position.
220 // 0b1110 =0xE bits are masked off and down shifted by 1 bit.
221 // Last bit is moved to bit position 13
222 Binary = ((dupIClass & 0xE) << (29 - 1)) | ((dupIClass & 0x1) << 13);
223
224 const MCInst *subInst0 = HMB.getOperand(0).getInst();
225 const MCInst *subInst1 = HMB.getOperand(1).getInst();
226
227 // get subinstruction slot 0
228 unsigned subInstSlot0Bits = getBinaryCodeForInstr(*subInst0, Fixups, STI);
229 // get subinstruction slot 1
230 unsigned subInstSlot1Bits = getBinaryCodeForInstr(*subInst1, Fixups, STI);
231
232 Binary |= subInstSlot0Bits | (subInstSlot1Bits << 16);
233 }
Benjamin Kramer50e2a292015-06-04 15:03:02 +0000234 support::endian::Writer<support::little>(OS).write<uint32_t>(Binary);
Sid Manning7da3f9a2014-10-03 13:18:11 +0000235 ++MCNumEmitted;
236}
237
Colin LeMahieub6625652015-05-01 21:14:21 +0000238static Hexagon::Fixups getFixupNoBits(MCInstrInfo const &MCII, const MCInst &MI,
239 const MCOperand &MO,
240 const MCSymbolRefExpr::VariantKind kind) {
241 const MCInstrDesc &MCID = HexagonMCInstrInfo::getDesc(MCII, MI);
242 unsigned insnType = llvm::HexagonMCInstrInfo::getType(MCII, MI);
243
244 if (insnType == HexagonII::TypePREFIX) {
245 switch (kind) {
246 case llvm::MCSymbolRefExpr::VK_GOTOFF:
247 return Hexagon::fixup_Hexagon_GOTREL_32_6_X;
248 case llvm::MCSymbolRefExpr::VK_GOT:
249 return Hexagon::fixup_Hexagon_GOT_32_6_X;
250 case llvm::MCSymbolRefExpr::VK_TPREL:
251 return Hexagon::fixup_Hexagon_TPREL_32_6_X;
252 case llvm::MCSymbolRefExpr::VK_DTPREL:
253 return Hexagon::fixup_Hexagon_DTPREL_32_6_X;
254 case llvm::MCSymbolRefExpr::VK_Hexagon_GD_GOT:
255 return Hexagon::fixup_Hexagon_GD_GOT_32_6_X;
256 case llvm::MCSymbolRefExpr::VK_Hexagon_LD_GOT:
257 return Hexagon::fixup_Hexagon_LD_GOT_32_6_X;
258 case llvm::MCSymbolRefExpr::VK_Hexagon_IE:
259 return Hexagon::fixup_Hexagon_IE_32_6_X;
260 case llvm::MCSymbolRefExpr::VK_Hexagon_IE_GOT:
261 return Hexagon::fixup_Hexagon_IE_GOT_32_6_X;
262 default:
263 if (MCID.isBranch())
264 return Hexagon::fixup_Hexagon_B32_PCREL_X;
265 else
266 return Hexagon::fixup_Hexagon_32_6_X;
267 }
268 } else if (MCID.isBranch())
269 return (Hexagon::fixup_Hexagon_B13_PCREL);
270
271 switch (MCID.getOpcode()) {
272 case Hexagon::HI:
273 case Hexagon::A2_tfrih:
274 switch (kind) {
275 case llvm::MCSymbolRefExpr::VK_GOT:
276 return Hexagon::fixup_Hexagon_GOT_HI16;
277 case llvm::MCSymbolRefExpr::VK_GOTOFF:
278 return Hexagon::fixup_Hexagon_GOTREL_HI16;
279 case llvm::MCSymbolRefExpr::VK_Hexagon_GD_GOT:
280 return Hexagon::fixup_Hexagon_GD_GOT_HI16;
281 case llvm::MCSymbolRefExpr::VK_Hexagon_LD_GOT:
282 return Hexagon::fixup_Hexagon_LD_GOT_HI16;
283 case llvm::MCSymbolRefExpr::VK_Hexagon_IE:
284 return Hexagon::fixup_Hexagon_IE_HI16;
285 case llvm::MCSymbolRefExpr::VK_Hexagon_IE_GOT:
286 return Hexagon::fixup_Hexagon_IE_GOT_HI16;
287 case llvm::MCSymbolRefExpr::VK_TPREL:
288 return Hexagon::fixup_Hexagon_TPREL_HI16;
289 case llvm::MCSymbolRefExpr::VK_DTPREL:
290 return Hexagon::fixup_Hexagon_DTPREL_HI16;
291 default:
292 return Hexagon::fixup_Hexagon_HI16;
293 }
294
295 case Hexagon::LO:
296 case Hexagon::A2_tfril:
297 switch (kind) {
298 case llvm::MCSymbolRefExpr::VK_GOT:
299 return Hexagon::fixup_Hexagon_GOT_LO16;
300 case llvm::MCSymbolRefExpr::VK_GOTOFF:
301 return Hexagon::fixup_Hexagon_GOTREL_LO16;
302 case llvm::MCSymbolRefExpr::VK_Hexagon_GD_GOT:
303 return Hexagon::fixup_Hexagon_GD_GOT_LO16;
304 case llvm::MCSymbolRefExpr::VK_Hexagon_LD_GOT:
305 return Hexagon::fixup_Hexagon_LD_GOT_LO16;
306 case llvm::MCSymbolRefExpr::VK_Hexagon_IE:
307 return Hexagon::fixup_Hexagon_IE_LO16;
308 case llvm::MCSymbolRefExpr::VK_Hexagon_IE_GOT:
309 return Hexagon::fixup_Hexagon_IE_GOT_LO16;
310 case llvm::MCSymbolRefExpr::VK_TPREL:
311 return Hexagon::fixup_Hexagon_TPREL_LO16;
312 case llvm::MCSymbolRefExpr::VK_DTPREL:
313 return Hexagon::fixup_Hexagon_DTPREL_LO16;
314 default:
315 return Hexagon::fixup_Hexagon_LO16;
316 }
317
318 // The only relocs left should be GP relative:
319 default:
320 if (MCID.mayStore() || MCID.mayLoad()) {
321 for (const uint16_t *ImpUses = MCID.getImplicitUses(); *ImpUses;
322 ++ImpUses) {
323 if (*ImpUses == Hexagon::GP) {
324 switch (HexagonMCInstrInfo::getAccessSize(MCII, MI)) {
325 case HexagonII::MemAccessSize::ByteAccess:
326 return fixup_Hexagon_GPREL16_0;
327 case HexagonII::MemAccessSize::HalfWordAccess:
328 return fixup_Hexagon_GPREL16_1;
329 case HexagonII::MemAccessSize::WordAccess:
330 return fixup_Hexagon_GPREL16_2;
331 case HexagonII::MemAccessSize::DoubleWordAccess:
332 return fixup_Hexagon_GPREL16_3;
333 default:
334 llvm_unreachable("unhandled fixup");
335 }
336 }
337 }
338 } else
339 llvm_unreachable("unhandled fixup");
340 }
341
342 return LastTargetFixupKind;
343}
344
345unsigned HexagonMCCodeEmitter::getExprOpValue(const MCInst &MI,
346 const MCOperand &MO,
347 const MCExpr *ME,
348 SmallVectorImpl<MCFixup> &Fixups,
349 const MCSubtargetInfo &STI) const
350
351{
352 int64_t Res;
353
Jim Grosbach13760bd2015-05-30 01:25:56 +0000354 if (ME->evaluateAsAbsolute(Res))
Colin LeMahieub6625652015-05-01 21:14:21 +0000355 return Res;
356
357 MCExpr::ExprKind MK = ME->getKind();
358 if (MK == MCExpr::Constant) {
359 return cast<MCConstantExpr>(ME)->getValue();
360 }
361 if (MK == MCExpr::Binary) {
362 unsigned Res;
363 Res = getExprOpValue(MI, MO, cast<MCBinaryExpr>(ME)->getLHS(), Fixups, STI);
364 Res +=
365 getExprOpValue(MI, MO, cast<MCBinaryExpr>(ME)->getRHS(), Fixups, STI);
366 return Res;
367 }
368
369 assert(MK == MCExpr::SymbolRef);
370
371 Hexagon::Fixups FixupKind =
372 Hexagon::Fixups(Hexagon::fixup_Hexagon_TPREL_LO16);
373 const MCSymbolRefExpr *MCSRE = static_cast<const MCSymbolRefExpr *>(ME);
374 const MCInstrDesc &MCID = HexagonMCInstrInfo::getDesc(MCII, MI);
Colin LeMahieub6625652015-05-01 21:14:21 +0000375 unsigned bits = HexagonMCInstrInfo::getExtentBits(MCII, MI) -
376 HexagonMCInstrInfo::getExtentAlignment(MCII, MI);
377 const MCSymbolRefExpr::VariantKind kind = MCSRE->getKind();
378
379 DEBUG(dbgs() << "----------------------------------------\n");
380 DEBUG(dbgs() << "Opcode Name: " << HexagonMCInstrInfo::getName(MCII, MI)
381 << "\n");
Colin LeMahieu6efd2732015-05-01 21:30:22 +0000382 DEBUG(dbgs() << "Opcode: " << MCID.getOpcode() << "\n");
Colin LeMahieub6625652015-05-01 21:14:21 +0000383 DEBUG(dbgs() << "Relocation bits: " << bits << "\n");
384 DEBUG(dbgs() << "Addend: " << *Addend << "\n");
385 DEBUG(dbgs() << "----------------------------------------\n");
386
387 switch (bits) {
388 default:
389 DEBUG(dbgs() << "unrecognized bit count of " << bits << '\n');
390 break;
391
392 case 32:
393 switch (kind) {
394 case llvm::MCSymbolRefExpr::VK_Hexagon_PCREL:
395 FixupKind = Hexagon::fixup_Hexagon_32_PCREL;
396 break;
397 case llvm::MCSymbolRefExpr::VK_GOT:
398 FixupKind = *Extended ? Hexagon::fixup_Hexagon_GOT_32_6_X
399 : Hexagon::fixup_Hexagon_GOT_32;
400 break;
401 case llvm::MCSymbolRefExpr::VK_GOTOFF:
402 FixupKind = *Extended ? Hexagon::fixup_Hexagon_GOTREL_32_6_X
403 : Hexagon::fixup_Hexagon_GOTREL_32;
404 break;
405 case llvm::MCSymbolRefExpr::VK_Hexagon_GD_GOT:
406 FixupKind = *Extended ? Hexagon::fixup_Hexagon_GD_GOT_32_6_X
407 : Hexagon::fixup_Hexagon_GD_GOT_32;
408 break;
409 case llvm::MCSymbolRefExpr::VK_Hexagon_LD_GOT:
410 FixupKind = *Extended ? Hexagon::fixup_Hexagon_LD_GOT_32_6_X
411 : Hexagon::fixup_Hexagon_LD_GOT_32;
412 break;
413 case llvm::MCSymbolRefExpr::VK_Hexagon_IE:
414 FixupKind = *Extended ? Hexagon::fixup_Hexagon_IE_32_6_X
415 : Hexagon::fixup_Hexagon_IE_32;
416 break;
417 case llvm::MCSymbolRefExpr::VK_Hexagon_IE_GOT:
418 FixupKind = *Extended ? Hexagon::fixup_Hexagon_IE_GOT_32_6_X
419 : Hexagon::fixup_Hexagon_IE_GOT_32;
420 break;
421 case llvm::MCSymbolRefExpr::VK_TPREL:
422 FixupKind = *Extended ? Hexagon::fixup_Hexagon_TPREL_32_6_X
423 : Hexagon::fixup_Hexagon_TPREL_32;
424 break;
425 case llvm::MCSymbolRefExpr::VK_DTPREL:
426 FixupKind = *Extended ? Hexagon::fixup_Hexagon_DTPREL_32_6_X
427 : Hexagon::fixup_Hexagon_DTPREL_32;
428 break;
429 default:
430 FixupKind =
431 *Extended ? Hexagon::fixup_Hexagon_32_6_X : Hexagon::fixup_Hexagon_32;
432 break;
433 }
434 break;
435
436 case 22:
437 switch (kind) {
438 case llvm::MCSymbolRefExpr::VK_Hexagon_GD_PLT:
439 FixupKind = Hexagon::fixup_Hexagon_GD_PLT_B22_PCREL;
440 break;
441 case llvm::MCSymbolRefExpr::VK_Hexagon_LD_PLT:
442 FixupKind = Hexagon::fixup_Hexagon_LD_PLT_B22_PCREL;
443 break;
444 default:
445 if (MCID.isBranch() || MCID.isCall()) {
446 FixupKind = *Extended ? Hexagon::fixup_Hexagon_B22_PCREL_X
447 : Hexagon::fixup_Hexagon_B22_PCREL;
448 } else {
449 errs() << "unrecognized relocation, bits: " << bits << "\n";
450 errs() << "name = " << HexagonMCInstrInfo::getName(MCII, MI) << "\n";
451 }
452 break;
453 }
454 break;
455
456 case 16:
457 if (*Extended) {
458 switch (kind) {
459 default:
460 FixupKind = Hexagon::fixup_Hexagon_16_X;
461 break;
462 case llvm::MCSymbolRefExpr::VK_GOT:
463 FixupKind = Hexagon::fixup_Hexagon_GOT_16_X;
464 break;
465 case llvm::MCSymbolRefExpr::VK_GOTOFF:
466 FixupKind = Hexagon::fixup_Hexagon_GOTREL_16_X;
467 break;
468 case llvm::MCSymbolRefExpr::VK_Hexagon_GD_GOT:
469 FixupKind = Hexagon::fixup_Hexagon_GD_GOT_16_X;
470 break;
471 case llvm::MCSymbolRefExpr::VK_Hexagon_LD_GOT:
472 FixupKind = Hexagon::fixup_Hexagon_LD_GOT_16_X;
473 break;
474 case llvm::MCSymbolRefExpr::VK_Hexagon_IE:
475 FixupKind = Hexagon::fixup_Hexagon_IE_16_X;
476 break;
477 case llvm::MCSymbolRefExpr::VK_Hexagon_IE_GOT:
478 FixupKind = Hexagon::fixup_Hexagon_IE_GOT_16_X;
479 break;
480 case llvm::MCSymbolRefExpr::VK_TPREL:
481 FixupKind = Hexagon::fixup_Hexagon_TPREL_16_X;
482 break;
483 case llvm::MCSymbolRefExpr::VK_DTPREL:
484 FixupKind = Hexagon::fixup_Hexagon_DTPREL_16_X;
485 break;
486 }
487 } else
488 switch (kind) {
489 default:
490 errs() << "unrecognized relocation, bits " << bits << "\n";
491 errs() << "name = " << HexagonMCInstrInfo::getName(MCII, MI) << "\n";
492 break;
493 case llvm::MCSymbolRefExpr::VK_GOTOFF:
494 if ((MCID.getOpcode() == Hexagon::HI) ||
495 (MCID.getOpcode() == Hexagon::LO_H))
496 FixupKind = Hexagon::fixup_Hexagon_GOTREL_HI16;
497 else
498 FixupKind = Hexagon::fixup_Hexagon_GOTREL_LO16;
499 break;
500 case llvm::MCSymbolRefExpr::VK_Hexagon_GPREL:
501 FixupKind = Hexagon::fixup_Hexagon_GPREL16_0;
502 break;
503 case llvm::MCSymbolRefExpr::VK_Hexagon_LO16:
504 FixupKind = Hexagon::fixup_Hexagon_LO16;
505 break;
506 case llvm::MCSymbolRefExpr::VK_Hexagon_HI16:
507 FixupKind = Hexagon::fixup_Hexagon_HI16;
508 break;
509 case llvm::MCSymbolRefExpr::VK_Hexagon_GD_GOT:
510 FixupKind = Hexagon::fixup_Hexagon_GD_GOT_16;
511 break;
512 case llvm::MCSymbolRefExpr::VK_Hexagon_LD_GOT:
513 FixupKind = Hexagon::fixup_Hexagon_LD_GOT_16;
514 break;
515 case llvm::MCSymbolRefExpr::VK_Hexagon_IE_GOT:
516 FixupKind = Hexagon::fixup_Hexagon_IE_GOT_16;
517 break;
518 case llvm::MCSymbolRefExpr::VK_TPREL:
519 FixupKind = Hexagon::fixup_Hexagon_TPREL_16;
520 break;
521 case llvm::MCSymbolRefExpr::VK_DTPREL:
522 FixupKind = Hexagon::fixup_Hexagon_DTPREL_16;
523 break;
524 }
525 break;
526
527 case 15:
528 if (MCID.isBranch() || MCID.isCall())
529 FixupKind = *Extended ? Hexagon::fixup_Hexagon_B15_PCREL_X
530 : Hexagon::fixup_Hexagon_B15_PCREL;
531 break;
532
533 case 13:
534 if (MCID.isBranch())
535 FixupKind = Hexagon::fixup_Hexagon_B13_PCREL;
536 else {
537 errs() << "unrecognized relocation, bits " << bits << "\n";
538 errs() << "name = " << HexagonMCInstrInfo::getName(MCII, MI) << "\n";
539 }
540 break;
541
542 case 12:
543 if (*Extended)
544 switch (kind) {
545 default:
546 FixupKind = Hexagon::fixup_Hexagon_12_X;
547 break;
548 // There isn't a GOT_12_X, both 11_X and 16_X resolve to 6/26
549 case llvm::MCSymbolRefExpr::VK_GOT:
550 FixupKind = Hexagon::fixup_Hexagon_GOT_16_X;
551 break;
552 case llvm::MCSymbolRefExpr::VK_GOTOFF:
553 FixupKind = Hexagon::fixup_Hexagon_GOTREL_16_X;
554 break;
555 }
556 else {
557 errs() << "unrecognized relocation, bits " << bits << "\n";
558 errs() << "name = " << HexagonMCInstrInfo::getName(MCII, MI) << "\n";
559 }
560 break;
561
562 case 11:
563 if (*Extended)
564 switch (kind) {
565 default:
566 FixupKind = Hexagon::fixup_Hexagon_11_X;
567 break;
568 case llvm::MCSymbolRefExpr::VK_GOT:
569 FixupKind = Hexagon::fixup_Hexagon_GOT_11_X;
570 break;
571 case llvm::MCSymbolRefExpr::VK_GOTOFF:
572 FixupKind = Hexagon::fixup_Hexagon_GOTREL_11_X;
573 break;
574 case llvm::MCSymbolRefExpr::VK_Hexagon_GD_GOT:
575 FixupKind = Hexagon::fixup_Hexagon_GD_GOT_11_X;
576 break;
577 case llvm::MCSymbolRefExpr::VK_Hexagon_LD_GOT:
578 FixupKind = Hexagon::fixup_Hexagon_LD_GOT_11_X;
579 break;
580 case llvm::MCSymbolRefExpr::VK_Hexagon_IE_GOT:
581 FixupKind = Hexagon::fixup_Hexagon_IE_GOT_11_X;
582 break;
583 case llvm::MCSymbolRefExpr::VK_TPREL:
584 FixupKind = Hexagon::fixup_Hexagon_TPREL_11_X;
585 break;
586 case llvm::MCSymbolRefExpr::VK_DTPREL:
587 FixupKind = Hexagon::fixup_Hexagon_DTPREL_11_X;
588 break;
589 }
590 else {
591 errs() << "unrecognized relocation, bits " << bits << "\n";
592 errs() << "name = " << HexagonMCInstrInfo::getName(MCII, MI) << "\n";
593 }
594 break;
595
596 case 10:
597 if (*Extended)
598 FixupKind = Hexagon::fixup_Hexagon_10_X;
599 break;
600
601 case 9:
602 if (MCID.isBranch() ||
603 (llvm::HexagonMCInstrInfo::getType(MCII, MI) == HexagonII::TypeCR))
604 FixupKind = *Extended ? Hexagon::fixup_Hexagon_B9_PCREL_X
605 : Hexagon::fixup_Hexagon_B9_PCREL;
606 else if (*Extended)
607 FixupKind = Hexagon::fixup_Hexagon_9_X;
608 else {
609 errs() << "unrecognized relocation, bits " << bits << "\n";
610 errs() << "name = " << HexagonMCInstrInfo::getName(MCII, MI) << "\n";
611 }
612 break;
613
614 case 8:
615 if (*Extended)
616 FixupKind = Hexagon::fixup_Hexagon_8_X;
617 else {
618 errs() << "unrecognized relocation, bits " << bits << "\n";
619 errs() << "name = " << HexagonMCInstrInfo::getName(MCII, MI) << "\n";
620 }
621 break;
622
623 case 7:
624 if (MCID.isBranch() ||
625 (llvm::HexagonMCInstrInfo::getType(MCII, MI) == HexagonII::TypeCR))
626 FixupKind = *Extended ? Hexagon::fixup_Hexagon_B7_PCREL_X
627 : Hexagon::fixup_Hexagon_B7_PCREL;
628 else if (*Extended)
629 FixupKind = Hexagon::fixup_Hexagon_7_X;
630 else {
631 errs() << "unrecognized relocation, bits " << bits << "\n";
632 errs() << "name = " << HexagonMCInstrInfo::getName(MCII, MI) << "\n";
633 }
634 break;
635
636 case 6:
637 if (*Extended) {
638 switch (kind) {
639 default:
640 FixupKind = Hexagon::fixup_Hexagon_6_X;
641 break;
642 case llvm::MCSymbolRefExpr::VK_Hexagon_PCREL:
643 FixupKind = Hexagon::fixup_Hexagon_6_PCREL_X;
644 break;
645 // This is part of an extender, GOT_11 is a
646 // Word32_U6 unsigned/truncated reloc.
647 case llvm::MCSymbolRefExpr::VK_GOT:
648 FixupKind = Hexagon::fixup_Hexagon_GOT_11_X;
649 break;
650 case llvm::MCSymbolRefExpr::VK_GOTOFF:
651 FixupKind = Hexagon::fixup_Hexagon_GOTREL_11_X;
652 break;
653 }
654 } else {
655 errs() << "unrecognized relocation, bits " << bits << "\n";
656 errs() << "name = " << HexagonMCInstrInfo::getName(MCII, MI) << "\n";
657 }
658 break;
659
660 case 0:
661 FixupKind = getFixupNoBits(MCII, MI, MO, kind);
662 break;
663 }
664
665 MCFixup fixup =
Jim Grosbach63661f82015-05-15 19:13:05 +0000666 MCFixup::create(*Addend, MO.getExpr(), MCFixupKind(FixupKind));
Colin LeMahieub6625652015-05-01 21:14:21 +0000667 Fixups.push_back(fixup);
668 // All of the information is in the fixup.
669 return (0);
670}
671
Sid Manning7da3f9a2014-10-03 13:18:11 +0000672unsigned
673HexagonMCCodeEmitter::getMachineOpValue(MCInst const &MI, MCOperand const &MO,
674 SmallVectorImpl<MCFixup> &Fixups,
675 MCSubtargetInfo const &STI) const {
676 if (MO.isReg())
677 return MCT.getRegisterInfo()->getEncodingValue(MO.getReg());
678 if (MO.isImm())
679 return static_cast<unsigned>(MO.getImm());
Colin LeMahieub6625652015-05-01 21:14:21 +0000680
681 // MO must be an ME.
682 assert(MO.isExpr());
683 return getExprOpValue(MI, MO, MO.getExpr(), Fixups, STI);
Sid Manning7da3f9a2014-10-03 13:18:11 +0000684}
685
Sid Manning7da3f9a2014-10-03 13:18:11 +0000686MCCodeEmitter *llvm::createHexagonMCCodeEmitter(MCInstrInfo const &MII,
687 MCRegisterInfo const &MRI,
Sid Manning7da3f9a2014-10-03 13:18:11 +0000688 MCContext &MCT) {
Eric Christopher0169e422015-03-10 22:03:14 +0000689 return new HexagonMCCodeEmitter(MII, MCT);
Sid Manning7da3f9a2014-10-03 13:18:11 +0000690}
691
692#include "HexagonGenMCCodeEmitter.inc"