HomeSort by relevance Sort by last modified time
    Searched refs:Funcs (Results 1 - 8 of 8) sorted by null

  /external/llvm/tools/bugpoint/
BugDriver.cpp 233 void llvm::PrintFunctionList(const std::vector<Function*> &Funcs) {
234 unsigned NumPrint = Funcs.size();
237 outs() << " " << Funcs[i]->getName();
238 if (NumPrint < Funcs.size())
239 outs() << "... <" << Funcs.size() << " total>";
CrashDebugger.cpp 197 bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) {
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.assign(Functions.begin(), Functions.end())
    [all...]
Miscompilation.cpp 247 bool ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function*> &Funcs,
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.
    [all...]
BugDriver.h 313 void PrintFunctionList(const std::vector<Function*> &Funcs);
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 776 static std::vector<std::string> Funcs;
779 Funcs.push_back("_Z14rsGetElementAt13rs_allocationj");
780 Funcs.push_back("_Z14rsGetElementAt13rs_allocationjj");
781 Funcs.push_back("_Z14rsGetElementAt13rs_allocationjjj");
783 Funcs.push_back("_Z14rsSetElementAt13rs_allocationPvj");
784 Funcs.push_back("_Z14rsSetElementAt13rs_allocationPvjj");
785 Funcs.push_back("_Z14rsSetElementAt13rs_allocationPvjjj");
787 Funcs.push_back("_Z25rsGetElementAtYuv_uchar_Y13rs_allocationjj");
789 Funcs.push_back("_Z25rsGetElementAtYuv_uchar_U13rs_allocationjj");
791 Funcs.push_back("_Z25rsGetElementAtYuv_uchar_V13rs_allocationjj")
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 142 SmallVector<std::unique_ptr<GCOVFunction>, 16> Funcs;
508 Funcs.push_back(
510 GCOVFunction &Func = *Funcs.back();
552 for (auto &Func : Funcs) {
859 uint32_t FuncChecksum = Funcs.empty() ? 0 : Funcs[j]->getFuncChecksum();
    [all...]
  /external/llvm/lib/IR/
GCOV.cpp 659 const FunctionVector &Funcs) const {
660 for (FunctionVector::const_iterator I = Funcs.begin(), E = Funcs.end();
  /external/llvm/include/llvm/Support/
GCOV.h 402 const FunctionVector &Funcs) const;

Completed in 877 milliseconds