1 //===----- HexagonMCChecker.cpp - Instruction bundle checking -------------===//
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 implements the checking of insns inside a bundle according to the
10 // packet constraint rules of the Hexagon ISA.
12 //===----------------------------------------------------------------------===//
14 #include "MCTargetDesc/HexagonMCChecker.h"
15 #include "MCTargetDesc/HexagonBaseInfo.h"
16 #include "MCTargetDesc/HexagonMCInstrInfo.h"
17 #include "MCTargetDesc/HexagonMCShuffler.h"
18 #include "MCTargetDesc/HexagonMCTargetDesc.h"
19 #include "llvm/ADT/Twine.h"
20 #include "llvm/MC/MCContext.h"
21 #include "llvm/MC/MCInst.h"
22 #include "llvm/MC/MCInstrDesc.h"
23 #include "llvm/MC/MCRegisterInfo.h"
24 #include "llvm/Support/CommandLine.h"
25 #include "llvm/Support/SourceMgr.h"
31 RelaxNVChecks("relax-nv-checks", cl::init(false), cl::ZeroOrMore
,
32 cl::Hidden
, cl::desc("Relax checks of new-value validity"));
34 const HexagonMCChecker::PredSense
35 HexagonMCChecker::Unconditional(Hexagon::NoRegister
, false);
37 void HexagonMCChecker::init() {
38 // Initialize read-only registers set.
39 ReadOnly
.insert(Hexagon::PC
);
40 ReadOnly
.insert(Hexagon::C9_8
);
42 // Figure out the loop-registers definitions.
43 if (HexagonMCInstrInfo::isInnerLoop(MCB
)) {
44 Defs
[Hexagon::SA0
].insert(Unconditional
); // FIXME: define or change SA0?
45 Defs
[Hexagon::LC0
].insert(Unconditional
);
47 if (HexagonMCInstrInfo::isOuterLoop(MCB
)) {
48 Defs
[Hexagon::SA1
].insert(Unconditional
); // FIXME: define or change SA0?
49 Defs
[Hexagon::LC1
].insert(Unconditional
);
52 if (HexagonMCInstrInfo::isBundle(MCB
))
54 for (auto const &I
: HexagonMCInstrInfo::bundleInstructions(MCB
)) {
55 MCInst
const &Inst
= *I
.getInst();
56 if (HexagonMCInstrInfo::isDuplex(MCII
, Inst
)) {
57 init(*Inst
.getOperand(0).getInst());
58 init(*Inst
.getOperand(1).getInst());
66 void HexagonMCChecker::initReg(MCInst
const &MCI
, unsigned R
, unsigned &PredReg
,
68 if (HexagonMCInstrInfo::isPredicated(MCII
, MCI
) && isPredicateRegister(R
)) {
69 // Note an used predicate register.
71 isTrue
= HexagonMCInstrInfo::isPredicatedTrue(MCII
, MCI
);
73 // Note use of new predicate register.
74 if (HexagonMCInstrInfo::isPredicatedNew(MCII
, MCI
))
75 NewPreds
.insert(PredReg
);
77 // Note register use. Super-registers are not tracked directly,
78 // but their components.
79 for (MCRegAliasIterator
SRI(R
, &RI
, !MCSubRegIterator(R
, &RI
).isValid());
81 if (!MCSubRegIterator(*SRI
, &RI
).isValid())
82 // Skip super-registers used indirectly.
86 void HexagonMCChecker::init(MCInst
const &MCI
) {
87 const MCInstrDesc
&MCID
= HexagonMCInstrInfo::getDesc(MCII
, MCI
);
88 unsigned PredReg
= Hexagon::NoRegister
;
91 // Get used registers.
92 for (unsigned i
= MCID
.getNumDefs(); i
< MCID
.getNumOperands(); ++i
)
93 if (MCI
.getOperand(i
).isReg())
94 initReg(MCI
, MCI
.getOperand(i
).getReg(), PredReg
, isTrue
);
95 for (unsigned i
= 0; i
< MCID
.getNumImplicitUses(); ++i
)
96 initReg(MCI
, MCID
.getImplicitUses()[i
], PredReg
, isTrue
);
98 // Get implicit register definitions.
99 if (const MCPhysReg
*ImpDef
= MCID
.getImplicitDefs())
100 for (; *ImpDef
; ++ImpDef
) {
101 unsigned R
= *ImpDef
;
103 if (Hexagon::R31
!= R
&& MCID
.isCall())
104 // Any register other than the LR and the PC are actually volatile ones
105 // as defined by the ABI, not modified implicitly by the call insn.
107 if (Hexagon::PC
== R
)
108 // Branches are the only insns that can change the PC,
109 // otherwise a read-only register.
112 if (Hexagon::USR_OVF
== R
)
113 // Many insns change the USR implicitly, but only one or another flag.
114 // The instruction table models the USR.OVF flag, which can be
115 // implicitly modified more than once, but cannot be modified in the
116 // same packet with an instruction that modifies is explicitly. Deal
117 // with such situations individually.
119 else if (isPredicateRegister(R
) &&
120 HexagonMCInstrInfo::isPredicateLate(MCII
, MCI
))
121 // Include implicit late predicates.
124 Defs
[R
].insert(PredSense(PredReg
, isTrue
));
127 // Figure out explicit register definitions.
128 for (unsigned i
= 0; i
< MCID
.getNumDefs(); ++i
) {
129 unsigned R
= MCI
.getOperand(i
).getReg(), S
= Hexagon::NoRegister
;
130 // USR has subregisters (while C8 does not for technical reasons), so
131 // reset R to USR, since we know how to handle multiple defs of USR,
132 // taking into account its subregisters.
133 if (R
== Hexagon::C8
)
136 // Note register definitions, direct ones as well as indirect side-effects.
137 // Super-registers are not tracked directly, but their components.
138 for (MCRegAliasIterator
SRI(R
, &RI
, !MCSubRegIterator(R
, &RI
).isValid());
139 SRI
.isValid(); ++SRI
) {
140 if (MCSubRegIterator(*SRI
, &RI
).isValid())
141 // Skip super-registers defined indirectly.
146 // Avoid scoring the defined register multiple times.
149 // Note that the defined register has already been scored.
153 if (Hexagon::P3_0
!= R
&& Hexagon::P3_0
== *SRI
)
154 // P3:0 is a special case, since multiple predicate register definitions
155 // in a packet is allowed as the equivalent of their logical "and".
156 // Only an explicit definition of P3:0 is noted as such; if a
157 // side-effect, then note as a soft definition.
158 SoftDefs
.insert(*SRI
);
159 else if (HexagonMCInstrInfo::isPredicateLate(MCII
, MCI
) &&
160 isPredicateRegister(*SRI
))
161 // Some insns produce predicates too late to be used in the same packet.
162 LatePreds
.insert(*SRI
);
163 else if (i
== 0 && HexagonMCInstrInfo::getType(MCII
, MCI
) ==
164 HexagonII::TypeCVI_VM_TMP_LD
)
165 // Temporary loads should be used in the same packet, but don't commit
166 // results, so it should be disregarded if another insn changes the same
168 // TODO: relies on the impossibility of a current and a temporary loads
169 // in the same packet.
170 TmpDefs
.insert(*SRI
);
171 else if (i
<= 1 && HexagonMCInstrInfo::hasNewValue2(MCII
, MCI
))
172 // vshuff(Vx, Vy, Rx) <- Vx(0) and Vy(1) are both source and
173 // destination registers with this instruction. same for vdeal(Vx,Vy,Rx)
176 Defs
[*SRI
].insert(PredSense(PredReg
, isTrue
));
180 // Figure out definitions of new predicate registers.
181 if (HexagonMCInstrInfo::isPredicatedNew(MCII
, MCI
))
182 for (unsigned i
= MCID
.getNumDefs(); i
< MCID
.getNumOperands(); ++i
)
183 if (MCI
.getOperand(i
).isReg()) {
184 unsigned P
= MCI
.getOperand(i
).getReg();
186 if (isPredicateRegister(P
))
191 HexagonMCChecker::HexagonMCChecker(MCContext
&Context
, MCInstrInfo
const &MCII
,
192 MCSubtargetInfo
const &STI
, MCInst
&mcb
,
193 MCRegisterInfo
const &ri
, bool ReportErrors
)
194 : Context(Context
), MCB(mcb
), RI(ri
), MCII(MCII
), STI(STI
),
195 ReportErrors(ReportErrors
) {
199 HexagonMCChecker::HexagonMCChecker(HexagonMCChecker
const &Other
,
200 MCSubtargetInfo
const &STI
,
201 bool CopyReportErrors
)
202 : Context(Other
.Context
), MCB(Other
.MCB
), RI(Other
.RI
), MCII(Other
.MCII
),
203 STI(STI
), ReportErrors(CopyReportErrors
? Other
.ReportErrors
: false) {}
205 bool HexagonMCChecker::check(bool FullCheck
) {
206 bool chkP
= checkPredicates();
207 bool chkNV
= checkNewValues();
208 bool chkR
= checkRegisters();
209 bool chkRRO
= checkRegistersReadOnly();
210 checkRegisterCurDefs();
211 bool chkS
= checkSolo();
214 chkSh
= checkShuffle();
217 chkSl
= checkSlots();
218 bool chkAXOK
= checkAXOK();
219 bool chkCofMax1
= checkCOFMax1();
220 bool chkHWLoop
= checkHWLoop();
221 bool chk
= chkP
&& chkNV
&& chkR
&& chkRRO
&& chkS
&& chkSh
&& chkSl
&&
222 chkAXOK
&& chkCofMax1
&& chkHWLoop
;
227 static bool isDuplexAGroup(unsigned Opcode
) {
229 case Hexagon::SA1_addi
:
230 case Hexagon::SA1_addrx
:
231 case Hexagon::SA1_addsp
:
232 case Hexagon::SA1_and1
:
233 case Hexagon::SA1_clrf
:
234 case Hexagon::SA1_clrfnew
:
235 case Hexagon::SA1_clrt
:
236 case Hexagon::SA1_clrtnew
:
237 case Hexagon::SA1_cmpeqi
:
238 case Hexagon::SA1_combine0i
:
239 case Hexagon::SA1_combine1i
:
240 case Hexagon::SA1_combine2i
:
241 case Hexagon::SA1_combine3i
:
242 case Hexagon::SA1_combinerz
:
243 case Hexagon::SA1_combinezr
:
244 case Hexagon::SA1_dec
:
245 case Hexagon::SA1_inc
:
246 case Hexagon::SA1_seti
:
247 case Hexagon::SA1_setin1
:
248 case Hexagon::SA1_sxtb
:
249 case Hexagon::SA1_sxth
:
250 case Hexagon::SA1_tfr
:
251 case Hexagon::SA1_zxtb
:
252 case Hexagon::SA1_zxth
:
260 static bool isNeitherAnorX(MCInstrInfo
const &MCII
, MCInst
const &ID
) {
262 unsigned Type
= HexagonMCInstrInfo::getType(MCII
, ID
);
263 if (Type
== HexagonII::TypeDUPLEX
) {
264 unsigned subInst0Opcode
= ID
.getOperand(0).getInst()->getOpcode();
265 unsigned subInst1Opcode
= ID
.getOperand(1).getInst()->getOpcode();
266 Result
+= !isDuplexAGroup(subInst0Opcode
);
267 Result
+= !isDuplexAGroup(subInst1Opcode
);
270 Type
!= HexagonII::TypeALU32_2op
&& Type
!= HexagonII::TypeALU32_3op
&&
271 Type
!= HexagonII::TypeALU32_ADDI
&& Type
!= HexagonII::TypeS_2op
&&
272 Type
!= HexagonII::TypeS_3op
&&
273 (Type
!= HexagonII::TypeALU64
|| HexagonMCInstrInfo::isFloat(MCII
, ID
));
277 bool HexagonMCChecker::checkAXOK() {
278 MCInst
const *HasSoloAXInst
= nullptr;
279 for (auto const &I
: HexagonMCInstrInfo::bundleInstructions(MCII
, MCB
)) {
280 if (HexagonMCInstrInfo::isSoloAX(MCII
, I
)) {
286 for (auto const &I
: HexagonMCInstrInfo::bundleInstructions(MCII
, MCB
)) {
287 if (&I
!= HasSoloAXInst
&& isNeitherAnorX(MCII
, I
)) {
289 HasSoloAXInst
->getLoc(),
290 Twine("Instruction can only be in a packet with ALU or non-FPU XTYPE "
292 reportError(I
.getLoc(),
293 Twine("Not an ALU or non-FPU XTYPE instruction"));
300 void HexagonMCChecker::reportBranchErrors() {
301 for (auto const &I
: HexagonMCInstrInfo::bundleInstructions(MCII
, MCB
)) {
302 MCInstrDesc
const &Desc
= HexagonMCInstrInfo::getDesc(MCII
, I
);
303 if (Desc
.isBranch() || Desc
.isCall() || Desc
.isReturn())
304 reportNote(I
.getLoc(), "Branching instruction");
308 bool HexagonMCChecker::checkHWLoop() {
309 if (!HexagonMCInstrInfo::isInnerLoop(MCB
) &&
310 !HexagonMCInstrInfo::isOuterLoop(MCB
))
312 for (auto const &I
: HexagonMCInstrInfo::bundleInstructions(MCII
, MCB
)) {
313 MCInstrDesc
const &Desc
= HexagonMCInstrInfo::getDesc(MCII
, I
);
314 if (Desc
.isBranch() || Desc
.isCall() || Desc
.isReturn()) {
315 reportError(MCB
.getLoc(),
316 "Branches cannot be in a packet with hardware loops");
317 reportBranchErrors();
324 bool HexagonMCChecker::checkCOFMax1() {
325 SmallVector
<MCInst
const *, 2> BranchLocations
;
326 for (auto const &I
: HexagonMCInstrInfo::bundleInstructions(MCII
, MCB
)) {
327 MCInstrDesc
const &Desc
= HexagonMCInstrInfo::getDesc(MCII
, I
);
328 if (Desc
.isBranch() || Desc
.isCall() || Desc
.isReturn())
329 BranchLocations
.push_back(&I
);
331 for (unsigned J
= 0, N
= BranchLocations
.size(); J
< N
; ++J
) {
332 MCInst
const &I
= *BranchLocations
[J
];
333 if (HexagonMCInstrInfo::isCofMax1(MCII
, I
)) {
334 bool Relax1
= HexagonMCInstrInfo::isCofRelax1(MCII
, I
);
335 bool Relax2
= HexagonMCInstrInfo::isCofRelax2(MCII
, I
);
336 if (N
> 1 && !Relax1
&& !Relax2
) {
337 reportError(I
.getLoc(),
338 "Instruction may not be in a packet with other branches");
339 reportBranchErrors();
342 if (N
> 1 && J
== 0 && !Relax1
) {
343 reportError(I
.getLoc(),
344 "Instruction may not be the first branch in packet");
345 reportBranchErrors();
348 if (N
> 1 && J
== 1 && !Relax2
) {
349 reportError(I
.getLoc(),
350 "Instruction may not be the second branch in packet");
351 reportBranchErrors();
359 bool HexagonMCChecker::checkSlots() {
360 unsigned slotsUsed
= 0;
361 for (auto HMI
: HexagonMCInstrInfo::bundleInstructions(MCB
)) {
362 MCInst
const &MCI
= *HMI
.getInst();
363 if (HexagonMCInstrInfo::isImmext(MCI
))
365 if (HexagonMCInstrInfo::isDuplex(MCII
, MCI
))
371 if (slotsUsed
> HEXAGON_PACKET_SIZE
) {
372 reportError("invalid instruction packet: out of slots");
378 // Check legal use of predicate registers.
379 bool HexagonMCChecker::checkPredicates() {
380 // Check for proper use of new predicate registers.
381 for (const auto &I
: NewPreds
) {
384 if (!Defs
.count(P
) || LatePreds
.count(P
)) {
385 // Error out if the new predicate register is not defined,
387 // (e.g., "{ if (p3.new)... ; p3 = sp1loop0(#r7:2, Rs) }").
388 reportErrorNewValue(P
);
393 // Check for proper use of auto-anded of predicate registers.
394 for (const auto &I
: LatePreds
) {
397 if (LatePreds
.count(P
) > 1 || Defs
.count(P
)) {
398 // Error out if predicate register defined "late" multiple times or
399 // defined late and regularly defined
400 // (e.g., "{ p3 = sp1loop0(...); p3 = cmp.eq(...) }".
401 reportErrorRegisters(P
);
409 // Check legal use of new values.
410 bool HexagonMCChecker::checkNewValues() {
411 for (auto const &I
: HexagonMCInstrInfo::bundleInstructions(MCII
, MCB
)) {
412 if (!HexagonMCInstrInfo::isNewValue(MCII
, I
))
414 auto Consumer
= HexagonMCInstrInfo::predicateInfo(MCII
, I
);
415 bool Branch
= HexagonMCInstrInfo::getDesc(MCII
, I
).isBranch();
416 MCOperand
const &Op
= HexagonMCInstrInfo::getNewValueOperand(MCII
, I
);
418 auto Producer
= registerProducer(Op
.getReg(), Consumer
);
419 if (std::get
<0>(Producer
) == nullptr) {
420 reportError(I
.getLoc(), "New value register consumer has no producer");
423 if (!RelaxNVChecks
) {
424 // Checks that statically prove correct new value consumption
425 if (std::get
<2>(Producer
).isPredicated() &&
426 (!Consumer
.isPredicated() ||
427 llvm::HexagonMCInstrInfo::getType(MCII
, I
) == HexagonII::TypeNCJ
)) {
429 std::get
<0>(Producer
)->getLoc(),
430 "Register producer is predicated and consumer is unconditional");
431 reportError(I
.getLoc(),
432 "Instruction does not have a valid new register producer");
435 if (std::get
<2>(Producer
).Register
!= Hexagon::NoRegister
&&
436 std::get
<2>(Producer
).Register
!= Consumer
.Register
) {
437 reportNote(std::get
<0>(Producer
)->getLoc(),
438 "Register producer does not use the same predicate "
439 "register as the consumer");
440 reportError(I
.getLoc(),
441 "Instruction does not have a valid new register producer");
445 if (std::get
<2>(Producer
).Register
== Consumer
.Register
&&
446 Consumer
.PredicatedTrue
!= std::get
<2>(Producer
).PredicatedTrue
) {
448 std::get
<0>(Producer
)->getLoc(),
449 "Register producer has the opposite predicate sense as consumer");
450 reportError(I
.getLoc(),
451 "Instruction does not have a valid new register producer");
454 MCInstrDesc
const &Desc
=
455 HexagonMCInstrInfo::getDesc(MCII
, *std::get
<0>(Producer
));
456 if (Desc
.OpInfo
[std::get
<1>(Producer
)].RegClass
==
457 Hexagon::DoubleRegsRegClassID
) {
458 reportNote(std::get
<0>(Producer
)->getLoc(),
459 "Double registers cannot be new-value producers");
460 reportError(I
.getLoc(),
461 "Instruction does not have a valid new register producer");
464 if ((Desc
.mayLoad() && std::get
<1>(Producer
) == 1) ||
465 (Desc
.mayStore() && std::get
<1>(Producer
) == 0)) {
467 HexagonMCInstrInfo::getAddrMode(MCII
, *std::get
<0>(Producer
));
469 if (Mode
== HexagonII::AbsoluteSet
)
470 ModeError
= "Absolute-set";
471 if (Mode
== HexagonII::PostInc
)
472 ModeError
= "Auto-increment";
473 if (!ModeError
.empty()) {
474 reportNote(std::get
<0>(Producer
)->getLoc(),
475 ModeError
+ " registers cannot be a new-value "
477 reportError(I
.getLoc(),
478 "Instruction does not have a valid new register producer");
482 if (Branch
&& HexagonMCInstrInfo::isFloat(MCII
, *std::get
<0>(Producer
))) {
483 reportNote(std::get
<0>(Producer
)->getLoc(),
484 "FPU instructions cannot be new-value producers for jumps");
485 reportError(I
.getLoc(),
486 "Instruction does not have a valid new register producer");
493 bool HexagonMCChecker::checkRegistersReadOnly() {
494 for (auto I
: HexagonMCInstrInfo::bundleInstructions(MCB
)) {
495 MCInst
const &Inst
= *I
.getInst();
496 unsigned Defs
= HexagonMCInstrInfo::getDesc(MCII
, Inst
).getNumDefs();
497 for (unsigned j
= 0; j
< Defs
; ++j
) {
498 MCOperand
const &Operand
= Inst
.getOperand(j
);
499 assert(Operand
.isReg() && "Def is not a register");
500 unsigned Register
= Operand
.getReg();
501 if (ReadOnly
.find(Register
) != ReadOnly
.end()) {
502 reportError(Inst
.getLoc(), "Cannot write to read-only register `" +
503 Twine(RI
.getName(Register
)) + "'");
511 bool HexagonMCChecker::registerUsed(unsigned Register
) {
512 for (auto const &I
: HexagonMCInstrInfo::bundleInstructions(MCII
, MCB
))
513 for (unsigned j
= HexagonMCInstrInfo::getDesc(MCII
, I
).getNumDefs(),
514 n
= I
.getNumOperands();
516 MCOperand
const &Operand
= I
.getOperand(j
);
517 if (Operand
.isReg() && Operand
.getReg() == Register
)
523 std::tuple
<MCInst
const *, unsigned, HexagonMCInstrInfo::PredicateInfo
>
524 HexagonMCChecker::registerProducer(
525 unsigned Register
, HexagonMCInstrInfo::PredicateInfo ConsumerPredicate
) {
526 std::tuple
<MCInst
const *, unsigned, HexagonMCInstrInfo::PredicateInfo
>
528 for (auto const &I
: HexagonMCInstrInfo::bundleInstructions(MCII
, MCB
)) {
529 MCInstrDesc
const &Desc
= HexagonMCInstrInfo::getDesc(MCII
, I
);
530 auto ProducerPredicate
= HexagonMCInstrInfo::predicateInfo(MCII
, I
);
531 for (unsigned J
= 0, N
= Desc
.getNumDefs(); J
< N
; ++J
)
532 for (auto K
= MCRegAliasIterator(I
.getOperand(J
).getReg(), &RI
, true);
534 if (*K
== Register
) {
536 (ProducerPredicate
.Register
== ConsumerPredicate
.Register
&&
537 (ProducerPredicate
.Register
== Hexagon::NoRegister
||
538 ProducerPredicate
.PredicatedTrue
==
539 ConsumerPredicate
.PredicatedTrue
)))
540 return std::make_tuple(&I
, J
, ProducerPredicate
);
541 std::get
<0>(WrongSense
) = &I
;
542 std::get
<1>(WrongSense
) = J
;
543 std::get
<2>(WrongSense
) = ProducerPredicate
;
545 if (Register
== Hexagon::VTMP
&& HexagonMCInstrInfo::hasTmpDst(MCII
, I
))
546 return std::make_tuple(&I
, 0, HexagonMCInstrInfo::PredicateInfo());
551 void HexagonMCChecker::checkRegisterCurDefs() {
552 for (auto const &I
: HexagonMCInstrInfo::bundleInstructions(MCII
, MCB
)) {
553 if (HexagonMCInstrInfo::isCVINew(MCII
, I
) &&
554 HexagonMCInstrInfo::getDesc(MCII
, I
).mayLoad()) {
555 unsigned Register
= I
.getOperand(0).getReg();
556 if (!registerUsed(Register
))
557 reportWarning("Register `" + Twine(RI
.getName(Register
)) +
558 "' used with `.cur' "
559 "but not used in the same packet");
564 // Check for legal register uses and definitions.
565 bool HexagonMCChecker::checkRegisters() {
566 // Check for proper register definitions.
567 for (const auto &I
: Defs
) {
568 unsigned R
= I
.first
;
570 if (isLoopRegister(R
) && Defs
.count(R
) > 1 &&
571 (HexagonMCInstrInfo::isInnerLoop(MCB
) ||
572 HexagonMCInstrInfo::isOuterLoop(MCB
))) {
573 // Error out for definitions of loop registers at the end of a loop.
574 reportError("loop-setup and some branch instructions "
575 "cannot be in the same packet");
578 if (SoftDefs
.count(R
)) {
579 // Error out for explicit changes to registers also weakly defined
580 // (e.g., "{ usr = r0; r0 = sfadd(...) }").
581 unsigned UsrR
= Hexagon::USR
; // Silence warning about mixed types in ?:.
582 unsigned BadR
= RI
.isSubRegister(Hexagon::USR
, R
) ? UsrR
: R
;
583 reportErrorRegisters(BadR
);
586 if (!isPredicateRegister(R
) && Defs
[R
].size() > 1) {
587 // Check for multiple register definitions.
588 PredSet
&PM
= Defs
[R
];
590 // Check for multiple unconditional register definitions.
591 if (PM
.count(Unconditional
)) {
592 // Error out on an unconditional change when there are any other
593 // changes, conditional or not.
594 unsigned UsrR
= Hexagon::USR
;
595 unsigned BadR
= RI
.isSubRegister(Hexagon::USR
, R
) ? UsrR
: R
;
596 reportErrorRegisters(BadR
);
599 // Check for multiple conditional register definitions.
600 for (const auto &J
: PM
) {
603 // Check for multiple uses of the same condition.
604 if (PM
.count(P
) > 1) {
605 // Error out on conditional changes based on the same predicate
606 // (e.g., "{ if (!p0) r0 =...; if (!p0) r0 =... }").
607 reportErrorRegisters(R
);
610 // Check for the use of the complementary condition.
611 P
.second
= !P
.second
;
612 if (PM
.count(P
) && PM
.size() > 2) {
613 // Error out on conditional changes based on the same predicate
615 // (e.g., "if (p0) r0 =...; if (!p0) r0 =... }; if (!p0) r0 =...").
616 reportErrorRegisters(R
);
623 // Check for use of temporary definitions.
624 for (const auto &I
: TmpDefs
) {
627 if (!Uses
.count(R
)) {
628 // special case for vhist
629 bool vHistFound
= false;
630 for (auto const &HMI
: HexagonMCInstrInfo::bundleInstructions(MCB
)) {
631 if (HexagonMCInstrInfo::getType(MCII
, *HMI
.getInst()) ==
632 HexagonII::TypeCVI_HIST
) {
633 vHistFound
= true; // vhist() implicitly uses ALL REGxx.tmp
637 // Warn on an unused temporary definition.
639 reportWarning("register `" + Twine(RI
.getName(R
)) +
640 "' used with `.tmp' but not used in the same packet");
649 // Check for legal use of solo insns.
650 bool HexagonMCChecker::checkSolo() {
651 if (HexagonMCInstrInfo::bundleSize(MCB
) > 1)
652 for (auto const &I
: HexagonMCInstrInfo::bundleInstructions(MCII
, MCB
)) {
653 if (HexagonMCInstrInfo::isSolo(MCII
, I
)) {
654 reportError(I
.getLoc(), "Instruction is marked `isSolo' and "
655 "cannot have other instructions in "
664 bool HexagonMCChecker::checkShuffle() {
665 HexagonMCShuffler
MCSDX(Context
, ReportErrors
, MCII
, STI
, MCB
);
666 return MCSDX
.check();
669 void HexagonMCChecker::compoundRegisterMap(unsigned &Register
) {
674 Register
= Hexagon::R23
;
677 Register
= Hexagon::R22
;
680 Register
= Hexagon::R21
;
683 Register
= Hexagon::R20
;
686 Register
= Hexagon::R19
;
689 Register
= Hexagon::R18
;
692 Register
= Hexagon::R17
;
695 Register
= Hexagon::R16
;
700 void HexagonMCChecker::reportErrorRegisters(unsigned Register
) {
701 reportError("register `" + Twine(RI
.getName(Register
)) +
702 "' modified more than once");
705 void HexagonMCChecker::reportErrorNewValue(unsigned Register
) {
706 reportError("register `" + Twine(RI
.getName(Register
)) +
707 "' used with `.new' "
708 "but not validly modified in the same packet");
711 void HexagonMCChecker::reportError(Twine
const &Msg
) {
712 reportError(MCB
.getLoc(), Msg
);
715 void HexagonMCChecker::reportError(SMLoc Loc
, Twine
const &Msg
) {
717 Context
.reportError(Loc
, Msg
);
720 void HexagonMCChecker::reportNote(SMLoc Loc
, llvm::Twine
const &Msg
) {
722 auto SM
= Context
.getSourceManager();
724 SM
->PrintMessage(Loc
, SourceMgr::DK_Note
, Msg
);
728 void HexagonMCChecker::reportWarning(Twine
const &Msg
) {
730 Context
.reportWarning(MCB
.getLoc(), Msg
);