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

/external/llvm/include/llvm/Support/
H A DTimer.h88 TimerGroup *TG; // The TimerGroup this Timer is in. member in class:llvm::Timer
92 explicit Timer(StringRef N) : TG(0) { init(N); }
93 Timer(StringRef N, TimerGroup &tg) : TG(0) { init(N, tg); }
94 Timer(const Timer &RHS) : TG(0) {
95 assert(RHS.TG == 0 && "Can only copy uninitialized timers");
98 assert(TG == 0 && T.TG == 0 && "Can only assign uninit timers");
104 explicit Timer() : TG(0) {}
109 bool isInitialized() const { return TG != 0; }
171 TimerGroup(const TimerGroup &TG); // D
[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/Support/
H A DTimer.cpp104 assert(TG == 0 && "Timer already initialized");
107 TG = getDefaultTimerGroup();
108 TG->addTimer(*this);
112 assert(TG == 0 && "Timer already initialized");
115 TG = &tg;
116 TG->addTimer(*this);
120 if (!TG) return; // Never initialized, or already cleared.
121 TG->removeTimer(*this);
286 T.TG = 0;
387 for (TimerGroup *TG
[all...]
/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) {
/external/llvm/lib/VMCore/
H A DPassManager.cpp432 TimerGroup TG;
435 TimingInfo() : TG("... Pass execution timing report ...") {}
460 T = new Timer(P->getPassName(), TG); local

Completed in 191 milliseconds