HomeSort by relevance Sort by last modified time
    Searched refs:OrigIns (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 263 void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore,
272 void instrumentMemIntrinsicParam(Instruction *OrigIns, Value *Addr,
559 Instruction *OrigIns,
565 instrumentAddress(OrigIns, InsertBefore, Addr, 8, IsWrite, Size);
571 instrumentAddress(OrigIns, InsertBefore, AddrLast, 8, IsWrite, Size);
714 void AddressSanitizer::instrumentAddress(Instruction *OrigIns,
752 Crash->setDebugLoc(OrigIns->getDebugLoc());
    [all...]
MemorySanitizer.cpp 49 /// MemorySanitizer can track origins (allocation points) of all uninitialized
50 /// values. This behavior is controlled with a flag (msan-track-origins) and is
53 /// Origins are 4-byte values created and interpreted by the runtime library.
55 /// of application memory. Propagation of origins is basically a bunch of
62 /// MemorySanitizer reports can show unrelated origins, but this is unlikely in
65 /// Origins are meaningless for fully initialized values, so MemorySanitizer
106 /// \brief Track origins of uninitialized values.
110 static cl::opt<bool> ClTrackOrigins("msan-track-origins",
111 cl::desc("Track origins (allocation sites) of poisoned memory"),
181 /// \brief Track origins (allocation points) of uninitialized values
    [all...]

Completed in 267 milliseconds