Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVAsmPrinter.cpp136 unsigned NumNOPBytes = StackMapOpers(&MI).getNumPatchBytes(); in LowerSTACKMAP() local
143 assert(NumNOPBytes % NOPBytes == 0 && in LowerSTACKMAP()
150 while (NumNOPBytes > 0) { in LowerSTACKMAP()
157 NumNOPBytes -= 4; in LowerSTACKMAP()
161 emitNops(NumNOPBytes / NOPBytes); in LowerSTACKMAP()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.cpp808 unsigned NumNOPBytes = MI.getOperand(1).getImm(); in LowerSTACKMAP() local
815 assert(NumNOPBytes % 2 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
822 while (ShadowBytes < NumNOPBytes) { in LowerSTACKMAP()
834 while (ShadowBytes < NumNOPBytes) in LowerSTACKMAP()
835 ShadowBytes += EmitNop(OutContext, *OutStreamer, NumNOPBytes - ShadowBytes, in LowerSTACKMAP()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp528 unsigned NumNOPBytes = MI.getOperand(1).getImm(); in LowerSTACKMAP() local
535 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
541 while (NumNOPBytes > 0) { in LowerSTACKMAP()
548 NumNOPBytes -= 4; in LowerSTACKMAP()
552 for (unsigned i = 0; i < NumNOPBytes; i += 4) in LowerSTACKMAP()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp1662 unsigned NumNOPBytes = StackMapOpers(&MI).getNumPatchBytes(); in LowerSTACKMAP() local
1669 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
1675 while (NumNOPBytes > 0) { in LowerSTACKMAP()
1682 NumNOPBytes -= 4; in LowerSTACKMAP()
1686 for (unsigned i = 0; i < NumNOPBytes; i += 4) in LowerSTACKMAP()