Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-08-19 | Stats: Add a sparse histogram stat object. | Thomas Grass | |
2011-06-07 | gcc 4.0: Add some virtual destructors to make gcc 4.0 happy. | Gabe Black | |
2011-05-12 | stats: delete mysql support | Nathan Binkert | |
we can add it back within python in some future changeset | |||
2011-05-12 | stats: move code that loops over all stats into python | Nathan Binkert | |
2011-04-25 | base: include types.hh in base/stats/mysql.hh | Nilay Vaish | |
Due to certain changes made via changeset 8229, the compilation was failing in certain cases. The compiler pointed to base/stats/mysql.hh for not naming a certain types like uint64_t. To rectify this, base/types.hh is being included in base/stats/mysql.hh. | |||
2011-04-20 | stats: add user settable separator string for arrayed stats | Brad Danofsky | |
Default is '::', so no visible change unless it is overridden | |||
2011-04-15 | includes: fix up code after sorting | Nathan Binkert | |
2011-04-15 | includes: sort all includes | Nathan Binkert | |
2011-01-10 | stats: Add a histogram statistic type | Nathan Binkert | |
2011-01-10 | Curtick: Fix mysql.cc build needing curTick. | Gabe Black | |
2011-01-07 | Replace curTick global variable with accessor functions. | Steve Reinhardt | |
This step makes it easy to replace the accessor functions (which still access a global variable) with ones that access per-thread curTick values. | |||
2011-01-03 | Make commenting on close namespace brackets consistent. | Steve Reinhardt | |
Ran all the source files through 'perl -pi' with this script: s|\s*(};?\s*)?/\*\s*(end\s*)?namespace\s*(\S+)\s*\*/(\s*})?|} // namespace $3|; s|\s*};?\s*//\s*(end\s*)?namespace\s*(\S+)\s*|} // namespace $2\n|; s|\s*};?\s*//\s*(\S+)\s*namespace\s*|} // namespace $1\n|; Also did a little manual editing on some of the arch/*/isa_traits.hh files and src/SConscript. | |||
2010-07-21 | stats: unify the two stats distribution type better | Nathan Binkert | |
2010-07-21 | stats: cleanup a few small problems in stats | Nathan Binkert | |
2010-06-15 | stats: rename print to display in the mysql code too...sorry | Nathan Binkert | |
2010-06-15 | stats: rename print to display so it work in python | Nathan Binkert | |
2010-06-14 | stats: get rid of the never-really-used event stuff | Nathan Binkert | |
2010-06-03 | Stats: fix dist stat and enable VectorDistStat | Lisa Hsu | |
2010-05-06 | compile: don't #include unnecessary stuff | Nathan Binkert | |
Time from base/time.hh has a name clash with Time from Ruby's TypeDefines.hh. Eventually Ruby's Time should go away, so instead of fixing this properly just try to avoid the clash. | |||
2010-01-23 | build: need to include cstdio | Nathan Binkert | |
2009-05-17 | includes: sort includes again | Nathan Binkert | |
2009-05-17 | types: Move stuff for global types into src/base/types.hh | Nathan Binkert | |
--HG-- rename : src/sim/host.hh => src/base/types.hh | |||
2009-05-13 | stats: fancy is a bad name | Nathan Binkert | |
2009-05-13 | stats: clean up the code for printing stats | Nathan Binkert | |
2009-05-11 | stats: remove a few compat leftovers | Nathan Binkert | |
2009-05-11 | stats: forgot an include for the mysql stuff | Nathan Binkert | |
2009-05-11 | scons: add include guards to info.hh | Nathan Binkert | |
2009-04-22 | stats: Move flags into info.hh and use base/flags.hh to manage the flags | Nathan Binkert | |
2009-04-22 | stats: Shuffle around info stuff so it can be accessed separately | Nathan Binkert | |
2009-04-22 | stats: Rename the info classes to hopefully make things a bit clearer | Nathan Binkert | |
FooInfoBase became FooInfo FooInfo became FooInfoProxy | |||
2009-04-22 | stats: remove simplescalar compatibility for printing | Nathan Binkert | |
2009-04-22 | stats: fix initialization bug in distribution text output | Nathan Binkert | |
2009-03-07 | stats: cleanup text output stuff and fix mysql output | Nathan Binkert | |
2009-03-05 | stats: create an enable phase, and a prepare phase. | Nathan Binkert | |
Enable more or less takes the place of check, but also allows stats to do some other configuration. Prepare moves all of the code that readies a stat for dumping into a separate function in preparation for supporting serialization of certain pieces of statistics data. While we're at it, clean up the visitor code and some of the python code. | |||
2009-03-05 | stats: stick the distribution's fancy parameter into the parameters structure. | Nathan Binkert | |
2009-02-23 | stats: reorganize how parameters are stored and accessed. | Nathan Binkert | |
2009-02-23 | stats: move the limits stuff into the types.hh file | Nathan Binkert | |
2009-02-23 | stats: get rid of the convoluted 'database' code. | Nathan Binkert | |
Just use the stuff directly and things ought to be more clear | |||
2009-02-23 | stats: Try to make the names of things more intuitive. | Nathan Binkert | |
Basically, this means renaming several things called data to info, which is information about the statistics. Things that are named data now are actual data stored for the statistic. | |||
2009-02-23 | stats: fix text printout for distributions | Nathan Binkert | |
2008-10-09 | stats: use properly signed types for looping and comparison | Nathan Binkert | |
2008-10-09 | style: Bring statistics code in line with the proper style. | Nathan Binkert | |
2008-10-02 | Output: Verify output files are open after opening them. | Ali Saidi | |
2008-09-27 | gcc: Add extra parens to quell warnings. | Nathan Binkert | |
Even though we're not incorrect about operator precedence, let's add some parens in some particularly confusing places to placate GCC 4.3 so that we don't have to turn the warning off. Agreed that this is a bit of a pain for those users who get the order of operations correct, but it is likely to prevent bugs in certain cases. | |||
2008-09-10 | style: Remove non-leading tabs everywhere they shouldn't be. Developers ↵ | Ali Saidi | |
should configure their editors to not insert tabs | |||
2007-03-12 | Get rid of those pesky valgrind warnings, Conditional jump or move depends ↵ | Ali Saidi | |
on uninitialised value(s), in the stats package --HG-- extra : convert_revision : d3a508fc98df4eb8160a211a306be6ab241a4ce8 | |||
2007-03-03 | Do the default argument stuff in python | Nathan Binkert | |
--HG-- extra : convert_revision : 235f85e611a669401c6ddfbdf14244e80eb55888 | |||
2007-02-21 | Fix majory brokenness in my previous MySQL commit, basically | Nathan Binkert | |
this is just a shuffling around of code and fixes to make stuff commit properly --HG-- extra : convert_revision : a057f7fe4962cfc6200781ff66d2c26bf9c6eb8c | |||
2007-02-17 | Get rid of the Statistics and Statreset ParamContexts, and | Nathan Binkert | |
expose all of the relevant functionality to python. Clean up the mysql code while we're at it. --HG-- extra : convert_revision : 5b711202a5a452b8875ebefb136a156b65c24279 | |||
2007-02-17 | Remove the event_ignore stuff since it was never really used | Nathan Binkert | |
--HG-- extra : convert_revision : ef5f3492e8232d08af7e1eae64ba96c79ca14b6f |