1/* Copyright (C) 2011-2013 Free Software Foundation, Inc.
2
3   This file is part of GDB.
4
5   This program is free software; you can redistribute it and/or modify
6   it under the terms of the GNU General Public License as published by
7   the Free Software Foundation; either version 3 of the License, or
8   (at your option) any later version.
9
10   This program is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU General Public License for more details.
14
15   You should have received a copy of the GNU General Public License
16   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18/* Reasons why frames could not be further unwound
19   SET (name, description)
20
21   After this reason name, all reasons should be considered errors;
22   i.e.: abnormal stack termination.
23   FIRST_ERROR (name)
24
25   First and Last reason defined
26   FIRST_ENTRY (name)
27   LAST_ENTRY (name)  */
28
29#ifdef SET
30/* No particular reason; either we haven't tried unwinding yet,
31   or we didn't fail.  */
32SET (UNWIND_NO_REASON, "no reason")
33
34/* The previous frame's analyzer returns an invalid result
35   from this_id.
36
37   FIXME drow/2006-08-16: This is how GDB used to indicate end of
38   stack.  We should migrate to a model where frames always have a
39   valid ID, and this becomes not just an error but an internal
40   error.  But that's a project for another day.  */
41SET (UNWIND_NULL_ID, "unwinder did not report frame ID")
42
43/* This frame is the outermost.  */
44SET (UNWIND_OUTERMOST, "outermost")
45
46/* Can't unwind further, because that would require knowing the
47   values of registers or memory that haven't been collected.  */
48SET (UNWIND_UNAVAILABLE, \
49     "not enough registers or memory available to unwind further")
50
51/* This frame ID looks like it ought to belong to a NEXT frame,
52   but we got it for a PREV frame.  Normally, this is a sign of
53   unwinder failure.  It could also indicate stack corruption.  */
54SET (UNWIND_INNER_ID, "previous frame inner to this frame (corrupt stack?)")
55
56/* This frame has the same ID as the previous one.  That means
57   that unwinding further would almost certainly give us another
58   frame with exactly the same ID, so break the chain.  Normally,
59   this is a sign of unwinder failure.  It could also indicate
60   stack corruption.  */
61SET (UNWIND_SAME_ID, "previous frame identical to this frame (corrupt stack?)")
62
63/* The frame unwinder didn't find any saved PC, but we needed
64   one to unwind further.  */
65SET (UNWIND_NO_SAVED_PC, "frame did not save the PC")
66
67#endif /* SET */
68
69
70#ifdef FIRST_ERROR
71FIRST_ERROR (UNWIND_UNAVAILABLE)
72#endif
73
74#ifdef FIRST_ENTRY
75FIRST_ENTRY (UNWIND_NO_REASON)
76#endif
77
78#ifdef LAST_ENTRY
79LAST_ENTRY (UNWIND_NO_SAVED_PC)
80#endif
81