HomeSort by: relevance | last modified time | path
    Searched defs:isLiveIn (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
LiveVariables.h 105 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
108 bool isLiveIn(const MachineBasicBlock &MBB, Register Reg,
283 bool isLiveIn(Register Reg, const MachineBasicBlock &MBB) {
284 return getVarInfo(Reg).isLiveIn(MBB, Reg, *MRI);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
LiveVariables.cpp 715 bool LiveVariables::VarInfo::isLiveIn(const MachineBasicBlock &MBB,
MachineRegisterInfo.cpp 436 bool MachineRegisterInfo::isLiveIn(Register Reg) const {
PHIElimination.cpp 104 bool isLiveIn(Register Reg, const MachineBasicBlock *MBB);
677 ShouldSplit = ShouldSplit && !isLiveIn(Reg, &MBB);
707 bool PHIElimination::isLiveIn(Register Reg, const MachineBasicBlock *MBB) {
709 "isLiveIn() requires either LiveVariables or LiveIntervals");
713 return LV->isLiveIn(Reg, *MBB);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMFrameLowering.cpp 1097 bool isLiveIn = MRI.isLiveIn(Reg);
1098 if (!isLiveIn && !MRI.isReserved(Reg))
1111 Regs.push_back(std::make_pair(Reg, /*isKill=*/!isLiveIn));
2048 if (!MF.getRegInfo().isLiveIn(Reg)) {
2111 !(MF.getRegInfo().isLiveIn(ARM::LR) &&

Completed in 58 milliseconds