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

  /external/llvm/include/llvm/Support/
Timer.h 23 class TimerGroup;
75 /// when its TimerGroup is destroyed. Timers do not print their information
82 TimerGroup *TG; // The TimerGroup this Timer is in.
87 Timer(StringRef N, TimerGroup &tg) : TG(nullptr) { init(N, tg); }
100 void init(StringRef N, TimerGroup &tg);
116 friend class TimerGroup;
152 /// The TimerGroup class is used to group together related timers into a single
153 /// report that is printed when the TimerGroup is destroyed. It is illegal to
154 /// destroy a TimerGroup object before all of the Timers in it are gone.
    [all...]
  /external/llvm/lib/Support/
Timer.cpp 77 static TimerGroup *DefaultTimerGroup = nullptr;
78 static TimerGroup *getDefaultTimerGroup() {
79 TimerGroup *tmp = DefaultTimerGroup;
86 tmp = new TimerGroup("Miscellaneous Ungrouped Timers");
102 void Timer::init(StringRef N, TimerGroup &tg) {
191 StringMap<std::pair<TimerGroup*, Name2TimerMap> > Map;
194 for (StringMap<std::pair<TimerGroup*, Name2TimerMap> >::iterator
202 std::pair<TimerGroup*, Name2TimerMap> &GroupEntry = Map[GroupName];
205 GroupEntry.first = new TimerGroup(GroupName);
237 // TimerGroup Implementatio
    [all...]
  /external/clang/tools/driver/
cc1_main.cpp 120 llvm::TimerGroup::printAll(llvm::errs());
driver.cpp 483 llvm::TimerGroup::printAll(llvm::errs());
cc1as_main.cpp 511 TimerGroup::printAll(errs());
  /external/llvm/utils/yaml-bench/
YAMLBench.cpp 146 static void benchmark( llvm::TimerGroup &Group
221 llvm::TimerGroup Group("YAML parser benchmark");
224 llvm::TimerGroup Group("YAML parser benchmark");
  /external/clang/include/clang/Frontend/
CompilerInstance.h 33 class TimerGroup;
109 std::unique_ptr<llvm::TimerGroup> FrontendTimerGroup;
  /external/clang/lib/Frontend/
CompilerInstance.cpp 511 FrontendTimerGroup.reset(new llvm::TimerGroup("Clang front-end time report"));
    [all...]
  /external/llvm/lib/IR/
LegacyPassManager.cpp 457 TimerGroup TG;
465 // TimerGroup.
468 // TimerGroup is deleted next, printing the report.
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonGenInsert.cpp     [all...]

Completed in 2250 milliseconds