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

1 2 3 4

  /external/llvm/lib/Target/WebAssembly/
WebAssemblyRegColoring.cpp 120 if (MRI->isLiveIn(LHS->reg) != MRI->isLiveIn(RHS->reg))
121 return MRI->isLiveIn(LHS->reg);
142 if (!MRI->isLiveIn(Old))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
WebAssemblyRegColoring.cpp 123 if (MRI->isLiveIn(LHS->reg) != MRI->isLiveIn(RHS->reg))
124 return MRI->isLiveIn(LHS->reg);
145 if (!MRI->isLiveIn(Old))
  /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,
284 bool isLiveIn(unsigned Reg, const MachineBasicBlock &MBB) {
285 return getVarInfo(Reg).isLiveIn(MBB, Reg, *MRI);
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
LiveVariables.h 114 /// 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) {
293 return getVarInfo(Reg).isLiveIn(MBB, Reg, *MRI);
MachineRegisterInfo.h 318 bool isLiveIn(unsigned Reg) const;
  /external/swiftshader/third_party/llvm-7.0/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,
283 bool isLiveIn(unsigned Reg, const MachineBasicBlock &MBB) {
284 return getVarInfo(Reg).isLiveIn(MBB, Reg, *MRI);
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
MBlazeMachineFunction.h 115 bool isLiveIn(int FI) {
MBlazeRegisterInfo.cpp 155 << "isLiveIn : " << MBlazeFI->isLiveIn(FrameIndex) << "\n"
  /external/llvm/lib/CodeGen/
ImplicitNullChecks.cpp 314 if (MBB->isLiveIn(*AR))
545 if (!Reg || MBB->isLiveIn(Reg))
554 if (!NC.getNotNullSucc()->isLiveIn(MO.getReg()))
PHIElimination.cpp 90 bool isLiveIn(unsigned Reg, const MachineBasicBlock *MBB);
597 ShouldSplit = ShouldSplit && !isLiveIn(Reg, &MBB);
625 bool PHIElimination::isLiveIn(unsigned Reg, const MachineBasicBlock *MBB) {
627 "isLiveIn() requires either LiveVariables or LiveIntervals");
631 return LV->isLiveIn(Reg, *MBB);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
ImplicitNullChecks.cpp 316 if (MBB->isLiveIn(*AR))
690 if (!Reg || MBB->isLiveIn(Reg))
699 if (!NC.getNotNullSucc()->isLiveIn(MO.getReg()))
PHIElimination.cpp 102 bool isLiveIn(unsigned Reg, const MachineBasicBlock *MBB);
610 ShouldSplit = ShouldSplit && !isLiveIn(Reg, &MBB);
640 bool PHIElimination::isLiveIn(unsigned Reg, const MachineBasicBlock *MBB) {
642 "isLiveIn() requires either LiveVariables or LiveIntervals");
646 return LV->isLiveIn(Reg, *MBB);
  /external/llvm/lib/Target/AArch64/
AArch64RedundantCopyElimination.cpp 157 [&](unsigned Reg) { return MBB->isLiveIn(Reg); }))
AArch64ConditionOptimizer.cpp 148 if (SuccBB->isLiveIn(AArch64::NZCV))
  /external/llvm/lib/Target/Sparc/
SparcFrameLowering.cpp 339 if (!MBB->isLiveIn(reg))
345 if (!MBB->isLiveIn(reg))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Sparc/
SparcFrameLowering.cpp 356 if (!MBB->isLiveIn(reg))
362 if (!MBB->isLiveIn(reg))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
ShadowCallStack.cpp 204 if (Fn.front().isLiveIn(X86::R10) || Fn.front().isLiveIn(X86::R11))
X86FrameLowering.cpp 241 if (Succ->isLiveIn(X86::EFLAGS))
359 UseLEA = STI.useLeaForSP() || MBB.isLiveIn(X86::EFLAGS);
622 const bool IsRCXLiveIn = MBB.isLiveIn(X86::RCX);
623 const bool IsRDXLiveIn = MBB.isLiveIn(X86::RDX);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineRegisterInfo.cpp 181 bool MachineRegisterInfo::isLiveIn(unsigned Reg) const {
  /external/llvm/lib/Target/SystemZ/
SystemZFrameLowering.cpp 123 bool IsLive = MBB.isLiveIn(GPR64) || MBB.isLiveIn(GPR32);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
SystemZFrameLowering.cpp 123 bool IsLive = MBB.isLiveIn(GPR64) || MBB.isLiveIn(GPR32);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
AArch64ConditionOptimizer.cpp 157 if (SuccBB->isLiveIn(AArch64::NZCV))
AArch64RedundantCopyElimination.cpp 456 if (!MBB->isLiveIn(KnownReg))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
SIOptimizeExecMasking.cpp 201 if (Succ->isLiveIn(Reg))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
Thumb1FrameLowering.cpp 770 !MF.getRegInfo().isLiveIn(Reg) &&
777 if (!MF.getRegInfo().isLiveIn(ArgReg))
787 bool isKill = !MRI.isLiveIn(Reg);
830 bool isKill = !MRI.isLiveIn(*HiRegToSave);
    [all...]

Completed in 1041 milliseconds

1 2 3 4