Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.cpp512 unsigned NumNOPBytes = MI.getOperand(1).getImm(); in LowerSTACKMAP() local
515 assert(NumNOPBytes % 2 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
522 while (ShadowBytes < NumNOPBytes) { in LowerSTACKMAP()
534 while (ShadowBytes < NumNOPBytes) in LowerSTACKMAP()
535 ShadowBytes += EmitNop(OutContext, *OutStreamer, NumNOPBytes - ShadowBytes, in LowerSTACKMAP()
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp576 unsigned NumNOPBytes = StackMapOpers(&MI).getNumPatchBytes(); in LowerSTACKMAP() local
579 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
585 while (NumNOPBytes > 0) { in LowerSTACKMAP()
592 NumNOPBytes -= 4; in LowerSTACKMAP()
596 for (unsigned i = 0; i < NumNOPBytes; i += 4) in LowerSTACKMAP()
/freebsd-12.1/contrib/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp334 unsigned NumNOPBytes = MI.getOperand(1).getImm(); in LowerSTACKMAP() local
337 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
343 while (NumNOPBytes > 0) { in LowerSTACKMAP()
350 NumNOPBytes -= 4; in LowerSTACKMAP()
354 for (unsigned i = 0; i < NumNOPBytes; i += 4) in LowerSTACKMAP()