1 /* Signal trampoline unwinder, for GDB the GNU Debugger.
3 Copyright (C) 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "tramp-frame.h"
22 #include "frame-unwind.h"
27 #include "trad-frame.h"
28 #include "frame-base.h"
29 #include "gdb_assert.h"
33 const struct tramp_frame
*tramp_frame
;
36 struct tramp_frame_cache
39 const struct tramp_frame
*tramp_frame
;
40 struct trad_frame_cache
*trad_cache
;
43 static struct trad_frame_cache
*
44 tramp_frame_cache (struct frame_info
*this_frame
,
47 CORE_ADDR pc
= get_frame_pc (this_frame
);
48 struct tramp_frame_cache
*tramp_cache
= (*this_cache
);
49 if (tramp_cache
->trad_cache
== NULL
)
51 tramp_cache
->trad_cache
= trad_frame_cache_zalloc (this_frame
);
52 tramp_cache
->tramp_frame
->init (tramp_cache
->tramp_frame
,
54 tramp_cache
->trad_cache
,
57 return tramp_cache
->trad_cache
;
61 tramp_frame_this_id (struct frame_info
*this_frame
,
63 struct frame_id
*this_id
)
65 struct trad_frame_cache
*trad_cache
66 = tramp_frame_cache (this_frame
, this_cache
);
67 trad_frame_get_id (trad_cache
, this_id
);
71 tramp_frame_prev_register (struct frame_info
*this_frame
,
75 struct trad_frame_cache
*trad_cache
76 = tramp_frame_cache (this_frame
, this_cache
);
77 return trad_frame_get_register (trad_cache
, this_frame
, prev_regnum
);
81 tramp_frame_start (const struct tramp_frame
*tramp
,
82 struct frame_info
*this_frame
, CORE_ADDR pc
)
85 /* Search through the trampoline for one that matches the
86 instruction sequence around PC. */
87 for (ti
= 0; tramp
->insn
[ti
].bytes
!= TRAMP_SENTINEL_INSN
; ti
++)
89 CORE_ADDR func
= pc
- tramp
->insn_size
* ti
;
93 gdb_byte buf
[sizeof (tramp
->insn
[0])];
95 if (tramp
->insn
[i
].bytes
== TRAMP_SENTINEL_INSN
)
97 if (!safe_frame_unwind_memory (this_frame
,
98 func
+ i
* tramp
->insn_size
,
99 buf
, tramp
->insn_size
))
101 insn
= extract_unsigned_integer (buf
, tramp
->insn_size
);
102 if (tramp
->insn
[i
].bytes
!= (insn
& tramp
->insn
[i
].mask
))
106 /* Trampoline doesn't match. */
111 tramp_frame_sniffer (const struct frame_unwind
*self
,
112 struct frame_info
*this_frame
,
115 const struct tramp_frame
*tramp
= self
->unwind_data
->tramp_frame
;
116 CORE_ADDR pc
= get_frame_pc (this_frame
);
118 struct tramp_frame_cache
*tramp_cache
;
120 /* tausq/2004-12-12: We used to assume if pc has a name or is in a valid
121 section, then this is not a trampoline. However, this assumption is
122 false on HPUX which has a signal trampoline that has a name; it can
123 also be false when using an alternative signal stack. */
124 func
= tramp_frame_start (tramp
, this_frame
, pc
);
127 tramp_cache
= FRAME_OBSTACK_ZALLOC (struct tramp_frame_cache
);
128 tramp_cache
->func
= func
;
129 tramp_cache
->tramp_frame
= tramp
;
130 (*this_cache
) = tramp_cache
;
135 tramp_frame_prepend_unwinder (struct gdbarch
*gdbarch
,
136 const struct tramp_frame
*tramp_frame
)
138 struct frame_data
*data
;
139 struct frame_unwind
*unwinder
;
142 /* Check that the instruction sequence contains a sentinel. */
143 for (i
= 0; i
< ARRAY_SIZE (tramp_frame
->insn
); i
++)
145 if (tramp_frame
->insn
[i
].bytes
== TRAMP_SENTINEL_INSN
)
148 gdb_assert (i
< ARRAY_SIZE (tramp_frame
->insn
));
149 gdb_assert (tramp_frame
->insn_size
<= sizeof (tramp_frame
->insn
[0].bytes
));
151 data
= GDBARCH_OBSTACK_ZALLOC (gdbarch
, struct frame_data
);
152 unwinder
= GDBARCH_OBSTACK_ZALLOC (gdbarch
, struct frame_unwind
);
154 data
->tramp_frame
= tramp_frame
;
155 unwinder
->type
= tramp_frame
->frame_type
;
156 unwinder
->unwind_data
= data
;
157 unwinder
->sniffer
= tramp_frame_sniffer
;
158 unwinder
->this_id
= tramp_frame_this_id
;
159 unwinder
->prev_register
= tramp_frame_prev_register
;
160 frame_unwind_prepend_unwinder (gdbarch
, unwinder
);