Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/unittests/Transforms/Utils/
H A DASanStackFrameLayoutTest.cpp16 ShadowBytesToString(ArrayRef<uint8_t> ShadowBytes) { in ShadowBytesToString() argument
18 for (size_t i = 0, n = ShadowBytes.size(); i < n; i++) { in ShadowBytesToString()
19 switch (ShadowBytes[i]) { in ShadowBytesToString()
26 default: os << (unsigned)ShadowBytes[i]; in ShadowBytesToString()
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1100 ArrayRef<uint8_t> ShadowBytes, size_t Begin,
2836 assert(!ShadowBytes[i]); in copyToShadowInline()
2855 Val |= (uint64_t)ShadowBytes[i + j] << (8 * j); in copyToShadowInline()
2857 Val = (Val << 8) | ShadowBytes[i + j]; in copyToShadowInline()
2871 ArrayRef<uint8_t> ShadowBytes, in copyToShadow() argument
2877 ArrayRef<uint8_t> ShadowBytes, in copyToShadow() argument
2880 assert(ShadowMask.size() == ShadowBytes.size()); in copyToShadow()
2884 assert(!ShadowBytes[i]); in copyToShadow()
2887 uint8_t Val = ShadowBytes[i]; in copyToShadow()
2892 for (; j < End && ShadowMask[j] && Val == ShadowBytes[j]; ++j) { in copyToShadow()
[all …]
/llvm-project-15.0.7/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.cpp681 unsigned ShadowBytes = 0; in LowerSTACKMAP() local
685 while (ShadowBytes < NumNOPBytes) { in LowerSTACKMAP()
690 ShadowBytes += TII->getInstSizeInBytes(*MII); in LowerSTACKMAP()
697 while (ShadowBytes < NumNOPBytes) in LowerSTACKMAP()
698 ShadowBytes += EmitNop(OutContext, *OutStreamer, NumNOPBytes - ShadowBytes, in LowerSTACKMAP()