Home
last modified time | relevance | path

Searched refs:mbb (Results 1 – 14 of 14) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DSlotIndexes.h476 SlotIndex getMBBStartIdx(const MachineBasicBlock *mbb) const {
477 return getMBBRange(mbb).first;
486 SlotIndex getMBBEndIdx(const MachineBasicBlock *mbb) const {
487 return getMBBRange(mbb).second;
615 void insertMBBInMaps(MachineBasicBlock *mbb) {
616 assert(mbb != &mbb->getParent()->front() &&
618 auto prevMBB = std::prev(MachineFunction::iterator(mbb));
625 mbb->empty() ? endEntry
626 : getInstructionIndex(mbb->front()).listEntry();
635 assert(unsigned(mbb->getNumber()) == MBBRanges.size() &&
[all …]
H A DLiveIntervals.h230 SlotIndex getMBBStartIdx(const MachineBasicBlock *mbb) const { in getMBBStartIdx() argument
231 return Indexes->getMBBStartIdx(mbb); in getMBBStartIdx()
235 SlotIndex getMBBEndIdx(const MachineBasicBlock *mbb) const { in getMBBEndIdx() argument
236 return Indexes->getMBBEndIdx(mbb); in getMBBEndIdx()
240 const MachineBasicBlock *mbb) const { in isLiveInToMBB() argument
241 return LR.liveAt(getMBBStartIdx(mbb)); in isLiveInToMBB()
245 const MachineBasicBlock *mbb) const { in isLiveOutOfMBB() argument
246 return LR.liveAt(getMBBEndIdx(mbb).getPrevSlot()); in isLiveOutOfMBB()
H A DRegisterPressure.h403 const LiveIntervals *lis, const MachineBasicBlock *mbb,
H A DSelectionDAGNodes.h1979 explicit BasicBlockSDNode(MachineBasicBlock *mbb)
1980 : SDNode(ISD::BasicBlock, 0, DebugLoc(), getSDVTList(MVT::Other)), MBB(mbb)
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Dpmf9.C26 rectangle content, mbb;
42 for (const region_impl *p = this; p != 0 && p->mbb.overlaps(); in iterate()
53 for (const region_impl *p = this; p != 0 && p->mbb.overlaps(); in iterate()
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.cpp264 const MachineBasicBlock *mbb, in ARMConstantPoolMBB() argument
270 MBB(mbb) {} in ARMConstantPoolMBB()
273 const MachineBasicBlock *mbb, in Create() argument
276 return new ARMConstantPoolMBB(C, mbb, ID, PCAdj, ARMCP::no_modifier, false); in Create()
H A DARMConstantPoolValue.h248 ARMConstantPoolMBB(LLVMContext &C, const MachineBasicBlock *mbb, unsigned id,
254 const MachineBasicBlock *mbb,
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DREADME-X86-64.txt107 JMP mbb<bb2,0x203afb0>
117 %reg1027 = PHI %reg1025, mbb<bb,0x203af10>,
118 %reg1026, mbb<bb1,0x203af60>
H A DREADME-SSE.txt164 JE mbb<cond_next204,0xa914d30>
195 JE mbb<cond_next204,0xa914d30>
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.h158 InstrEmitter(const TargetMachine &TM, MachineBasicBlock *mbb,
H A DInstrEmitter.cpp1396 InstrEmitter::InstrEmitter(const TargetMachine &TM, MachineBasicBlock *mbb, in InstrEmitter() argument
1398 : MF(mbb->getParent()), MRI(&MF->getRegInfo()), in InstrEmitter()
1401 TLI(MF->getSubtarget().getTargetLowering()), MBB(mbb), in InstrEmitter()
1403 EmitDebugInstrRefs = mbb->getParent()->useDebugInstrRef(); in InstrEmitter()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DREADME.txt41 %reg1039 = PHI %reg1070, mbb<bb76.outer,0x8b0c5f0>, %reg1037, mbb<bb27,0x8b0a7c0>
H A DRegisterPressure.cpp266 const MachineBasicBlock *mbb, in init() argument
275 MBB = mbb; in init()
H A DRegisterCoalescer.cpp3854 MBBPriorityInfo(MachineBasicBlock *mbb, unsigned depth, bool issplit) in MBBPriorityInfo()
3855 : MBB(mbb), Depth(depth), IsSplit(issplit) {} in MBBPriorityInfo()