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.cpp117 unsigned NumNOPBytes = StackMapOpers(&MI).getNumPatchBytes(); in LowerSTACKMAP() local
124 assert(NumNOPBytes % NOPBytes == 0 && in LowerSTACKMAP()
131 while (NumNOPBytes > 0) { in LowerSTACKMAP()
138 NumNOPBytes -= 4; in LowerSTACKMAP()
142 emitNops(NumNOPBytes / NOPBytes); in LowerSTACKMAP()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.cpp754 unsigned NumNOPBytes = MI.getOperand(1).getImm(); in LowerSTACKMAP() local
761 assert(NumNOPBytes % 2 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
768 while (ShadowBytes < NumNOPBytes) { in LowerSTACKMAP()
780 while (ShadowBytes < NumNOPBytes) in LowerSTACKMAP()
781 ShadowBytes += EmitNop(OutContext, *OutStreamer, NumNOPBytes - ShadowBytes, in LowerSTACKMAP()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp1553 unsigned NumNOPBytes = StackMapOpers(&MI).getNumPatchBytes(); in LowerSTACKMAP() local
1560 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
1566 while (NumNOPBytes > 0) { in LowerSTACKMAP()
1573 NumNOPBytes -= 4; in LowerSTACKMAP()
1577 for (unsigned i = 0; i < NumNOPBytes; i += 4) in LowerSTACKMAP()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp523 unsigned NumNOPBytes = MI.getOperand(1).getImm(); in LowerSTACKMAP() local
530 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
536 while (NumNOPBytes > 0) { in LowerSTACKMAP()
543 NumNOPBytes -= 4; in LowerSTACKMAP()
547 for (unsigned i = 0; i < NumNOPBytes; i += 4) in LowerSTACKMAP()