summaryrefslogtreecommitdiffstats
path: root/lib/Support/PrettyStackTrace.cpp
Commit message (Expand)AuthorAgeFilesLines
* Sort the remaining #include lines in include/... and lib/....Chandler Carruth2017-06-061-1/+1
* Include <cstdio> in PrettyStackTrace.cpp, since it uses vsnprintf(3).Dimitry Andric2017-04-291-0/+1
* Include <cstdarg> in PrettyStackTrace.cpp, fixing the bots.Sean Callanan2016-12-141-0/+1
* Prepare PrettyStackTrace for LLDB adoptionSean Callanan2016-12-141-5/+21
* Fix the apple build issue caused by r288956Chris Bieneman2016-12-071-1/+1
* Convert ENABLE_BACKTRACES into a 0/1 definition.Joerg Sonnenberger2016-09-301-8/+8
* Use C++ casts to avoid a warningSanjoy Das2016-05-271-1/+2
* Don't use recursion to print out the PrettyStackTrace after a crash. If theRichard Smith2016-05-261-16/+30
* Reorganize the C API headers to improve build times.Eric Christopher2015-12-181-1/+1
* Add functions to save and restore the PrettyStackTrace state.Nico Weber2015-08-071-0/+14
* Fix the preprocessor checks used to determine if backtraces have been enabled.Owen Anderson2015-01-291-6/+6
* Use the existing build configuration parameter ENABLE_BACKTRACE to compile ou...Owen Anderson2015-01-291-0/+16
* [LPM] Clean up the use of TLS in pretty stack trace and disable itChandler Carruth2015-01-291-20/+2
* [LPM] Fix the PPC attribute to be spelled 'global-dynamic'. This shouldChandler Carruth2015-01-281-2/+2
* [LPM] Try to work around a bug with local-dynamic TLS on PowerPC 64.Chandler Carruth2015-01-281-5/+18
* [LPM] Rip all of ManagedStatic and ThreadLocal out of the pretty stackChandler Carruth2015-01-281-21/+18
* [C++11] Replace some comparisons with 'nullptr' with simple boolean checks to...Craig Topper2014-04-091-1/+1
* [C++11] Make use of 'nullptr' in the Support library.Craig Topper2014-04-071-2/+2
* Re-sort all of the includes with ./utils/sort_includes.py so thatChandler Carruth2014-01-071-1/+1
* Make the pretty stack trace be an opt-in, rather than opt-out, facility. Enab...Filip Pizlo2013-11-041-16/+13
* When LLVM is embedded in a larger application, it's not OK for LLVM to interc...Filip Pizlo2013-11-031-0/+5
* Make PrettyStackTraceEntry use ManagedStatic for its ThreadLocal.Filip Pizlo2013-09-131-8/+20
* Add a new watchdog timer interface. The interface does not permit handling ti...Nick Lewycky2013-03-261-1/+5
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-3/+3
* Add more initializers to quiet a clang warning.Eric Christopher2011-10-051-1/+1
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-151-1/+1
* Change all self assignments X=X to (void)X, so that we can turn on aJeffrey Yasskin2010-12-231-2/+1
* Apparently OS X 10.4 doesn't have __crashreporter_info__.Eric Christopher2010-12-031-5/+5
* Merge System into Support.Michael J. Spencer2010-11-291-2/+2
* Fix a couple of warnings.Eric Christopher2010-08-081-2/+3
* Fix thinko.Eric Christopher2010-06-281-2/+4
* Pull in the libCrashReporterClient.a information with a warning comment.Eric Christopher2010-06-281-2/+9
* Look for and use a different darwin crash reporter library.Eric Christopher2010-06-221-1/+11
* Fix __crashreport_info__ declaration.Daniel Dunbar2010-05-201-2/+2
* Switch to SmallString::str from SmallString::c_str, and removeDaniel Dunbar2009-08-191-2/+2
* add a knob to turn off PrettyStackTrace globally. Patch by ZoltanChris Lattner2009-07-161-1/+6
* Support thread-local pretty stack traces.Owen Anderson2009-06-251-7/+8
* Now that errs() is properly non-buffered, there's no need toDan Gohman2009-03-231-1/+0
* Use c_str() to force the string to be nul-terminated.Dan Gohman2009-03-061-1/+1
* on apple systems, integrate nicely with crash reporter.Chris Lattner2009-03-061-4/+34
* Daniel wanted the stack printed upside down. Perhaps heChris Lattner2009-03-051-6/+14
* indicate what the program args line is.Chris Lattner2009-03-051-1/+3
* add some helper classes for building light-weight symbolic stack tracesChris Lattner2009-03-041-0/+69