Lines Matching refs:FlushF
678 Function *FlushF = insertFlush(CountersBySP); in emitProfileArcs() local
705 Builder.CreateCall(GCOVInit, {WriteoutF, FlushF}); in emitProfileArcs()
948 Function *FlushF = M->getFunction("__llvm_gcov_flush"); in insertFlush() local
949 if (!FlushF) in insertFlush()
950 FlushF = Function::Create(FTy, GlobalValue::InternalLinkage, in insertFlush()
953 FlushF->setLinkage(GlobalValue::InternalLinkage); in insertFlush()
954 FlushF->setUnnamedAddr(GlobalValue::UnnamedAddr::Global); in insertFlush()
955 FlushF->addFnAttr(Attribute::NoInline); in insertFlush()
957 FlushF->addFnAttr(Attribute::NoRedZone); in insertFlush()
959 BasicBlock *Entry = BasicBlock::Create(*Ctx, "entry", FlushF); in insertFlush()
975 Type *RetTy = FlushF->getReturnType(); in insertFlush()
984 return FlushF; in insertFlush()