Home | History | Annotate | Download | only in Instrumentation

Lines Matching refs:Module

41 /// Every module initializer should call __msan_init to ensure that the
86 #include "llvm/IR/Module.h"
165 /// MemorySanitizer: instrument the code in module to find
179 bool doInitialization(Module &M);
183 void initializeCallbacks(Module &M);
259 static GlobalVariable *createPrivateNonConstGlobalForString(Module &M,
268 void MemorySanitizer::initializeCallbacks(Module &M) {
334 /// \brief Module-level initialization.
336 /// inserts a call to __msan_init to the module's constructor list.
337 bool MemorySanitizer::doInitialization(Module &M) {
365 // Insert a call to __msan_init/__msan_track_origins into the module's CTORs.