reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Instrumentation/AddressSanitizer.cpp
 2807   for (size_t i = Begin; i < End;) {
 2808     if (!ShadowMask[i]) {
 2809       assert(!ShadowBytes[i]);
 2810       ++i;
 2816     while (StoreSizeInBytes > End - i)
 2820     for (size_t j = StoreSizeInBytes - 1; j && !ShadowMask[i + j]; --j) {
 2828         Val |= (uint64_t)ShadowBytes[i + j] << (8 * j);
 2830         Val = (Val << 8) | ShadowBytes[i + j];
 2833     Value *Ptr = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
 2838     i += StoreSizeInBytes;