Searched defs:TG (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/Support/
H A DTimer.h83 TimerGroup *TG; // The TimerGroup this Timer is in. member in class:llvm::Timer
87 explicit Timer(StringRef N) : TG(nullptr) { init(N); }
88 Timer(StringRef N, TimerGroup &tg) : TG(nullptr) { init(N, tg); }
89 Timer(const Timer &RHS) : TG(nullptr) {
90 assert(!RHS.TG && "Can only copy uninitialized timers");
93 assert(!TG && !T.TG && "Can only assign uninit timers");
99 explicit Timer() : TG(nullptr) {}
104 bool isInitialized() const { return TG != nullptr; }
166 TimerGroup(const TimerGroup &TG) member in class:llvm::TimerGroup
167 void operator=(const TimerGroup &TG) = delete; member in class:llvm::TimerGroup
[all...]
/external/clang/test/CXX/special/class.dtor/
H A Dp3-0x.cpp105 struct TG { struct
107 ~TG();
110 TG<T>::~TG() {}
122 TG<int> g;
/external/llvm/lib/IR/
H A DLegacyPassManager.cpp460 TimerGroup TG;
463 TimingInfo() : TG("... Pass execution timing report ...") {}
488 T = new Timer(P->getPassName(), TG); local
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp1930 const DenseMap<GlobalVariable*, LatticeVal> &TG = Solver.getTrackedGlobals(); local
1931 for (DenseMap<GlobalVariable*, LatticeVal>::const_iterator I = TG.begin(),
1932 E = TG.end(); I != E; ++I) {

Completed in 620 milliseconds