forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrettyStackTrace.cpp
264 lines (239 loc) · 7.97 KB
/
PrettyStackTrace.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
//===--- PrettyStackTrace.cpp - Swift-specific PrettyStackTraceEntries ----===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This file implements several Swift-specific implementations of
// PrettyStackTraceEntry.
//
//===----------------------------------------------------------------------===//
#include "swift/AST/ASTContext.h"
#include "swift/AST/Decl.h"
#include "swift/AST/Expr.h"
#include "swift/AST/GenericSignature.h"
#include "swift/AST/Module.h"
#include "swift/AST/Pattern.h"
#include "swift/AST/ProtocolConformance.h"
#include "swift/AST/Stmt.h"
#include "swift/AST/PrettyStackTrace.h"
#include "swift/AST/TypeVisitor.h"
#include "swift/Basic/SourceManager.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/Support/MemoryBuffer.h"
using namespace swift;
void PrettyStackTraceDecl::print(llvm::raw_ostream &out) const {
out << "While " << Action << ' ';
if (!TheDecl) {
out << "NULL declaration!\n";
return;
}
printDeclDescription(out, TheDecl, TheDecl->getASTContext());
}
void swift::printDeclDescription(llvm::raw_ostream &out, const Decl *D,
ASTContext &Context, bool addNewline) {
SourceLoc loc = D->getStartLoc();
bool hasPrintedName = false;
if (auto *named = dyn_cast<ValueDecl>(D)) {
if (named->hasName()) {
out << '\'' << named->getFullName() << '\'';
hasPrintedName = true;
} else if (auto *accessor = dyn_cast<AccessorDecl>(named)) {
auto ASD = accessor->getStorage();
if (ASD->hasName()) {
switch (accessor->getAccessorKind()) {
case AccessorKind::Get:
out << "getter";
break;
case AccessorKind::Set:
out << "setter";
break;
case AccessorKind::WillSet:
out << "willset";
break;
case AccessorKind::DidSet:
out << "didset";
break;
case AccessorKind::Address:
out << "addressor";
break;
case AccessorKind::MutableAddress:
out << "mutableAddressor";
break;
case AccessorKind::Read:
out << "read";
break;
case AccessorKind::Modify:
out << "modify";
break;
}
out << " for " << ASD->getFullName();
hasPrintedName = true;
loc = ASD->getStartLoc();
}
}
} else if (auto *extension = dyn_cast<ExtensionDecl>(D)) {
Type extendedTy = extension->getExtendedType();
if (extendedTy) {
out << "extension of " << extendedTy;
hasPrintedName = true;
}
}
if (!hasPrintedName)
out << "declaration " << (const void *)D;
if (loc.isValid()) {
out << " (at ";
loc.print(out, Context.SourceMgr);
out << ')';
} else {
out << " (in module '" << D->getModuleContext()->getName() << "')";
}
if (addNewline) out << '\n';
}
void PrettyStackTraceAnyFunctionRef::print(llvm::raw_ostream &out) const {
out << "While " << Action << ' ';
auto &Context = TheRef.getAsDeclContext()->getASTContext();
if (auto *AFD = TheRef.getAbstractFunctionDecl())
printDeclDescription(out, AFD, Context);
else {
auto *ACE = TheRef.getAbstractClosureExpr();
printExprDescription(out, ACE, Context);
}
}
void PrettyStackTraceExpr::print(llvm::raw_ostream &out) const {
out << "While " << Action << ' ';
if (!TheExpr) {
out << "NULL expression!\n";
return;
}
printExprDescription(out, TheExpr, Context);
}
void swift::printExprDescription(llvm::raw_ostream &out, Expr *E,
ASTContext &Context, bool addNewline) {
out << "expression at ";
E->getSourceRange().print(out, Context.SourceMgr);
if (addNewline) out << '\n';
}
void PrettyStackTraceStmt::print(llvm::raw_ostream &out) const {
out << "While " << Action << ' ';
if (!TheStmt) {
out << "NULL statement!\n";
return;
}
printStmtDescription(out, TheStmt, Context);
}
void swift::printStmtDescription(llvm::raw_ostream &out, Stmt *S,
ASTContext &Context, bool addNewline) {
out << "statement at ";
S->getSourceRange().print(out, Context.SourceMgr);
if (addNewline) out << '\n';
}
void PrettyStackTracePattern::print(llvm::raw_ostream &out) const {
out << "While " << Action << ' ';
if (!ThePattern) {
out << "NULL pattern!\n";
return;
}
printPatternDescription(out, ThePattern, Context);
}
void swift::printPatternDescription(llvm::raw_ostream &out, Pattern *P,
ASTContext &Context, bool addNewline) {
out << "pattern at ";
P->getSourceRange().print(out, Context.SourceMgr);
if (addNewline) out << '\n';
}
namespace {
/// Map a Type to an interesting declaration whose source range we
/// should print.
struct InterestingDeclForType
: TypeVisitor<InterestingDeclForType, Decl*> {
Decl *visitType(TypeBase *type) {
return nullptr;
}
Decl *visitUnboundGenericType(UnboundGenericType *type) {
return type->getDecl();
}
Decl *visitBoundGenericType(BoundGenericType *type) {
return type->getDecl();
}
Decl *visitNominalType(NominalType *type) {
return type->getDecl();
}
Decl *visitTypeAliasType(TypeAliasType *type) {
return type->getDecl();
}
};
} // end anonymous namespace
void PrettyStackTraceType::print(llvm::raw_ostream &out) const {
out << "While " << Action << ' ';
if (TheType.isNull()) {
out << "NULL type!\n";
return;
}
printTypeDescription(out, TheType, Context);
}
void swift::printTypeDescription(llvm::raw_ostream &out, Type type,
ASTContext &Context, bool addNewline) {
out << "type '" << type << '\'';
if (Decl *decl = InterestingDeclForType().visit(type)) {
if (decl->getSourceRange().isValid()) {
out << " (declared at ";
decl->getSourceRange().print(out, Context.SourceMgr);
out << ')';
}
}
if (addNewline) out << '\n';
}
void PrettyStackTraceTypeRepr::print(llvm::raw_ostream &out) const {
out << "While " << Action << " type ";
TheType->print(out);
if (TheType && TheType->getSourceRange().isValid()) {
out << " at ";
TheType->getSourceRange().print(out, Context.SourceMgr);
}
out << '\n';
}
void PrettyStackTraceConformance::print(llvm::raw_ostream &out) const {
out << "While " << Action << ' ';
printConformanceDescription(out, Conformance, Context);
}
void swift::printConformanceDescription(llvm::raw_ostream &out,
const ProtocolConformance *conformance,
ASTContext &ctxt, bool addNewline) {
if (!conformance) {
out << "NULL protocol conformance!";
if (addNewline) out << '\n';
return;
}
out << "protocol conformance to ";
printDeclDescription(out, conformance->getProtocol(), ctxt, /*newline*/false);
out << " for ";
printTypeDescription(out, conformance->getType(), ctxt, addNewline);
}
void swift::printSourceLocDescription(llvm::raw_ostream &out,
SourceLoc loc, ASTContext &ctx,
bool addNewline) {
loc.print(out, ctx.SourceMgr);
if (addNewline) out << '\n';
}
void PrettyStackTraceLocation::print(llvm::raw_ostream &out) const {
out << "While " << Action << " starting at ";
printSourceLocDescription(out, Loc, Context);
}
void PrettyStackTraceGenericSignature::print(llvm::raw_ostream &out) const {
out << "While " << Action << " generic signature ";
GenericSig->print(out);
if (Requirement) {
out << " in requirement #" << *Requirement;
}
out << '\n';
}
void PrettyStackTraceSelector::print(llvm::raw_ostream &out) const {
out << "While " << Action << " '" << Selector << "'";
}