/external/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyRegColoring.cpp | 120 if (MRI->isLiveIn(LHS->reg) != MRI->isLiveIn(RHS->reg)) in runOnMachineFunction() 121 return MRI->isLiveIn(LHS->reg); in runOnMachineFunction() 142 if (!MRI->isLiveIn(Old)) in runOnMachineFunction()
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | LiveVariables.h | 117 bool isLiveIn(const MachineBasicBlock &MBB, 292 bool isLiveIn(unsigned Reg, const MachineBasicBlock &MBB) { in isLiveIn() function 293 return getVarInfo(Reg).isLiveIn(MBB, Reg, *MRI); in isLiveIn()
|
D | MachineRegisterInfo.h | 318 bool isLiveIn(unsigned Reg) const;
|
D | MachineBasicBlock.h | 212 bool isLiveIn(unsigned Reg) const;
|
/external/llvm/include/llvm/CodeGen/ |
D | LiveVariables.h | 109 bool isLiveIn(const MachineBasicBlock &MBB, 284 bool isLiveIn(unsigned Reg, const MachineBasicBlock &MBB) { in isLiveIn() function 285 return getVarInfo(Reg).isLiveIn(MBB, Reg, *MRI); in isLiveIn()
|
/external/llvm/lib/CodeGen/ |
D | ImplicitNullChecks.cpp | 314 if (MBB->isLiveIn(*AR)) in AnyAliasLiveIn() 545 if (!Reg || MBB->isLiveIn(Reg)) in rewriteNullChecks() 554 if (!NC.getNotNullSucc()->isLiveIn(MO.getReg())) in rewriteNullChecks()
|
D | PHIElimination.cpp | 90 bool isLiveIn(unsigned Reg, const MachineBasicBlock *MBB); 597 ShouldSplit = ShouldSplit && !isLiveIn(Reg, &MBB); in SplitPHIEdges() 625 bool PHIElimination::isLiveIn(unsigned Reg, const MachineBasicBlock *MBB) { in isLiveIn() function in PHIElimination 631 return LV->isLiveIn(Reg, *MBB); in isLiveIn()
|
D | MachineBasicBlock.cpp | 337 bool MachineBasicBlock::isLiveIn(MCPhysReg Reg, LaneBitmask LaneMask) const { in isLiveIn() function in MachineBasicBlock 372 bool LiveIn = isLiveIn(PhysReg); in addLiveIn() 1248 if (isLiveIn(*RAI)) in computeRegisterLiveness()
|
D | LiveRangeCalc.cpp | 301 !MBB->isLiveIn(PhysReg)) { in findReachingDefs()
|
D | MachineLICM.cpp | 527 if (!BB->isLiveIn(Reg)) in AddToLiveIns() 906 } else if (CurLoop->getHeader()->isLiveIn(Reg)) { in IsLoopInvariantInst()
|
/external/llvm/lib/Target/X86/ |
D | X86FrameLowering.cpp | 242 if (Succ->isLiveIn(X86::EFLAGS)) in flagsNeedToBePreservedBeforeTheTerminators() 331 UseLEA = STI.useLeaForSP() || MBB.isLiveIn(X86::EFLAGS); in BuildStackAdjustment() 1908 bool isLiveIn = MRI.isLiveIn(Reg); in spillCalleeSavedRegisters() local 1909 if (!isLiveIn) in spillCalleeSavedRegisters() 1913 bool CanKill = !isLiveIn; in spillCalleeSavedRegisters() 1917 if (MRI.isLiveIn(*AReg)) { in spillCalleeSavedRegisters() 2104 assert(!MF.getRegInfo().isLiveIn(ScratchReg) && in adjustForSegmentedStacks() 2223 SaveScratch2 = MF.getRegInfo().isLiveIn(ScratchReg2); in adjustForSegmentedStacks() 2227 assert((!MF.getRegInfo().isLiveIn(ScratchReg2) || SaveScratch2) && in adjustForSegmentedStacks() 2466 assert(!MF.getRegInfo().isLiveIn(ScratchReg) && in adjustForHiPEPrologue() [all …]
|
/external/llvm/lib/Target/Sparc/ |
D | SparcFrameLowering.cpp | 339 if (!MBB->isLiveIn(reg)) in remapRegsForLeafProc() 345 if (!MBB->isLiveIn(reg)) in remapRegsForLeafProc()
|
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/ |
D | MBlazeMachineFunction.h | 115 bool isLiveIn(int FI) { in isLiveIn() function
|
D | MBlazeRegisterInfo.cpp | 155 << "isLiveIn : " << MBlazeFI->isLiveIn(FrameIndex) << "\n" in eliminateFrameIndex()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64RedundantCopyElimination.cpp | 157 [&](unsigned Reg) { return MBB->isLiveIn(Reg); })) in optimizeCopy()
|
D | AArch64ConditionOptimizer.cpp | 148 if (SuccBB->isLiveIn(AArch64::NZCV)) in findSuitableCompare()
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZFrameLowering.cpp | 123 bool IsLive = MBB.isLiveIn(GPR64) || MBB.isLiveIn(GPR32); in addSavedGPR()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | MachineRegisterInfo.cpp | 181 bool MachineRegisterInfo::isLiveIn(unsigned Reg) const { in isLiveIn() function in MachineRegisterInfo
|
D | LiveVariables.cpp | 685 bool LiveVariables::VarInfo::isLiveIn(const MachineBasicBlock &MBB, in isLiveIn() function in LiveVariables::VarInfo 767 if (!VI.AliveBlocks.test(NumNew) && VI.isLiveIn(*SuccBB, Reg, *MRI)) in addNewBlock()
|
D | PHIElimination.cpp | 424 !LV.isLiveIn(Reg, MBB) && LV.isLiveOut(Reg, *PreMBB)) { in SplitPHIEdges()
|
D | MachineSink.cpp | 541 if (SuccToSinkTo->isLiveIn(Reg)) in SinkInstruction()
|
D | MachineLICM.cpp | 539 if (!BB->isLiveIn(Reg)) in AddToLiveIns() 826 } else if (CurLoop->getHeader()->isLiveIn(Reg)) { in IsLoopInvariantInst()
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
D | Thumb1FrameLowering.cpp | 314 MF.getRegInfo().isLiveIn(Reg)) in spillCalleeSavedRegisters()
|
/external/llvm/lib/Target/ARM/ |
D | ARMFrameLowering.cpp | 911 bool isLiveIn = MF.getRegInfo().isLiveIn(Reg); in emitPushInst() local 912 if (!isLiveIn) in emitPushInst() 925 Regs.push_back(std::make_pair(Reg, /*isKill=*/!isLiveIn)); in emitPushInst()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonNewValueJump.cpp | 483 if (succMBB->isLiveIn(predReg)) { in runOnMachineFunction()
|