Lines Matching refs:getOrInsertFunction

206   TsanFuncEntry = M.getOrInsertFunction("__tsan_func_entry", Attr,  in initialize()
209 M.getOrInsertFunction("__tsan_func_exit", Attr, IRB.getVoidTy()); in initialize()
210 TsanIgnoreBegin = M.getOrInsertFunction("__tsan_ignore_thread_begin", Attr, in initialize()
213 M.getOrInsertFunction("__tsan_ignore_thread_end", Attr, IRB.getVoidTy()); in initialize()
221 TsanRead[i] = M.getOrInsertFunction(ReadName, Attr, IRB.getVoidTy(), in initialize()
225 TsanWrite[i] = M.getOrInsertFunction(WriteName, Attr, IRB.getVoidTy(), in initialize()
229 TsanUnalignedRead[i] = M.getOrInsertFunction( in initialize()
233 TsanUnalignedWrite[i] = M.getOrInsertFunction( in initialize()
237 TsanVolatileRead[i] = M.getOrInsertFunction( in initialize()
241 TsanVolatileWrite[i] = M.getOrInsertFunction( in initialize()
246 TsanUnalignedVolatileRead[i] = M.getOrInsertFunction( in initialize()
251 TsanUnalignedVolatileWrite[i] = M.getOrInsertFunction( in initialize()
255 TsanCompoundRW[i] = M.getOrInsertFunction( in initialize()
260 TsanUnalignedCompoundRW[i] = M.getOrInsertFunction( in initialize()
267 M.getOrInsertFunction(AtomicLoadName, in initialize()
277 TsanAtomicStore[i] = M.getOrInsertFunction( in initialize()
303 TsanAtomicRMW[Op][i] = M.getOrInsertFunction( in initialize()
312 TsanAtomicCAS[i] = M.getOrInsertFunction( in initialize()
319 M.getOrInsertFunction("__tsan_vptr_update", Attr, IRB.getVoidTy(), in initialize()
321 TsanVptrLoad = M.getOrInsertFunction("__tsan_vptr_read", Attr, in initialize()
323 TsanAtomicThreadFence = M.getOrInsertFunction( in initialize()
328 TsanAtomicSignalFence = M.getOrInsertFunction( in initialize()
334 M.getOrInsertFunction("__tsan_memmove", Attr, IRB.getPtrTy(), in initialize()
337 M.getOrInsertFunction("__tsan_memcpy", Attr, IRB.getPtrTy(), in initialize()
339 MemsetFn = M.getOrInsertFunction( in initialize()