- ecdbff8 add a new TimerGroup::print method, and refactor away the bogus by Chris Lattner · 15 years ago
- 49a2bb2 rename GetLibSupportInfoOutputFile -> CreateInfoOutputFile and by Chris Lattner · 15 years ago
- 9f9f6d1 if a timergroup is destroyed before its timers, print times. by Chris Lattner · 15 years ago
- b931269 change TimerGroup to keep a linked list of active timers by Chris Lattner · 15 years ago
- a782e75 reapply my timer rewrite with a change for PassManager to store by Chris Lattner · 15 years ago
- 0d2725a revert r99862 which is causing FNT failures. by Chris Lattner · 15 years ago
- 9fa0eff fairly major rewrite of various timing related stuff. by Chris Lattner · 15 years ago
- f8df3e0 move a function into a more logical place in the file by Chris Lattner · 15 years ago
- fc86c3c remove support for per-time peak memory tracking, this by Chris Lattner · 15 years ago
- 0ea86bc various timer fixes: move operator= out of line, by Chris Lattner · 15 years ago
- 0613edc s/.../. by Chris Lattner · 15 years ago
- 9bb110f move code around and improve indentation, no functionality change. by Chris Lattner · 15 years ago
- da80ff6 Change errs() to dbgs(). by David Greene · 16 years ago
- 252e574 Fix a race condition in the Timer class. by Owen Anderson · 16 years ago
- c11e84d Trailing whitespace. by Mikhail Glushenkov · 16 years ago
- d9ea85a remove some uses of llvm/Support/Streams.h by Chris Lattner · 16 years ago
- a9d1f2c Have scoped mutexes take referenes instead of pointers. by Owen Anderson · 16 years ago
- 46d9a64 Make timers threadsafe again. This isn't quite as nice as I'd hoped (it uses locking rather than atomic arithmetic), by Owen Anderson · 16 years ago
- 6f2c64d Revert my last series of commits related to Timer and 64-bit atomics. Not all the targets by Owen Anderson · 16 years ago
- b288995 Switched size_t to int64_t to prevent type mismatch in call to max. by Lang Hames · 16 years ago
- 14112e5 Actually, these need to be signed integers, not unsigned. by Owen Anderson · 16 years ago
- cd92c10 Use 64-bit integer counters for tracking time, rather than doubles. This will be more atomic op friendly. by Owen Anderson · 16 years ago
- 3b8d135 Make the lazy initialization of DefaultTimerGroup threadsafe. by Owen Anderson · 16 years ago
- 200aa6d Revert r73923, which broke clang. by Owen Anderson · 16 years ago
- af2e2b5 Add guards around timer groups, which can be shared. by Owen Anderson · 16 years ago
- 5e84368 Reapply 53476 and 53480, with a fix so that it properly updates by Dan Gohman · 17 years ago
- b5eec33 Back out 53476 and 53480 for now. Somehow they cause llc to miscompile 179.art. by Evan Cheng · 17 years ago
- dbe2a5a Add support for putting NamedRegionTimers in TimerGroups, and by Dan Gohman · 17 years ago
- c418bf3 Use find instead of lower_bound. by Dan Gohman · 17 years ago
- 153d28a Append to the ActiveTimers std::vector before looking at the timer instead by Dan Gohman · 17 years ago
- 3c02aca Make these variables static. by Dan Gohman · 17 years ago
- 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
- bcd2498 Removed more <iostream> includes by Bill Wendling · 19 years ago
- ac0b6ae Detemplatize the Statistic class. The only type it is instantiated with by Chris Lattner · 19 years ago
- 90aa839 Fix more static dtor issues by Chris Lattner · 19 years ago
- f976c85 Remove trailing whitespace by Misha Brukman · 20 years ago
- fed1b27 Timers SHOULD NOT record the time taken to count the bytes allocated in the heap! by Chris Lattner · 20 years ago
- 3ac9605 Don't print a 'Total Execution Time' line for the 'Miscellaneous Ungrouped by Chris Lattner · 20 years ago
- 6cfbd62 Memory used is a delta between memuse at the start of the time and the by Chris Lattner · 21 years ago
- e269a1a Use size_t instead of long to represent memory usage. long is 32 bits by Jeff Cohen · 21 years ago
- 7cf9ad3 Silence a VS warning. by Chris Lattner · 21 years ago
- aeb47b8 Fix a bug that made the nightly tester *really* slow. During changes for by Reid Spencer · 21 years ago
- 7d05563 Fix a bug where system time always equals user time by Reid Spencer · 21 years ago
- 0255abb Put some header files back that Win32 needs. by Reid Spencer · 21 years ago
- df52c9a For PR351: by Reid Spencer · 21 years ago
- f6e5a25 Revert the last patch as it causes a static destruction ordering problem. by Reid Spencer · 21 years ago
- 4af3da6 Get rid of some leaks found by VC leak detector. by Reid Spencer · 21 years ago
- 6475b8d Undo last change as its unnecessary. by Reid Spencer · 21 years ago
- 170eb10 Make a cast explicit. by Reid Spencer · 21 years ago
- 551ccae Changes For Bug 352 by Reid Spencer · 21 years ago
- b4db5f3 Implement getTimeRecord natively in Win32, properly conditionalize the by Chris Lattner · 21 years ago
- b6d465f Finegrainify namespacification by Chris Lattner · 22 years ago
- d0fde30 Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
- b576c94 Added LLVM project notice to the top of every C++ source file. by John Criswell · 22 years ago
- e24b616 Don't include Config/stdio.h or <stdio.h>. by Brian Gaeke · 22 years ago
- d5a310e Implement the NamedRegionTimer class by Chris Lattner · 22 years ago
- 96a54db Describe the value name by Chris Lattner · 22 years ago
- 71336a9 Fix the JIT in the Nightly tester. This was not a fun bug to track down. by Chris Lattner · 22 years ago
- 396aecd Trivial cleanups: no need to include header twice. Global variable is local to file by Chris Lattner · 22 years ago
- 7a73b80 Merged in autoconf branch. This provides configuration via the autoconf system. by John Criswell · 22 years ago
- ed4775a Remove usage of sys/unistd.h by Chris Lattner · 22 years ago
- 8c63883 Put ifdefs around use of malloc.h/mallinfo, which isn't available on FreeBSD. by Brian Gaeke · 22 years ago
- 903c2d1 Fix compilation problem with some versions of G++ by Chris Lattner · 22 years ago
- b8c8829 Fix problem with perror by Chris Lattner · 22 years ago
- f205fec Add a new info-output-file option (hidden from --help) which is to be used by by Chris Lattner · 22 years ago
- 8166b7c Make more compatible with GCC 2.96 by Chris Lattner · 22 years ago
- e040f97 Remove gunk that was supposed to make space evaluation more precise, but never worked. by Chris Lattner · 22 years ago
- 98d829c Don't output times in "scientific" notation by Chris Lattner · 22 years ago
- bbe5ac1 Squelch warning by Chris Lattner · 23 years ago
- 3f39849 * Add new -track-memory option to tools which enables the mem usage column in the reports. by Chris Lattner · 23 years ago
- 8f0d824 Add peak memory usage measurement capability by Chris Lattner · 23 years ago
- 69e79e0 Simplify code by Chris Lattner · 23 years ago
- a95078d Sun can now use mallinfo() by Chris Lattner · 23 years ago
- 18eba91 Allow memory sizes to be negative, remove obsolete TmpRSS field by Chris Lattner · 23 years ago
- 6cd11f6 mallinfo is not available on sun apparently :( by Chris Lattner · 23 years ago
- a5cf936 Minor fix to space accounting by Chris Lattner · 23 years ago
- 9d4ef12 Implement MaxRSS in terms of mallinfo instead of the system RSS. This gives by Chris Lattner · 23 years ago
- 9550dc2 Add #include by Chris Lattner · 23 years ago
- 3400837 Added #include<unistd.h> to compile with solaris gcc3.2 by Anand Shukla · 23 years ago
- 6c38a79 Checkin generic interval timer support by Chris Lattner · 23 years ago