HomeSort by relevance Sort by last modified time
    Searched refs:isLiveIn (Results 1 - 25 of 33) sorted by null

1 2

  /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,
285 bool isLiveIn(unsigned Reg, const MachineBasicBlock &MBB) {
286 return getVarInfo(Reg).isLiveIn(MBB, Reg, *MRI);
MachineBasicBlock.h 331 /// isLiveIn - Return true if the specified register is in the live in set.
333 bool isLiveIn(unsigned Reg) const;
MachineRegisterInfo.h 778 bool isLiveIn(unsigned Reg) const;
    [all...]
  /external/llvm/lib/Target/R600/
SIPrepareScratchRegs.cpp 81 if (!Entry->isLiveIn(ScratchPtrPreloadReg))
84 if (!Entry->isLiveIn(ScratchOffsetPreloadReg))
121 if (!MBB.isLiveIn(ScratchOffsetReg) &&
181 } else if (!MBB.isLiveIn(ScratchOffsetReg)) {
  /external/mesa3d/src/gallium/drivers/radeon/
SIAssignInterpRegs.cpp 127 if (!MRI.isLiveIn(physReg)) {
AMDGPUISelLowering.cpp 319 if (!MRI.isLiveIn(Reg)) {
  /external/llvm/lib/CodeGen/
PHIElimination.cpp 91 bool isLiveIn(unsigned Reg, MachineBasicBlock *MBB);
598 ShouldSplit = ShouldSplit && !isLiveIn(Reg, &MBB);
626 bool PHIElimination::isLiveIn(unsigned Reg, MachineBasicBlock *MBB) {
628 "isLiveIn() requires either LiveVariables or LiveIntervals");
632 return LV->isLiveIn(Reg, *MBB);
VirtRegMap.cpp 267 if (!LiveIn[i]->isLiveIn(SubReg))
280 if (!LiveIn[i]->isLiveIn(PhysReg))
MachineBasicBlock.cpp 337 bool MachineBasicBlock::isLiveIn(unsigned Reg) const {
350 bool LiveIn = isLiveIn(PhysReg);
    [all...]
LiveRangeCalc.cpp 279 !MBB->isLiveIn(PhysReg)) {
MachineRegisterInfo.cpp 339 bool MachineRegisterInfo::isLiveIn(unsigned Reg) const {
MachineCSE.cpp 628 if (!MBB->isLiveIn(LiveIn))
MachineSink.cpp 674 if (SuccToSinkTo->isLiveIn(Reg))
MachineLICM.cpp 609 if (!BB->isLiveIn(Reg))
    [all...]
LiveVariables.cpp 720 bool LiveVariables::VarInfo::isLiveIn(const MachineBasicBlock &MBB,
  /external/llvm/lib/Target/SystemZ/
SystemZFrameLowering.cpp 115 bool IsLive = MBB.isLiveIn(GPR64) || MBB.isLiveIn(GPR32);
SystemZElimCompare.cpp 102 if ((*SI)->isLiveIn(SystemZ::CC))
  /external/llvm/lib/Target/Sparc/
SparcFrameLowering.cpp 236 if (!MBB->isLiveIn(reg))
  /external/llvm/lib/Target/Hexagon/
HexagonNewValueJump.cpp 441 if (succMBB->isLiveIn(predReg)) {
HexagonExpandCondsets.cpp     [all...]
  /external/llvm/lib/Target/ARM/
Thumb1FrameLowering.cpp 477 MF.getRegInfo().isLiveIn(Reg))
Thumb2SizeReduction.cpp 918 bool LiveCPSR = MBB.isLiveIn(ARM::CPSR);
    [all...]
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp 718 bool LRLiveIn = MF.getRegInfo().isLiveIn(AArch64::LR);
    [all...]
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 290 if (!MBB.isLiveIn(R))

Completed in 2268 milliseconds

1 2