Pull in the libCrashReporterClient.a information with a warning comment.
[oota-llvm.git] / lib / Support / PrettyStackTrace.cpp
1 //===- PrettyStackTrace.cpp - Pretty Crash Handling -----------------------===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines some helpful functions for dealing with the possibility of
11 // Unix signals occuring while your program is running.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/Config/config.h"     // Get autoconf configuration settings
16 #include "llvm/Support/PrettyStackTrace.h"
17 #include "llvm/Support/raw_ostream.h"
18 #include "llvm/System/Signals.h"
19 #include "llvm/System/ThreadLocal.h"
20 #include "llvm/ADT/SmallString.h"
21
22 #ifdef HAVE_CRASHREPORTERCLIENT_H
23 #include <CrashReporterClient.h>
24 #endif
25
26 using namespace llvm;
27
28 namespace llvm {
29   bool DisablePrettyStackTrace = false;
30 }
31
32 // FIXME: This should be thread local when llvm supports threads.
33 static sys::ThreadLocal<const PrettyStackTraceEntry> PrettyStackTraceHead;
34
35 static unsigned PrintStack(const PrettyStackTraceEntry *Entry, raw_ostream &OS){
36   unsigned NextID = 0;
37   if (Entry->getNextEntry())
38     NextID = PrintStack(Entry->getNextEntry(), OS);
39   OS << NextID << ".\t";
40   Entry->print(OS);
41   
42   return NextID+1;
43 }
44
45 /// PrintCurStackTrace - Print the current stack trace to the specified stream.
46 static void PrintCurStackTrace(raw_ostream &OS) {
47   // Don't print an empty trace.
48   if (PrettyStackTraceHead.get() == 0) return;
49   
50   // If there are pretty stack frames registered, walk and emit them.
51   OS << "Stack dump:\n";
52   
53   PrintStack(PrettyStackTraceHead.get(), OS);
54   OS.flush();
55 }
56
57 // Integrate with crash reporter libraries.
58 #if defined (__APPLE__) && defined (HAVE_CRASHREPORTERCLIENT_H)
59 //  If any clients of llvm try to link to libCrashReporterClient.a themselves,
60 //  only one crash info struct will be used.
61 CRASH_REPORTER_CLIENT_HIDDEN 
62 struct crashreporter_annotations_t gCRAnnotations 
63         __attribute__((section("__DATA," CRASHREPORTER_ANNOTATIONS_SECTION))) 
64         = { CRASHREPORTER_ANNOTATIONS_VERSION, 0, 0, 0 };
65 #else if defined (__APPLE__)
66 static const char *__crashreporter_info__ = 0;
67 asm(".desc ___crashreporter_info__, 0x10");
68 #endif
69
70
71 /// CrashHandler - This callback is run if a fatal signal is delivered to the
72 /// process, it prints the pretty stack trace.
73 static void CrashHandler(void *Cookie) {
74 #ifndef __APPLE__
75   // On non-apple systems, just emit the crash stack trace to stderr.
76   PrintCurStackTrace(errs());
77 #else
78   // Otherwise, emit to a smallvector of chars, send *that* to stderr, but also
79   // put it into __crashreporter_info__.
80   SmallString<2048> TmpStr;
81   {
82     raw_svector_ostream Stream(TmpStr);
83     PrintCurStackTrace(Stream);
84   }
85   
86   if (!TmpStr.empty()) {
87 #ifndef HAVE_CRASHREPORTERCLIENT_H
88     __crashreporter_info__ = strdup(std::string(TmpStr.str()).c_str());
89 #else
90     CRSetCrashLogMessage(std::string(TmpStr.str()).c_str());
91 #endif
92     errs() << TmpStr.str();
93   }
94   
95 #endif
96 }
97
98 static bool RegisterCrashPrinter() {
99   if (!DisablePrettyStackTrace)
100     sys::AddSignalHandler(CrashHandler, 0);
101   return false;
102 }
103
104 PrettyStackTraceEntry::PrettyStackTraceEntry() {
105   // The first time this is called, we register the crash printer.
106   static bool HandlerRegistered = RegisterCrashPrinter();
107   HandlerRegistered = HandlerRegistered;
108     
109   // Link ourselves.
110   NextEntry = PrettyStackTraceHead.get();
111   PrettyStackTraceHead.set(this);
112 }
113
114 PrettyStackTraceEntry::~PrettyStackTraceEntry() {
115   assert(PrettyStackTraceHead.get() == this &&
116          "Pretty stack trace entry destruction is out of order");
117   PrettyStackTraceHead.set(getNextEntry());
118 }
119
120 void PrettyStackTraceString::print(raw_ostream &OS) const {
121   OS << Str << "\n";
122 }
123
124 void PrettyStackTraceProgram::print(raw_ostream &OS) const {
125   OS << "Program arguments: ";
126   // Print the argument list.
127   for (unsigned i = 0, e = ArgC; i != e; ++i)
128     OS << ArgV[i] << ' ';
129   OS << '\n';
130 }
131