aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/Statistic.cpp
AgeCommit message (Expand)AuthorFilesLines
2019-04-23Use llvm::stable_sortFangrui Song1-2/+1
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-04-17Fix lock order inversion between ManagedStatic and StatisticBob Haarman1-2/+13
2018-03-08Support resetting STATISTIC() values using llvm::ResetStatistics()Daniel Sanders1-3/+31
2018-03-06PrintStatistics() and PrintStatisticsJSON() should take StatLockDaniel Sanders1-0/+2
2018-03-05Re-commit: Make STATISTIC() values available programmaticallyDaniel Sanders1-5/+25
2018-03-05Revert r326723: Make STATISTIC() values available programmaticallyDaniel Sanders1-25/+5
2018-03-05Make STATISTIC() values available programmaticallyDaniel Sanders1-5/+25
2018-02-01[ADT] Replace sys::MemoryFence with standard atomics.Benjamin Kramer1-6/+2
2017-12-18[YAML] Add support for non-printable charactersFrancis Visoiu Mistrih1-2/+3
2017-12-01Mark all library options as hidden.Zachary Turner1-4/+6
2017-06-06Sort the remaining #include lines in include/... and lib/....Chandler Carruth1-1/+1
2016-11-18Statistic/Timer: Include timers in PrintStatisticsJSON().Matthias Braun1-16/+16
2016-09-27Statistic: Bring back printing on exit by defaultMatthias Braun1-2/+4
2016-09-26Statistic: Only print statistics on exit for -statsMatthias Braun1-8/+9
2016-06-15Statistic: Add machine parseable json outputMatthias Braun1-14/+60
2015-12-16Simplify memory management with std::unique_ptr.Rafael Espindola1-11/+6
2015-08-18Support: Clean up TSan annotations.Peter Collingbourne1-0/+1
2015-06-23Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)Alexander Kornienko1-1/+1
2015-06-19Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko1-1/+1
2014-03-03Revert "[C++11] Replace LLVM atomics with std::atomic."Benjamin Kramer1-1/+1
2014-03-03[C++11] Replace LLVM atomics with std::atomic.Benjamin Kramer1-1/+1
2014-03-01Now that we have C++11, turn simple functors into lambdas and remove a ton of...Benjamin Kramer1-15/+8
2013-03-08Disable statistics on Release builds and move tests that depend on -stats.Jan Wen Voung1-1/+17
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-2/+2
2012-09-27Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...Sylvestre Ledru1-1/+1
2012-09-27Fix a typo 'iff' => 'if'Sylvestre Ledru1-1/+1
2011-12-05Silence tsan false-positives (tsan can't track things which are only safe due toNick Lewycky1-0/+3
2011-10-16Let printf do the formatting instead aligning strings ourselves.Benjamin Kramer1-7/+6
2011-02-26Support: Add llvm::AreStatisticsEnabled().Daniel Dunbar1-0/+4
2010-11-29Merge System into Support.Michael J. Spencer1-1/+1
2010-08-17remove trailing whitespaceJim Grosbach1-7/+7
2010-03-30Introduce namespace-scope functions to enable LLVM statistics withoutDouglas Gregor1-21/+37
2010-03-30rename GetLibSupportInfoOutputFile -> CreateInfoOutputFile andChris Lattner1-6/+5
2010-03-30if a timergroup is destroyed before its timers, print times.Chris Lattner1-1/+1
2010-01-05Change errs() to dbgs().David Greene1-1/+2
2009-09-27Avoid using mutex locks if not in multithreaded mode by using a SmartScopedMutexTorok Edwin1-2/+2
2009-08-23remove some uses of llvm/Support/Streams.hChris Lattner1-6/+6
2009-07-07Have scoped mutexes take referenes instead of pointers.Owen Anderson1-1/+1
2009-06-23Use atomic operations when accessing statistics, and make the lazy initializa...Owen Anderson1-4/+8
2009-06-22Guard the statistics table.Owen Anderson1-1/+3
2008-05-13Clean up the use of static and anonymous namespaces. This turned upDan Gohman1-0/+4
2008-05-05Fix more -Wshorten-64-to-32 warnings.Evan Cheng1-2/+2
2008-02-20Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov1-0/+1
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner1-2/+2
2006-12-19eliminate constructor from Statistic class. It is now impossible to get aChris Lattner1-4/+4
2006-12-19Refactor statistic a big and introduce a horrible-but-necessary macroChris Lattner1-4/+4
2006-12-08Change the implementation of statistic to not need destructors at all.Chris Lattner1-61/+76
2006-12-07Don't use <sstream> in Streams.h but <iosfwd> instead.Bill Wendling1-0/+1
2006-12-07Removed more <iostream> includesBill Wendling1-3/+2