Home | History | Annotate | Download | only in Support

Lines Matching refs:Statistic

1 //===-- Statistic.cpp - Easy way to expose stats information --------------===//
10 // This file implements the 'Statistic' class, which is designed to be an easy
18 // static Statistic NumInstEliminated("GCSE", "Number of instructions killed");
24 #include "llvm/ADT/Statistic.h"
50 /// on demand (when the first statistic is bumped) and destroyed only when
53 std::vector<const Statistic*> Stats;
59 void addStatistic(const Statistic *S) {
68 /// RegisterStatistic - The first time a statistic is bumped, this method is
70 void Statistic::RegisterStatistic() {
71 // If stats are enabled, inform StatInfo that this statistic should be
90 bool operator()(const Statistic *LHS, const Statistic *RHS) const {