1 /* DWARF2 exception handling and frame unwind runtime interface routines.
2 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 In addition to the permissions in the GNU General Public License, the
13 Free Software Foundation gives you unlimited permission to link the
14 compiled version of this file into combinations with other programs,
15 and to distribute those combinations without any restriction coming
16 from the use of this file. (The General Public License restrictions
17 do apply in other respects; for example, they cover modification of
18 the file, and distribution when not linked into a combined
21 GCC is distributed in the hope that it will be useful, but WITHOUT
22 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
23 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
24 License for more details.
26 You should have received a copy of the GNU General Public License
27 along with GCC; see the file COPYING. If not, write to the Free
28 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
33 #include "coretypes.h"
37 #ifdef __USING_SJLJ_EXCEPTIONS__
38 # define NO_SIZE_OF_ENCODED_VALUE
40 #include "unwind-pe.h"
41 #include "unwind-dw2-fde.h"
45 #ifndef __USING_SJLJ_EXCEPTIONS__
47 #ifndef STACK_GROWS_DOWNWARD
48 #define STACK_GROWS_DOWNWARD 0
50 #undef STACK_GROWS_DOWNWARD
51 #define STACK_GROWS_DOWNWARD 1
54 /* A target can override (perhaps for backward compatibility) how
55 many dwarf2 columns are unwound. */
56 #ifndef DWARF_FRAME_REGISTERS
57 #define DWARF_FRAME_REGISTERS FIRST_PSEUDO_REGISTER
60 /* Dwarf frame registers used for pre gcc 3.0 compiled glibc. */
61 #ifndef PRE_GCC3_DWARF_FRAME_REGISTERS
62 #define PRE_GCC3_DWARF_FRAME_REGISTERS DWARF_FRAME_REGISTERS
65 #ifndef DWARF_REG_TO_UNWIND_COLUMN
66 #define DWARF_REG_TO_UNWIND_COLUMN(REGNO) (REGNO)
69 /* A target can do some update context frobbing. */
70 #ifndef MD_FROB_UPDATE_CONTEXT
71 #define MD_FROB_UPDATE_CONTEXT(CTX, FS) do { } while (0)
74 /* This is the register and unwind state for a particular frame. This
75 provides the information necessary to unwind up past a frame and return
77 struct _Unwind_Context
79 void *reg
[DWARF_FRAME_REGISTERS
+1];
83 struct dwarf_eh_bases bases
;
84 _Unwind_Word args_size
;
87 /* Byte size of every register managed by these routines. */
88 static unsigned char dwarf_reg_size_table
[DWARF_FRAME_REGISTERS
+1];
91 /* The result of interpreting the frame unwind info for a frame.
92 This is all symbolic at this point, as none of the values can
93 be resolved until the target pc is located. */
96 /* Each register save state can be described in terms of a CFA slot,
97 another register, or a location expression. */
98 struct frame_state_reg_info
103 _Unwind_Sword offset
;
104 const unsigned char *exp
;
112 } reg
[DWARF_FRAME_REGISTERS
+1];
114 /* Used to implement DW_CFA_remember_state. */
115 struct frame_state_reg_info
*prev
;
118 /* The CFA can be described in terms of a reg+offset or a
119 location expression. */
120 _Unwind_Sword cfa_offset
;
121 _Unwind_Word cfa_reg
;
122 const unsigned char *cfa_exp
;
129 /* The PC described by the current frame state. */
132 /* The information we care about from the CIE/FDE. */
133 _Unwind_Personality_Fn personality
;
134 _Unwind_Sword data_align
;
135 _Unwind_Word code_align
;
136 _Unwind_Word retaddr_column
;
137 unsigned char fde_encoding
;
138 unsigned char lsda_encoding
;
141 } _Unwind_FrameState
;
143 /* Read unaligned data from the instruction buffer. */
148 unsigned u2
__attribute__ ((mode (HI
)));
149 unsigned u4
__attribute__ ((mode (SI
)));
150 unsigned u8
__attribute__ ((mode (DI
)));
151 signed s2
__attribute__ ((mode (HI
)));
152 signed s4
__attribute__ ((mode (SI
)));
153 signed s8
__attribute__ ((mode (DI
)));
154 } __attribute__ ((packed
));
157 read_pointer (const void *p
) { const union unaligned
*up
= p
; return up
->p
; }
160 read_1u (const void *p
) { return *(const unsigned char *) p
; }
163 read_1s (const void *p
) { return *(const signed char *) p
; }
166 read_2u (const void *p
) { const union unaligned
*up
= p
; return up
->u2
; }
169 read_2s (const void *p
) { const union unaligned
*up
= p
; return up
->s2
; }
171 static inline unsigned int
172 read_4u (const void *p
) { const union unaligned
*up
= p
; return up
->u4
; }
175 read_4s (const void *p
) { const union unaligned
*up
= p
; return up
->s4
; }
177 static inline unsigned long
178 read_8u (const void *p
) { const union unaligned
*up
= p
; return up
->u8
; }
180 static inline unsigned long
181 read_8s (const void *p
) { const union unaligned
*up
= p
; return up
->s8
; }
183 /* Get the value of register REG as saved in CONTEXT. */
186 _Unwind_GetGR (struct _Unwind_Context
*context
, int index
)
191 index
= DWARF_REG_TO_UNWIND_COLUMN (index
);
192 if (index
>= (int) sizeof(dwarf_reg_size_table
))
194 size
= dwarf_reg_size_table
[index
];
195 ptr
= context
->reg
[index
];
197 /* This will segfault if the register hasn't been saved. */
198 if (size
== sizeof(_Unwind_Ptr
))
199 return * (_Unwind_Ptr
*) ptr
;
201 if (size
== sizeof(_Unwind_Word
))
202 return * (_Unwind_Word
*) ptr
;
208 _Unwind_GetPtr (struct _Unwind_Context
*context
, int index
)
210 return (void *)(_Unwind_Ptr
) _Unwind_GetGR (context
, index
);
213 /* Get the value of the CFA as saved in CONTEXT. */
216 _Unwind_GetCFA (struct _Unwind_Context
*context
)
218 return (_Unwind_Ptr
) context
->cfa
;
221 /* Overwrite the saved value for register REG in CONTEXT with VAL. */
224 _Unwind_SetGR (struct _Unwind_Context
*context
, int index
, _Unwind_Word val
)
229 index
= DWARF_REG_TO_UNWIND_COLUMN (index
);
230 if (index
>= (int) sizeof(dwarf_reg_size_table
))
232 size
= dwarf_reg_size_table
[index
];
233 ptr
= context
->reg
[index
];
235 if (size
== sizeof(_Unwind_Ptr
))
236 * (_Unwind_Ptr
*) ptr
= val
;
237 else if (size
== sizeof(_Unwind_Word
))
238 * (_Unwind_Word
*) ptr
= val
;
243 /* Get the pointer to a register INDEX as saved in CONTEXT. */
246 _Unwind_GetGRPtr (struct _Unwind_Context
*context
, int index
)
248 index
= DWARF_REG_TO_UNWIND_COLUMN (index
);
249 return context
->reg
[index
];
252 /* Set the pointer to a register INDEX as saved in CONTEXT. */
255 _Unwind_SetGRPtr (struct _Unwind_Context
*context
, int index
, void *p
)
257 index
= DWARF_REG_TO_UNWIND_COLUMN (index
);
258 context
->reg
[index
] = p
;
261 /* Retrieve the return address for CONTEXT. */
264 _Unwind_GetIP (struct _Unwind_Context
*context
)
266 return (_Unwind_Ptr
) context
->ra
;
269 /* Overwrite the return address for CONTEXT with VAL. */
272 _Unwind_SetIP (struct _Unwind_Context
*context
, _Unwind_Ptr val
)
274 context
->ra
= (void *) val
;
278 _Unwind_GetLanguageSpecificData (struct _Unwind_Context
*context
)
280 return context
->lsda
;
284 _Unwind_GetRegionStart (struct _Unwind_Context
*context
)
286 return (_Unwind_Ptr
) context
->bases
.func
;
290 _Unwind_FindEnclosingFunction (void *pc
)
292 struct dwarf_eh_bases bases
;
293 const struct dwarf_fde
*fde
= _Unwind_Find_FDE (pc
-1, &bases
);
302 _Unwind_GetDataRelBase (struct _Unwind_Context
*context
)
304 return (_Unwind_Ptr
) context
->bases
.dbase
;
308 _Unwind_GetTextRelBase (struct _Unwind_Context
*context
)
310 return (_Unwind_Ptr
) context
->bases
.tbase
;
314 /* Extract any interesting information from the CIE for the translation
315 unit F belongs to. Return a pointer to the byte after the augmentation,
316 or NULL if we encountered an undecipherable augmentation. */
318 static const unsigned char *
319 extract_cie_info (const struct dwarf_cie
*cie
, struct _Unwind_Context
*context
,
320 _Unwind_FrameState
*fs
)
322 const unsigned char *aug
= cie
->augmentation
;
323 const unsigned char *p
= aug
+ strlen (aug
) + 1;
324 const unsigned char *ret
= NULL
;
327 /* g++ v2 "eh" has pointer immediately following augmentation string,
328 so it must be handled first. */
329 if (aug
[0] == 'e' && aug
[1] == 'h')
331 fs
->eh_ptr
= read_pointer (p
);
332 p
+= sizeof (void *);
336 /* Immediately following the augmentation are the code and
337 data alignment and return address column. */
338 p
= read_uleb128 (p
, &fs
->code_align
);
339 p
= read_sleb128 (p
, &fs
->data_align
);
340 if (cie
->version
== 1)
341 fs
->retaddr_column
= *p
++;
343 p
= read_uleb128 (p
, &fs
->retaddr_column
);
344 fs
->lsda_encoding
= DW_EH_PE_omit
;
346 /* If the augmentation starts with 'z', then a uleb128 immediately
347 follows containing the length of the augmentation field following
351 p
= read_uleb128 (p
, &utmp
);
358 /* Iterate over recognized augmentation subsequences. */
361 /* "L" indicates a byte showing how the LSDA pointer is encoded. */
364 fs
->lsda_encoding
= *p
++;
368 /* "R" indicates a byte indicating how FDE addresses are encoded. */
369 else if (aug
[0] == 'R')
371 fs
->fde_encoding
= *p
++;
375 /* "P" indicates a personality routine in the CIE augmentation. */
376 else if (aug
[0] == 'P')
378 p
= read_encoded_value (context
, *p
, p
+ 1,
379 (_Unwind_Ptr
*) &fs
->personality
);
383 /* Otherwise we have an unknown augmentation string.
384 Bail unless we saw a 'z' prefix. */
389 return ret
? ret
: p
;
393 /* Decode a DW_OP stack program. Return the top of stack. Push INITIAL
394 onto the stack to start. */
397 execute_stack_op (const unsigned char *op_ptr
, const unsigned char *op_end
,
398 struct _Unwind_Context
*context
, _Unwind_Word initial
)
400 _Unwind_Word stack
[64]; /* ??? Assume this is enough. */
406 while (op_ptr
< op_end
)
408 enum dwarf_location_atom op
= *op_ptr
++;
409 _Unwind_Word result
, reg
, utmp
;
410 _Unwind_Sword offset
, stmp
;
446 result
= op
- DW_OP_lit0
;
450 result
= (_Unwind_Word
) (_Unwind_Ptr
) read_pointer (op_ptr
);
451 op_ptr
+= sizeof (void *);
455 result
= read_1u (op_ptr
);
459 result
= read_1s (op_ptr
);
463 result
= read_2u (op_ptr
);
467 result
= read_2s (op_ptr
);
471 result
= read_4u (op_ptr
);
475 result
= read_4s (op_ptr
);
479 result
= read_8u (op_ptr
);
483 result
= read_8s (op_ptr
);
487 op_ptr
= read_uleb128 (op_ptr
, &result
);
490 op_ptr
= read_sleb128 (op_ptr
, &stmp
);
526 result
= _Unwind_GetGR (context
, op
- DW_OP_reg0
);
529 op_ptr
= read_uleb128 (op_ptr
, ®
);
530 result
= _Unwind_GetGR (context
, reg
);
565 op_ptr
= read_sleb128 (op_ptr
, &offset
);
566 result
= _Unwind_GetGR (context
, op
- DW_OP_breg0
) + offset
;
569 op_ptr
= read_uleb128 (op_ptr
, ®
);
570 op_ptr
= read_sleb128 (op_ptr
, &offset
);
571 result
= _Unwind_GetGR (context
, reg
) + offset
;
577 result
= stack
[stack_elt
- 1];
587 if (offset
>= stack_elt
- 1)
589 result
= stack
[stack_elt
- 1 - offset
];
595 result
= stack
[stack_elt
- 2];
600 _Unwind_Word t1
, t2
, t3
;
604 t1
= stack
[stack_elt
- 1];
605 t2
= stack
[stack_elt
- 2];
606 t3
= stack
[stack_elt
- 3];
607 stack
[stack_elt
- 1] = t2
;
608 stack
[stack_elt
- 2] = t3
;
609 stack
[stack_elt
- 3] = t1
;
614 case DW_OP_deref_size
:
618 case DW_OP_plus_uconst
:
619 /* Unary operations. */
622 result
= stack
[stack_elt
];
628 void *ptr
= (void *) (_Unwind_Ptr
) result
;
629 result
= (_Unwind_Ptr
) read_pointer (ptr
);
633 case DW_OP_deref_size
:
635 void *ptr
= (void *) (_Unwind_Ptr
) result
;
639 result
= read_1u (ptr
);
642 result
= read_2u (ptr
);
645 result
= read_4u (ptr
);
648 result
= read_8u (ptr
);
657 if ((_Unwind_Sword
) result
< 0)
666 case DW_OP_plus_uconst
:
667 op_ptr
= read_uleb128 (op_ptr
, &utmp
);
690 /* Binary operations. */
691 _Unwind_Word first
, second
;
692 if ((stack_elt
-= 2) < 0)
694 second
= stack
[stack_elt
];
695 first
= stack
[stack_elt
+ 1];
700 result
= second
& first
;
703 result
= (_Unwind_Sword
) second
/ (_Unwind_Sword
) first
;
706 result
= second
- first
;
709 result
= (_Unwind_Sword
) second
% (_Unwind_Sword
) first
;
712 result
= second
* first
;
715 result
= second
| first
;
718 result
= second
+ first
;
721 result
= second
<< first
;
724 result
= second
>> first
;
727 result
= (_Unwind_Sword
) second
>> first
;
730 result
= second
^ first
;
733 result
= (_Unwind_Sword
) first
<= (_Unwind_Sword
) second
;
736 result
= (_Unwind_Sword
) first
>= (_Unwind_Sword
) second
;
739 result
= (_Unwind_Sword
) first
== (_Unwind_Sword
) second
;
742 result
= (_Unwind_Sword
) first
< (_Unwind_Sword
) second
;
745 result
= (_Unwind_Sword
) first
> (_Unwind_Sword
) second
;
748 result
= (_Unwind_Sword
) first
!= (_Unwind_Sword
) second
;
758 offset
= read_2s (op_ptr
);
766 offset
= read_2s (op_ptr
);
768 if (stack
[stack_elt
] != 0)
779 /* Most things push a result value. */
780 if ((size_t) stack_elt
>= sizeof(stack
)/sizeof(*stack
))
782 stack
[stack_elt
++] = result
;
786 /* We were executing this program to get a value. It should be
790 return stack
[stack_elt
];
794 /* Decode DWARF 2 call frame information. Takes pointers the
795 instruction sequence to decode, current register information and
796 CIE info, and the PC range to evaluate. */
799 execute_cfa_program (const unsigned char *insn_ptr
,
800 const unsigned char *insn_end
,
801 struct _Unwind_Context
*context
,
802 _Unwind_FrameState
*fs
)
804 struct frame_state_reg_info
*unused_rs
= NULL
;
806 /* Don't allow remember/restore between CIE and FDE programs. */
807 fs
->regs
.prev
= NULL
;
809 /* The comparison with the return address uses < rather than <= because
810 we are only interested in the effects of code before the call; for a
811 noreturn function, the return address may point to unrelated code with
812 a different stack configuration that we are not interested in. We
813 assume that the call itself is unwind info-neutral; if not, or if
814 there are delay instructions that adjust the stack, these must be
815 reflected at the point immediately before the call insn. */
816 while (insn_ptr
< insn_end
&& fs
->pc
< context
->ra
)
818 unsigned char insn
= *insn_ptr
++;
819 _Unwind_Word reg
, utmp
;
820 _Unwind_Sword offset
, stmp
;
822 if ((insn
& 0xc0) == DW_CFA_advance_loc
)
823 fs
->pc
+= (insn
& 0x3f) * fs
->code_align
;
824 else if ((insn
& 0xc0) == DW_CFA_offset
)
827 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
828 offset
= (_Unwind_Sword
) utmp
* fs
->data_align
;
829 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].how
831 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].loc
.offset
= offset
;
833 else if ((insn
& 0xc0) == DW_CFA_restore
)
836 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].how
= REG_UNSAVED
;
841 insn_ptr
= read_encoded_value (context
, fs
->fde_encoding
,
842 insn_ptr
, (_Unwind_Ptr
*) &fs
->pc
);
845 case DW_CFA_advance_loc1
:
846 fs
->pc
+= read_1u (insn_ptr
) * fs
->code_align
;
849 case DW_CFA_advance_loc2
:
850 fs
->pc
+= read_2u (insn_ptr
) * fs
->code_align
;
853 case DW_CFA_advance_loc4
:
854 fs
->pc
+= read_4u (insn_ptr
) * fs
->code_align
;
858 case DW_CFA_offset_extended
:
859 insn_ptr
= read_uleb128 (insn_ptr
, ®
);
860 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
861 offset
= (_Unwind_Sword
) utmp
* fs
->data_align
;
862 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].how
864 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].loc
.offset
= offset
;
867 case DW_CFA_restore_extended
:
868 insn_ptr
= read_uleb128 (insn_ptr
, ®
);
869 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN(reg
)].how
= REG_UNSAVED
;
872 case DW_CFA_undefined
:
873 case DW_CFA_same_value
:
874 insn_ptr
= read_uleb128 (insn_ptr
, ®
);
880 case DW_CFA_register
:
883 insn_ptr
= read_uleb128 (insn_ptr
, ®
);
884 insn_ptr
= read_uleb128 (insn_ptr
, ®2
);
885 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].how
= REG_SAVED_REG
;
886 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].loc
.reg
= reg2
;
890 case DW_CFA_remember_state
:
892 struct frame_state_reg_info
*new_rs
;
896 unused_rs
= unused_rs
->prev
;
899 new_rs
= __builtin_alloca (sizeof (struct frame_state_reg_info
));
902 fs
->regs
.prev
= new_rs
;
906 case DW_CFA_restore_state
:
908 struct frame_state_reg_info
*old_rs
= fs
->regs
.prev
;
910 old_rs
->prev
= unused_rs
;
916 insn_ptr
= read_uleb128 (insn_ptr
, &fs
->cfa_reg
);
917 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
918 fs
->cfa_offset
= utmp
;
919 fs
->cfa_how
= CFA_REG_OFFSET
;
922 case DW_CFA_def_cfa_register
:
923 insn_ptr
= read_uleb128 (insn_ptr
, &fs
->cfa_reg
);
924 fs
->cfa_how
= CFA_REG_OFFSET
;
927 case DW_CFA_def_cfa_offset
:
928 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
929 fs
->cfa_offset
= utmp
;
930 /* cfa_how deliberately not set. */
933 case DW_CFA_def_cfa_expression
:
934 fs
->cfa_exp
= insn_ptr
;
935 fs
->cfa_how
= CFA_EXP
;
936 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
940 case DW_CFA_expression
:
941 insn_ptr
= read_uleb128 (insn_ptr
, ®
);
942 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].how
= REG_SAVED_EXP
;
943 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].loc
.exp
= insn_ptr
;
944 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
948 /* From the 2.1 draft. */
949 case DW_CFA_offset_extended_sf
:
950 insn_ptr
= read_uleb128 (insn_ptr
, ®
);
951 insn_ptr
= read_sleb128 (insn_ptr
, &stmp
);
952 offset
= stmp
* fs
->data_align
;
953 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].how
955 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].loc
.offset
= offset
;
958 case DW_CFA_def_cfa_sf
:
959 insn_ptr
= read_uleb128 (insn_ptr
, &fs
->cfa_reg
);
960 insn_ptr
= read_sleb128 (insn_ptr
, &fs
->cfa_offset
);
961 fs
->cfa_how
= CFA_REG_OFFSET
;
964 case DW_CFA_def_cfa_offset_sf
:
965 insn_ptr
= read_sleb128 (insn_ptr
, &fs
->cfa_offset
);
966 /* cfa_how deliberately not set. */
969 case DW_CFA_GNU_window_save
:
970 /* ??? Hardcoded for SPARC register window configuration. */
971 for (reg
= 16; reg
< 32; ++reg
)
973 fs
->regs
.reg
[reg
].how
= REG_SAVED_OFFSET
;
974 fs
->regs
.reg
[reg
].loc
.offset
= (reg
- 16) * sizeof (void *);
978 case DW_CFA_GNU_args_size
:
979 insn_ptr
= read_uleb128 (insn_ptr
, &context
->args_size
);
982 case DW_CFA_GNU_negative_offset_extended
:
983 /* Obsoleted by DW_CFA_offset_extended_sf, but used by
984 older PowerPC code. */
985 insn_ptr
= read_uleb128 (insn_ptr
, ®
);
986 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
987 offset
= (_Unwind_Word
) utmp
* fs
->data_align
;
988 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].how
990 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].loc
.offset
= -offset
;
999 /* Given the _Unwind_Context CONTEXT for a stack frame, look up the FDE for
1000 its caller and decode it into FS. This function also sets the
1001 args_size and lsda members of CONTEXT, as they are really information
1002 about the caller's frame. */
1004 static _Unwind_Reason_Code
1005 uw_frame_state_for (struct _Unwind_Context
*context
, _Unwind_FrameState
*fs
)
1007 const struct dwarf_fde
*fde
;
1008 const struct dwarf_cie
*cie
;
1009 const unsigned char *aug
, *insn
, *end
;
1011 memset (fs
, 0, sizeof (*fs
));
1012 context
->args_size
= 0;
1015 if (context
->ra
== 0)
1016 return _URC_END_OF_STACK
;
1018 fde
= _Unwind_Find_FDE (context
->ra
- 1, &context
->bases
);
1021 /* Couldn't find frame unwind info for this function. Try a
1022 target-specific fallback mechanism. This will necessarily
1023 not provide a personality routine or LSDA. */
1024 #ifdef MD_FALLBACK_FRAME_STATE_FOR
1025 MD_FALLBACK_FRAME_STATE_FOR (context
, fs
, success
);
1026 return _URC_END_OF_STACK
;
1028 return _URC_NO_REASON
;
1030 return _URC_END_OF_STACK
;
1034 fs
->pc
= context
->bases
.func
;
1036 cie
= get_cie (fde
);
1037 insn
= extract_cie_info (cie
, context
, fs
);
1039 /* CIE contained unknown augmentation. */
1040 return _URC_FATAL_PHASE1_ERROR
;
1042 /* First decode all the insns in the CIE. */
1043 end
= (unsigned char *) next_fde ((struct dwarf_fde
*) cie
);
1044 execute_cfa_program (insn
, end
, context
, fs
);
1046 /* Locate augmentation for the fde. */
1047 aug
= (unsigned char *) fde
+ sizeof (*fde
);
1048 aug
+= 2 * size_of_encoded_value (fs
->fde_encoding
);
1053 aug
= read_uleb128 (aug
, &i
);
1056 if (fs
->lsda_encoding
!= DW_EH_PE_omit
)
1057 aug
= read_encoded_value (context
, fs
->lsda_encoding
, aug
,
1058 (_Unwind_Ptr
*) &context
->lsda
);
1060 /* Then the insns in the FDE up to our target PC. */
1063 end
= (unsigned char *) next_fde (fde
);
1064 execute_cfa_program (insn
, end
, context
, fs
);
1066 return _URC_NO_REASON
;
1069 typedef struct frame_state
1075 long reg_or_offset
[PRE_GCC3_DWARF_FRAME_REGISTERS
+1];
1076 unsigned short cfa_reg
;
1077 unsigned short retaddr_column
;
1078 char saved
[PRE_GCC3_DWARF_FRAME_REGISTERS
+1];
1081 struct frame_state
* __frame_state_for (void *, struct frame_state
*);
1083 /* Called from pre-G++ 3.0 __throw to find the registers to restore for
1084 a given PC_TARGET. The caller should allocate a local variable of
1085 `struct frame_state' and pass its address to STATE_IN. */
1087 struct frame_state
*
1088 __frame_state_for (void *pc_target
, struct frame_state
*state_in
)
1090 struct _Unwind_Context context
;
1091 _Unwind_FrameState fs
;
1094 memset (&context
, 0, sizeof (struct _Unwind_Context
));
1095 context
.ra
= pc_target
+ 1;
1097 if (uw_frame_state_for (&context
, &fs
) != _URC_NO_REASON
)
1100 /* We have no way to pass a location expression for the CFA to our
1101 caller. It wouldn't understand it anyway. */
1102 if (fs
.cfa_how
== CFA_EXP
)
1105 for (reg
= 0; reg
< PRE_GCC3_DWARF_FRAME_REGISTERS
+ 1; reg
++)
1107 state_in
->saved
[reg
] = fs
.regs
.reg
[reg
].how
;
1108 switch (state_in
->saved
[reg
])
1111 state_in
->reg_or_offset
[reg
] = fs
.regs
.reg
[reg
].loc
.reg
;
1113 case REG_SAVED_OFFSET
:
1114 state_in
->reg_or_offset
[reg
] = fs
.regs
.reg
[reg
].loc
.offset
;
1117 state_in
->reg_or_offset
[reg
] = 0;
1122 state_in
->cfa_offset
= fs
.cfa_offset
;
1123 state_in
->cfa_reg
= fs
.cfa_reg
;
1124 state_in
->retaddr_column
= fs
.retaddr_column
;
1125 state_in
->args_size
= context
.args_size
;
1126 state_in
->eh_ptr
= fs
.eh_ptr
;
1131 typedef union { _Unwind_Ptr ptr
; _Unwind_Word word
; } _Unwind_SpTmp
;
1134 _Unwind_SetSpColumn (struct _Unwind_Context
*context
, void *cfa
,
1135 _Unwind_SpTmp
*tmp_sp
)
1137 int size
= dwarf_reg_size_table
[__builtin_dwarf_sp_column ()];
1139 if (size
== sizeof(_Unwind_Ptr
))
1140 tmp_sp
->ptr
= (_Unwind_Ptr
) cfa
;
1141 else if (size
== sizeof(_Unwind_Word
))
1142 tmp_sp
->word
= (_Unwind_Ptr
) cfa
;
1145 _Unwind_SetGRPtr (context
, __builtin_dwarf_sp_column (), tmp_sp
);
1149 uw_update_context_1 (struct _Unwind_Context
*context
, _Unwind_FrameState
*fs
)
1151 struct _Unwind_Context orig_context
= *context
;
1155 #ifdef EH_RETURN_STACKADJ_RTX
1156 /* Special handling here: Many machines do not use a frame pointer,
1157 and track the CFA only through offsets from the stack pointer from
1158 one frame to the next. In this case, the stack pointer is never
1159 stored, so it has no saved address in the context. What we do
1160 have is the CFA from the previous stack frame.
1162 In very special situations (such as unwind info for signal return),
1163 there may be location expressions that use the stack pointer as well.
1165 Do this conditionally for one frame. This allows the unwind info
1166 for one frame to save a copy of the stack pointer from the previous
1167 frame, and be able to use much easier CFA mechanisms to do it.
1168 Always zap the saved stack pointer value for the next frame; carrying
1169 the value over from one frame to another doesn't make sense. */
1171 _Unwind_SpTmp tmp_sp
;
1173 if (!_Unwind_GetGRPtr (&orig_context
, __builtin_dwarf_sp_column ()))
1174 _Unwind_SetSpColumn (&orig_context
, context
->cfa
, &tmp_sp
);
1175 _Unwind_SetGRPtr (context
, __builtin_dwarf_sp_column (), NULL
);
1178 /* Compute this frame's CFA. */
1179 switch (fs
->cfa_how
)
1181 case CFA_REG_OFFSET
:
1182 cfa
= _Unwind_GetPtr (&orig_context
, fs
->cfa_reg
);
1183 cfa
+= fs
->cfa_offset
;
1188 const unsigned char *exp
= fs
->cfa_exp
;
1191 exp
= read_uleb128 (exp
, &len
);
1192 cfa
= (void *) (_Unwind_Ptr
)
1193 execute_stack_op (exp
, exp
+ len
, &orig_context
, 0);
1202 /* Compute the addresses of all registers saved in this frame. */
1203 for (i
= 0; i
< DWARF_FRAME_REGISTERS
+ 1; ++i
)
1204 switch (fs
->regs
.reg
[i
].how
)
1209 case REG_SAVED_OFFSET
:
1210 _Unwind_SetGRPtr (context
, i
,
1211 (void *) (cfa
+ fs
->regs
.reg
[i
].loc
.offset
));
1217 _Unwind_GetGRPtr (&orig_context
, fs
->regs
.reg
[i
].loc
.reg
));
1222 const unsigned char *exp
= fs
->regs
.reg
[i
].loc
.exp
;
1226 exp
= read_uleb128 (exp
, &len
);
1227 val
= execute_stack_op (exp
, exp
+ len
, &orig_context
,
1229 _Unwind_SetGRPtr (context
, i
, (void *) val
);
1234 MD_FROB_UPDATE_CONTEXT (context
, fs
);
1237 /* CONTEXT describes the unwind state for a frame, and FS describes the FDE
1238 of its caller. Update CONTEXT to refer to the caller as well. Note
1239 that the args_size and lsda members are not updated here, but later in
1240 uw_frame_state_for. */
1243 uw_update_context (struct _Unwind_Context
*context
, _Unwind_FrameState
*fs
)
1245 uw_update_context_1 (context
, fs
);
1247 /* Compute the return address now, since the return address column
1248 can change from frame to frame. */
1249 context
->ra
= __builtin_extract_return_addr
1250 (_Unwind_GetPtr (context
, fs
->retaddr_column
));
1253 /* Fill in CONTEXT for top-of-stack. The only valid registers at this
1254 level will be the return address and the CFA. */
1256 #define uw_init_context(CONTEXT) \
1259 /* Do any necessary initialization to access arbitrary stack frames. \
1260 On the SPARC, this means flushing the register windows. */ \
1261 __builtin_unwind_init (); \
1262 uw_init_context_1 (CONTEXT, __builtin_dwarf_cfa (), \
1263 __builtin_return_address (0)); \
1268 init_dwarf_reg_size_table (void)
1270 __builtin_init_dwarf_reg_size_table (dwarf_reg_size_table
);
1274 uw_init_context_1 (struct _Unwind_Context
*context
,
1275 void *outer_cfa
, void *outer_ra
)
1277 void *ra
= __builtin_extract_return_addr (__builtin_return_address (0));
1278 _Unwind_FrameState fs
;
1279 _Unwind_SpTmp sp_slot
;
1281 memset (context
, 0, sizeof (struct _Unwind_Context
));
1284 if (uw_frame_state_for (context
, &fs
) != _URC_NO_REASON
)
1289 static __gthread_once_t once_regsizes
= __GTHREAD_ONCE_INIT
;
1290 if (__gthread_once (&once_regsizes
, init_dwarf_reg_size_table
) != 0
1291 || dwarf_reg_size_table
[0] == 0)
1292 init_dwarf_reg_size_table ();
1295 if (dwarf_reg_size_table
[0] == 0)
1296 init_dwarf_reg_size_table ();
1299 /* Force the frame state to use the known cfa value. */
1300 _Unwind_SetSpColumn (context
, outer_cfa
, &sp_slot
);
1301 fs
.cfa_how
= CFA_REG_OFFSET
;
1302 fs
.cfa_reg
= __builtin_dwarf_sp_column ();
1305 uw_update_context_1 (context
, &fs
);
1307 /* If the return address column was saved in a register in the
1308 initialization context, then we can't see it in the given
1309 call frame data. So have the initialization context tell us. */
1310 context
->ra
= __builtin_extract_return_addr (outer_ra
);
1314 /* Install TARGET into CURRENT so that we can return to it. This is a
1315 macro because __builtin_eh_return must be invoked in the context of
1318 #define uw_install_context(CURRENT, TARGET) \
1321 long offset = uw_install_context_1 ((CURRENT), (TARGET)); \
1322 void *handler = __builtin_frob_return_addr ((TARGET)->ra); \
1323 __builtin_eh_return (offset, handler); \
1328 uw_install_context_1 (struct _Unwind_Context
*current
,
1329 struct _Unwind_Context
*target
)
1333 for (i
= 0; i
< DWARF_FRAME_REGISTERS
; ++i
)
1335 void *c
= current
->reg
[i
];
1336 void *t
= target
->reg
[i
];
1338 if (t
&& c
&& t
!= c
)
1339 memcpy (c
, t
, dwarf_reg_size_table
[i
]);
1342 #ifdef EH_RETURN_STACKADJ_RTX
1346 /* If the last frame records a saved stack pointer, use it. */
1347 if (_Unwind_GetGRPtr (target
, __builtin_dwarf_sp_column ()))
1348 target_cfa
= _Unwind_GetPtr (target
, __builtin_dwarf_sp_column ());
1350 target_cfa
= target
->cfa
;
1352 /* We adjust SP by the difference between CURRENT and TARGET's CFA. */
1353 if (STACK_GROWS_DOWNWARD
)
1354 return target_cfa
- current
->cfa
+ target
->args_size
;
1356 return current
->cfa
- target_cfa
- target
->args_size
;
1363 static inline _Unwind_Ptr
1364 uw_identify_context (struct _Unwind_Context
*context
)
1366 return _Unwind_GetIP (context
);
1370 #include "unwind.inc"
1372 #endif /* !USING_SJLJ_EXCEPTIONS */