aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Support/Timer.h
AgeCommit message (Expand)Author
2013-02-26Slight cosmetic fixesEli Bendersky
2012-12-03Sort the #include lines for the include/... tree with the script.Chandler Carruth
2012-09-16Use LLVM_DELETED_FUNCTION for copy constructors and copy assignment operators...Craig Topper
2010-11-29Merge System into Support.Michael J. Spencer
2010-08-07Roll back my last two commits, valgrind complains.Benjamin Kramer
2010-08-07A reference to the Timer's name is safe, it outlives the contents of the vector.Benjamin Kramer
2010-06-18Give NamedRegionTimer an Enabled flag, allowing all its clients toDan Gohman
2010-03-30stringref'ize Timer apisChris Lattner
2010-03-30finally, maintain a global list of timer groups, allowing us to Chris Lattner
2010-03-30add a new TimerGroup::print method, and refactor away the bogusChris Lattner
2010-03-30if a timergroup is destroyed before its timers, print times.Chris Lattner
2010-03-30change TimerGroup to keep a linked list of active timers Chris Lattner
2010-03-30reapply my timer rewrite with a change for PassManager to store Chris Lattner
2010-03-30revert r99862 which is causing FNT failures.Chris Lattner
2010-03-30fairly major rewrite of various timing related stuff.Chris Lattner
2010-03-29remove support for per-time peak memory tracking, thisChris Lattner
2010-03-29various timer fixes: move operator= out of line,Chris Lattner
2009-10-26Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth
2009-09-15Fix apostrophos.Dan Gohman
2009-08-23remove some uses of llvm/Support/Streams.hChris Lattner
2009-06-23Make timers threadsafe again. This isn't quite as nice as I'd hoped (it uses...Owen Anderson
2009-06-23Revert my last series of commits related to Timer and 64-bit atomics. Not al...Owen Anderson
2009-06-23Actually, these need to be signed integers, not unsigned.Owen Anderson
2009-06-23Use 64-bit integer counters for tracking time, rather than doubles. This wil...Owen Anderson
2009-06-23Revert r73923, which broke clang.Owen Anderson
2009-06-22Add guards around timer groups, which can be shared.Owen Anderson
2009-02-18allow TimeRegion to take a potentially-null pointer to aChris Lattner
2008-07-14Reapply 53476 and 53480, with a fix so that it properly updatesDan Gohman
2008-07-12Back out 53476 and 53480 for now. Somehow they cause llc to miscompile 179.art.Evan Cheng
2008-07-11Add support for putting NamedRegionTimers in TimerGroups, andDan Gohman
2008-07-07Add explicit keywords.Dan Gohman
2008-07-01Fix apostrophes in a comment.Dan Gohman
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2005-04-21Remove trailing whitespaceMisha Brukman
2005-01-29Fix quotes.Chris Lattner
2005-01-29Unbreak VC++ buildJeff Cohen
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
2004-09-01Changes For Bug 352Reid Spencer
2003-11-11Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke
2003-10-20Added LLVM notice.John Criswell
2003-10-06Doxygenize class comments. Add new NamedRegionTimer classChris Lattner
2003-07-25Add includes of assertChris Lattner
2003-06-30Merged in autoconf branch. This provides configuration via the autoconfJohn Criswell
2003-06-22Remove a ton of extraneous #includesChris Lattner
2003-06-11Included assert.h so that the code compiles under newer versions of GCC.John Criswell
2003-05-09Updates to match recent timer updatesChris Lattner
2002-11-18Add facility to compute peak memory usageChris Lattner
2002-11-04Allow memory sizes to be negative, eliminate TmpRSSChris Lattner
2002-10-03The wall clock timer (implementing using the RTC or cycle counter on x86) isChris Lattner