aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/Timer.cpp
AgeCommit message (Expand)Author
2006-12-07Removed more <iostream> includesBill Wendling
2006-12-06Detemplatize the Statistic class. The only type it is instantiated withChris Lattner
2006-10-04Fix more static dtor issuesChris Lattner
2005-04-21Remove trailing whitespaceMisha Brukman
2005-03-22Timers SHOULD NOT record the time taken to count the bytes allocated in the h...Chris Lattner
2005-02-09Don't print a 'Total Execution Time' line for the 'Miscellaneous UngroupedChris Lattner
2005-01-29Memory used is a delta between memuse at the start of the time and theChris Lattner
2005-01-08Use size_t instead of long to represent memory usage. long is 32 bitsJeff Cohen
2005-01-08Silence a VS warning.Chris Lattner
2004-12-27Fix a bug that made the nightly tester *really* slow. During changes forReid Spencer
2004-12-20Fix a bug where system time always equals user timeReid Spencer
2004-12-20Put some header files back that Win32 needs.Reid Spencer
2004-12-20For PR351:Reid Spencer
2004-12-14Revert the last patch as it causes a static destruction ordering problem.Reid Spencer
2004-12-13Get rid of some leaks found by VC leak detector.Reid Spencer
2004-11-19Undo last change as its unnecessary.Reid Spencer
2004-11-19Make a cast explicit.Reid Spencer
2004-09-01Changes For Bug 352Reid Spencer
2004-06-07Implement getTimeRecord natively in Win32, properly conditionalize theChris Lattner
2003-12-14Finegrainify namespacificationChris Lattner
2003-11-11Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke
2003-10-20Added LLVM project notice to the top of every C++ source file.John Criswell
2003-10-10Don't include Config/stdio.h or <stdio.h>.Brian Gaeke
2003-10-06Implement the NamedRegionTimer classChris Lattner
2003-08-01Describe the value nameChris Lattner
2003-07-31Fix the JIT in the Nightly tester. This was not a fun bug to track down.Chris Lattner
2003-07-31Trivial cleanups: no need to include header twice. Global variable is local ...Chris Lattner
2003-06-30Merged in autoconf branch. This provides configuration via the autoconfJohn Criswell
2003-06-19Remove usage of sys/unistd.hChris Lattner
2003-06-17Put ifdefs around use of malloc.h/mallinfo, which isn't available on FreeBSD.Brian Gaeke
2003-06-06Fix compilation problem with some versions of G++Chris Lattner
2003-06-06Fix problem with perrorChris Lattner
2003-05-09Add a new info-output-file option (hidden from --help) which is to be used byChris Lattner
2003-02-13Make more compatible with GCC 2.96Chris Lattner
2003-02-13Remove gunk that was supposed to make space evaluation more precise, but neve...Chris Lattner
2003-02-12Don't output times in "scientific" notationChris Lattner
2003-02-05Squelch warningChris Lattner
2003-01-30* Add new -track-memory option to tools which enables the mem usage column in...Chris Lattner
2002-11-18Add peak memory usage measurement capabilityChris Lattner
2002-11-04Simplify codeChris Lattner
2002-11-04Sun can now use mallinfo()Chris Lattner
2002-11-04Allow memory sizes to be negative, remove obsolete TmpRSS fieldChris Lattner
2002-11-04mallinfo is not available on sun apparently :(Chris Lattner
2002-11-04Minor fix to space accountingChris Lattner
2002-11-04Implement MaxRSS in terms of mallinfo instead of the system RSS. This givesChris Lattner
2002-10-27Add #includeChris Lattner
2002-10-04Added #include<unistd.h> to compile with solaris gcc3.2Anand Shukla
2002-10-01Checkin generic interval timer supportChris Lattner