Searched refs:TG (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DTimer.cpp100 assert(!TG && "Timer already initialized");
104 TG = &tg;
105 TG->addTimer(*this);
109 if (!TG) return; // Never initialized, or already cleared.
110 TG->removeTimer(*this);
276 T.TG = nullptr;
391 for (TimerGroup *TG = TimerGroupList; TG; TG = TG
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DParallel.h91 const Comparator &Comp, TaskGroup &TG, size_t Depth) {
109 TG.spawn([=, &Comp, &TG] {
110 parallel_quick_sort(Start, Pivot, Comp, TG, Depth - 1);
112 parallel_quick_sort(Pivot + 1, End, Comp, TG, Depth - 1);
118 TaskGroup TG; local
119 parallel_quick_sort(Start, End, Comp, TG,
133 TaskGroup TG; local
135 TG.spawn([=, &Fn] { std::for_each(Begin, Begin + TaskSize, Fn); });
147 TaskGroup TG; local
90 parallel_quick_sort(RandomAccessIterator Start, RandomAccessIterator End, const Comparator &Comp, TaskGroup &TG, size_t Depth) argument
[all...]
H A DTimer.h83 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in. member in class:llvm::Timer
95 assert(!RHS.TG && "Can only copy uninitialized timers");
98 assert(!TG && !T.TG && "Can only assign uninit timers");
110 bool isInitialized() const { return TG != nullptr; }
193 TimerGroup(const TimerGroup &TG) = delete; member in class:llvm::TimerGroup
194 void operator=(const TimerGroup &TG) = delete; member in class:llvm::TimerGroup
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DPassTimingInfo.cpp63 TimerGroup TG; member in class:llvm::__anon3691::legacy::PassTimingInfo
95 : TG("pass", "... Pass execution timing report ...") {}
98 // Deleting the timers accumulates their info into the TG member.
99 // Then TG member is (implicitly) deleted, actually printing the report.
116 TG.print(OutStream ? *OutStream : *CreateInfoOutputFile(), true);
125 return new Timer(PassID, PassDescNumbered, TG);
178 Timer *T = new Timer(PassID, FullDesc, TG);
186 : TG("pass", "... Pass execution timing report ..."), Enabled(Enabled) {}
195 TG.print(OutStream ? *OutStream : *CreateInfoOutputFile(), true);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DPassTimingInfo.h56 TimerGroup TG;
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp236 if (const auto *TG = dyn_cast<OMPTaskgroupDirective>(&S)) {
237 if (const Expr *E = TG->getReductionRef())

Completed in 193 milliseconds