Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVAsmPrinter.cpp114 unsigned NumNOPBytes = StackMapOpers(&MI).getNumPatchBytes(); in LowerSTACKMAP() local
121 assert(NumNOPBytes % NOPBytes == 0 && in LowerSTACKMAP()
128 while (NumNOPBytes > 0) { in LowerSTACKMAP()
135 NumNOPBytes -= 4; in LowerSTACKMAP()
139 emitNops(NumNOPBytes / NOPBytes); in LowerSTACKMAP()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.cpp753 unsigned NumNOPBytes = MI.getOperand(1).getImm(); in LowerSTACKMAP() local
760 assert(NumNOPBytes % 2 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
767 while (ShadowBytes < NumNOPBytes) { in LowerSTACKMAP()
779 while (ShadowBytes < NumNOPBytes) in LowerSTACKMAP()
780 ShadowBytes += EmitNop(OutContext, *OutStreamer, NumNOPBytes - ShadowBytes, in LowerSTACKMAP()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp1274 unsigned NumNOPBytes = StackMapOpers(&MI).getNumPatchBytes(); in LowerSTACKMAP() local
1281 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
1287 while (NumNOPBytes > 0) { in LowerSTACKMAP()
1294 NumNOPBytes -= 4; in LowerSTACKMAP()
1298 for (unsigned i = 0; i < NumNOPBytes; i += 4) in LowerSTACKMAP()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp486 unsigned NumNOPBytes = MI.getOperand(1).getImm(); in LowerSTACKMAP() local
493 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
499 while (NumNOPBytes > 0) { in LowerSTACKMAP()
506 NumNOPBytes -= 4; in LowerSTACKMAP()
510 for (unsigned i = 0; i < NumNOPBytes; i += 4) in LowerSTACKMAP()