LLVM: lib/Target/Sparc/SparcInstrInfo.cpp Source File (original) (raw)
1
2
3
4
5
6
7
8
9
10
11
12
23
24using namespace llvm;
25
26#define GET_INSTRINFO_CTOR_DTOR
27#include "SparcGenInstrInfo.inc"
28
31 cl::desc("Restrict range of BPcc/FBPfcc instructions (DEBUG)"));
32
35 cl::desc("Restrict range of BPr instructions (DEBUG)"));
36
37
38void SparcInstrInfo::anchor() {}
39
41 : SparcGenInstrInfo(ST, RI, SP::ADJCALLSTACKDOWN, SP::ADJCALLSTACKUP),
42 RI(ST), Subtarget(ST) {}
43
44
45
46
47
48
50 int &FrameIndex) const {
51 if (MI.getOpcode() == SP::LDri || MI.getOpcode() == SP::LDXri ||
52 MI.getOpcode() == SP::LDFri || MI.getOpcode() == SP::LDDFri ||
53 MI.getOpcode() == SP::LDQFri) {
54 if (MI.getOperand(1).isFI() && MI.getOperand(2).isImm() &&
55 MI.getOperand(2).getImm() == 0) {
56 FrameIndex = MI.getOperand(1).getIndex();
57 return MI.getOperand(0).getReg();
58 }
59 }
60 return 0;
61}
62
63
64
65
66
67
69 int &FrameIndex) const {
70 if (MI.getOpcode() == SP::STri || MI.getOpcode() == SP::STXri ||
71 MI.getOpcode() == SP::STFri || MI.getOpcode() == SP::STDFri ||
72 MI.getOpcode() == SP::STQFri) {
73 if (MI.getOperand(0).isFI() && MI.getOperand(1).isImm() &&
74 MI.getOperand(1).getImm() == 0) {
75 FrameIndex = MI.getOperand(0).getIndex();
76 return MI.getOperand(2).getReg();
77 }
78 }
79 return 0;
80}
81
83{
84 switch(CC) {
101
118
135
136
137
138
139 llvm_unreachable("Meaningless inversion of co-processor cond code");
140
155 }
157}
158
160
162 return Opc == SP::BCOND || Opc == SP::BPICC || Opc == SP::BPICCA ||
163 Opc == SP::BPICCNT || Opc == SP::BPICCANT;
164}
165
167 return Opc == SP::BPXCC || Opc == SP::BPXCCA || Opc == SP::BPXCCNT ||
168 Opc == SP::BPXCCANT;
169}
170
172 return Opc == SP::BPR || Opc == SP::BPRA || Opc == SP::BPRNT ||
173 Opc == SP::BPRANT;
174}
175
177 return Opc == SP::FBCOND || Opc == SP::FBCONDA || Opc == SP::FBCOND_V9 ||
178 Opc == SP::FBCONDA_V9;
179}
180
185
187 return Opc == SP::BINDrr || Opc == SP::BINDri;
188}
189
194
195
196
199
200
201
205 }
206
208}
209
212 switch (MI.getOpcode()) {
213 default:
215 case SP::BA:
216 case SP::BCOND:
217 case SP::BCONDA:
218 case SP::FBCOND:
219 case SP::FBCONDA:
220 case SP::BPICC:
221 case SP::BPICCA:
222 case SP::BPICCNT:
223 case SP::BPICCANT:
224 case SP::BPXCC:
225 case SP::BPXCCA:
226 case SP::BPXCCNT:
227 case SP::BPXCCANT:
228 case SP::BPFCC:
229 case SP::BPFCCA:
230 case SP::BPFCCNT:
231 case SP::BPFCCANT:
232 case SP::FBCOND_V9:
233 case SP::FBCONDA_V9:
234 case SP::BPR:
235 case SP::BPRA:
236 case SP::BPRNT:
237 case SP::BPRANT:
238 return MI.getOperand(0).getMBB();
239 }
240}
241
246 bool AllowModify) const {
249 return false;
250
251 if (!isUnpredicatedTerminator(*I))
252 return false;
253
254
256 unsigned LastOpc = LastInst->getOpcode();
257
258
259 if (I == MBB.begin() || !isUnpredicatedTerminator(*--I)) {
262 return false;
263 }
265
267 return false;
268 }
269 return true;
270 }
271
272
274 unsigned SecondLastOpc = SecondLastInst->getOpcode();
275
276
277
281 LastInst = SecondLastInst;
283 if (I == MBB.begin() || !isUnpredicatedTerminator(*--I)) {
284
286 return false;
287 } else {
288 SecondLastInst = &*I;
289 SecondLastOpc = SecondLastInst->getOpcode();
290 }
291 }
292 }
293
294
295 if (SecondLastInst && I != MBB.begin() && isUnpredicatedTerminator(*--I))
296 return true;
297
298
302 return false;
303 }
304
305
306
309 return false;
310 }
311
312
313
315 I = LastInst;
316 if (AllowModify)
317 I->eraseFromParent();
318 return true;
319 }
320
321
322 return true;
323}
324
330 int *BytesAdded) const {
331 assert(TBB && "insertBranch must not be told to insert a fallthrough");
333 "Sparc branch conditions should have at most three components!");
334
335 if (Cond.empty()) {
336 assert(!FBB && "Unconditional branch with multiple successors!");
338 if (BytesAdded)
339 *BytesAdded = 8;
340 return 1;
341 }
342
343
344 unsigned Opc = Cond[0].getImm();
345 unsigned CC = Cond[1].getImm();
349 } else {
351 }
352
353 if (!FBB) {
354 if (BytesAdded)
355 *BytesAdded = 8;
356 return 1;
357 }
358
360 if (BytesAdded)
361 *BytesAdded = 16;
362 return 2;
363}
364
366 int *BytesRemoved) const {
368 unsigned Count = 0;
369 int Removed = 0;
370 while (I != MBB.begin()) {
371 --I;
372
373 if (I->isDebugInstr())
374 continue;
375
378 break;
379
381 I->eraseFromParent();
384 }
385
386 if (BytesRemoved)
387 *BytesRemoved = Removed;
389}
390
398
400 int64_t Offset) const {
401 assert((Offset & 0b11) == 0 && "Malformed branch offset");
402 switch (BranchOpc) {
403 case SP::BA:
404 case SP::BCOND:
405 case SP::BCONDA:
406 case SP::FBCOND:
407 case SP::FBCONDA:
409
410 case SP::BPICC:
411 case SP::BPICCA:
412 case SP::BPICCNT:
413 case SP::BPICCANT:
414 case SP::BPXCC:
415 case SP::BPXCCA:
416 case SP::BPXCCNT:
417 case SP::BPXCCANT:
418 case SP::BPFCC:
419 case SP::BPFCCA:
420 case SP::BPFCCNT:
421 case SP::BPFCCANT:
422 case SP::FBCOND_V9:
423 case SP::FBCONDA_V9:
425
426 case SP::BPR:
427 case SP::BPRA:
428 case SP::BPRNT:
429 case SP::BPRANT:
431 }
432
434}
435
439 Register SrcReg, bool KillSrc,
440 bool RenamableDest, bool RenamableSrc) const {
441 unsigned numSubRegs = 0;
442 unsigned movOpc = 0;
443 const unsigned *subRegIdx = nullptr;
444 bool ExtraG0 = false;
445
446 const unsigned DW_SubRegsIdx[] = { SP::sub_even, SP::sub_odd };
447 const unsigned DFP_FP_SubRegsIdx[] = { SP::sub_even, SP::sub_odd };
448 const unsigned QFP_DFP_SubRegsIdx[] = { SP::sub_even64, SP::sub_odd64 };
449 const unsigned QFP_FP_SubRegsIdx[] = { SP::sub_even, SP::sub_odd,
450 SP::sub_odd64_then_sub_even,
451 SP::sub_odd64_then_sub_odd };
452
453 if (SP::IntRegsRegClass.contains(DestReg, SrcReg))
456 else if (SP::IntPairRegClass.contains(DestReg, SrcReg)) {
457 subRegIdx = DW_SubRegsIdx;
458 numSubRegs = 2;
459 movOpc = SP::ORrr;
460 ExtraG0 = true;
461 } else if (SP::FPRegsRegClass.contains(DestReg, SrcReg))
464 else if (SP::DFPRegsRegClass.contains(DestReg, SrcReg)) {
465 if (Subtarget.isV9()) {
468 } else {
469
470 subRegIdx = DFP_FP_SubRegsIdx;
471 numSubRegs = 2;
472 movOpc = SP::FMOVS;
473 }
474 } else if (SP::QFPRegsRegClass.contains(DestReg, SrcReg)) {
475 if (Subtarget.isV9()) {
476 if (Subtarget.hasHardQuad()) {
479 } else {
480
481 subRegIdx = QFP_DFP_SubRegsIdx;
482 numSubRegs = 2;
483 movOpc = SP::FMOVD;
484 }
485 } else {
486
487 subRegIdx = QFP_FP_SubRegsIdx;
488 numSubRegs = 4;
489 movOpc = SP::FMOVS;
490 }
491 } else if (SP::ASRRegsRegClass.contains(DestReg) &&
492 SP::IntRegsRegClass.contains(SrcReg)) {
496 } else if (SP::IntRegsRegClass.contains(DestReg) &&
497 SP::ASRRegsRegClass.contains(SrcReg)) {
500 } else
502
503 if (numSubRegs == 0 || subRegIdx == nullptr || movOpc == 0)
504 return;
505
508
509 for (unsigned i = 0; i != numSubRegs; ++i) {
510 Register Dst = TRI->getSubReg(DestReg, subRegIdx[i]);
511 Register Src = TRI->getSubReg(SrcReg, subRegIdx[i]);
512 assert(Dst && Src && "Bad sub-register");
513
515 if (ExtraG0)
519 }
520
522 if (KillSrc)
524}
525
528 Register SrcReg, bool isKill, int FI,
533 if (I != MBB.end()) DL = I->getDebugLoc();
534
540
541
542 if (RC == &SP::I64RegsRegClass)
545 else if (RC == &SP::IntRegsRegClass)
548 else if (RC == &SP::IntPairRegClass)
551 else if (RC == &SP::FPRegsRegClass)
554 else if (SP::DFPRegsRegClass.hasSubClassEq(RC))
557 else if (SP::QFPRegsRegClass.hasSubClassEq(RC))
558
559
562 else
564}
565
573 if (I != MBB.end()) DL = I->getDebugLoc();
574
580
581 if (RC == &SP::I64RegsRegClass)
584 else if (RC == &SP::IntRegsRegClass)
587 else if (RC == &SP::IntPairRegClass)
590 else if (RC == &SP::FPRegsRegClass)
593 else if (SP::DFPRegsRegClass.hasSubClassEq(RC))
596 else if (SP::QFPRegsRegClass.hasSubClassEq(RC))
597
598
601 else
602 llvm_unreachable("Can't load this register from stack slot");
603}
604
608 if (GlobalBaseReg)
609 return GlobalBaseReg;
610
611
615
617 Subtarget.is64Bit() ? &SP::I64RegsRegClass : &SP::IntRegsRegClass;
618 GlobalBaseReg = RegInfo.createVirtualRegister(PtrRC);
619
621
622 BuildMI(FirstMBB, MBBI, dl, get(SP::GETPCX), GlobalBaseReg);
624 return GlobalBaseReg;
625}
626
628 unsigned Opcode = MI.getOpcode();
629
630 if (MI.isInlineAsm()) {
632 const char *AsmStr = MI.getOperand(0).getSymbolName();
634 }
635
636
637
638
639 if (MI.hasDelaySlot())
640 return get(Opcode).getSize() * 2;
641 return get(Opcode).getSize();
642}
643
645 Register &SrcReg2, int64_t &CmpMask,
646 int64_t &CmpValue) const {
648 switch (MI.getOpcode()) {
649 default:
650 break;
651 case SP::SUBCCri:
652 DstReg = MI.getOperand(0).getReg();
653 SrcReg = MI.getOperand(1).getReg();
654 SrcReg2 = 0;
655 CmpMask = ~0;
656 CmpValue = MI.getOperand(2).getImm();
657 return DstReg == SP::G0 && CmpValue == 0;
658 case SP::SUBCCrr:
659 DstReg = MI.getOperand(0).getReg();
660 SrcReg = MI.getOperand(1).getReg();
661 SrcReg2 = MI.getOperand(2).getReg();
662 CmpMask = ~0;
663 CmpValue = 0;
664 return DstReg == SP::G0 && SrcReg2 == SP::G0;
665 }
666
667 return false;
668}
669
673
674
676 if ()
677 return false;
678
679
680 if (MI->getParent() != CmpInstr.getParent())
681 return false;
682
683 unsigned NewOpcode;
684 switch (MI->getOpcode()) {
685 case SP::ANDNrr:
686 NewOpcode = SP::ANDNCCrr;
687 break;
688 case SP::ANDNri:
689 NewOpcode = SP::ANDNCCri;
690 break;
691 case SP::ANDrr:
692 NewOpcode = SP::ANDCCrr;
693 break;
694 case SP::ANDri:
695 NewOpcode = SP::ANDCCri;
696 break;
697 case SP::ORrr:
698 NewOpcode = SP::ORCCrr;
699 break;
700 case SP::ORri:
701 NewOpcode = SP::ORCCri;
702 break;
703 case SP::ORNCCrr:
704 NewOpcode = SP::ORNCCrr;
705 break;
706 case SP::ORNri:
707 NewOpcode = SP::ORNCCri;
708 break;
709 case SP::XORrr:
710 NewOpcode = SP::XORCCrr;
711 break;
712 case SP::XNORri:
713 NewOpcode = SP::XNORCCri;
714 break;
715 case SP::XNORrr:
716 NewOpcode = SP::XNORCCrr;
717 break;
718 case SP::ADDrr:
719 NewOpcode = SP::ADDCCrr;
720 break;
721 case SP::ADDri:
722 NewOpcode = SP::ADDCCri;
723 break;
724 case SP::SUBrr:
725 NewOpcode = SP::SUBCCrr;
726 break;
727 case SP::SUBri:
728 NewOpcode = SP::SUBCCri;
729 break;
730 default:
731 return false;
732 }
733
734 bool IsICCModified = false;
739
740
742 if (I->modifiesRegister(SP::ICC, TRI) || I->readsRegister(SP::ICC, TRI))
743 return false;
744 }
745
746 while (++I != E) {
747
748 if (I->readsRegister(SP::ICC, TRI)) {
749 bool IsICCBranch = I->getOpcode() == SP::BCOND ||
750 I->getOpcode() == SP::BPICC ||
751 I->getOpcode() == SP::BPXCC;
752 bool IsICCMove =
753 I->getOpcode() == SP::MOVICCrr || I->getOpcode() == SP::MOVICCri ||
754 I->getOpcode() == SP::MOVXCCrr || I->getOpcode() == SP::MOVXCCri;
755 bool IsICCConditional = IsICCBranch || IsICCMove;
756 if (!IsICCConditional ||
757 (I->getOperand(IsICCBranch ? 1 : 3).getImm() != SPCC::ICC_E &&
758 I->getOperand(IsICCBranch ? 1 : 3).getImm() != SPCC::ICC_NE))
759 return false;
760 } else if (I->modifiesRegister(SP::ICC, TRI)) {
761 IsICCModified = true;
762 break;
763 }
764 }
765
766 if (!IsICCModified) {
769 [](MachineBasicBlock *Succ) { return Succ->isLiveIn(SP::ICC); }))
770 return false;
771 }
772
773 if (MRI->hasOneNonDBGUse(SrcReg))
774 MI->getOperand(0).setReg(SP::G0);
775
776 MI->setDesc(get(NewOpcode));
777 MI->addRegisterDefined(SP::ICC);
779
780 return true;
781}
782
784 switch (MI.getOpcode()) {
785 case TargetOpcode::LOAD_STACK_GUARD: {
786 assert(Subtarget.getTargetTriple().isOSLinux() &&
787 "Only Linux target is expected to contain LOAD_STACK_GUARD");
788
789 const int64_t Offset = Subtarget.is64Bit() ? 0x28 : 0x14;
790 MI.setDesc(get(Subtarget.is64Bit() ? SP::LDXri : SP::LDri));
794 return true;
795 }
796 case SP::V8BAR: {
797 assert(!Subtarget.isV9() &&
798 "V8BAR should not be emitted on V9 processors!");
799
800
801
811 return true;
812 }
813 }
814 return false;
815}
unsigned const MachineRegisterInfo * MRI
static void parseCondBranch(MachineInstr *LastInst, MachineBasicBlock *&Target, SmallVectorImpl< MachineOperand > &Cond)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
MachineBasicBlock MachineBasicBlock::iterator MBBI
Register const TargetRegisterInfo * TRI
const SmallVectorImpl< MachineOperand > MachineBasicBlock * TBB
const SmallVectorImpl< MachineOperand > & Cond
static bool contains(SmallPtrSetImpl< ConstantExpr * > &Cache, ConstantExpr *Expr, Constant *C)
This file defines the SmallVector class.
static bool isFCondBranchOpcode(int Opc)
Definition SparcInstrInfo.cpp:176
static bool isRegCondBranchOpcode(int Opc)
Definition SparcInstrInfo.cpp:171
static SPCC::CondCodes GetOppositeBranchCondition(SPCC::CondCodes CC)
Definition SparcInstrInfo.cpp:82
static cl::opt< unsigned > BPrDisplacementBits("sparc-bpr-offset-bits", cl::Hidden, cl::init(16), cl::desc("Restrict range of BPr instructions (DEBUG)"))
static bool isI32CondBranchOpcode(int Opc)
Definition SparcInstrInfo.cpp:161
static cl::opt< unsigned > BPccDisplacementBits("sparc-bpcc-offset-bits", cl::Hidden, cl::init(19), cl::desc("Restrict range of BPcc/FBPfcc instructions (DEBUG)"))
static bool isI64CondBranchOpcode(int Opc)
Definition SparcInstrInfo.cpp:166
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Helper class for constructing bundles of MachineInstrs.
MachineInstrBundleIterator< MachineInstr > iterator
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
Align getObjectAlign(int ObjectIdx) const
Return the alignment of the specified stack object.
int64_t getObjectSize(int ObjectIdx) const
Return the size of the specified object.
MachineMemOperand * getMachineMemOperand(MachinePointerInfo PtrInfo, MachineMemOperand::Flags f, LLT MemTy, Align base_alignment, const AAMDNodes &AAInfo=AAMDNodes(), const MDNode *Ranges=nullptr, SyncScope::ID SSID=SyncScope::System, AtomicOrdering Ordering=AtomicOrdering::NotAtomic, AtomicOrdering FailureOrdering=AtomicOrdering::NotAtomic)
getMachineMemOperand - Allocate a new MachineMemOperand.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
const MachineBasicBlock & front() const
const TargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & addFrameIndex(int Idx) const
const MachineInstrBuilder & addReg(Register RegNo, unsigned flags=0, unsigned SubReg=0) const
Add a new virtual register operand.
const MachineInstrBuilder & addMBB(MachineBasicBlock *MBB, unsigned TargetFlags=0) const
const MachineInstrBuilder & addMemOperand(MachineMemOperand *MMO) const
MachineInstr * getInstr() const
If conversion operators fail, use this method to get the MachineInstr explicitly.
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
const MachineBasicBlock * getParent() const
LLVM_ABI void eraseFromParent()
Unlink 'this' from the containing basic block and delete it.
LLVM_ABI bool addRegisterKilled(Register IncomingReg, const TargetRegisterInfo *RegInfo, bool AddIfNotFound=false)
We have determined MI kills a register.
LLVM_ABI void addRegisterDefined(Register Reg, const TargetRegisterInfo *RegInfo=nullptr)
We have determined MI defines a register.
const MachineOperand & getOperand(unsigned i) const
A description of a memory reference used in the backend.
@ MOLoad
The memory access reads data.
@ MOStore
The memory access writes data.
MachineBasicBlock * getMBB() const
static MachineOperand CreateImm(int64_t Val)
Register getReg() const
getReg - Returns the register number.
static MachineOperand CreateReg(Register Reg, bool isDef, bool isImp=false, bool isKill=false, bool isDead=false, bool isUndef=false, bool isEarlyClobber=false, unsigned SubReg=0, bool isDebug=false, bool isInternalRead=false, bool isRenamable=false)
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
Wrapper class representing virtual and physical registers.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Register isStoreToStackSlot(const MachineInstr &MI, int &FrameIndex) const override
isStoreToStackSlot - If the specified machine instruction is a direct store to a stack slot,...
Definition SparcInstrInfo.cpp:68
void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, const DebugLoc &DL, Register DestReg, Register SrcReg, bool KillSrc, bool RenamableDest=false, bool RenamableSrc=false) const override
Definition SparcInstrInfo.cpp:436
bool isBranchOffsetInRange(unsigned BranchOpc, int64_t Offset) const override
Determine if the branch target is in range.
Definition SparcInstrInfo.cpp:399
void storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, Register SrcReg, bool isKill, int FrameIndex, const TargetRegisterClass *RC, Register VReg, MachineInstr::MIFlag Flags=MachineInstr::NoFlags) const override
Definition SparcInstrInfo.cpp:526
bool analyzeCompare(const MachineInstr &MI, Register &SrcReg, Register &SrcReg2, int64_t &CmpMask, int64_t &CmpValue) const override
Definition SparcInstrInfo.cpp:644
bool optimizeCompareInstr(MachineInstr &CmpInstr, Register SrcReg, Register SrcReg2, int64_t CmpMask, int64_t CmpValue, const MachineRegisterInfo *MRI) const override
Definition SparcInstrInfo.cpp:670
bool reverseBranchCondition(SmallVectorImpl< MachineOperand > &Cond) const override
Definition SparcInstrInfo.cpp:391
Register getGlobalBaseReg(MachineFunction *MF) const
Definition SparcInstrInfo.cpp:605
unsigned removeBranch(MachineBasicBlock &MBB, int *BytesRemoved=nullptr) const override
Definition SparcInstrInfo.cpp:365
MachineBasicBlock * getBranchDestBlock(const MachineInstr &MI) const override
Definition SparcInstrInfo.cpp:211
void loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, Register DestReg, int FrameIndex, const TargetRegisterClass *RC, Register VReg, MachineInstr::MIFlag Flags=MachineInstr::NoFlags) const override
Definition SparcInstrInfo.cpp:566
bool analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB, SmallVectorImpl< MachineOperand > &Cond, bool AllowModify=false) const override
Definition SparcInstrInfo.cpp:242
Register isLoadFromStackSlot(const MachineInstr &MI, int &FrameIndex) const override
isLoadFromStackSlot - If the specified machine instruction is a direct load from a stack slot,...
Definition SparcInstrInfo.cpp:49
SparcInstrInfo(const SparcSubtarget &ST)
Definition SparcInstrInfo.cpp:40
const SparcRegisterInfo & getRegisterInfo() const
getRegisterInfo - TargetInstrInfo is a superset of MRegister info.
unsigned getInstSizeInBytes(const MachineInstr &MI) const override
GetInstSize - Return the number of bytes of code the specified instruction may be.
Definition SparcInstrInfo.cpp:627
unsigned insertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, MachineBasicBlock *FBB, ArrayRef< MachineOperand > Cond, const DebugLoc &DL, int *BytesAdded=nullptr) const override
Definition SparcInstrInfo.cpp:325
bool expandPostRAPseudo(MachineInstr &MI) const override
Definition SparcInstrInfo.cpp:783
Register getGlobalBaseReg() const
void setGlobalBaseReg(Register Reg)
const MCAsmInfo * getMCAsmInfo() const
Return target specific asm information.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
Target - Wrapper for Target specific information.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ C
The default llvm calling convention, compatible with C.
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
static bool isCondBranchOpcode(int Opc)
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
static bool isIndirectBranchOpcode(int Opc)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
FunctionAddr VTableAddr Count
unsigned getKillRegState(bool B)
static bool isUncondBranchOpcode(int Opc)
constexpr bool isIntN(unsigned N, int64_t x)
Checks if an signed integer fits into the given (dynamic) bit width.
static LLVM_ABI MachinePointerInfo getFixedStack(MachineFunction &MF, int FI, int64_t Offset=0)
Return a MachinePointerInfo record that refers to the specified FrameIndex.