Searched defs:Funcs (Results 1 - 4 of 4) sorted by relevance

/external/llvm/tools/bugpoint/
H A DBugDriver.cpp233 void llvm::PrintFunctionList(const std::vector<Function*> &Funcs) { argument
234 unsigned NumPrint = Funcs.size();
237 outs() << " " << Funcs[i]->getName();
238 if (NumPrint < Funcs.size())
239 outs() << "... <" << Funcs.size() << " total>";
H A DCrashDebugger.cpp197 bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) { argument
199 if (KeepMain && std::find(Funcs.begin(), Funcs.end(),
201 Funcs.end())
210 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
211 Function *CMF = cast<Function>(VMap[Funcs[i]]);
213 assert(CMF->getFunctionType() == Funcs[i]->getFunctionType() && "wrong ty");
214 assert(CMF->getName() == Funcs[i]->getName() && "wrong name");
219 PrintFunctionList(Funcs);
234 Funcs
[all...]
H A DMiscompilation.cpp247 bool ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function*> &Funcs, argument
250 // functions listed in Funcs.
252 << (Funcs.size()==1 ? "this function is" : "these functions are")
255 PrintFunctionList(Funcs);
260 // will be in the clone and Funcs will still point to valid memory
270 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
271 Function *F = cast<Function>(VMap[Funcs[i]]);
501 // functions listed in Funcs.
1046 std::vector<Function*> Funcs = DebugAMiscompilation(*this, TestCodeGenerator, local
1054 Module *ToCodeGen = SplitFunctionsOutOfModule(ToNotCodeGen, Funcs, VMa
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp142 SmallVector<std::unique_ptr<GCOVFunction>, 16> Funcs; member in class:__anon26254::GCOVProfiler
508 Funcs.push_back(
510 GCOVFunction &Func = *Funcs.back();
552 for (auto &Func : Funcs) {
859 uint32_t FuncChecksum = Funcs.empty() ? 0 : Funcs[j]->getFuncChecksum();

Completed in 1671 milliseconds