LLVM 18.0.0git
HexagonDisassembler.cpp
Go to the documentation of this file.
1//===- HexagonDisassembler.cpp - Disassembler for Hexagon ISA -------------===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8
14#include "llvm/ADT/ArrayRef.h"
15#include "llvm/ADT/STLExtras.h"
16#include "llvm/MC/MCContext.h"
19#include "llvm/MC/MCExpr.h"
20#include "llvm/MC/MCInst.h"
21#include "llvm/MC/MCInstrInfo.h"
25#include "llvm/Support/Endian.h"
28#include <cassert>
29#include <cstddef>
30#include <cstdint>
31#include <memory>
32
33#define DEBUG_TYPE "hexagon-disassembler"
34
35using namespace llvm;
36using namespace Hexagon;
37
39
40namespace {
41
42/// Hexagon disassembler for all Hexagon platforms.
43class HexagonDisassembler : public MCDisassembler {
44public:
45 std::unique_ptr<MCInstrInfo const> const MCII;
46 std::unique_ptr<MCInst *> CurrentBundle;
47 mutable MCInst const *CurrentExtender;
48
49 HexagonDisassembler(const MCSubtargetInfo &STI, MCContext &Ctx,
50 MCInstrInfo const *MCII)
51 : MCDisassembler(STI, Ctx), MCII(MCII), CurrentBundle(new MCInst *),
52 CurrentExtender(nullptr) {}
53
54 DecodeStatus getSingleInstruction(MCInst &Instr, MCInst &MCB,
55 ArrayRef<uint8_t> Bytes, uint64_t Address,
56 raw_ostream &CStream, bool &Complete) const;
58 ArrayRef<uint8_t> Bytes, uint64_t Address,
59 raw_ostream &CStream) const override;
60 void remapInstruction(MCInst &Instr) const;
61};
62
63static uint64_t fullValue(HexagonDisassembler const &Disassembler, MCInst &MI,
64 int64_t Value) {
65 MCInstrInfo MCII = *Disassembler.MCII;
66 if (!Disassembler.CurrentExtender ||
68 return Value;
69 unsigned Alignment = HexagonMCInstrInfo::getExtentAlignment(MCII, MI);
70 uint32_t Lower6 = static_cast<uint32_t>(Value >> Alignment) & 0x3f;
71 int64_t Bits;
72 bool Success =
73 Disassembler.CurrentExtender->getOperand(0).getExpr()->evaluateAsAbsolute(
74 Bits);
76 (void)Success;
77 uint64_t Upper26 = static_cast<uint64_t>(Bits);
78 uint64_t Operand = Upper26 | Lower6;
79 return Operand;
80}
81static HexagonDisassembler const &disassembler(const MCDisassembler *Decoder) {
82 return *static_cast<HexagonDisassembler const *>(Decoder);
83}
84template <size_t T>
85static void signedDecoder(MCInst &MI, unsigned tmp,
86 const MCDisassembler *Decoder) {
87 HexagonDisassembler const &Disassembler = disassembler(Decoder);
88 int64_t FullValue = fullValue(Disassembler, MI, SignExtend64<T>(tmp));
89 int64_t Extended = SignExtend64<32>(FullValue);
90 HexagonMCInstrInfo::addConstant(MI, Extended, Disassembler.getContext());
91}
92}
93
94// Forward declare these because the auto-generated code will reference them.
95// Definitions are further down.
96
97static DecodeStatus DecodeIntRegsRegisterClass(MCInst &Inst, unsigned RegNo,
98 uint64_t Address,
99 const MCDisassembler *Decoder);
100static DecodeStatus
101DecodeGeneralSubRegsRegisterClass(MCInst &Inst, unsigned RegNo,
102 uint64_t Address,
103 const MCDisassembler *Decoder);
104static DecodeStatus
105DecodeIntRegsLow8RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address,
106 const MCDisassembler *Decoder);
107static DecodeStatus DecodeHvxVRRegisterClass(MCInst &Inst, unsigned RegNo,
108 uint64_t Address,
109 const MCDisassembler *Decoder);
110static DecodeStatus
111DecodeDoubleRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address,
112 const MCDisassembler *Decoder);
113static DecodeStatus
115 uint64_t Address,
116 const MCDisassembler *Decoder);
117static DecodeStatus DecodeHvxWRRegisterClass(MCInst &Inst, unsigned RegNo,
118 uint64_t Address,
119 const MCDisassembler *Decoder);
120static DecodeStatus DecodeHvxVQRRegisterClass(MCInst &Inst, unsigned RegNo,
121 uint64_t Address,
122 const MCDisassembler *Decoder);
123static DecodeStatus DecodePredRegsRegisterClass(MCInst &Inst, unsigned RegNo,
124 uint64_t Address,
125 const MCDisassembler *Decoder);
126static DecodeStatus DecodeHvxQRRegisterClass(MCInst &Inst, unsigned RegNo,
127 uint64_t Address,
128 const MCDisassembler *Decoder);
129static DecodeStatus DecodeCtrRegsRegisterClass(MCInst &Inst, unsigned RegNo,
130 uint64_t Address,
131 const MCDisassembler *Decoder);
132static DecodeStatus DecodeGuestRegsRegisterClass(MCInst &Inst, unsigned RegNo,
133 uint64_t Address,
134 const MCDisassembler *Decoder);
135static DecodeStatus DecodeSysRegsRegisterClass(MCInst &Inst, unsigned RegNo,
136 uint64_t Address,
137 const MCDisassembler *Decoder);
138static DecodeStatus DecodeModRegsRegisterClass(MCInst &Inst, unsigned RegNo,
139 uint64_t Address,
140 const MCDisassembler *Decoder);
141static DecodeStatus DecodeCtrRegs64RegisterClass(MCInst &Inst, unsigned RegNo,
142 uint64_t Address,
143 const MCDisassembler *Decoder);
144static DecodeStatus
145DecodeGuestRegs64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address,
146 const MCDisassembler *Decoder);
147static DecodeStatus DecodeSysRegs64RegisterClass(MCInst &Inst, unsigned RegNo,
148 uint64_t Address,
149 const MCDisassembler *Decoder);
150
151static DecodeStatus unsignedImmDecoder(MCInst &MI, unsigned tmp,
152 uint64_t Address,
153 const MCDisassembler *Decoder);
154static DecodeStatus s32_0ImmDecoder(MCInst &MI, unsigned tmp,
155 uint64_t /*Address*/,
156 const MCDisassembler *Decoder);
157static DecodeStatus brtargetDecoder(MCInst &MI, unsigned tmp, uint64_t Address,
158 const MCDisassembler *Decoder);
159#include "HexagonDepDecoders.inc"
160#include "HexagonGenDisassemblerTables.inc"
161
163 const MCSubtargetInfo &STI,
164 MCContext &Ctx) {
165 return new HexagonDisassembler(STI, Ctx, T.createMCInstrInfo());
166}
167
171}
172
173DecodeStatus HexagonDisassembler::getInstruction(MCInst &MI, uint64_t &Size,
174 ArrayRef<uint8_t> Bytes,
175 uint64_t Address,
176 raw_ostream &cs) const {
177 DecodeStatus Result = DecodeStatus::Success;
178 bool Complete = false;
179 Size = 0;
180
181 *CurrentBundle = &MI;
182 MI.setOpcode(Hexagon::BUNDLE);
183 MI.addOperand(MCOperand::createImm(0));
184 while (Result == Success && !Complete) {
185 if (Bytes.size() < HEXAGON_INSTR_SIZE)
187 MCInst *Inst = getContext().createMCInst();
188 Result = getSingleInstruction(*Inst, MI, Bytes, Address, cs, Complete);
189 MI.addOperand(MCOperand::createInst(Inst));
191 Bytes = Bytes.slice(HEXAGON_INSTR_SIZE);
192 }
193 if (Result == MCDisassembler::Fail)
194 return Result;
197
198 const auto ArchSTI = Hexagon_MC::getArchSubtarget(&STI);
199 const auto STI_ = (ArchSTI != nullptr) ? *ArchSTI : STI;
200 HexagonMCChecker Checker(getContext(), *MCII, STI_, MI,
201 *getContext().getRegisterInfo(), false);
202 if (!Checker.check())
204 remapInstruction(MI);
206}
207
208void HexagonDisassembler::remapInstruction(MCInst &Instr) const {
209 for (auto I: HexagonMCInstrInfo::bundleInstructions(Instr)) {
210 auto &MI = const_cast<MCInst &>(*I.getInst());
211 switch (MI.getOpcode()) {
212 case Hexagon::S2_allocframe:
213 if (MI.getOperand(0).getReg() == Hexagon::R29) {
214 MI.setOpcode(Hexagon::S6_allocframe_to_raw);
215 MI.erase(MI.begin () + 1);
216 MI.erase(MI.begin ());
217 }
218 break;
219 case Hexagon::L2_deallocframe:
220 if (MI.getOperand(0).getReg() == Hexagon::D15 &&
221 MI.getOperand(1).getReg() == Hexagon::R30) {
222 MI.setOpcode(L6_deallocframe_map_to_raw);
223 MI.erase(MI.begin () + 1);
224 MI.erase(MI.begin ());
225 }
226 break;
227 case Hexagon::L4_return:
228 if (MI.getOperand(0).getReg() == Hexagon::D15 &&
229 MI.getOperand(1).getReg() == Hexagon::R30) {
230 MI.setOpcode(L6_return_map_to_raw);
231 MI.erase(MI.begin () + 1);
232 MI.erase(MI.begin ());
233 }
234 break;
235 case Hexagon::L4_return_t:
236 if (MI.getOperand(0).getReg() == Hexagon::D15 &&
237 MI.getOperand(2).getReg() == Hexagon::R30) {
238 MI.setOpcode(L4_return_map_to_raw_t);
239 MI.erase(MI.begin () + 2);
240 MI.erase(MI.begin ());
241 }
242 break;
243 case Hexagon::L4_return_f:
244 if (MI.getOperand(0).getReg() == Hexagon::D15 &&
245 MI.getOperand(2).getReg() == Hexagon::R30) {
246 MI.setOpcode(L4_return_map_to_raw_f);
247 MI.erase(MI.begin () + 2);
248 MI.erase(MI.begin ());
249 }
250 break;
251 case Hexagon::L4_return_tnew_pt:
252 if (MI.getOperand(0).getReg() == Hexagon::D15 &&
253 MI.getOperand(2).getReg() == Hexagon::R30) {
254 MI.setOpcode(L4_return_map_to_raw_tnew_pt);
255 MI.erase(MI.begin () + 2);
256 MI.erase(MI.begin ());
257 }
258 break;
259 case Hexagon::L4_return_fnew_pt:
260 if (MI.getOperand(0).getReg() == Hexagon::D15 &&
261 MI.getOperand(2).getReg() == Hexagon::R30) {
262 MI.setOpcode(L4_return_map_to_raw_fnew_pt);
263 MI.erase(MI.begin () + 2);
264 MI.erase(MI.begin ());
265 }
266 break;
267 case Hexagon::L4_return_tnew_pnt:
268 if (MI.getOperand(0).getReg() == Hexagon::D15 &&
269 MI.getOperand(2).getReg() == Hexagon::R30) {
270 MI.setOpcode(L4_return_map_to_raw_tnew_pnt);
271 MI.erase(MI.begin () + 2);
272 MI.erase(MI.begin ());
273 }
274 break;
275 case Hexagon::L4_return_fnew_pnt:
276 if (MI.getOperand(0).getReg() == Hexagon::D15 &&
277 MI.getOperand(2).getReg() == Hexagon::R30) {
278 MI.setOpcode(L4_return_map_to_raw_fnew_pnt);
279 MI.erase(MI.begin () + 2);
280 MI.erase(MI.begin ());
281 }
282 break;
283 }
284 }
285}
286
287static void adjustDuplex(MCInst &MI, MCContext &Context) {
288 switch (MI.getOpcode()) {
289 case Hexagon::SA1_setin1:
290 MI.insert(MI.begin() + 1,
292 break;
293 case Hexagon::SA1_dec:
294 MI.insert(MI.begin() + 2,
296 break;
297 default:
298 break;
299 }
300}
301
302DecodeStatus HexagonDisassembler::getSingleInstruction(MCInst &MI, MCInst &MCB,
303 ArrayRef<uint8_t> Bytes,
304 uint64_t Address,
305 raw_ostream &cs,
306 bool &Complete) const {
307 assert(Bytes.size() >= HEXAGON_INSTR_SIZE);
308
310
311 auto BundleSize = HexagonMCInstrInfo::bundleSize(MCB);
314 if (BundleSize == 0)
316 else if (BundleSize == 1)
318 else
319 return DecodeStatus::Fail;
320 }
321
322 CurrentExtender = HexagonMCInstrInfo::extenderForIndex(
324
325 DecodeStatus Result = DecodeStatus::Fail;
328 unsigned duplexIClass;
329 uint8_t const *DecodeLow, *DecodeHigh;
330 duplexIClass = ((Instruction >> 28) & 0xe) | ((Instruction >> 13) & 0x1);
331 switch (duplexIClass) {
332 default:
334 case 0:
335 DecodeLow = DecoderTableSUBINSN_L132;
336 DecodeHigh = DecoderTableSUBINSN_L132;
337 break;
338 case 1:
339 DecodeLow = DecoderTableSUBINSN_L232;
340 DecodeHigh = DecoderTableSUBINSN_L132;
341 break;
342 case 2:
343 DecodeLow = DecoderTableSUBINSN_L232;
344 DecodeHigh = DecoderTableSUBINSN_L232;
345 break;
346 case 3:
347 DecodeLow = DecoderTableSUBINSN_A32;
348 DecodeHigh = DecoderTableSUBINSN_A32;
349 break;
350 case 4:
351 DecodeLow = DecoderTableSUBINSN_L132;
352 DecodeHigh = DecoderTableSUBINSN_A32;
353 break;
354 case 5:
355 DecodeLow = DecoderTableSUBINSN_L232;
356 DecodeHigh = DecoderTableSUBINSN_A32;
357 break;
358 case 6:
359 DecodeLow = DecoderTableSUBINSN_S132;
360 DecodeHigh = DecoderTableSUBINSN_A32;
361 break;
362 case 7:
363 DecodeLow = DecoderTableSUBINSN_S232;
364 DecodeHigh = DecoderTableSUBINSN_A32;
365 break;
366 case 8:
367 DecodeLow = DecoderTableSUBINSN_S132;
368 DecodeHigh = DecoderTableSUBINSN_L132;
369 break;
370 case 9:
371 DecodeLow = DecoderTableSUBINSN_S132;
372 DecodeHigh = DecoderTableSUBINSN_L232;
373 break;
374 case 10:
375 DecodeLow = DecoderTableSUBINSN_S132;
376 DecodeHigh = DecoderTableSUBINSN_S132;
377 break;
378 case 11:
379 DecodeLow = DecoderTableSUBINSN_S232;
380 DecodeHigh = DecoderTableSUBINSN_S132;
381 break;
382 case 12:
383 DecodeLow = DecoderTableSUBINSN_S232;
384 DecodeHigh = DecoderTableSUBINSN_L132;
385 break;
386 case 13:
387 DecodeLow = DecoderTableSUBINSN_S232;
388 DecodeHigh = DecoderTableSUBINSN_L232;
389 break;
390 case 14:
391 DecodeLow = DecoderTableSUBINSN_S232;
392 DecodeHigh = DecoderTableSUBINSN_S232;
393 break;
394 }
395 MI.setOpcode(Hexagon::DuplexIClass0 + duplexIClass);
396 MCInst *MILow = getContext().createMCInst();
397 MCInst *MIHigh = getContext().createMCInst();
398 auto TmpExtender = CurrentExtender;
399 CurrentExtender =
400 nullptr; // constant extenders in duplex must always be in slot 1
401 Result = decodeInstruction(DecodeLow, *MILow, Instruction & 0x1fff, Address,
402 this, STI);
403 CurrentExtender = TmpExtender;
404 if (Result != DecodeStatus::Success)
405 return DecodeStatus::Fail;
406 adjustDuplex(*MILow, getContext());
407 Result = decodeInstruction(
408 DecodeHigh, *MIHigh, (Instruction >> 16) & 0x1fff, Address, this, STI);
409 if (Result != DecodeStatus::Success)
410 return DecodeStatus::Fail;
411 adjustDuplex(*MIHigh, getContext());
412 MCOperand OPLow = MCOperand::createInst(MILow);
413 MCOperand OPHigh = MCOperand::createInst(MIHigh);
414 MI.addOperand(OPLow);
415 MI.addOperand(OPHigh);
416 Complete = true;
417 } else {
420 Complete = true;
421
422 if (CurrentExtender != nullptr)
423 Result = decodeInstruction(DecoderTableMustExtend32, MI, Instruction,
424 Address, this, STI);
425
426 if (Result != MCDisassembler::Success)
427 Result = decodeInstruction(DecoderTable32, MI, Instruction, Address, this,
428 STI);
429
430 if (Result != MCDisassembler::Success &&
431 STI.hasFeature(Hexagon::ExtensionHVX))
432 Result = decodeInstruction(DecoderTableEXT_mmvec32, MI, Instruction,
433 Address, this, STI);
434
435 }
436
437 switch (MI.getOpcode()) {
438 case Hexagon::J4_cmpeqn1_f_jumpnv_nt:
439 case Hexagon::J4_cmpeqn1_f_jumpnv_t:
440 case Hexagon::J4_cmpeqn1_fp0_jump_nt:
441 case Hexagon::J4_cmpeqn1_fp0_jump_t:
442 case Hexagon::J4_cmpeqn1_fp1_jump_nt:
443 case Hexagon::J4_cmpeqn1_fp1_jump_t:
444 case Hexagon::J4_cmpeqn1_t_jumpnv_nt:
445 case Hexagon::J4_cmpeqn1_t_jumpnv_t:
446 case Hexagon::J4_cmpeqn1_tp0_jump_nt:
447 case Hexagon::J4_cmpeqn1_tp0_jump_t:
448 case Hexagon::J4_cmpeqn1_tp1_jump_nt:
449 case Hexagon::J4_cmpeqn1_tp1_jump_t:
450 case Hexagon::J4_cmpgtn1_f_jumpnv_nt:
451 case Hexagon::J4_cmpgtn1_f_jumpnv_t:
452 case Hexagon::J4_cmpgtn1_fp0_jump_nt:
453 case Hexagon::J4_cmpgtn1_fp0_jump_t:
454 case Hexagon::J4_cmpgtn1_fp1_jump_nt:
455 case Hexagon::J4_cmpgtn1_fp1_jump_t:
456 case Hexagon::J4_cmpgtn1_t_jumpnv_nt:
457 case Hexagon::J4_cmpgtn1_t_jumpnv_t:
458 case Hexagon::J4_cmpgtn1_tp0_jump_nt:
459 case Hexagon::J4_cmpgtn1_tp0_jump_t:
460 case Hexagon::J4_cmpgtn1_tp1_jump_nt:
461 case Hexagon::J4_cmpgtn1_tp1_jump_t:
462 MI.insert(MI.begin() + 1,
464 break;
465 default:
466 break;
467 }
468
471 MCOperand &MCO = MI.getOperand(OpIndex);
472 assert(MCO.isReg() && "New value consumers must be registers");
473 unsigned Register =
474 getContext().getRegisterInfo()->getEncodingValue(MCO.getReg());
475 if ((Register & 0x6) == 0)
476 // HexagonPRM 10.11 Bit 1-2 == 0 is reserved
478 unsigned Lookback = (Register & 0x6) >> 1;
479 unsigned Offset = 1;
481 bool PrevVector = false;
483 auto i = Instructions.end() - 1;
484 for (auto n = Instructions.begin() - 1;; --i, ++Offset) {
485 if (i == n)
486 // Couldn't find producer
488 bool CurrentVector = HexagonMCInstrInfo::isVector(*MCII, *i->getInst());
489 if (Vector && !CurrentVector)
490 // Skip scalars when calculating distances for vectors
491 ++Lookback;
492 if (HexagonMCInstrInfo::isImmext(*i->getInst()) && (Vector == PrevVector))
493 ++Lookback;
494 PrevVector = CurrentVector;
495 if (Offset == Lookback)
496 break;
497 }
498 auto const &Inst = *i->getInst();
499 bool SubregBit = (Register & 0x1) != 0;
500 if (HexagonMCInstrInfo::hasNewValue2(*MCII, Inst)) {
501 // If subreg bit is set we're selecting the second produced newvalue
502 unsigned Producer = SubregBit ?
505 assert(Producer != Hexagon::NoRegister);
506 MCO.setReg(Producer);
507 } else if (HexagonMCInstrInfo::hasNewValue(*MCII, Inst)) {
508 unsigned Producer =
510
511 if (HexagonMCInstrInfo::IsVecRegPair(Producer)) {
512 const bool Rev = HexagonMCInstrInfo::IsReverseVecRegPair(Producer);
513 const unsigned ProdPairIndex =
514 Rev ? Producer - Hexagon::WR0 : Producer - Hexagon::W0;
515 Producer = (ProdPairIndex << 1) + SubregBit + Hexagon::V0;
516 } else if (SubregBit)
517 // Hexagon PRM 10.11 New-value operands
518 // Nt[0] is reserved and should always be encoded as zero.
520 assert(Producer != Hexagon::NoRegister);
521 MCO.setReg(Producer);
522 } else
524 }
525
526 if (CurrentExtender != nullptr) {
527 MCInst const &Inst = HexagonMCInstrInfo::isDuplex(*MCII, MI)
528 ? *MI.getOperand(1).getInst()
529 : MI;
530 if (!HexagonMCInstrInfo::isExtendable(*MCII, Inst) &&
531 !HexagonMCInstrInfo::isExtended(*MCII, Inst))
533 }
534 return Result;
535}
536
537static DecodeStatus DecodeRegisterClass(MCInst &Inst, unsigned RegNo,
538 ArrayRef<MCPhysReg> Table) {
539 if (RegNo < Table.size()) {
540 Inst.addOperand(MCOperand::createReg(Table[RegNo]));
542 }
543
545}
546
547static DecodeStatus
548DecodeIntRegsLow8RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address,
549 const MCDisassembler *Decoder) {
550 return DecodeIntRegsRegisterClass(Inst, RegNo, Address, Decoder);
551}
552
553static DecodeStatus DecodeIntRegsRegisterClass(MCInst &Inst, unsigned RegNo,
554 uint64_t Address,
555 const MCDisassembler *Decoder) {
556 static const MCPhysReg IntRegDecoderTable[] = {
557 Hexagon::R0, Hexagon::R1, Hexagon::R2, Hexagon::R3, Hexagon::R4,
558 Hexagon::R5, Hexagon::R6, Hexagon::R7, Hexagon::R8, Hexagon::R9,
559 Hexagon::R10, Hexagon::R11, Hexagon::R12, Hexagon::R13, Hexagon::R14,
560 Hexagon::R15, Hexagon::R16, Hexagon::R17, Hexagon::R18, Hexagon::R19,
561 Hexagon::R20, Hexagon::R21, Hexagon::R22, Hexagon::R23, Hexagon::R24,
562 Hexagon::R25, Hexagon::R26, Hexagon::R27, Hexagon::R28, Hexagon::R29,
563 Hexagon::R30, Hexagon::R31};
564
565 return DecodeRegisterClass(Inst, RegNo, IntRegDecoderTable);
566}
567
568static DecodeStatus
570 uint64_t Address,
571 const MCDisassembler *Decoder) {
572 static const MCPhysReg GeneralSubRegDecoderTable[] = {
573 Hexagon::R0, Hexagon::R1, Hexagon::R2, Hexagon::R3,
574 Hexagon::R4, Hexagon::R5, Hexagon::R6, Hexagon::R7,
575 Hexagon::R16, Hexagon::R17, Hexagon::R18, Hexagon::R19,
576 Hexagon::R20, Hexagon::R21, Hexagon::R22, Hexagon::R23,
577 };
578
579 return DecodeRegisterClass(Inst, RegNo, GeneralSubRegDecoderTable);
580}
581
582static DecodeStatus DecodeHvxVRRegisterClass(MCInst &Inst, unsigned RegNo,
583 uint64_t /*Address*/,
584 const MCDisassembler *Decoder) {
585 static const MCPhysReg HvxVRDecoderTable[] = {
586 Hexagon::V0, Hexagon::V1, Hexagon::V2, Hexagon::V3, Hexagon::V4,
587 Hexagon::V5, Hexagon::V6, Hexagon::V7, Hexagon::V8, Hexagon::V9,
588 Hexagon::V10, Hexagon::V11, Hexagon::V12, Hexagon::V13, Hexagon::V14,
589 Hexagon::V15, Hexagon::V16, Hexagon::V17, Hexagon::V18, Hexagon::V19,
590 Hexagon::V20, Hexagon::V21, Hexagon::V22, Hexagon::V23, Hexagon::V24,
591 Hexagon::V25, Hexagon::V26, Hexagon::V27, Hexagon::V28, Hexagon::V29,
592 Hexagon::V30, Hexagon::V31};
593
594 return DecodeRegisterClass(Inst, RegNo, HvxVRDecoderTable);
595}
596
597static DecodeStatus
599 uint64_t /*Address*/,
600 const MCDisassembler *Decoder) {
601 static const MCPhysReg DoubleRegDecoderTable[] = {
602 Hexagon::D0, Hexagon::D1, Hexagon::D2, Hexagon::D3,
603 Hexagon::D4, Hexagon::D5, Hexagon::D6, Hexagon::D7,
604 Hexagon::D8, Hexagon::D9, Hexagon::D10, Hexagon::D11,
605 Hexagon::D12, Hexagon::D13, Hexagon::D14, Hexagon::D15};
606
607 return DecodeRegisterClass(Inst, RegNo >> 1, DoubleRegDecoderTable);
608}
609
610static DecodeStatus
612 uint64_t /*Address*/,
613 const MCDisassembler *Decoder) {
614 static const MCPhysReg GeneralDoubleLow8RegDecoderTable[] = {
615 Hexagon::D0, Hexagon::D1, Hexagon::D2, Hexagon::D3,
616 Hexagon::D8, Hexagon::D9, Hexagon::D10, Hexagon::D11};
617
618 return DecodeRegisterClass(Inst, RegNo, GeneralDoubleLow8RegDecoderTable);
619}
620
621static DecodeStatus DecodeHvxWRRegisterClass(MCInst &Inst, unsigned RegNo,
622 uint64_t /*Address*/,
623 const MCDisassembler *Decoder) {
624 static const MCPhysReg HvxWRDecoderTable[] = {
625 Hexagon::W0, Hexagon::WR0, Hexagon::W1, Hexagon::WR1, Hexagon::W2,
626 Hexagon::WR2, Hexagon::W3, Hexagon::WR3, Hexagon::W4, Hexagon::WR4,
627 Hexagon::W5, Hexagon::WR5, Hexagon::W6, Hexagon::WR6, Hexagon::W7,
628 Hexagon::WR7, Hexagon::W8, Hexagon::WR8, Hexagon::W9, Hexagon::WR9,
629 Hexagon::W10, Hexagon::WR10, Hexagon::W11, Hexagon::WR11, Hexagon::W12,
630 Hexagon::WR12, Hexagon::W13, Hexagon::WR13, Hexagon::W14, Hexagon::WR14,
631 Hexagon::W15, Hexagon::WR15,
632 };
633
634 return DecodeRegisterClass(Inst, RegNo, HvxWRDecoderTable);
635}
636
637LLVM_ATTRIBUTE_UNUSED // Suppress warning temporarily.
638 static DecodeStatus
639 DecodeHvxVQRRegisterClass(MCInst &Inst, unsigned RegNo,
640 uint64_t /*Address*/,
641 const MCDisassembler *Decoder) {
642 static const MCPhysReg HvxVQRDecoderTable[] = {
643 Hexagon::VQ0, Hexagon::VQ1, Hexagon::VQ2, Hexagon::VQ3,
644 Hexagon::VQ4, Hexagon::VQ5, Hexagon::VQ6, Hexagon::VQ7};
645
646 return DecodeRegisterClass(Inst, RegNo >> 2, HvxVQRDecoderTable);
647}
648
650 uint64_t /*Address*/,
651 const MCDisassembler *Decoder) {
652 static const MCPhysReg PredRegDecoderTable[] = {Hexagon::P0, Hexagon::P1,
653 Hexagon::P2, Hexagon::P3};
654
655 return DecodeRegisterClass(Inst, RegNo, PredRegDecoderTable);
656}
657
658static DecodeStatus DecodeHvxQRRegisterClass(MCInst &Inst, unsigned RegNo,
659 uint64_t /*Address*/,
660 const MCDisassembler *Decoder) {
661 static const MCPhysReg HvxQRDecoderTable[] = {Hexagon::Q0, Hexagon::Q1,
662 Hexagon::Q2, Hexagon::Q3};
663
664 return DecodeRegisterClass(Inst, RegNo, HvxQRDecoderTable);
665}
666
667static DecodeStatus DecodeCtrRegsRegisterClass(MCInst &Inst, unsigned RegNo,
668 uint64_t /*Address*/,
669 const MCDisassembler *Decoder) {
670 using namespace Hexagon;
671
672 static const MCPhysReg CtrlRegDecoderTable[] = {
673 /* 0 */ SA0, LC0, SA1, LC1,
674 /* 4 */ P3_0, C5, M0, M1,
675 /* 8 */ USR, PC, UGP, GP,
676 /* 12 */ CS0, CS1, UPCYCLELO, UPCYCLEHI,
677 /* 16 */ FRAMELIMIT, FRAMEKEY, PKTCOUNTLO, PKTCOUNTHI,
678 /* 20 */ 0, 0, 0, 0,
679 /* 24 */ 0, 0, 0, 0,
680 /* 28 */ 0, 0, UTIMERLO, UTIMERHI
681 };
682
683 if (RegNo >= std::size(CtrlRegDecoderTable))
685
686 static_assert(NoRegister == 0, "Expecting NoRegister to be 0");
687 if (CtrlRegDecoderTable[RegNo] == NoRegister)
689
690 unsigned Register = CtrlRegDecoderTable[RegNo];
693}
694
695static DecodeStatus
696DecodeCtrRegs64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t /*Address*/,
697 const MCDisassembler *Decoder) {
698 using namespace Hexagon;
699
700 static const MCPhysReg CtrlReg64DecoderTable[] = {
701 /* 0 */ C1_0, 0, C3_2, 0,
702 /* 4 */ C5_4, 0, C7_6, 0,
703 /* 8 */ C9_8, 0, C11_10, 0,
704 /* 12 */ CS, 0, UPCYCLE, 0,
705 /* 16 */ C17_16, 0, PKTCOUNT, 0,
706 /* 20 */ 0, 0, 0, 0,
707 /* 24 */ 0, 0, 0, 0,
708 /* 28 */ 0, 0, UTIMER, 0
709 };
710
711 if (RegNo >= std::size(CtrlReg64DecoderTable))
713
714 static_assert(NoRegister == 0, "Expecting NoRegister to be 0");
715 if (CtrlReg64DecoderTable[RegNo] == NoRegister)
717
718 unsigned Register = CtrlReg64DecoderTable[RegNo];
721}
722
723static DecodeStatus DecodeModRegsRegisterClass(MCInst &Inst, unsigned RegNo,
724 uint64_t /*Address*/,
725 const MCDisassembler *Decoder) {
726 unsigned Register = 0;
727 switch (RegNo) {
728 case 0:
729 Register = Hexagon::M0;
730 break;
731 case 1:
732 Register = Hexagon::M1;
733 break;
734 default:
736 }
739}
740
742 uint64_t /*Address*/,
743 const MCDisassembler *Decoder) {
744 HexagonDisassembler const &Disassembler = disassembler(Decoder);
745 int64_t FullValue = fullValue(Disassembler, MI, tmp);
746 assert(FullValue >= 0 && "Negative in unsigned decoder");
747 HexagonMCInstrInfo::addConstant(MI, FullValue, Disassembler.getContext());
749}
750
751static DecodeStatus s32_0ImmDecoder(MCInst &MI, unsigned tmp,
752 uint64_t /*Address*/,
753 const MCDisassembler *Decoder) {
754 HexagonDisassembler const &Disassembler = disassembler(Decoder);
755 unsigned Bits = HexagonMCInstrInfo::getExtentBits(*Disassembler.MCII, MI);
756 tmp = SignExtend64(tmp, Bits);
757 signedDecoder<32>(MI, tmp, Decoder);
759}
760
761// custom decoder for various jump/call immediates
762static DecodeStatus brtargetDecoder(MCInst &MI, unsigned tmp, uint64_t Address,
763 const MCDisassembler *Decoder) {
764 HexagonDisassembler const &Disassembler = disassembler(Decoder);
765 unsigned Bits = HexagonMCInstrInfo::getExtentBits(*Disassembler.MCII, MI);
766 // r13_2 is not extendable, so if there are no extent bits, it's r13_2
767 if (Bits == 0)
768 Bits = 15;
769 uint64_t FullValue = fullValue(Disassembler, MI, SignExtend64(tmp, Bits));
770 uint32_t Extended = FullValue + Address;
771 if (!Disassembler.tryAddingSymbolicOperand(MI, Extended, Address, true, 0, 0,
772 4))
773 HexagonMCInstrInfo::addConstant(MI, Extended, Disassembler.getContext());
775}
776
777static const uint16_t SysRegDecoderTable[] = {
778 Hexagon::SGP0, Hexagon::SGP1, Hexagon::STID,
779 Hexagon::ELR, Hexagon::BADVA0, Hexagon::BADVA1,
780 Hexagon::SSR, Hexagon::CCR, Hexagon::HTID,
781 Hexagon::BADVA, Hexagon::IMASK, Hexagon::S11,
782 Hexagon::S12, Hexagon::S13, Hexagon::S14,
783 Hexagon::S15, Hexagon::EVB, Hexagon::MODECTL,
784 Hexagon::SYSCFG, Hexagon::S19, Hexagon::S20,
785 Hexagon::VID, Hexagon::S22, Hexagon::S23,
786 Hexagon::S24, Hexagon::S25, Hexagon::S26,
787 Hexagon::CFGBASE, Hexagon::DIAG, Hexagon::REV,
788 Hexagon::PCYCLELO, Hexagon::PCYCLEHI, Hexagon::ISDBST,
789 Hexagon::ISDBCFG0, Hexagon::ISDBCFG1, Hexagon::S35,
790 Hexagon::BRKPTPC0, Hexagon::BRKPTCFG0, Hexagon::BRKPTPC1,
791 Hexagon::BRKPTCFG1, Hexagon::ISDBMBXIN, Hexagon::ISDBMBXOUT,
792 Hexagon::ISDBEN, Hexagon::ISDBGPR, Hexagon::S44,
793 Hexagon::S45, Hexagon::S46, Hexagon::S47,
794 Hexagon::PMUCNT0, Hexagon::PMUCNT1, Hexagon::PMUCNT2,
795 Hexagon::PMUCNT3, Hexagon::PMUEVTCFG, Hexagon::PMUCFG,
796 Hexagon::S54, Hexagon::S55, Hexagon::S56,
797 Hexagon::S57, Hexagon::S58, Hexagon::S59,
798 Hexagon::S60, Hexagon::S61, Hexagon::S62,
799 Hexagon::S63, Hexagon::S64, Hexagon::S65,
800 Hexagon::S66, Hexagon::S67, Hexagon::S68,
801 Hexagon::S69, Hexagon::S70, Hexagon::S71,
802 Hexagon::S72, Hexagon::S73, Hexagon::S74,
803 Hexagon::S75, Hexagon::S76, Hexagon::S77,
804 Hexagon::S78, Hexagon::S79, Hexagon::S80,
805};
806
807static DecodeStatus DecodeSysRegsRegisterClass(MCInst &Inst, unsigned RegNo,
808 uint64_t /*Address*/,
809 const MCDisassembler *Decoder) {
810 if (RegNo >= std::size(SysRegDecoderTable))
812
813 if (SysRegDecoderTable[RegNo] == Hexagon::NoRegister)
815
816 unsigned Register = SysRegDecoderTable[RegNo];
819}
820
822 Hexagon::SGP1_0, Hexagon::S3_2, Hexagon::S5_4, Hexagon::S7_6,
823 Hexagon::S9_8, Hexagon::S11_10, Hexagon::S13_12, Hexagon::S15_14,
824 Hexagon::S17_16, Hexagon::S19_18, Hexagon::S21_20, Hexagon::S23_22,
825 Hexagon::S25_24, Hexagon::S27_26, Hexagon::S29_28, Hexagon::S31_30,
826 Hexagon::S33_32, Hexagon::S35_34, Hexagon::S37_36, Hexagon::S39_38,
827 Hexagon::S41_40, Hexagon::S43_42, Hexagon::S45_44, Hexagon::S47_46,
828 Hexagon::S49_48, Hexagon::S51_50, Hexagon::S53_52, Hexagon::S55_54,
829 Hexagon::S57_56, Hexagon::S59_58, Hexagon::S61_60, Hexagon::S63_62,
830 Hexagon::S65_64, Hexagon::S67_66, Hexagon::S69_68, Hexagon::S71_70,
831 Hexagon::S73_72, Hexagon::S75_74, Hexagon::S77_76, Hexagon::S79_78,
832};
833
834static DecodeStatus
835DecodeSysRegs64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t /*Address*/,
836 const MCDisassembler *Decoder) {
837 RegNo = RegNo >> 1;
838 if (RegNo >= std::size(SysReg64DecoderTable))
840
841 if (SysReg64DecoderTable[RegNo] == Hexagon::NoRegister)
843
844 unsigned Register = SysReg64DecoderTable[RegNo];
847}
848
849static DecodeStatus
850DecodeGuestRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t /*Address*/,
851 const MCDisassembler *Decoder) {
852 using namespace Hexagon;
853
854 static const MCPhysReg GuestRegDecoderTable[] = {
855 /* 0 */ GELR, GSR, GOSP, G3,
856 /* 4 */ G4, G5, G6, G7,
857 /* 8 */ G8, G9, G10, G11,
858 /* 12 */ G12, G13, G14, G15,
859 /* 16 */ GPMUCNT4, GPMUCNT5, GPMUCNT6, GPMUCNT7,
860 /* 20 */ G20, G21, G22, G23,
861 /* 24 */ GPCYCLELO, GPCYCLEHI, GPMUCNT0, GPMUCNT1,
862 /* 28 */ GPMUCNT2, GPMUCNT3, G30, G31
863 };
864
865 if (RegNo >= std::size(GuestRegDecoderTable))
867 if (GuestRegDecoderTable[RegNo] == Hexagon::NoRegister)
869
870 unsigned Register = GuestRegDecoderTable[RegNo];
873}
874
875static DecodeStatus
877 uint64_t /*Address*/,
878 const MCDisassembler *Decoder) {
879 using namespace Hexagon;
880
881 static const MCPhysReg GuestReg64DecoderTable[] = {
882 /* 0 */ G1_0, 0, G3_2, 0,
883 /* 4 */ G5_4, 0, G7_6, 0,
884 /* 8 */ G9_8, 0, G11_10, 0,
885 /* 12 */ G13_12, 0, G15_14, 0,
886 /* 16 */ G17_16, 0, G19_18, 0,
887 /* 20 */ G21_20, 0, G23_22, 0,
888 /* 24 */ G25_24, 0, G27_26, 0,
889 /* 28 */ G29_28, 0, G31_30, 0
890 };
891
892 if (RegNo >= std::size(GuestReg64DecoderTable))
894 if (GuestReg64DecoderTable[RegNo] == Hexagon::NoRegister)
896
897 unsigned Register = GuestReg64DecoderTable[RegNo];
900}
#define Success
#define LLVM_ATTRIBUTE_UNUSED
Definition: Compiler.h:184
#define LLVM_EXTERNAL_VISIBILITY
Definition: Compiler.h:135
uint64_t Size
static DecodeStatus DecodeIntRegsLow8RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeGuestRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeCtrRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus brtargetDecoder(MCInst &MI, unsigned tmp, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodePredRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus s32_0ImmDecoder(MCInst &MI, unsigned tmp, uint64_t, const MCDisassembler *Decoder)
LLVM_EXTERNAL_VISIBILITY void LLVMInitializeHexagonDisassembler()
static DecodeStatus DecodeHvxVQRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus unsignedImmDecoder(MCInst &MI, unsigned tmp, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeHvxVRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static MCDisassembler * createHexagonDisassembler(const Target &T, const MCSubtargetInfo &STI, MCContext &Ctx)
static DecodeStatus DecodeSysRegs64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeModRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static const uint16_t SysReg64DecoderTable[]
static void adjustDuplex(MCInst &MI, MCContext &Context)
static DecodeStatus DecodeRegisterClass(MCInst &Inst, unsigned RegNo, ArrayRef< MCPhysReg > Table)
static DecodeStatus DecodeSysRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeDoubleRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static const uint16_t SysRegDecoderTable[]
static DecodeStatus DecodeGeneralSubRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeHvxWRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeIntRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeHvxQRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeCtrRegs64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeGeneralDoubleLow8RegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeGuestRegs64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
#define HEXAGON_MAX_PACKET_SIZE
#define HEXAGON_INSTR_SIZE
IRTranslator LLVM IR MI
#define I(x, y, z)
Definition: MD5.cpp:58
LLVMContext & Context
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
unsigned OpIndex
This file contains some templates that are useful if you are working with the STL at all.
static const unsigned IntRegDecoderTable[]
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
size_t size() const
size - Get the array size.
Definition: ArrayRef.h:165
const T * data() const
Definition: ArrayRef.h:162
ArrayRef< T > slice(size_t N, size_t M) const
slice(n, m) - Chop off the first N elements of the array, and keep M elements in the array.
Definition: ArrayRef.h:195
Check for a valid bundle.
static const MCConstantExpr * create(int64_t Value, MCContext &Ctx, bool PrintInHex=false, unsigned SizeInBytes=0)
Definition: MCExpr.cpp:194
Context object for machine code objects.
Definition: MCContext.h:76
Superclass for all disassemblers.
DecodeStatus
Ternary decode status.
virtual DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size, ArrayRef< uint8_t > Bytes, uint64_t Address, raw_ostream &CStream) const =0
Returns the disassembly of a single instruction.
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:184
void addOperand(const MCOperand Op)
Definition: MCInst.h:210
Interface to description of machine instruction set.
Definition: MCInstrInfo.h:26
Instances of this class represent operands of the MCInst class.
Definition: MCInst.h:36
static MCOperand createReg(unsigned Reg)
Definition: MCInst.h:134
static MCOperand createExpr(const MCExpr *Val)
Definition: MCInst.h:162
void setReg(unsigned Reg)
Set the register number.
Definition: MCInst.h:75
static MCOperand createImm(int64_t Val)
Definition: MCInst.h:141
unsigned getReg() const
Returns the register number.
Definition: MCInst.h:69
bool isReg() const
Definition: MCInst.h:61
static MCOperand createInst(const MCInst *Val)
Definition: MCInst.h:169
Generic base class for all target subtargets.
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
Target - Wrapper for Target specific information.
LLVM Value Representation.
Definition: Value.h:74
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
bool IsReverseVecRegPair(unsigned VecReg)
void addConstant(MCInst &MI, uint64_t Value, MCContext &Context)
size_t bundleSize(MCInst const &MCI)
bool isDuplex(MCInstrInfo const &MCII, MCInst const &MCI)
bool IsVecRegPair(unsigned VecReg)
unsigned getExtentBits(MCInstrInfo const &MCII, MCInst const &MCI)
bool isNewValue(MCInstrInfo const &MCII, MCInst const &MCI)
Return whether the insn expects newly produced value.
unsigned short getNewValueOp(MCInstrInfo const &MCII, MCInst const &MCI)
unsigned short getExtendableOp(MCInstrInfo const &MCII, MCInst const &MCI)
iterator_range< Hexagon::PacketIterator > bundleInstructions(MCInstrInfo const &MCII, MCInst const &MCI)
bool isExtendable(MCInstrInfo const &MCII, MCInst const &MCI)
MCInst const * extenderForIndex(MCInst const &MCB, size_t Index)
bool isImmext(MCInst const &MCI)
MCOperand const & getNewValueOperand(MCInstrInfo const &MCII, MCInst const &MCI)
bool hasNewValue2(MCInstrInfo const &MCII, MCInst const &MCI)
Return whether the insn produces a second value.
unsigned getExtentAlignment(MCInstrInfo const &MCII, MCInst const &MCI)
bool isVector(MCInstrInfo const &MCII, MCInst const &MCI)
MCOperand const & getNewValueOperand2(MCInstrInfo const &MCII, MCInst const &MCI)
bool isExtended(MCInstrInfo const &MCII, MCInst const &MCI)
bool hasNewValue(MCInstrInfo const &MCII, MCInst const &MCI)
Return whether the insn produces a value.
MCSubtargetInfo const * getArchSubtarget(MCSubtargetInfo const *STI)
uint32_t read32le(const void *P)
Definition: Endian.h:379
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Offset
Definition: DWP.cpp:440
Target & getTheHexagonTarget()
unsigned M1(unsigned Val)
Definition: VE.h:376
unsigned M0(unsigned Val)
Definition: VE.h:375
constexpr int64_t SignExtend64(uint64_t x)
Sign-extend the number in the bottom B bits of X to a 64-bit integer.
Definition: MathExtras.h:449
static void RegisterMCDisassembler(Target &T, Target::MCDisassemblerCtorTy Fn)
RegisterMCDisassembler - Register a MCDisassembler implementation for the given target.