Searched defs:isLiveIn (Results 1 - 5 of 5) sorted by relevance

/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);
/external/llvm/lib/CodeGen/
H A DMachineRegisterInfo.cpp336 bool MachineRegisterInfo::isLiveIn(unsigned Reg) const { function in class:MachineRegisterInfo
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 DLiveVariables.cpp715 bool LiveVariables::VarInfo::isLiveIn(const MachineBasicBlock &MBB, function in class:LiveVariables::VarInfo
H A DMachineBasicBlock.cpp346 bool MachineBasicBlock::isLiveIn(unsigned Reg) const { function in class:MachineBasicBlock
359 bool LiveIn = isLiveIn(PhysReg);
1200 if (MBB->isLiveIn(*RAI))

Completed in 96 milliseconds