Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.cpp610 unsigned NumNOPBytes = MI.getOperand(1).getImm(); in LowerSTACKMAP() local
617 assert(NumNOPBytes % 2 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
624 while (ShadowBytes < NumNOPBytes) { in LowerSTACKMAP()
636 while (ShadowBytes < NumNOPBytes) in LowerSTACKMAP()
637 ShadowBytes += EmitNop(OutContext, *OutStreamer, NumNOPBytes - ShadowBytes, in LowerSTACKMAP()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp941 unsigned NumNOPBytes = StackMapOpers(&MI).getNumPatchBytes(); in LowerSTACKMAP() local
948 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
954 while (NumNOPBytes > 0) { in LowerSTACKMAP()
961 NumNOPBytes -= 4; in LowerSTACKMAP()
965 for (unsigned i = 0; i < NumNOPBytes; i += 4) in LowerSTACKMAP()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp399 unsigned NumNOPBytes = MI.getOperand(1).getImm(); in LowerSTACKMAP() local
406 assert(NumNOPBytes % 4 == 0 && "Invalid number of NOP bytes requested!"); in LowerSTACKMAP()
412 while (NumNOPBytes > 0) { in LowerSTACKMAP()
419 NumNOPBytes -= 4; in LowerSTACKMAP()
423 for (unsigned i = 0; i < NumNOPBytes; i += 4) in LowerSTACKMAP()