HomeSort by relevance Sort by last modified time
    Searched defs:isLiveIn (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/CodeGen/
LiveVariables.h 106 /// 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) {
282 return getVarInfo(Reg).isLiveIn(MBB, Reg, *MRI);
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 336 bool MachineRegisterInfo::isLiveIn(unsigned Reg) const {
LiveVariables.cpp 715 bool LiveVariables::VarInfo::isLiveIn(const MachineBasicBlock &MBB,
PHIElimination.cpp 86 bool isLiveIn(unsigned Reg, MachineBasicBlock *MBB);
593 bool ShouldSplit = !isLiveIn(Reg, &MBB) || SplitAllCriticalEdges;
621 bool PHIElimination::isLiveIn(unsigned Reg, MachineBasicBlock *MBB) {
623 "isLiveIn() requires either LiveVariables or LiveIntervals");
627 return LV->isLiveIn(Reg, *MBB);
MachineBasicBlock.cpp 346 bool MachineBasicBlock::isLiveIn(unsigned Reg) const {
359 bool LiveIn = isLiveIn(PhysReg);
    [all...]

Completed in 223 milliseconds