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

12

/external/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 DMachineBasicBlock.h331 /// isLiveIn - Return true if the specified register is in the live in set.
333 bool isLiveIn(unsigned Reg) const;
H A DMachineRegisterInfo.h751 bool isLiveIn(unsigned Reg) const;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DSIAssignInterpRegs.cpp127 if (!MRI.isLiveIn(physReg)) {
H A DAMDGPUISelLowering.cpp319 if (!MRI.isLiveIn(Reg)) {
/external/mesa3d/src/gallium/drivers/radeon/
H A DSIAssignInterpRegs.cpp127 if (!MRI.isLiveIn(physReg)) {
H A DAMDGPUISelLowering.cpp319 if (!MRI.isLiveIn(Reg)) {
/external/llvm/lib/CodeGen/
H A DPHIElimination.cpp86 bool isLiveIn(unsigned Reg, MachineBasicBlock *MBB);
593 bool ShouldSplit = !isLiveIn(Reg, &MBB) || SplitAllCriticalEdges;
621 bool PHIElimination::isLiveIn(unsigned Reg, MachineBasicBlock *MBB) { function in class:PHIElimination
623 "isLiveIn() requires either LiveVariables or LiveIntervals");
627 return LV->isLiveIn(Reg, *MBB);
H A DLiveRangeCalc.cpp191 !MBB->isLiveIn(PhysReg)) {
H A DMachineBasicBlock.cpp346 bool MachineBasicBlock::isLiveIn(unsigned Reg) const { function in class:MachineBasicBlock
359 bool LiveIn = isLiveIn(PhysReg);
1200 if (MBB->isLiveIn(*RAI))
H A DMachineRegisterInfo.cpp336 bool MachineRegisterInfo::isLiveIn(unsigned Reg) const { function in class:MachineRegisterInfo
H A DMachineSink.cpp623 if (SuccToSinkTo->isLiveIn(Reg))
H A DVirtRegMap.cpp260 if (!LiveIn[i]->isLiveIn(PhysReg))
H A DMachineCSE.cpp581 if (!MBB->isLiveIn(LiveIn))
H A DMachineLICM.cpp594 if (!BB->isLiveIn(Reg))
948 } else if (CurLoop->getHeader()->isLiveIn(Reg)) {
H A DLiveVariables.cpp715 bool LiveVariables::VarInfo::isLiveIn(const MachineBasicBlock &MBB, function in class:LiveVariables::VarInfo
/external/llvm/lib/Target/SystemZ/
H A DSystemZFrameLowering.cpp113 bool IsLive = MBB.isLiveIn(GPR64) || MBB.isLiveIn(GPR32);
H A DSystemZElimCompare.cpp102 if ((*SI)->isLiveIn(SystemZ::CC))
/external/llvm/lib/Target/Sparc/
H A DSparcFrameLowering.cpp239 if (!MBB->isLiveIn(reg))
/external/llvm/lib/Target/Hexagon/
H A DHexagonNewValueJump.cpp448 if (succMBB->isLiveIn(predReg)) {
/external/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp1325 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
1437 SaveScratch2 = MF.getRegInfo().isLiveIn(ScratchReg2);
1441 assert((!MF.getRegInfo().isLiveIn(ScratchReg2) || SaveScratch2) &&
1627 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
/external/llvm/lib/Target/ARM/
H A DThumb1FrameLowering.cpp436 MF.getRegInfo().isLiveIn(Reg))
H A DThumb2SizeReduction.cpp918 bool LiveCPSR = MBB.isLiveIn(ARM::CPSR);
/external/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp283 if (!MBB.isLiveIn(R))
/external/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.cpp610 bool LRLiveIn = MF.getRegInfo().isLiveIn(AArch64::LR);

Completed in 6214 milliseconds

12