HomeSort by relevance Sort by last modified time
    Searched refs:isLiveIn (Results 1 - 25 of 31) 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,
281 bool isLiveIn(unsigned Reg, const MachineBasicBlock &MBB) {
282 return getVarInfo(Reg).isLiveIn(MBB, Reg, *MRI);
MachineRegisterInfo.h 499 bool isLiveIn(unsigned Reg) const;
MachineBasicBlock.h 308 /// isLiveIn - Return true if the specified register is in the live in set.
310 bool isLiveIn(unsigned Reg) const;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
SIAssignInterpRegs.cpp 127 if (!MRI.isLiveIn(physReg)) {
AMDGPUISelLowering.cpp 319 if (!MRI.isLiveIn(Reg)) {
  /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 85 bool isLiveIn(unsigned Reg, MachineBasicBlock *MBB);
592 bool ShouldSplit = !isLiveIn(Reg, &MBB) || SplitAllCriticalEdges;
620 bool PHIElimination::isLiveIn(unsigned Reg, MachineBasicBlock *MBB) {
622 "isLiveIn() requires either LiveVariables or LiveIntervals");
626 return LV->isLiveIn(Reg, *MBB);
LiveRangeCalc.cpp 197 !MBB->isLiveIn(PhysReg)) {
VirtRegMap.cpp 256 if (!LiveIn[i]->isLiveIn(PhysReg))
MachineBasicBlock.cpp 340 bool MachineBasicBlock::isLiveIn(unsigned Reg) const {
353 bool LiveIn = isLiveIn(PhysReg);
    [all...]
MachineRegisterInfo.cpp 338 bool MachineRegisterInfo::isLiveIn(unsigned Reg) const {
MachineSink.cpp 612 if (SuccToSinkTo->isLiveIn(Reg))
MachineCSE.cpp 573 if (!MBB->isLiveIn(LiveIn))
MachineLICM.cpp 590 if (!BB->isLiveIn(Reg))
    [all...]
LiveVariables.cpp 714 bool LiveVariables::VarInfo::isLiveIn(const MachineBasicBlock &MBB,
  /external/llvm/lib/Target/Sparc/
SparcFrameLowering.cpp 195 if (!MBB->isLiveIn(reg))
  /external/llvm/lib/Target/SystemZ/
SystemZFrameLowering.cpp 115 bool IsLive = MBB.isLiveIn(GPR64) || MBB.isLiveIn(GPR32);
SystemZElimCompare.cpp 103 if ((*SI)->isLiveIn(SystemZ::CC))
  /external/llvm/lib/Target/ARM/
Thumb1FrameLowering.cpp 356 MF.getRegInfo().isLiveIn(Reg))
  /external/llvm/lib/Target/Hexagon/
HexagonNewValueJump.cpp 449 if (succMBB->isLiveIn(predReg)) {
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp 413 && MBB.getParent()->getRegInfo().isLiveIn(Reg))
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 286 if (!MBB.isLiveIn(R))
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 475 if (!MRI.isLiveIn(Reg)) {

Completed in 473 milliseconds

1 2