index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Support
/
Timer.cpp
Age
Commit message (
Expand
)
Author
2006-12-07
Removed more <iostream> includes
Bill Wendling
2006-12-06
Detemplatize the Statistic class. The only type it is instantiated with
Chris Lattner
2006-10-04
Fix more static dtor issues
Chris Lattner
2005-04-21
Remove trailing whitespace
Misha Brukman
2005-03-22
Timers SHOULD NOT record the time taken to count the bytes allocated in the h...
Chris Lattner
2005-02-09
Don't print a 'Total Execution Time' line for the 'Miscellaneous Ungrouped
Chris Lattner
2005-01-29
Memory used is a delta between memuse at the start of the time and the
Chris Lattner
2005-01-08
Use size_t instead of long to represent memory usage. long is 32 bits
Jeff Cohen
2005-01-08
Silence a VS warning.
Chris Lattner
2004-12-27
Fix a bug that made the nightly tester *really* slow. During changes for
Reid Spencer
2004-12-20
Fix a bug where system time always equals user time
Reid Spencer
2004-12-20
Put some header files back that Win32 needs.
Reid Spencer
2004-12-20
For PR351:
Reid Spencer
2004-12-14
Revert the last patch as it causes a static destruction ordering problem.
Reid Spencer
2004-12-13
Get rid of some leaks found by VC leak detector.
Reid Spencer
2004-11-19
Undo last change as its unnecessary.
Reid Spencer
2004-11-19
Make a cast explicit.
Reid Spencer
2004-09-01
Changes For Bug 352
Reid Spencer
2004-06-07
Implement getTimeRecord natively in Win32, properly conditionalize the
Chris Lattner
2003-12-14
Finegrainify namespacification
Chris Lattner
2003-11-11
Put all LLVM code into the llvm namespace, as per bug 109.
Brian Gaeke
2003-10-20
Added LLVM project notice to the top of every C++ source file.
John Criswell
2003-10-10
Don't include Config/stdio.h or <stdio.h>.
Brian Gaeke
2003-10-06
Implement the NamedRegionTimer class
Chris Lattner
2003-08-01
Describe the value name
Chris Lattner
2003-07-31
Fix the JIT in the Nightly tester. This was not a fun bug to track down.
Chris Lattner
2003-07-31
Trivial cleanups: no need to include header twice. Global variable is local ...
Chris Lattner
2003-06-30
Merged in autoconf branch. This provides configuration via the autoconf
John Criswell
2003-06-19
Remove usage of sys/unistd.h
Chris Lattner
2003-06-17
Put ifdefs around use of malloc.h/mallinfo, which isn't available on FreeBSD.
Brian Gaeke
2003-06-06
Fix compilation problem with some versions of G++
Chris Lattner
2003-06-06
Fix problem with perror
Chris Lattner
2003-05-09
Add a new info-output-file option (hidden from --help) which is to be used by
Chris Lattner
2003-02-13
Make more compatible with GCC 2.96
Chris Lattner
2003-02-13
Remove gunk that was supposed to make space evaluation more precise, but neve...
Chris Lattner
2003-02-12
Don't output times in "scientific" notation
Chris Lattner
2003-02-05
Squelch warning
Chris Lattner
2003-01-30
* Add new -track-memory option to tools which enables the mem usage column in...
Chris Lattner
2002-11-18
Add peak memory usage measurement capability
Chris Lattner
2002-11-04
Simplify code
Chris Lattner
2002-11-04
Sun can now use mallinfo()
Chris Lattner
2002-11-04
Allow memory sizes to be negative, remove obsolete TmpRSS field
Chris Lattner
2002-11-04
mallinfo is not available on sun apparently :(
Chris Lattner
2002-11-04
Minor fix to space accounting
Chris Lattner
2002-11-04
Implement MaxRSS in terms of mallinfo instead of the system RSS. This gives
Chris Lattner
2002-10-27
Add #include
Chris Lattner
2002-10-04
Added #include<unistd.h> to compile with solaris gcc3.2
Anand Shukla
2002-10-01
Checkin generic interval timer support
Chris Lattner