Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.cpp671 unsigned NumNOPBytes = MI.getOperand(1).getImm(); in LowerSTACKMAP() local
678 assert(NumNOPBytes % 2 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
685 while (ShadowBytes < NumNOPBytes) { in LowerSTACKMAP()
697 while (ShadowBytes < NumNOPBytes) in LowerSTACKMAP()
698 ShadowBytes += EmitNop(OutContext, *OutStreamer, NumNOPBytes - ShadowBytes, in LowerSTACKMAP()
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp980 unsigned NumNOPBytes = StackMapOpers(&MI).getNumPatchBytes(); in LowerSTACKMAP() local
987 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
993 while (NumNOPBytes > 0) { in LowerSTACKMAP()
1000 NumNOPBytes -= 4; in LowerSTACKMAP()
1004 for (unsigned i = 0; i < NumNOPBytes; i += 4) in LowerSTACKMAP()
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp435 unsigned NumNOPBytes = MI.getOperand(1).getImm(); in LowerSTACKMAP() local
442 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
448 while (NumNOPBytes > 0) { in LowerSTACKMAP()
455 NumNOPBytes -= 4; in LowerSTACKMAP()
459 for (unsigned i = 0; i < NumNOPBytes; i += 4) in LowerSTACKMAP()