* coffcode.h (coff_write_object_contents): Enclose all occurrences
[deliverable/binutils-gdb.git] / gdb / trad-frame.c
CommitLineData
a0f267c7
AC
1/* Traditional frame unwind support, for GDB the GNU Debugger.
2
4c38e0a4
JB
3 Copyright (C) 2003, 2004, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
a0f267c7
AC
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
a0f267c7
AC
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
a0f267c7
AC
20
21#include "defs.h"
22#include "frame.h"
23#include "trad-frame.h"
24#include "regcache.h"
25492ce3
DJ
25#include "frame-unwind.h"
26#include "value.h"
a0f267c7 27
0db9b4b7
AC
28struct trad_frame_cache
29{
25492ce3 30 struct frame_info *this_frame;
0db9b4b7
AC
31 CORE_ADDR this_base;
32 struct trad_frame_saved_reg *prev_regs;
33 struct frame_id this_id;
34};
35
36struct trad_frame_cache *
25492ce3 37trad_frame_cache_zalloc (struct frame_info *this_frame)
0db9b4b7
AC
38{
39 struct trad_frame_cache *this_trad_cache;
40
41 this_trad_cache = FRAME_OBSTACK_ZALLOC (struct trad_frame_cache);
25492ce3
DJ
42 this_trad_cache->prev_regs = trad_frame_alloc_saved_regs (this_frame);
43 this_trad_cache->this_frame = this_frame;
0db9b4b7
AC
44 return this_trad_cache;
45}
46
a0f267c7
AC
47/* A traditional frame is unwound by analysing the function prologue
48 and using the information gathered to track registers. For
49 non-optimized frames, the technique is reliable (just need to check
50 for all potential instruction sequences). */
51
8983bd83 52struct trad_frame_saved_reg *
25492ce3 53trad_frame_alloc_saved_regs (struct frame_info *this_frame)
a0f267c7 54{
8983bd83 55 int regnum;
25492ce3 56 struct gdbarch *gdbarch = get_frame_arch (this_frame);
40a6adc1 57 int numregs = gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
8983bd83
AC
58 struct trad_frame_saved_reg *this_saved_regs
59 = FRAME_OBSTACK_CALLOC (numregs, struct trad_frame_saved_reg);
60 for (regnum = 0; regnum < numregs; regnum++)
3b3850e8
AC
61 {
62 this_saved_regs[regnum].realreg = regnum;
63 this_saved_regs[regnum].addr = -1;
64 }
a0f267c7
AC
65 return this_saved_regs;
66}
67
3b3850e8
AC
68enum { REG_VALUE = -1, REG_UNKNOWN = -2 };
69
70int
71trad_frame_value_p (struct trad_frame_saved_reg this_saved_regs[], int regnum)
72{
73 return (this_saved_regs[regnum].realreg == REG_VALUE);
74}
75
76int
77trad_frame_addr_p (struct trad_frame_saved_reg this_saved_regs[], int regnum)
78{
79 return (this_saved_regs[regnum].realreg >= 0
80 && this_saved_regs[regnum].addr != -1);
81}
82
83int
84trad_frame_realreg_p (struct trad_frame_saved_reg this_saved_regs[],
85 int regnum)
86{
87 return (this_saved_regs[regnum].realreg >= 0
88 && this_saved_regs[regnum].addr == -1);
89}
90
a0f267c7 91void
3b3850e8
AC
92trad_frame_set_value (struct trad_frame_saved_reg this_saved_regs[],
93 int regnum, LONGEST val)
a0f267c7 94{
3b3850e8 95 /* Make the REALREG invalid, indicating that the ADDR contains the
a0f267c7 96 register's value. */
3b3850e8 97 this_saved_regs[regnum].realreg = REG_VALUE;
a0f267c7
AC
98 this_saved_regs[regnum].addr = val;
99}
100
61e784e7
MS
101void
102trad_frame_set_reg_value (struct trad_frame_cache *this_trad_cache,
103 int regnum, LONGEST val)
104{
105 /* External interface for users of trad_frame_cache
106 (who cannot access the prev_regs object directly). */
107 trad_frame_set_value (this_trad_cache->prev_regs, regnum, val);
108}
109
e66299b3
AC
110void
111trad_frame_set_reg_realreg (struct trad_frame_cache *this_trad_cache,
112 int regnum, int realreg)
113{
114 this_trad_cache->prev_regs[regnum].realreg = realreg;
115 this_trad_cache->prev_regs[regnum].addr = -1;
116}
117
0db9b4b7
AC
118void
119trad_frame_set_reg_addr (struct trad_frame_cache *this_trad_cache,
120 int regnum, CORE_ADDR addr)
121{
122 this_trad_cache->prev_regs[regnum].addr = addr;
123}
124
3b3850e8
AC
125void
126trad_frame_set_unknown (struct trad_frame_saved_reg this_saved_regs[],
127 int regnum)
128{
129 /* Make the REALREG invalid, indicating that the value is not known. */
130 this_saved_regs[regnum].realreg = REG_UNKNOWN;
131 this_saved_regs[regnum].addr = -1;
132}
133
25492ce3
DJ
134struct value *
135trad_frame_get_prev_register (struct frame_info *this_frame,
1f67027d 136 struct trad_frame_saved_reg this_saved_regs[],
25492ce3 137 int regnum)
a0f267c7 138{
3b3850e8 139 if (trad_frame_addr_p (this_saved_regs, regnum))
25492ce3
DJ
140 /* The register was saved in memory. */
141 return frame_unwind_got_memory (this_frame, regnum,
142 this_saved_regs[regnum].addr);
3b3850e8 143 else if (trad_frame_realreg_p (this_saved_regs, regnum))
25492ce3
DJ
144 return frame_unwind_got_register (this_frame, regnum,
145 this_saved_regs[regnum].realreg);
3b3850e8 146 else if (trad_frame_value_p (this_saved_regs, regnum))
25492ce3
DJ
147 /* The register's value is available. */
148 return frame_unwind_got_constant (this_frame, regnum,
149 this_saved_regs[regnum].addr);
3b3850e8 150 else
25492ce3 151 return frame_unwind_got_optimized (this_frame, regnum);
a0f267c7 152}
0db9b4b7 153
25492ce3 154struct value *
0db9b4b7 155trad_frame_get_register (struct trad_frame_cache *this_trad_cache,
25492ce3
DJ
156 struct frame_info *this_frame,
157 int regnum)
158{
159 return trad_frame_get_prev_register (this_frame, this_trad_cache->prev_regs,
160 regnum);
0db9b4b7
AC
161}
162
163void
164trad_frame_set_id (struct trad_frame_cache *this_trad_cache,
165 struct frame_id this_id)
166{
167 this_trad_cache->this_id = this_id;
168}
169
170void
171trad_frame_get_id (struct trad_frame_cache *this_trad_cache,
172 struct frame_id *this_id)
173{
174 (*this_id) = this_trad_cache->this_id;
175}
e66299b3
AC
176
177void
178trad_frame_set_this_base (struct trad_frame_cache *this_trad_cache,
179 CORE_ADDR this_base)
180{
181 this_trad_cache->this_base = this_base;
182}
183
184CORE_ADDR
185trad_frame_get_this_base (struct trad_frame_cache *this_trad_cache)
186{
187 return this_trad_cache->this_base;
188}
This page took 0.667401 seconds and 4 git commands to generate.