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

/external/llvm/tools/bugpoint/
H A DBugDriver.cpp229 void llvm::PrintFunctionList(const std::vector<Function*> &Funcs) { argument
230 unsigned NumPrint = Funcs.size();
233 outs() << " " << Funcs[i]->getName();
234 if (NumPrint < Funcs.size())
235 outs() << "... <" << Funcs.size() << " total>";
H A DCrashDebugger.cpp197 bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) { argument
200 if (KeepMain && find(Funcs.begin(), Funcs.end(),
201 BD.getProgram()->getFunction("main")) == 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.cpp246 bool ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function*> &Funcs, argument
249 // functions listed in Funcs.
251 << (Funcs.size()==1 ? "this function is" : "these functions are")
254 PrintFunctionList(Funcs);
259 // will be in the clone and Funcs will still point to valid memory
269 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
270 Function *F = cast<Function>(VMap[Funcs[i]]);
500 // functions listed in Funcs.
1045 std::vector<Function*> Funcs = DebugAMiscompilation(*this, TestCodeGenerator, local
1053 Module *ToCodeGen = SplitFunctionsOutOfModule(ToNotCodeGen, Funcs, VMa
[all...]
H A DBugDriver.h313 void PrintFunctionList(const std::vector<Function*> &Funcs);

Completed in 123 milliseconds