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

  /external/llvm/include/llvm/Support/
Timer.h 24 class TimerGroup;
77 /// when its TimerGroup is destroyed. Timers do not print their information
84 TimerGroup *TG; // The TimerGroup this Timer is in.
89 Timer(StringRef N, TimerGroup &tg) : TG(0) { init(N, tg); }
102 void init(StringRef N, TimerGroup &tg);
118 friend class TimerGroup;
156 /// The TimerGroup class is used to group together related timers into a single
157 /// report that is printed when the TimerGroup is destroyed. It is illegal to
158 /// destroy a TimerGroup object before all of the Timers in it are gone.
    [all...]
  /external/llvm/lib/Support/
Timer.cpp 81 static TimerGroup *DefaultTimerGroup = 0;
82 static TimerGroup *getDefaultTimerGroup() {
83 TimerGroup *tmp = DefaultTimerGroup;
90 tmp = new TimerGroup("Miscellaneous Ungrouped Timers");
111 void Timer::init(StringRef N, TimerGroup &tg) {
200 StringMap<std::pair<TimerGroup*, Name2TimerMap> > Map;
203 for (StringMap<std::pair<TimerGroup*, Name2TimerMap> >::iterator
211 std::pair<TimerGroup*, Name2TimerMap> &GroupEntry = Map[GroupName];
214 GroupEntry.first = new TimerGroup(GroupName);
246 // TimerGroup Implementatio
    [all...]
  /external/clang/tools/driver/
cc1_main.cpp 104 llvm::TimerGroup::printAll(llvm::errs());
cc1as_main.cpp 463 TimerGroup::printAll(errs());
driver.cpp 423 llvm::TimerGroup::printAll(llvm::errs());
  /external/llvm/utils/yaml-bench/
YAMLBench.cpp 125 static void benchmark( llvm::TimerGroup &Group
193 llvm::TimerGroup Group("YAML parser benchmark");
196 llvm::TimerGroup Group("YAML parser benchmark");
  /external/llvm/lib/IR/
PassManager.cpp 454 TimerGroup TG;
462 // TimerGroup.
466 // TimerGroup is deleted next, printing the report.
    [all...]

Completed in 87 milliseconds