1. 447762d Merge System into Support. by Michael J. Spencer · 15 years ago
  2. a7d0ccf Roll back my last two commits, valgrind complains. by Benjamin Kramer · 15 years ago
  3. 591a79f Kill rarely used std::sort. by Benjamin Kramer · 15 years ago
  4. 6e681a5 Give NamedRegionTimer an Enabled flag, allowing all its clients to by Dan Gohman · 15 years ago
  5. 744c96d Add a comment explaining why this code uses Append mode. by Dan Gohman · 15 years ago
  6. b29cda9 Fix a bunch of namespace polution. by Dan Gohman · 16 years ago
  7. 39e56a0 stringref'ize Timer apis by Chris Lattner · 16 years ago
  8. 90fe73d finally, maintain a global list of timer groups, allowing us to by Chris Lattner · 16 years ago
  9. 4cd6571 add a new TimerGroup::print method, and refactor away the bogus by Chris Lattner · 16 years ago
  10. 6cbd8d1 rename GetLibSupportInfoOutputFile -> CreateInfoOutputFile and by Chris Lattner · 16 years ago
  11. dcd68b7 if a timergroup is destroyed before its timers, print times. by Chris Lattner · 16 years ago
  12. 9a608d2 change TimerGroup to keep a linked list of active timers by Chris Lattner · 16 years ago
  13. 707431c reapply my timer rewrite with a change for PassManager to store by Chris Lattner · 16 years ago
  14. ec8ef9b revert r99862 which is causing FNT failures. by Chris Lattner · 16 years ago
  15. 57a0542 fairly major rewrite of various timing related stuff. by Chris Lattner · 16 years ago
  16. dcd7f92 move a function into a more logical place in the file by Chris Lattner · 16 years ago
  17. 09a4074 remove support for per-time peak memory tracking, this by Chris Lattner · 16 years ago
  18. b355db7 various timer fixes: move operator= out of line, by Chris Lattner · 16 years ago
  19. 5092a6d s/.../. by Chris Lattner · 16 years ago
  20. fafa57a move code around and improve indentation, no functionality change. by Chris Lattner · 16 years ago
  21. 649efc4 Change errs() to dbgs(). by David Greene · 16 years ago
  22. 759d72d Fix a race condition in the Timer class. by Owen Anderson · 16 years ago
  23. 358607d Trailing whitespace. by Mikhail Glushenkov · 16 years ago
  24. 471ba48 remove some uses of llvm/Support/Streams.h by Chris Lattner · 16 years ago
  25. 5c96ef7 Have scoped mutexes take referenes instead of pointers. by Owen Anderson · 16 years ago
  26. e9b1beb 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
  27. 5cc4131 Revert my last series of commits related to Timer and 64-bit atomics. Not all the targets by Owen Anderson · 16 years ago
  28. c547bad Switched size_t to int64_t to prevent type mismatch in call to max. by Lang Hames · 16 years ago
  29. ddf74dc Actually, these need to be signed integers, not unsigned. by Owen Anderson · 16 years ago
  30. bf45b3e Use 64-bit integer counters for tracking time, rather than doubles. This will be more atomic op friendly. by Owen Anderson · 16 years ago
  31. 4ed41c8 Make the lazy initialization of DefaultTimerGroup threadsafe. by Owen Anderson · 16 years ago
  32. 891fe79 Revert r73923, which broke clang. by Owen Anderson · 16 years ago
  33. 977c6b8 Add guards around timer groups, which can be shared. by Owen Anderson · 16 years ago
  34. adec96f Reapply 53476 and 53480, with a fix so that it properly updates by Dan Gohman · 17 years ago
  35. ef8412c Back out 53476 and 53480 for now. Somehow they cause llc to miscompile 179.art. by Evan Cheng · 17 years ago
  36. 36a6937 Add support for putting NamedRegionTimers in TimerGroups, and by Dan Gohman · 17 years ago
  37. 3707f1d Use find instead of lower_bound. by Dan Gohman · 17 years ago
  38. 5ceb8b6 Append to the ActiveTimers std::vector before looking at the timer instead by Dan Gohman · 17 years ago
  39. c107d00 Make these variables static. by Dan Gohman · 18 years ago
  40. f3ebc3f Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  41. 355fc5a Removed more <iostream> includes by Bill Wendling · 19 years ago
  42. 700b873 Detemplatize the Statistic class. The only type it is instantiated with by Chris Lattner · 19 years ago
  43. 8111c59 Fix more static dtor issues by Chris Lattner · 19 years ago
  44. 10468d8 Remove trailing whitespace by Misha Brukman · 21 years ago
  45. 24922c7 Timers SHOULD NOT record the time taken to count the bytes allocated in the heap! by Chris Lattner · 21 years ago
  46. 610ce2c Don't print a 'Total Execution Time' line for the 'Miscellaneous Ungrouped by Chris Lattner · 21 years ago
  47. 2295d0b Memory used is a delta between memuse at the start of the time and the by Chris Lattner · 21 years ago
  48. 1a26d15 Use size_t instead of long to represent memory usage. long is 32 bits by Jeff Cohen · 21 years ago
  49. 2c5e4ed Silence a VS warning. by Chris Lattner · 21 years ago
  50. ad7bdf7 Fix a bug that made the nightly tester *really* slow. During changes for by Reid Spencer · 21 years ago
  51. 92e8a5a Fix a bug where system time always equals user time by Reid Spencer · 21 years ago
  52. ee556dd Put some header files back that Win32 needs. by Reid Spencer · 21 years ago
  53. 2708881 For PR351: by Reid Spencer · 21 years ago
  54. 87ad666 Revert the last patch as it causes a static destruction ordering problem. by Reid Spencer · 21 years ago
  55. 53bd3d0 Get rid of some leaks found by VC leak detector. by Reid Spencer · 21 years ago
  56. 0bcf9e4 Undo last change as its unnecessary. by Reid Spencer · 21 years ago
  57. 5d76fa0 Make a cast explicit. by Reid Spencer · 21 years ago
  58. 7c16caa Changes For Bug 352 by Reid Spencer · 21 years ago
  59. 6068345 Implement getTimeRecord natively in Win32, properly conditionalize the by Chris Lattner · 21 years ago
  60. dd978ce Finegrainify namespacification by Chris Lattner · 22 years ago
  61. 960707c Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
  62. 482202a Added LLVM project notice to the top of every C++ source file. by John Criswell · 22 years ago
  63. cc31fdd Don't include Config/stdio.h or <stdio.h>. by Brian Gaeke · 22 years ago
  64. 8bfda65 Implement the NamedRegionTimer class by Chris Lattner · 22 years ago
  65. f1afe3235 Describe the value name by Chris Lattner · 22 years ago
  66. c4bbc71 Fix the JIT in the Nightly tester. This was not a fun bug to track down. by Chris Lattner · 22 years ago
  67. eaee325 Trivial cleanups: no need to include header twice. Global variable is local to file by Chris Lattner · 22 years ago
  68. 3ef61af Merged in autoconf branch. This provides configuration via the autoconf system. by John Criswell · 22 years ago
  69. 0cfcaf0 Remove usage of sys/unistd.h by Chris Lattner · 22 years ago
  70. ad3aabd Put ifdefs around use of malloc.h/mallinfo, which isn't available on FreeBSD. by Brian Gaeke · 22 years ago
  71. 235b91e Fix compilation problem with some versions of G++ by Chris Lattner · 22 years ago
  72. efadd78 Fix problem with perror by Chris Lattner · 22 years ago
  73. b0e5958 Add a new info-output-file option (hidden from --help) which is to be used by by Chris Lattner · 22 years ago
  74. 4e6fad0 Make more compatible with GCC 2.96 by Chris Lattner · 23 years ago
  75. a6b38bd Remove gunk that was supposed to make space evaluation more precise, but never worked. by Chris Lattner · 23 years ago
  76. 5c6961c Don't output times in "scientific" notation by Chris Lattner · 23 years ago
  77. 5981c63 Squelch warning by Chris Lattner · 23 years ago
  78. 2f75204 * Add new -track-memory option to tools which enables the mem usage column in the reports. by Chris Lattner · 23 years ago
  79. f96a218 Add peak memory usage measurement capability by Chris Lattner · 23 years ago
  80. 2ce8c68 Simplify code by Chris Lattner · 23 years ago
  81. d8be7b0 Sun can now use mallinfo() by Chris Lattner · 23 years ago
  82. 32856be Allow memory sizes to be negative, remove obsolete TmpRSS field by Chris Lattner · 23 years ago
  83. 203be1a mallinfo is not available on sun apparently :( by Chris Lattner · 23 years ago
  84. ee79294 Minor fix to space accounting by Chris Lattner · 23 years ago
  85. 559f511 Implement MaxRSS in terms of mallinfo instead of the system RSS. This gives by Chris Lattner · 23 years ago
  86. c98c871 Add #include by Chris Lattner · 23 years ago
  87. b8aef8e Added #include<unistd.h> to compile with solaris gcc3.2 by Anand Shukla · 23 years ago
  88. 6dad11f Checkin generic interval timer support by Chris Lattner · 23 years ago