HomeSort by: relevance | last modified time | path
    Searched defs:TG (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/IR/
PassTimingInfo.cpp 66 TimerGroup TG;
98 : TG("pass", "... Pass execution timing report ...") {}
101 // Deleting the timers accumulates their info into the TG member.
102 // Then TG member is (implicitly) deleted, actually printing the report.
119 TG.print(OutStream ? *OutStream : *CreateInfoOutputFile(), true);
128 return new Timer(PassID, PassDescNumbered, TG);
177 Timers.emplace_back(new Timer(PassID, PassID, TG));
188 Timer *T = new Timer(PassID, FullDesc, TG);
196 : TG("pass", "... Pass execution timing report ..."), Enabled(Enabled),
209 TG.print(OutStream ? *OutStream : *CreateInfoOutputFile(), true)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Parallel.h 92 const Comparator &Comp, TaskGroup &TG, size_t Depth) {
110 TG.spawn([=, &Comp, &TG] {
111 parallel_quick_sort(Start, Pivot, Comp, TG, Depth - 1);
113 parallel_quick_sort(Pivot + 1, End, Comp, TG, Depth - 1);
119 TaskGroup TG;
120 parallel_quick_sort(Start, End, Comp, TG,
149 TaskGroup TG;
151 TG.spawn([=, &Fn] { std::for_each(Begin, Begin + TaskSize, Fn); });
176 TaskGroup TG;
    [all...]
Timer.h 89 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in.
97 Timer(StringRef TimerName, StringRef TimerDescription, TimerGroup &tg) {
98 init(TimerName, TimerDescription, tg);
101 assert(!RHS.TG && "Can only copy uninitialized timers");
104 assert(!TG && !T.TG && "Can only assign uninit timers");
112 void init(StringRef TimerName, StringRef TimerDescription, TimerGroup &tg);
116 bool isInitialized() const { return TG != nullptr; }
199 TimerGroup(const TimerGroup &TG) = delete;
200 void operator=(const TimerGroup &TG) = delete
    [all...]

Completed in 26 milliseconds