HomeSort by: relevance | last modified time | path
    Searched refs:ScratchRegs (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.cpp 905 const MCPhysReg *ScratchRegs = nullptr;
917 ScratchRegs = TLI->getScratchRegisters((CallingConv::ID) CC);
997 if (ScratchRegs)
998 for (unsigned i = 0; ScratchRegs[i]; ++i)
999 MIB.addReg(ScratchRegs[i], RegState::ImplicitDefine |
FastISel.cpp 693 const MCPhysReg *ScratchRegs = TLI.getScratchRegisters(CC);
694 for (unsigned i = 0; ScratchRegs[i]; ++i)
696 ScratchRegs[i], /*isDef=*/true, /*isImp=*/true, /*isKill=*/false,
872 const MCPhysReg *ScratchRegs = TLI.getScratchRegisters(CC);
873 for (unsigned i = 0; ScratchRegs[i]; ++i)
875 ScratchRegs[i], /*isDef=*/true, /*isImp=*/true, /*isKill=*/false,
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMExpandPseudoInsts.cpp 93 SmallVectorImpl<unsigned> &ScratchRegs);
1246 const LivePhysRegs &LiveRegs, SmallVectorImpl<unsigned> &ScratchRegs) {
1250 CMSESaveClearFPRegsV8(MBB, MBBI, DL, LiveRegs, ScratchRegs);
1256 const LivePhysRegs &LiveRegs, SmallVectorImpl<unsigned> &ScratchRegs) {
1261 assert(!ScratchRegs.empty());
1262 unsigned SpareReg = ScratchRegs.front();
1270 // Use ScratchRegs to store the fp regs
1280 if (ScratchRegs.size() >= 2) {
1281 unsigned SaveReg2 = ScratchRegs.pop_back_val();
1282 unsigned SaveReg1 = ScratchRegs.pop_back_val()
    [all...]
ARMBaseInstrInfo.cpp 1636 SmallVector<unsigned, 6> ScratchRegs;
1638 ScratchRegs.push_back(MI->getOperand(I).getReg());
1639 llvm::sort(ScratchRegs,
1645 for (const auto &Reg : ScratchRegs) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 1283 static const MCPhysReg ScratchRegs[] = { SystemZ::R0D, SystemZ::R1D,
1285 return ScratchRegs;
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 16281 static const MCPhysReg ScratchRegs[] = {
16285 return ScratchRegs;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 11818 static const MCPhysReg ScratchRegs[] = {
11821 return ScratchRegs;
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp 2615 static const MCPhysReg ScratchRegs[] = { X86::R11, 0 };
2616 return ScratchRegs;
    [all...]

Completed in 110 milliseconds