OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScratchIdx
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/CodeGen/
StackMaps.cpp
61
unsigned
ScratchIdx
= StartIdx, e = MI->getNumOperands();
62
while (
ScratchIdx
< e &&
63
!(MI->getOperand(
ScratchIdx
).isReg() &&
64
MI->getOperand(
ScratchIdx
).isDef() &&
65
MI->getOperand(
ScratchIdx
).isImplicit() &&
66
MI->getOperand(
ScratchIdx
).isEarlyClobber()))
67
++
ScratchIdx
;
69
assert(
ScratchIdx
!= e && "No scratch register available");
70
return
ScratchIdx
;
/external/llvm/lib/Target/X86/
X86MCInstLower.cpp
758
unsigned
ScratchIdx
= opers.getNextScratchIdx();
764
unsigned ScratchReg = MI.getOperand(
ScratchIdx
).getReg();
[
all
...]
Completed in 27 milliseconds