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

References

lib/Transforms/Instrumentation/AddressSanitizer.cpp
 2658       if (LooksLikeCodeInBug11395(&Inst)) return false;
 2660       if (Value *Addr = isInterestingMemoryAccess(&Inst, &IsWrite, &TypeSize,
 2675                   isInterestingPointerComparison(&Inst)) ||
 2677                   isInterestingPointerSubtraction(&Inst))) {
 2678         PointerComparisonsOrSubtracts.push_back(&Inst);
 2680       } else if (isa<MemIntrinsic>(Inst)) {
 2683         if (isa<AllocaInst>(Inst)) NumAllocas++;
 2684         CallSite CS(&Inst);
 2691         if (CallInst *CI = dyn_cast<CallInst>(&Inst))
 2695       ToInstrument.push_back(&Inst);