Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.cpp634 unsigned NumNOPBytes = MI.getOperand(1).getImm(); in LowerSTACKMAP() local
641 assert(NumNOPBytes % 2 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
648 while (ShadowBytes < NumNOPBytes) { in LowerSTACKMAP()
660 while (ShadowBytes < NumNOPBytes) in LowerSTACKMAP()
661 ShadowBytes += EmitNop(OutContext, *OutStreamer, NumNOPBytes - ShadowBytes, in LowerSTACKMAP()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp945 unsigned NumNOPBytes = StackMapOpers(&MI).getNumPatchBytes(); in LowerSTACKMAP() local
952 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
958 while (NumNOPBytes > 0) { in LowerSTACKMAP()
965 NumNOPBytes -= 4; in LowerSTACKMAP()
969 for (unsigned i = 0; i < NumNOPBytes; i += 4) in LowerSTACKMAP()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp411 unsigned NumNOPBytes = MI.getOperand(1).getImm(); in LowerSTACKMAP() local
418 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
424 while (NumNOPBytes > 0) { in LowerSTACKMAP()
431 NumNOPBytes -= 4; in LowerSTACKMAP()
435 for (unsigned i = 0; i < NumNOPBytes; i += 4) in LowerSTACKMAP()