Lines Matching refs:getOrInsertFunction

207   TsanFuncEntry = M.getOrInsertFunction("__tsan_func_entry", Attr,  in initialize()
210 M.getOrInsertFunction("__tsan_func_exit", Attr, IRB.getVoidTy()); in initialize()
211 TsanIgnoreBegin = M.getOrInsertFunction("__tsan_ignore_thread_begin", Attr, in initialize()
214 M.getOrInsertFunction("__tsan_ignore_thread_end", Attr, IRB.getVoidTy()); in initialize()
222 TsanRead[i] = M.getOrInsertFunction(ReadName, Attr, IRB.getVoidTy(), in initialize()
226 TsanWrite[i] = M.getOrInsertFunction(WriteName, Attr, IRB.getVoidTy(), in initialize()
230 TsanUnalignedRead[i] = M.getOrInsertFunction( in initialize()
234 TsanUnalignedWrite[i] = M.getOrInsertFunction( in initialize()
238 TsanVolatileRead[i] = M.getOrInsertFunction( in initialize()
242 TsanVolatileWrite[i] = M.getOrInsertFunction( in initialize()
247 TsanUnalignedVolatileRead[i] = M.getOrInsertFunction( in initialize()
252 TsanUnalignedVolatileWrite[i] = M.getOrInsertFunction( in initialize()
256 TsanCompoundRW[i] = M.getOrInsertFunction( in initialize()
261 TsanUnalignedCompoundRW[i] = M.getOrInsertFunction( in initialize()
268 M.getOrInsertFunction(AtomicLoadName, in initialize()
278 TsanAtomicStore[i] = M.getOrInsertFunction( in initialize()
304 TsanAtomicRMW[Op][i] = M.getOrInsertFunction( in initialize()
313 TsanAtomicCAS[i] = M.getOrInsertFunction( in initialize()
320 M.getOrInsertFunction("__tsan_vptr_update", Attr, IRB.getVoidTy(), in initialize()
322 TsanVptrLoad = M.getOrInsertFunction("__tsan_vptr_read", Attr, in initialize()
324 TsanAtomicThreadFence = M.getOrInsertFunction( in initialize()
329 TsanAtomicSignalFence = M.getOrInsertFunction( in initialize()
335 M.getOrInsertFunction("__tsan_memmove", Attr, IRB.getPtrTy(), in initialize()
338 M.getOrInsertFunction("__tsan_memcpy", Attr, IRB.getPtrTy(), in initialize()
340 MemsetFn = M.getOrInsertFunction( in initialize()