Searched refs:Funcs (Results 1 - 8 of 8) sorted by relevance
/external/llvm/tools/bugpoint/ |
H A D | BugDriver.cpp | 230 void llvm::PrintFunctionList(const std::vector<Function*> &Funcs) { argument 231 unsigned NumPrint = Funcs.size(); 234 outs() << " " << Funcs[i]->getName(); 235 if (NumPrint < Funcs.size()) 236 outs() << "... <" << Funcs.size() << " total>";
|
H A D | CrashDebugger.cpp | 233 bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) { argument 235 if (KeepMain && std::find(Funcs.begin(), Funcs.end(), 237 Funcs.end()) 246 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) { 247 Function *CMF = cast<Function>(VMap[Funcs[i]]); 249 assert(CMF->getFunctionType() == Funcs[i]->getFunctionType() && "wrong ty"); 250 assert(CMF->getName() == Funcs[i]->getName() && "wrong name"); 255 PrintFunctionList(Funcs); 310 Funcs [all...] |
H A D | Miscompilation.cpp | 238 bool ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function*> &Funcs, argument 241 // functions listed in Funcs. 243 << (Funcs.size()==1 ? "this function is" : "these functions are") 246 PrintFunctionList(Funcs); 251 // will be in the clone and Funcs will still point to valid memory 261 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) { 262 Function *F = cast<Function>(VMap[Funcs[i]]); 480 // functions listed in Funcs. 1009 std::vector<Function*> Funcs = DebugAMiscompilation(*this, TestCodeGenerator, local 1018 SplitFunctionsOutOfModule(ToNotCodeGen.get(), Funcs, VMa [all...] |
H A D | BugDriver.h | 318 void PrintFunctionList(const std::vector<Function*> &Funcs);
|
/external/clang/lib/Sema/ |
H A D | SemaCoroutine.cpp | 199 const StringRef Funcs[] = {"await_ready", "await_suspend", "await_resume"}; local 200 for (size_t I = 0, N = llvm::array_lengthof(Funcs); I != N; ++I) { 205 ExprResult Result = buildMemberCall(S, Operand, Loc, Funcs[I], None);
|
/external/llvm/lib/Transforms/Instrumentation/ |
H A D | GCOVProfiling.cpp | 140 SmallVector<std::unique_ptr<GCOVFunction>, 16> Funcs; member in class:__anon12884::GCOVProfiler 515 Funcs.push_back(make_unique<GCOVFunction>(SP, F, &out, FunctionIdent++, 518 GCOVFunction &Func = *Funcs.back(); 562 for (auto &Func : Funcs) { 864 uint32_t FuncChecksum = Funcs.empty() ? 0 : Funcs[j]->getFuncChecksum();
|
/external/llvm/lib/IR/ |
H A D | GCOV.cpp | 691 const FunctionVector &Funcs) const { 692 for (const GCOVFunction *Func : Funcs) {
|
/external/llvm/include/llvm/Support/ |
H A D | GCOV.h | 420 void printFunctionSummary(raw_ostream &OS, const FunctionVector &Funcs) const;
|
Completed in 159 milliseconds