Home
last modified time | relevance | path

Searched refs:EmitNotes (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp46 : ModulePass(ID), EmitNotes(true), EmitData(true), Use402Format(false) { in GCOVProfiler()
49 GCOVProfiler(bool EmitNotes, bool EmitData, bool use402Format = false) in GCOVProfiler() argument
50 : ModulePass(ID), EmitNotes(EmitNotes), EmitData(EmitData), in GCOVProfiler()
52 assert((EmitNotes || EmitData) && "GCOVProfiler asked to do nothing?"); in GCOVProfiler()
94 bool EmitNotes; member in __anonebae53380111::GCOVProfiler
107 ModulePass *llvm::createGCOVProfilerPass(bool EmitNotes, bool EmitData, in createGCOVProfilerPass() argument
109 return new GCOVProfiler(EmitNotes, EmitData, Use402Format); in createGCOVProfilerPass()
347 if (EmitNotes) emitGCNO(); in runOnModule()
/external/swiftshader/third_party/LLVM/include/llvm/Transforms/
DInstrumentation.h31 ModulePass *createGCOVProfilerPass(bool EmitNotes = true, bool EmitData = true,
/external/llvm/include/llvm/Transforms/
DInstrumentation.h55 bool EmitNotes; member
/external/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp56 Options.EmitNotes = true; in getDefault()
78 assert((Options.EmitNotes || Options.EmitData) && in GCOVProfiler()
458 if (Options.EmitNotes) emitProfileNotes(); in runOnModule()
/external/clang/lib/CodeGen/
DBackendUtil.cpp468 Options.EmitNotes = CodeGenOpts.EmitGcovNotes; in CreatePasses()