Home | History | Annotate | Download | only in tsan

Lines Matching refs:stats

4297   ThreadLocalStats stats;
4768 this->stats.history_creates_new_segment++;
4779 this->stats.events[SBLOCK_ENTER]++;
4796 this->stats.history_reuses_segment++;
4799 this->stats.history_uses_same_segment++;
4812 this->stats.history_uses_preallocated_segment++;
5022 this->stats.events[RTN_CALL]++;
5054 this->stats.events[RTN_EXIT]++;
6138 const size_t mop_stat_size = TS_ARRAY_SIZE(thr->stats.mops_per_trace);
6139 thr->stats.mops_per_trace[min(n, mop_stat_size - 1)]++;
6140 const size_t stat_size = TS_ARRAY_SIZE(thr->stats.locks_per_trace);
6141 thr->stats.locks_per_trace[min(n_locks, stat_size - 1)]++;
6332 thr->stats.events[type]++;
6359 Thread::Get(TID(e->tid()))->stats.events[type]++;
6863 thr->stats.msm_branch_count[i]++; } while(0)
7085 if (has_expensive_flags) thr->stats.n_fast_access8++;
7089 if (has_expensive_flags) thr->stats.n_slow_access8++;
7104 if (has_expensive_flags) thr->stats.n_fast_access4++;
7108 if (has_expensive_flags) thr->stats.n_slow_access4++;
7120 if (has_expensive_flags) thr->stats.n_fast_access2++;
7124 if (has_expensive_flags) thr->stats.n_slow_access2++;
7135 if (has_expensive_flags) thr->stats.n_fast_access1++;
7139 if (has_expensive_flags) thr->stats.n_slow_access1++;
7147 if (has_expensive_flags) thr->stats.n_very_slow_access++;
7182 if (has_expensive_flags) thr->stats.n_access_slow_iter++;
7301 INC_STAT(thr->stats.memory_access_sizes[mop->size() <= 16 ? mop->size() : 17 ]);
7302 INC_STAT(thr->stats.events[mop->is_write() ? WRITE : READ]);
7304 thr->stats.access_to_first_1g += (addr >> 30) == 0;
7305 thr->stats.access_to_first_2g += (addr >> 31) == 0;
7306 thr->stats.access_to_first_4g += ((uint64_t)addr >> 32) == 0;
7317 INC_STAT(thr->stats.cache_fast_get);
7336 INC_STAT(thr->stats.unlocked_access_ok);
7367 INC_STAT(thr->stats.locked_access[locked_access_case]);
7611 // Add the thread-local stats to global stats.
7612 G_stats->Add(thr->stats);
7613 thr->stats.Clear();
8363 G_stats = new Stats;