-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathAssert.cpp
311 lines (261 loc) · 9.71 KB
/
Assert.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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
/*******************************************************************************
* Copyright IBM Corp. and others 2000
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
* distribution and is available at https://www.eclipse.org/legal/epl-2.0/
* or the Apache License, Version 2.0 which accompanies this distribution
* and is available at https://www.apache.org/licenses/LICENSE-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License, v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception [1] and GNU General Public
* License, version 2 with the OpenJDK Assembly Exception [2].
*
* [1] https://www.gnu.org/software/classpath/license.html
* [2] https://openjdk.org/legal/assembly-exception.html
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 OR GPL-2.0-only WITH OpenJDK-assembly-exception-1.0
*******************************************************************************/
#include "infra/Assert.hpp"
#include <assert.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include "codegen/Instruction.hpp"
#include "codegen/Instruction_inlines.hpp"
#include "compile/Compilation.hpp"
#include "compile/ResolvedMethod.hpp"
#include "control/Options.hpp"
#include "control/Options_inlines.hpp"
#include "control/Recompilation.hpp"
#include "env/CompilerEnv.hpp"
#include "il/ResolvedMethodSymbol.hpp"
#include "infra/Annotations.hpp"
#include "infra/ILWalk.hpp"
#include "ras/Debug.hpp"
#include "stdarg.h"
void OMR_NORETURN TR::trap()
{
static char * noDebug = feGetEnv("TR_NoDebuggerBreakPoint");
if (!noDebug)
{
#ifdef _MSC_VER
#ifdef DEBUG
DebugBreak();
#else
static char *revertToDebugbreakWin = feGetEnv("TR_revertToDebugbreakWin");
if(revertToDebugbreakWin)
{
DebugBreak();
}
else
{
*(volatile int*)(0) = 1;
}
#endif //ifdef DEBUG
#else // of _MSC_VER
// SIGABRT only has one global signal handler, so we cannot guard function calls against SIGABRT using the port
// library APIs. Raising a SIGTRAP is useful for downstream projects who may want to catch such signals for
// compilation thread crashes and requeue such compilations (for another attempt, or perhaps to generate
// additional diagnostic data).
raise(SIGTRAP);
#endif // ifdef _MSC_VER
}
exit(1337);
}
static void traceAssertionFailure(const char * file, int32_t line, const char *condition, const char *s, va_list ap)
{
TR::Compilation *comp = TR::comp();
if (!condition) condition = "";
// Default is to always print to screen
bool printOnscreen = true;
if (printOnscreen)
{
fprintf(stderr, "Assertion failed at %s:%d: %s\n", file, line, condition);
if (comp && TR::isJ9())
fprintf(stderr, "%s\n", TR::Compiler->debug.extraAssertMessage(comp));
if (s)
{
fprintf(stderr, "\t");
va_list copy;
va_copy(copy, ap);
vfprintf(stderr, s, copy);
va_end(copy);
fprintf(stderr, "\n");
}
if (comp)
{
const char *methodName =
comp->signature();
const char *hotness = comp->getHotnessName();
bool profiling = false;
if (comp->getRecompilationInfo() && comp->getRecompilationInfo()->isProfilingCompilation())
profiling = true;
fprintf(stderr, "compiling %s at level: %s%s\n", methodName, hotness, profiling?" (profiling)":"");
}
TR_Debug::printStackBacktrace();
fprintf(stderr, "\n");
fflush(stderr);
}
// this diagnostic call adds useful info to log file and flushes it, if we're tracing the current method
if (comp)
{
comp->diagnosticImpl("Assertion failed at %s:%d:%s", file, line, condition);
if (s)
{
comp->diagnosticImpl(":\n");
va_list copy;
va_copy(copy, ap);
comp->diagnosticImplVA(s, copy);
va_end(copy);
}
comp->diagnosticImpl("\n");
}
}
namespace TR
{
static void OMR_NORETURN va_fatal_assertion(const char *file, int line, const char *condition, const char *format, va_list ap)
{
traceAssertionFailure(file, line, condition, format, ap);
TR::trap();
}
void assertion(const char *file, int line, const char *condition, const char *format, ...)
{
TR::Compilation *comp = TR::comp();
if (comp)
{
// TR_IgnoreAssert: ignore nonfatal assertion failures.
if (comp->getOption(TR_IgnoreAssert))
return;
// TR_SoftFailOnAssume: on nonfatal assertion failure, cancel the compilation without crashing the process.
if (comp->getOption(TR_SoftFailOnAssume))
comp->failCompilation<TR::AssertionFailure>("Assertion Failure");
}
va_list ap;
va_start(ap, format);
va_fatal_assertion(file, line, condition, format, ap);
va_end(ap);
}
void OMR_NORETURN fatal_assertion(const char *file, int line, const char *condition, const char *format, ...)
{
va_list ap;
va_start(ap, format);
va_fatal_assertion(file, line, condition, format, ap);
va_end(ap);
}
static bool containsNode(TR::Node *node, TR::Node *target, TR::NodeChecklist& nodeChecklist)
{
if (node == target)
return true;
if (nodeChecklist.contains(node))
return false;
nodeChecklist.add(node);
for (int i = 0; i < node->getNumChildren(); i++)
{
if (containsNode(node->getChild(i), target, nodeChecklist))
return true;
}
return false;
}
static void markInChecklist(TR::Node *node, TR_BitVector &nodeChecklist)
{
if (nodeChecklist.isSet(node->getGlobalIndex()))
return;
nodeChecklist.set(node->getGlobalIndex());
for (int i = 0; i < node->getNumChildren(); i++)
markInChecklist(node->getChild(i), nodeChecklist);
}
void NodeAssertionContext::printContext() const
{
if (!_node) return;
static bool printFullContext = feGetEnv("TR_AssertFullContext") != NULL;
TR::Compilation *comp = TR::comp();
TR_Debug *debug = comp->findOrCreateDebug();
fprintf(stderr, "\nNode context:\n\n");
if (printFullContext)
{
debug->printIRTrees(TR::IO::Stderr, "Assertion Context", comp->getMethodSymbol());
debug->print(TR::IO::Stderr, comp->getMethodSymbol()->getFlowGraph());
if (comp->getKnownObjectTable())
comp->getKnownObjectTable()->dumpTo(TR::IO::Stderr, comp);
}
else
{
fprintf(stderr, "...\n");
TR::NodeChecklist checkedNodeChecklist(comp);
TR_BitVector commonedNodeChecklist;
commonedNodeChecklist.init(0, comp->trMemory(), heapAlloc, growable);
bool foundNode = false;
for (TR::TreeTopIterator it(comp->getStartTree(), comp); it != NULL; ++it)
{
if (containsNode(it.currentNode(), _node, checkedNodeChecklist))
{
foundNode = true;
debug->restoreNodeChecklist(commonedNodeChecklist);
debug->print(TR::IO::Stderr, it.currentTree());
break;
}
else
{
markInChecklist(it.currentNode(), commonedNodeChecklist);
}
}
if (!foundNode)
fprintf(stderr, "!!! Treetop for node %p was not found !!!\n", _node);
fprintf(stderr, "...\n(Set env var TR_AssertFullContext for full context)\n");
}
fflush(stderr);
}
void InstructionAssertionContext::printContext() const
{
if (!_instruction) return;
static bool printFullContext = feGetEnv("TR_AssertFullContext") != NULL;
static int numInstructionsInContext = feGetEnv("TR_AssertNumInstructionsInContext") ?
atoi(feGetEnv("TR_AssertNumInstructionsInContext")) : 11;
TR_Debug *debug = TR::comp()->findOrCreateDebug();
fprintf(stderr, "\nInstruction context:\n");
if (printFullContext)
{
fprintf(stderr, "\n");
debug->dumpMethodInstrs(TR::IO::Stderr, "Assertion Context", false, false);
}
else
{
TR::Instruction *cursor = _instruction;
for (int i = 0; i < (numInstructionsInContext - 1) / 2 && cursor->getPrev(); i++)
cursor = cursor->getPrev();
if (cursor->getPrev())
fprintf(stderr, "\n...");
for (int i = 0; i < numInstructionsInContext && cursor; i++)
{
debug->print(TR::IO::Stderr, cursor);
cursor = cursor->getNext();
}
if (cursor)
fprintf(stderr, "\n...");
fprintf(stderr, "\n(Set env var TR_AssertFullContext for full context)\n");
}
fflush(stderr);
NodeAssertionContext(_instruction->getNode()).printContext();
}
void OMR_NORETURN fatal_assertion_with_detail(const AssertionContext& ctx, const char *file, int line, const char *condition, const char *format, ...)
{
static bool alreadyAsserting = false;
va_list ap;
va_start(ap, format);
traceAssertionFailure(file, line, condition, format, ap);
va_end(ap);
if (!alreadyAsserting)
{
alreadyAsserting = true;
ctx.printContext();
}
else
{
fprintf(stderr, "(Detected potential recursive assert, not printing context)\n");
}
TR::trap();
}
}