Home
last modified time | relevance | path

Searched refs:GCOVFunction (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/VMCore/
DGCOV.cpp48 GCOVFunction *GFun = NULL; in read()
54 GFun = new GCOVFunction(); in read()
66 for (SmallVector<GCOVFunction *, 16>::iterator I = Functions.begin(), in dump()
74 for (SmallVector<GCOVFunction *, 16>::iterator I = Functions.begin(), in collectLineCounts()
84 GCOVFunction::~GCOVFunction() { in ~GCOVFunction()
90 bool GCOVFunction::read(GCOVBuffer &Buff, GCOVFormat Format) { in read()
154 void GCOVFunction::dump() { in dump()
163 void GCOVFunction::collectLineCounts(FileInfo &FI) { in collectLineCounts()
/external/llvm/include/llvm/Support/
DGCOV.h28 class GCOVFunction; variable
247 SmallVector<std::unique_ptr<GCOVFunction>, 16> Functions;
262 class GCOVFunction {
267 GCOVFunction(GCOVFile &P) : Parent(P), Ident(0), LineNumber(0) {} in GCOVFunction() function
314 GCOVBlock(GCOVFunction &P, uint32_t N) in GCOVBlock()
318 const GCOVFunction &getParent() const { return Parent; } in getParent()
355 GCOVFunction &Parent;
370 typedef SmallVector<const GCOVFunction *, 1> FunctionVector;
407 const GCOVFunction *Function) { in addFunctionLine()
438 typedef MapVector<const GCOVFunction *, GCOVCoverage> FuncCoverageMap;
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DGCOV.h25 class GCOVFunction; variable
165 SmallVector<GCOVFunction *, 16> Functions;
169 class GCOVFunction {
171 GCOVFunction() : Ident(0), LineNumber(0) {} in GCOVFunction() function
172 ~GCOVFunction();
/external/llvm/lib/IR/
DGCOV.cpp43 auto GFun = make_unique<GCOVFunction>(*this); in readGCNO()
127 bool GCOVFunction::readGCNO(GCOVBuffer &Buff, GCOV::GCOVVersion Version) { in readGCNO()
250 bool GCOVFunction::readGCDA(GCOVBuffer &Buff, GCOV::GCOVVersion Version) { in readGCDA()
337 uint64_t GCOVFunction::getEntryCount() const { in getEntryCount()
343 uint64_t GCOVFunction::getExitCount() const { in getExitCount()
348 LLVM_DUMP_METHOD void GCOVFunction::dump() const { in dump()
357 void GCOVFunction::collectLineCounts(FileInfo &FI) { in collectLineCounts()
608 DenseMap<const GCOVFunction *, bool> LineExecs; in print()
632 const GCOVFunction *Function = &Block->getParent(); in print()
634 std::pair<const GCOVFunction *, GCOVCoverage> KeyValue( in print()
[all …]
/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp157 class GCOVFunction;
230 friend class GCOVFunction;
245 class GCOVFunction : public GCOVRecord { class
247 GCOVFunction(DISubprogram SP, raw_ostream *os, bool Use402Format) { in GCOVFunction() function in __anonebae53380211::GCOVFunction
273 ~GCOVFunction() { in ~GCOVFunction()
379 GCOVFunction Func(SP, os, Use402Format); in emitGCNO()
/external/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp72 class GCOVFunction;
132 SmallVector<std::unique_ptr<GCOVFunction>, 16> Funcs;
212 class GCOVFunction;
301 friend class GCOVFunction;
316 class GCOVFunction : public GCOVRecord { class
318 GCOVFunction(const DISubprogram *SP, Function *F, raw_ostream *os, in GCOVFunction() function in __anonb9b0140c0211::GCOVFunction
529 Funcs.push_back(make_unique<GCOVFunction>(SP, &F, &out, FunctionIdent++, in emitProfileNotes()
532 GCOVFunction &Func = *Funcs.back(); in emitProfileNotes()