Home
last modified time | relevance | path

Searched refs:ShadowBytes (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.cpp518 unsigned ShadowBytes = 0; in LowerSTACKMAP() local
522 while (ShadowBytes < NumNOPBytes) { in LowerSTACKMAP()
527 ShadowBytes += TII->getInstSizeInBytes(*MII); in LowerSTACKMAP()
534 while (ShadowBytes < NumNOPBytes) in LowerSTACKMAP()
535 ShadowBytes += EmitNop(OutContext, *OutStreamer, NumNOPBytes - ShadowBytes, in LowerSTACKMAP()
/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1064 ArrayRef<uint8_t> ShadowBytes, size_t Begin,
2697 assert(!ShadowBytes[i]); in copyToShadowInline()
2716 Val |= (uint64_t)ShadowBytes[i + j] << (8 * j); in copyToShadowInline()
2718 Val = (Val << 8) | ShadowBytes[i + j]; in copyToShadowInline()
2731 ArrayRef<uint8_t> ShadowBytes, in copyToShadow() argument
2737 ArrayRef<uint8_t> ShadowBytes, in copyToShadow() argument
2740 assert(ShadowMask.size() == ShadowBytes.size()); in copyToShadow()
2744 assert(!ShadowBytes[i]); in copyToShadow()
2747 uint8_t Val = ShadowBytes[i]; in copyToShadow()
2752 for (; j < End && ShadowMask[j] && Val == ShadowBytes[j]; ++j) { in copyToShadow()
[all …]