Searched refs:FlushF (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp678 Function *FlushF = insertFlush(CountersBySP); local
705 Builder.CreateCall(GCOVInit, {WriteoutF, FlushF});
948 Function *FlushF = M->getFunction("__llvm_gcov_flush"); local
949 if (!FlushF)
950 FlushF = Function::Create(FTy, GlobalValue::InternalLinkage,
953 FlushF->setLinkage(GlobalValue::InternalLinkage);
954 FlushF->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
955 FlushF->addFnAttr(Attribute::NoInline);
957 FlushF->addFnAttr(Attribute::NoRedZone);
959 BasicBlock *Entry = BasicBlock::Create(*Ctx, "entry", FlushF);
[all...]

Completed in 57 milliseconds