/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Sparc/ |
D | SparcFrameLowering.cpp | 310 if (MRI->isPhysRegUsed(reg)) in verifyLeafProcRegUse() 314 if (MRI->isPhysRegUsed(reg)) in verifyLeafProcRegUse() 327 || MRI.isPhysRegUsed(SP::L0) // Too many registers needed in isLeafProc() 328 || MRI.isPhysRegUsed(SP::O6) // %sp is used in isLeafProc() 336 if (!MRI.isPhysRegUsed(reg)) in remapRegsForLeafProc()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | SIFrameLowering.cpp | 111 !MRI.isPhysRegUsed(ScratchRsrcReg)) in getReservedPrivateSegmentBufferReg() 138 if (!MRI.isPhysRegUsed(Reg) && MRI.isAllocatable(Reg)) { in getReservedPrivateSegmentBufferReg() 162 !MRI.isPhysRegUsed(ScratchWaveOffsetReg)) { in getReservedPrivateSegmentWaveByteOffsetReg() 204 if (!MRI.isPhysRegUsed(Reg) && MRI.isAllocatable(Reg)) { in getReservedPrivateSegmentWaveByteOffsetReg() 297 bool OffsetRegUsed = MRI.isPhysRegUsed(ScratchWaveOffsetReg); in emitEntryFunctionPrologue() 299 MRI.isPhysRegUsed(ScratchRsrcReg); in emitEntryFunctionPrologue() 353 MRI.isPhysRegUsed(ScratchWaveOffsetReg) ? 0 : RegState::Kill); in emitEntryFunctionPrologue()
|
D | AMDGPUAsmPrinter.cpp | 580 Info.UsesFlatScratch = MRI.isPhysRegUsed(AMDGPU::FLAT_SCR_LO) || in analyzeResourceUsage() 581 MRI.isPhysRegUsed(AMDGPU::FLAT_SCR_HI); in analyzeResourceUsage() 602 Info.UsesVCC = MRI.isPhysRegUsed(AMDGPU::VCC_LO) || in analyzeResourceUsage() 603 MRI.isPhysRegUsed(AMDGPU::VCC_HI); in analyzeResourceUsage() 611 if (MRI.isPhysRegUsed(Reg)) { in analyzeResourceUsage() 619 if (MRI.isPhysRegUsed(Reg)) { in analyzeResourceUsage()
|
/external/swiftshader/third_party/LLVM/lib/Target/SystemZ/ |
D | SystemZFrameLowering.cpp | 123 assert(MF.getRegInfo().isPhysRegUsed(SystemZ::R15D) && in emitPrologue() 179 assert(MF.getRegInfo().isPhysRegUsed(SystemZ::R15D) && in emitEpilogue() 372 HighFPRsUsed |= MRI.isPhysRegUsed(HighFPRs[i]); in processFunctionBeforeCalleeSavedScan()
|
/external/llvm/include/llvm/CodeGen/ |
D | LiveRegMatrix.h | 116 bool isPhysRegUsed(unsigned PhysReg) const;
|
D | MachineRegisterInfo.h | 715 bool isPhysRegUsed(unsigned PhysReg) const;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | LiveRegMatrix.h | 128 bool isPhysRegUsed(unsigned PhysReg) const;
|
D | MachineRegisterInfo.h | 825 bool isPhysRegUsed(unsigned PhysReg) const;
|
/external/llvm/lib/Target/AMDGPU/ |
D | SIFrameLowering.cpp | 164 if (!MRI.isPhysRegUsed(Reg)) { in emitPrologue() 194 if (!MRI.isPhysRegUsed(Reg)) { in emitPrologue()
|
D | SIRegisterInfo.cpp | 963 if (!MRI.isPhysRegUsed(Reg)) in findUnusedRegister()
|
/external/llvm/lib/CodeGen/ |
D | LiveRegMatrix.cpp | 131 bool LiveRegMatrix::isPhysRegUsed(unsigned PhysReg) const { in isPhysRegUsed() function in LiveRegMatrix
|
D | MachineRegisterInfo.cpp | 519 bool MachineRegisterInfo::isPhysRegUsed(unsigned PhysReg) const { in isPhysRegUsed() function in MachineRegisterInfo
|
D | ExecutionDepsFix.cpp | 745 if (MRI.isPhysRegUsed(Reg)) { in runOnMachineFunction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | LiveRegMatrix.cpp | 138 bool LiveRegMatrix::isPhysRegUsed(unsigned PhysReg) const { in isPhysRegUsed() function in LiveRegMatrix
|
D | ExecutionDomainFix.cpp | 431 if (MRI.isPhysRegUsed(Reg)) { in runOnMachineFunction()
|
D | MachineRegisterInfo.cpp | 596 bool MachineRegisterInfo::isPhysRegUsed(unsigned PhysReg) const { in isPhysRegUsed() function in MachineRegisterInfo
|
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/ |
D | MBlazeFrameLowering.cpp | 252 if (!MRI.isPhysRegUsed(r) && !(isIntr && r == MBlaze::R11)) continue; in interruptFrameLayout() 294 if (!MRI.isPhysRegUsed(r)) continue; in interruptFrameLayout()
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | MachineRegisterInfo.h | 277 bool isPhysRegUsed(unsigned Reg) const { return UsedPhysRegs[Reg]; } in isPhysRegUsed() function
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
D | ARMFrameLowering.cpp | 374 assert(MF.getRegInfo().isPhysRegUsed(ARM::R4) && in emitEpilogue() 911 if (MF.getRegInfo().isPhysRegUsed(Reg)) { in processFunctionBeforeCalleeSavedScan() 918 if (MF.getRegInfo().isPhysRegUsed(*Aliases)) { in processFunctionBeforeCalleeSavedScan()
|
D | Thumb1FrameLowering.cpp | 244 assert(MF.getRegInfo().isPhysRegUsed(ARM::R4) && in emitEpilogue()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | PrologEpilogInserter.cpp | 227 if (Fn.getRegInfo().isPhysRegUsed(Reg)) { in calculateCalleeSavedRegisters() 233 if (Fn.getRegInfo().isPhysRegUsed(*AliasSet)) { in calculateCalleeSavedRegisters()
|
D | ExecutionDepsFix.cpp | 464 if (MF->getRegInfo().isPhysRegUsed(*I)) { in runOnMachineFunction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/ |
D | ARMFrameLowering.cpp | 1914 if (!MRI.isPhysRegUsed(Reg)) in determineCalleeSaves() 1935 if (!MRI.isReserved(ARM::LR) && !MRI.isPhysRegUsed(ARM::LR)) in determineCalleeSaves() 1956 if (!MRI.isReserved(Reg) && !MRI.isPhysRegUsed(Reg)) in determineCalleeSaves() 1966 if (!MRI.isReserved(Reg) && !MRI.isPhysRegUsed(Reg)) in determineCalleeSaves() 2005 if (!MRI.isPhysRegUsed(Reg)) in determineCalleeSaves()
|
/external/swiftshader/third_party/LLVM/lib/Target/XCore/ |
D | XCoreFrameLowering.cpp | 344 bool LRUsed = MF.getRegInfo().isPhysRegUsed(XCore::LR); in processFunctionBeforeCalleeSavedScan()
|
/external/llvm/lib/Target/Sparc/ |
D | LeonPasses.cpp | 53 if (!MRI.isPhysRegUsed(RegisterIndex) && in getUnusedFPRegister()
|