Lines Matching refs:ResetF
692 FunctionCallee ResetF = M->getOrInsertFunction("llvm_reset_counters", FTy); in AddFlushBeforeForkAndExec() local
693 Builder.CreateCall(ResetF)->setDebugLoc(Loc); in AddFlushBeforeForkAndExec()
990 Function *ResetF = insertReset(CountersBySP); in emitGlobalConstructor() local
1009 Builder.CreateCall(GCOVInit, {WriteoutF, ResetF}); in emitGlobalConstructor()
1316 Function *ResetF = M->getFunction("__llvm_gcov_reset"); in insertReset() local
1317 if (!ResetF) in insertReset()
1318 ResetF = createInternalFunction(FTy, "__llvm_gcov_reset"); in insertReset()
1319 ResetF->addFnAttr(Attribute::NoInline); in insertReset()
1321 BasicBlock *Entry = BasicBlock::Create(*Ctx, "entry", ResetF); in insertReset()
1335 Type *RetTy = ResetF->getReturnType(); in insertReset()
1344 return ResetF; in insertReset()