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

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
StackMaps.cpp 82 unsigned ScratchIdx = StartIdx, e = MI->getNumOperands();
83 while (ScratchIdx < e &&
84 !(MI->getOperand(ScratchIdx).isReg() &&
85 MI->getOperand(ScratchIdx).isDef() &&
86 MI->getOperand(ScratchIdx).isImplicit() &&
87 MI->getOperand(ScratchIdx).isEarlyClobber()))
88 ++ScratchIdx;
90 assert(ScratchIdx != e && "No scratch register available");
91 return ScratchIdx;
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZAsmPrinter.cpp 658 unsigned ScratchIdx = -1;
661 ScratchIdx = Opers.getNextScratchIdx(ScratchIdx + 1);
662 ScratchReg = MI.getOperand(ScratchIdx).getReg();
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86MCInstLower.cpp 1404 unsigned ScratchIdx = opers.getNextScratchIdx();
1429 Register ScratchReg = MI.getOperand(ScratchIdx).getReg();

Completed in 77 milliseconds