Searched defs:NumNOPBytes (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp367 unsigned NumNOPBytes = MI.getOperand(1).getImm(); local
370 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!");
376 while (NumNOPBytes > 0) {
383 NumNOPBytes -= 4;
387 for (unsigned i = 0; i < NumNOPBytes; i += 4)
/external/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp332 unsigned NumNOPBytes = MI.getOperand(1).getImm(); local
335 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!");
341 while (NumNOPBytes > 0) {
348 NumNOPBytes -= 4;
352 for (unsigned i = 0; i < NumNOPBytes; i += 4)

Completed in 30 milliseconds