HomeSort by relevance Sort by last modified time
    Searched refs:NumNOPBytes (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Target/AArch64/
AArch64AsmPrinter.cpp 357 unsigned NumNOPBytes = MI.getOperand(1).getImm();
360 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!");
366 while (NumNOPBytes > 0) {
373 NumNOPBytes -= 4;
377 for (unsigned i = 0; i < NumNOPBytes; i += 4)
  /external/llvm/lib/Target/PowerPC/
PPCAsmPrinter.cpp 319 unsigned NumNOPBytes = MI.getOperand(1).getImm();
322 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!");
328 while (NumNOPBytes > 0) {
335 NumNOPBytes -= 4;
339 for (unsigned i = 0; i < NumNOPBytes; i += 4)
    [all...]

Completed in 91 milliseconds