Home
last modified time | relevance | path

Searched refs:NumNOPBytes (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Target/AArch64/
DAArch64AsmPrinter.cpp367 unsigned NumNOPBytes = MI.getOperand(1).getImm(); in LowerSTACKMAP() local
370 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
376 while (NumNOPBytes > 0) { in LowerSTACKMAP()
383 NumNOPBytes -= 4; in LowerSTACKMAP()
387 for (unsigned i = 0; i < NumNOPBytes; i += 4) in LowerSTACKMAP()
/external/llvm/lib/Target/PowerPC/
DPPCAsmPrinter.cpp335 unsigned NumNOPBytes = MI.getOperand(1).getImm(); in LowerSTACKMAP() local
338 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
344 while (NumNOPBytes > 0) { in LowerSTACKMAP()
351 NumNOPBytes -= 4; in LowerSTACKMAP()
355 for (unsigned i = 0; i < NumNOPBytes; i += 4) in LowerSTACKMAP()