blob: 591630f14f46bdf727b2fb6ef87fe124112d654e (
plain)
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
|
// IBM_PROLOG_BEGIN_TAG
// This is an automatically generated prolog.
//
// $Source: src/lib/assert.C $
//
// IBM CONFIDENTIAL
//
// COPYRIGHT International Business Machines Corp. 2011
//
// p1
//
// Object Code Only (OCO) source materials
// Licensed Internal Code Source Materials
// IBM HostBoot Licensed Internal Code
//
// The source code for this program is not published or other-
// wise divested of its trade secrets, irrespective of what has
// been deposited with the U.S. Copyright Office.
//
// Origin: 30
//
// IBM_PROLOG_END
/** @file assert.C
* @brief Common handling functions for assert paths.
*/
#include <builtins.h>
#include <kernel/console.H>
#include <assert.h>
#include <sys/task.h>
#include <arch/ppc.H>
/** Hook location for trace module to set up when loaded. */
namespace TRACE { void (*traceCallback)(void*, size_t) = NULL; };
extern "C" void __assert(AssertBehavior i_assertb, int i_line)
{
switch (i_assertb)
{
case ASSERT_TRACE_DONE: // Custom trace was provided.
task_end();
break;
case ASSERT_TRACE_NOTDONE: // Do a normal trace.
if (NULL != TRACE::traceCallback)
{
(*TRACE::traceCallback)(linkRegister(), i_line);
}
else
{
printk("Assertion failed @%p on line %d.\n",
linkRegister(), i_line);
}
task_end();
break;
case ASSERT_CRITICAL: // Critical task, trace not available.
printk("Assertion failed @%p on line %d.\n",
linkRegister(), i_line);
task_end();
break;
case ASSERT_KERNEL: // Kernel assert called.
printk("Assertion failed @%p on line %d.\n",
linkRegister(), i_line);
break;
}
// Loop forever if we make it here. Should only happen in kernel code.
while (true)
{
setThreadPriorityLow();
}
}
|