Searched refs:isLiveIn (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-9.3-release/contrib/llvm/include/llvm/CodeGen/
H A DLiveVariables.h106 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
109 bool isLiveIn(const MachineBasicBlock &MBB,
281 bool isLiveIn(unsigned Reg, const MachineBasicBlock &MBB) { function in class:llvm::LiveVariables
282 return getVarInfo(Reg).isLiveIn(MBB, Reg, *MRI);
H A DMachineRegisterInfo.h533 bool isLiveIn(unsigned Reg) const;
H A DMachineBasicBlock.h308 /// isLiveIn - Return true if the specified register is in the live in set.
310 bool isLiveIn(unsigned Reg) const;
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DPHIElimination.cpp85 bool isLiveIn(unsigned Reg, MachineBasicBlock *MBB);
592 bool ShouldSplit = !isLiveIn(Reg, &MBB) || SplitAllCriticalEdges;
620 bool PHIElimination::isLiveIn(unsigned Reg, MachineBasicBlock *MBB) { function in class:PHIElimination
622 "isLiveIn() requires either LiveVariables or LiveIntervals");
626 return LV->isLiveIn(Reg, *MBB);
H A DLiveRangeCalc.cpp192 !MBB->isLiveIn(PhysReg)) {
H A DVirtRegMap.cpp257 if (!LiveIn[i]->isLiveIn(PhysReg))
H A DMachineBasicBlock.cpp340 bool MachineBasicBlock::isLiveIn(unsigned Reg) const { function in class:MachineBasicBlock
353 bool LiveIn = isLiveIn(PhysReg);
1182 if (MBB->isLiveIn(*RAI))
H A DMachineRegisterInfo.cpp343 bool MachineRegisterInfo::isLiveIn(unsigned Reg) const { function in class:MachineRegisterInfo
H A DMachineCSE.cpp573 if (!MBB->isLiveIn(LiveIn))
H A DMachineSink.cpp629 if (SuccToSinkTo->isLiveIn(Reg))
H A DMachineLICM.cpp590 if (!BB->isLiveIn(Reg))
945 } else if (CurLoop->getHeader()->isLiveIn(Reg)) {
H A DLiveVariables.cpp714 bool LiveVariables::VarInfo::isLiveIn(const MachineBasicBlock &MBB, function in class:LiveVariables::VarInfo
/freebsd-9.3-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZFrameLowering.cpp115 bool IsLive = MBB.isLiveIn(GPR64) || MBB.isLiveIn(GPR32);
H A DSystemZElimCompare.cpp103 if ((*SI)->isLiveIn(SystemZ::CC))
/freebsd-9.3-release/contrib/llvm/lib/Target/Sparc/
H A DSparcFrameLowering.cpp229 if (!MBB->isLiveIn(reg))
/freebsd-9.3-release/contrib/llvm/lib/Target/ARM/
H A DThumb1FrameLowering.cpp352 MF.getRegInfo().isLiveIn(Reg))
H A DThumb2SizeReduction.cpp922 bool LiveCPSR = MBB.isLiveIn(ARM::CPSR);
H A DARMFrameLowering.cpp614 MF.getRegInfo().isLiveIn(Reg))
/freebsd-9.3-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonNewValueJump.cpp449 if (succMBB->isLiveIn(predReg)) {
/freebsd-9.3-release/contrib/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp1160 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
1264 SaveScratch2 = MF.getRegInfo().isLiveIn(ScratchReg2);
1268 assert((!MF.getRegInfo().isLiveIn(ScratchReg2) || SaveScratch2) &&
1451 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
H A DX86InstrInfo.cpp1754 if ((*SI)->isLiveIn(X86::EFLAGS))
1765 return !MBB.isLiveIn(X86::EFLAGS);
3693 if ((*SI)->isLiveIn(X86::EFLAGS))
/freebsd-9.3-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.cpp413 && MBB.getParent()->getRegInfo().isLiveIn(Reg))
/freebsd-9.3-release/contrib/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp286 if (!MBB.isLiveIn(R))
H A DMipsSEFrameLowering.cpp356 if (!MBB.isLiveIn(ehDataReg(I)))
/freebsd-9.3-release/contrib/llvm/lib/Target/R600/
H A DAMDGPUISelLowering.cpp793 if (!MRI.isLiveIn(Reg)) {

Completed in 231 milliseconds

12