Searched defs:isLiveIn (Results 1 - 11 of 11) 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,
284 bool isLiveIn(unsigned Reg, const MachineBasicBlock &MBB) { function in class:llvm::LiveVariables
285 return getVarInfo(Reg).isLiveIn(MBB, Reg, *MRI);
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DLiveVariables.h114 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
117 bool isLiveIn(const MachineBasicBlock &MBB,
292 bool isLiveIn(unsigned Reg, const MachineBasicBlock &MBB) { function in class:llvm::LiveVariables
293 return getVarInfo(Reg).isLiveIn(MBB, Reg, *MRI);
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DMachineRegisterInfo.cpp181 bool MachineRegisterInfo::isLiveIn(unsigned Reg) const { function in class:MachineRegisterInfo
H A DLiveVariables.cpp685 bool LiveVariables::VarInfo::isLiveIn(const MachineBasicBlock &MBB, function in class:LiveVariables::VarInfo
767 if (!VI.AliveBlocks.test(NumNew) && VI.isLiveIn(*SuccBB, Reg, *MRI))
H A DMachineBasicBlock.cpp267 bool MachineBasicBlock::isLiveIn(unsigned Reg) const { function in class:MachineBasicBlock
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
H A DMBlazeMachineFunction.h115 bool isLiveIn(int FI) { function in class:llvm::MBlazeFunctionInfo
/external/llvm/lib/CodeGen/
H A DMachineRegisterInfo.cpp370 bool MachineRegisterInfo::isLiveIn(unsigned Reg) const { function in class:MachineRegisterInfo
H A DPHIElimination.cpp90 bool isLiveIn(unsigned Reg, const MachineBasicBlock *MBB);
597 ShouldSplit = ShouldSplit && !isLiveIn(Reg, &MBB);
625 bool PHIElimination::isLiveIn(unsigned Reg, const MachineBasicBlock *MBB) { function in class:PHIElimination
627 "isLiveIn() requires either LiveVariables or LiveIntervals");
631 return LV->isLiveIn(Reg, *MBB);
H A DLiveVariables.cpp722 bool LiveVariables::VarInfo::isLiveIn(const MachineBasicBlock &MBB, function in class:LiveVariables::VarInfo
H A DMachineBasicBlock.cpp337 bool MachineBasicBlock::isLiveIn(MCPhysReg Reg, LaneBitmask LaneMask) const { function in class:MachineBasicBlock
372 bool LiveIn = isLiveIn(PhysReg);
1248 if (isLiveIn(*RAI))
/external/llvm/lib/Target/ARM/
H A DARMFrameLowering.cpp911 bool isLiveIn = MF.getRegInfo().isLiveIn(Reg); local
912 if (!isLiveIn)
925 Regs.push_back(std::make_pair(Reg, /*isKill=*/!isLiveIn));

Completed in 690 milliseconds