1 /* DWARF2 exception handling and frame unwind runtime interface routines.
2 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
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, 51 Franklin Street, Fifth Floor, 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"
43 #include "unwind-dw2.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 /* Dwarf frame registers used for pre gcc 3.0 compiled glibc. */
55 #ifndef PRE_GCC3_DWARF_FRAME_REGISTERS
56 #define PRE_GCC3_DWARF_FRAME_REGISTERS DWARF_FRAME_REGISTERS
59 #ifndef DWARF_REG_TO_UNWIND_COLUMN
60 #define DWARF_REG_TO_UNWIND_COLUMN(REGNO) (REGNO)
63 /* This is the register and unwind state for a particular frame. This
64 provides the information necessary to unwind up past a frame and return
66 struct _Unwind_Context
68 void *reg
[DWARF_FRAME_REGISTERS
+1];
72 struct dwarf_eh_bases bases
;
73 /* Signal frame context. */
74 #define SIGNAL_FRAME_BIT ((~(_Unwind_Word) 0 >> 1) + 1)
75 /* Context which has version/args_size/by_value fields. */
76 #define EXTENDED_CONTEXT_BIT ((~(_Unwind_Word) 0 >> 2) + 1)
78 /* 0 for now, can be increased when further fields are added to
79 struct _Unwind_Context. */
81 _Unwind_Word args_size
;
82 char by_value
[DWARF_FRAME_REGISTERS
+1];
85 /* Byte size of every register managed by these routines. */
86 static unsigned char dwarf_reg_size_table
[DWARF_FRAME_REGISTERS
+1];
89 /* Read unaligned data from the instruction buffer. */
94 unsigned u2
__attribute__ ((mode (HI
)));
95 unsigned u4
__attribute__ ((mode (SI
)));
96 unsigned u8
__attribute__ ((mode (DI
)));
97 signed s2
__attribute__ ((mode (HI
)));
98 signed s4
__attribute__ ((mode (SI
)));
99 signed s8
__attribute__ ((mode (DI
)));
100 } __attribute__ ((packed
));
102 static void uw_update_context (struct _Unwind_Context
*, _Unwind_FrameState
*);
103 static _Unwind_Reason_Code
uw_frame_state_for (struct _Unwind_Context
*,
104 _Unwind_FrameState
*);
107 read_pointer (const void *p
) { const union unaligned
*up
= p
; return up
->p
; }
110 read_1u (const void *p
) { return *(const unsigned char *) p
; }
113 read_1s (const void *p
) { return *(const signed char *) p
; }
116 read_2u (const void *p
) { const union unaligned
*up
= p
; return up
->u2
; }
119 read_2s (const void *p
) { const union unaligned
*up
= p
; return up
->s2
; }
121 static inline unsigned int
122 read_4u (const void *p
) { const union unaligned
*up
= p
; return up
->u4
; }
125 read_4s (const void *p
) { const union unaligned
*up
= p
; return up
->s4
; }
127 static inline unsigned long
128 read_8u (const void *p
) { const union unaligned
*up
= p
; return up
->u8
; }
130 static inline unsigned long
131 read_8s (const void *p
) { const union unaligned
*up
= p
; return up
->s8
; }
133 static inline _Unwind_Word
134 _Unwind_IsSignalFrame (struct _Unwind_Context
*context
)
136 return (context
->flags
& SIGNAL_FRAME_BIT
) ? 1 : 0;
140 _Unwind_SetSignalFrame (struct _Unwind_Context
*context
, int val
)
143 context
->flags
|= SIGNAL_FRAME_BIT
;
145 context
->flags
&= ~SIGNAL_FRAME_BIT
;
148 static inline _Unwind_Word
149 _Unwind_IsExtendedContext (struct _Unwind_Context
*context
)
151 return context
->flags
& EXTENDED_CONTEXT_BIT
;
154 /* Get the value of register INDEX as saved in CONTEXT. */
157 _Unwind_GetGR (struct _Unwind_Context
*context
, int index
)
162 #ifdef DWARF_ZERO_REG
163 if (index
== DWARF_ZERO_REG
)
167 index
= DWARF_REG_TO_UNWIND_COLUMN (index
);
168 gcc_assert (index
< (int) sizeof(dwarf_reg_size_table
));
169 size
= dwarf_reg_size_table
[index
];
170 ptr
= context
->reg
[index
];
172 if (_Unwind_IsExtendedContext (context
) && context
->by_value
[index
])
173 return (_Unwind_Word
) (_Unwind_Internal_Ptr
) ptr
;
175 /* This will segfault if the register hasn't been saved. */
176 if (size
== sizeof(_Unwind_Ptr
))
177 return * (_Unwind_Ptr
*) ptr
;
180 gcc_assert (size
== sizeof(_Unwind_Word
));
181 return * (_Unwind_Word
*) ptr
;
186 _Unwind_GetPtr (struct _Unwind_Context
*context
, int index
)
188 return (void *)(_Unwind_Ptr
) _Unwind_GetGR (context
, index
);
191 /* Get the value of the CFA as saved in CONTEXT. */
194 _Unwind_GetCFA (struct _Unwind_Context
*context
)
196 return (_Unwind_Ptr
) context
->cfa
;
199 /* Overwrite the saved value for register INDEX in CONTEXT with VAL. */
202 _Unwind_SetGR (struct _Unwind_Context
*context
, int index
, _Unwind_Word val
)
207 index
= DWARF_REG_TO_UNWIND_COLUMN (index
);
208 gcc_assert (index
< (int) sizeof(dwarf_reg_size_table
));
209 size
= dwarf_reg_size_table
[index
];
211 if (_Unwind_IsExtendedContext (context
) && context
->by_value
[index
])
213 context
->reg
[index
] = (void *) (_Unwind_Internal_Ptr
) val
;
217 ptr
= context
->reg
[index
];
219 if (size
== sizeof(_Unwind_Ptr
))
220 * (_Unwind_Ptr
*) ptr
= val
;
223 gcc_assert (size
== sizeof(_Unwind_Word
));
224 * (_Unwind_Word
*) ptr
= val
;
228 /* Get the pointer to a register INDEX as saved in CONTEXT. */
231 _Unwind_GetGRPtr (struct _Unwind_Context
*context
, int index
)
233 index
= DWARF_REG_TO_UNWIND_COLUMN (index
);
234 if (_Unwind_IsExtendedContext (context
) && context
->by_value
[index
])
235 return &context
->reg
[index
];
236 return context
->reg
[index
];
239 /* Set the pointer to a register INDEX as saved in CONTEXT. */
242 _Unwind_SetGRPtr (struct _Unwind_Context
*context
, int index
, void *p
)
244 index
= DWARF_REG_TO_UNWIND_COLUMN (index
);
245 if (_Unwind_IsExtendedContext (context
))
246 context
->by_value
[index
] = 0;
247 context
->reg
[index
] = p
;
250 /* Overwrite the saved value for register INDEX in CONTEXT with VAL. */
253 _Unwind_SetGRValue (struct _Unwind_Context
*context
, int index
,
256 index
= DWARF_REG_TO_UNWIND_COLUMN (index
);
257 gcc_assert (index
< (int) sizeof(dwarf_reg_size_table
));
258 gcc_assert (dwarf_reg_size_table
[index
] == sizeof (_Unwind_Ptr
));
260 context
->by_value
[index
] = 1;
261 context
->reg
[index
] = (void *) (_Unwind_Internal_Ptr
) val
;
264 /* Return nonzero if register INDEX is stored by value rather than
268 _Unwind_GRByValue (struct _Unwind_Context
*context
, int index
)
270 index
= DWARF_REG_TO_UNWIND_COLUMN (index
);
271 return context
->by_value
[index
];
274 /* Retrieve the return address for CONTEXT. */
277 _Unwind_GetIP (struct _Unwind_Context
*context
)
279 return (_Unwind_Ptr
) context
->ra
;
282 /* Retrieve the return address and flag whether that IP is before
283 or after first not yet fully executed instruction. */
286 _Unwind_GetIPInfo (struct _Unwind_Context
*context
, int *ip_before_insn
)
288 *ip_before_insn
= _Unwind_IsSignalFrame (context
);
289 return (_Unwind_Ptr
) context
->ra
;
292 /* Overwrite the return address for CONTEXT with VAL. */
295 _Unwind_SetIP (struct _Unwind_Context
*context
, _Unwind_Ptr val
)
297 context
->ra
= (void *) val
;
301 _Unwind_GetLanguageSpecificData (struct _Unwind_Context
*context
)
303 return context
->lsda
;
307 _Unwind_GetRegionStart (struct _Unwind_Context
*context
)
309 return (_Unwind_Ptr
) context
->bases
.func
;
313 _Unwind_FindEnclosingFunction (void *pc
)
315 struct dwarf_eh_bases bases
;
316 const struct dwarf_fde
*fde
= _Unwind_Find_FDE (pc
-1, &bases
);
325 _Unwind_GetDataRelBase (struct _Unwind_Context
*context
)
327 return (_Unwind_Ptr
) context
->bases
.dbase
;
331 _Unwind_GetTextRelBase (struct _Unwind_Context
*context
)
333 return (_Unwind_Ptr
) context
->bases
.tbase
;
337 #ifdef MD_UNWIND_SUPPORT
338 #include MD_UNWIND_SUPPORT
341 /* Extract any interesting information from the CIE for the translation
342 unit F belongs to. Return a pointer to the byte after the augmentation,
343 or NULL if we encountered an undecipherable augmentation. */
345 static const unsigned char *
346 extract_cie_info (const struct dwarf_cie
*cie
, struct _Unwind_Context
*context
,
347 _Unwind_FrameState
*fs
)
349 const unsigned char *aug
= cie
->augmentation
;
350 const unsigned char *p
= aug
+ strlen ((const char *)aug
) + 1;
351 const unsigned char *ret
= NULL
;
355 /* g++ v2 "eh" has pointer immediately following augmentation string,
356 so it must be handled first. */
357 if (aug
[0] == 'e' && aug
[1] == 'h')
359 fs
->eh_ptr
= read_pointer (p
);
360 p
+= sizeof (void *);
364 /* Immediately following the augmentation are the code and
365 data alignment and return address column. */
366 p
= read_uleb128 (p
, &utmp
);
367 fs
->code_align
= (_Unwind_Word
)utmp
;
368 p
= read_sleb128 (p
, &stmp
);
369 fs
->data_align
= (_Unwind_Sword
)stmp
;
370 if (cie
->version
== 1)
371 fs
->retaddr_column
= *p
++;
374 p
= read_uleb128 (p
, &utmp
);
375 fs
->retaddr_column
= (_Unwind_Word
)utmp
;
377 fs
->lsda_encoding
= DW_EH_PE_omit
;
379 /* If the augmentation starts with 'z', then a uleb128 immediately
380 follows containing the length of the augmentation field following
384 p
= read_uleb128 (p
, &utmp
);
391 /* Iterate over recognized augmentation subsequences. */
394 /* "L" indicates a byte showing how the LSDA pointer is encoded. */
397 fs
->lsda_encoding
= *p
++;
401 /* "R" indicates a byte indicating how FDE addresses are encoded. */
402 else if (aug
[0] == 'R')
404 fs
->fde_encoding
= *p
++;
408 /* "P" indicates a personality routine in the CIE augmentation. */
409 else if (aug
[0] == 'P')
411 _Unwind_Ptr personality
;
413 p
= read_encoded_value (context
, *p
, p
+ 1, &personality
);
414 fs
->personality
= (_Unwind_Personality_Fn
) personality
;
418 /* "S" indicates a signal frame. */
419 else if (aug
[0] == 'S')
421 fs
->signal_frame
= 1;
425 /* Otherwise we have an unknown augmentation string.
426 Bail unless we saw a 'z' prefix. */
431 return ret
? ret
: p
;
435 /* Decode a DW_OP stack program. Return the top of stack. Push INITIAL
436 onto the stack to start. */
439 execute_stack_op (const unsigned char *op_ptr
, const unsigned char *op_end
,
440 struct _Unwind_Context
*context
, _Unwind_Word initial
)
442 _Unwind_Word stack
[64]; /* ??? Assume this is enough. */
448 while (op_ptr
< op_end
)
450 enum dwarf_location_atom op
= *op_ptr
++;
452 _uleb128_t reg
, utmp
;
453 _sleb128_t offset
, stmp
;
489 result
= op
- DW_OP_lit0
;
493 result
= (_Unwind_Word
) (_Unwind_Ptr
) read_pointer (op_ptr
);
494 op_ptr
+= sizeof (void *);
498 result
= read_1u (op_ptr
);
502 result
= read_1s (op_ptr
);
506 result
= read_2u (op_ptr
);
510 result
= read_2s (op_ptr
);
514 result
= read_4u (op_ptr
);
518 result
= read_4s (op_ptr
);
522 result
= read_8u (op_ptr
);
526 result
= read_8s (op_ptr
);
530 op_ptr
= read_uleb128 (op_ptr
, &utmp
);
531 result
= (_Unwind_Word
)utmp
;
534 op_ptr
= read_sleb128 (op_ptr
, &stmp
);
535 result
= (_Unwind_Sword
)stmp
;
570 result
= _Unwind_GetGR (context
, op
- DW_OP_reg0
);
573 op_ptr
= read_uleb128 (op_ptr
, ®
);
574 result
= _Unwind_GetGR (context
, reg
);
609 op_ptr
= read_sleb128 (op_ptr
, &offset
);
610 result
= _Unwind_GetGR (context
, op
- DW_OP_breg0
) + offset
;
613 op_ptr
= read_uleb128 (op_ptr
, ®
);
614 op_ptr
= read_sleb128 (op_ptr
, &offset
);
615 result
= _Unwind_GetGR (context
, reg
) + (_Unwind_Word
)offset
;
619 gcc_assert (stack_elt
);
620 result
= stack
[stack_elt
- 1];
624 gcc_assert (stack_elt
);
630 gcc_assert (offset
< stack_elt
- 1);
631 result
= stack
[stack_elt
- 1 - offset
];
635 gcc_assert (stack_elt
>= 2);
636 result
= stack
[stack_elt
- 2];
642 gcc_assert (stack_elt
>= 2);
643 t
= stack
[stack_elt
- 1];
644 stack
[stack_elt
- 1] = stack
[stack_elt
- 2];
645 stack
[stack_elt
- 2] = t
;
651 _Unwind_Word t1
, t2
, t3
;
653 gcc_assert (stack_elt
>= 3);
654 t1
= stack
[stack_elt
- 1];
655 t2
= stack
[stack_elt
- 2];
656 t3
= stack
[stack_elt
- 3];
657 stack
[stack_elt
- 1] = t2
;
658 stack
[stack_elt
- 2] = t3
;
659 stack
[stack_elt
- 3] = t1
;
664 case DW_OP_deref_size
:
668 case DW_OP_plus_uconst
:
669 /* Unary operations. */
670 gcc_assert (stack_elt
);
673 result
= stack
[stack_elt
];
679 void *ptr
= (void *) (_Unwind_Ptr
) result
;
680 result
= (_Unwind_Ptr
) read_pointer (ptr
);
684 case DW_OP_deref_size
:
686 void *ptr
= (void *) (_Unwind_Ptr
) result
;
690 result
= read_1u (ptr
);
693 result
= read_2u (ptr
);
696 result
= read_4u (ptr
);
699 result
= read_8u (ptr
);
708 if ((_Unwind_Sword
) result
< 0)
717 case DW_OP_plus_uconst
:
718 op_ptr
= read_uleb128 (op_ptr
, &utmp
);
719 result
+= (_Unwind_Word
)utmp
;
745 /* Binary operations. */
746 _Unwind_Word first
, second
;
747 gcc_assert (stack_elt
>= 2);
750 second
= stack
[stack_elt
];
751 first
= stack
[stack_elt
+ 1];
756 result
= second
& first
;
759 result
= (_Unwind_Sword
) second
/ (_Unwind_Sword
) first
;
762 result
= second
- first
;
765 result
= (_Unwind_Sword
) second
% (_Unwind_Sword
) first
;
768 result
= second
* first
;
771 result
= second
| first
;
774 result
= second
+ first
;
777 result
= second
<< first
;
780 result
= second
>> first
;
783 result
= (_Unwind_Sword
) second
>> first
;
786 result
= second
^ first
;
789 result
= (_Unwind_Sword
) first
<= (_Unwind_Sword
) second
;
792 result
= (_Unwind_Sword
) first
>= (_Unwind_Sword
) second
;
795 result
= (_Unwind_Sword
) first
== (_Unwind_Sword
) second
;
798 result
= (_Unwind_Sword
) first
< (_Unwind_Sword
) second
;
801 result
= (_Unwind_Sword
) first
> (_Unwind_Sword
) second
;
804 result
= (_Unwind_Sword
) first
!= (_Unwind_Sword
) second
;
814 offset
= read_2s (op_ptr
);
820 gcc_assert (stack_elt
);
823 offset
= read_2s (op_ptr
);
825 if (stack
[stack_elt
] != 0)
836 /* Most things push a result value. */
837 gcc_assert ((size_t) stack_elt
< sizeof(stack
)/sizeof(*stack
));
838 stack
[stack_elt
++] = result
;
842 /* We were executing this program to get a value. It should be
844 gcc_assert (stack_elt
);
846 return stack
[stack_elt
];
850 /* Decode DWARF 2 call frame information. Takes pointers the
851 instruction sequence to decode, current register information and
852 CIE info, and the PC range to evaluate. */
855 execute_cfa_program (const unsigned char *insn_ptr
,
856 const unsigned char *insn_end
,
857 struct _Unwind_Context
*context
,
858 _Unwind_FrameState
*fs
)
860 struct frame_state_reg_info
*unused_rs
= NULL
;
862 /* Don't allow remember/restore between CIE and FDE programs. */
863 fs
->regs
.prev
= NULL
;
865 /* The comparison with the return address uses < rather than <= because
866 we are only interested in the effects of code before the call; for a
867 noreturn function, the return address may point to unrelated code with
868 a different stack configuration that we are not interested in. We
869 assume that the call itself is unwind info-neutral; if not, or if
870 there are delay instructions that adjust the stack, these must be
871 reflected at the point immediately before the call insn.
872 In signal frames, return address is after last completed instruction,
873 so we add 1 to return address to make the comparison <=. */
874 while (insn_ptr
< insn_end
875 && fs
->pc
< context
->ra
+ _Unwind_IsSignalFrame (context
))
877 unsigned char insn
= *insn_ptr
++;
878 _uleb128_t reg
, utmp
;
879 _sleb128_t offset
, stmp
;
881 if ((insn
& 0xc0) == DW_CFA_advance_loc
)
882 fs
->pc
+= (insn
& 0x3f) * fs
->code_align
;
883 else if ((insn
& 0xc0) == DW_CFA_offset
)
886 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
887 offset
= (_Unwind_Sword
) utmp
* fs
->data_align
;
888 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].how
890 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].loc
.offset
= offset
;
892 else if ((insn
& 0xc0) == DW_CFA_restore
)
895 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].how
= REG_UNSAVED
;
903 insn_ptr
= read_encoded_value (context
, fs
->fde_encoding
,
905 fs
->pc
= (void *) pc
;
909 case DW_CFA_advance_loc1
:
910 fs
->pc
+= read_1u (insn_ptr
) * fs
->code_align
;
913 case DW_CFA_advance_loc2
:
914 fs
->pc
+= read_2u (insn_ptr
) * fs
->code_align
;
917 case DW_CFA_advance_loc4
:
918 fs
->pc
+= read_4u (insn_ptr
) * fs
->code_align
;
922 case DW_CFA_offset_extended
:
923 insn_ptr
= read_uleb128 (insn_ptr
, ®
);
924 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
925 offset
= (_Unwind_Sword
) utmp
* fs
->data_align
;
926 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].how
928 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].loc
.offset
= offset
;
931 case DW_CFA_restore_extended
:
932 insn_ptr
= read_uleb128 (insn_ptr
, ®
);
933 /* FIXME, this is wrong; the CIE might have said that the
934 register was saved somewhere. */
935 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN(reg
)].how
= REG_UNSAVED
;
938 case DW_CFA_undefined
:
939 case DW_CFA_same_value
:
940 insn_ptr
= read_uleb128 (insn_ptr
, ®
);
941 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN(reg
)].how
= REG_UNSAVED
;
947 case DW_CFA_register
:
950 insn_ptr
= read_uleb128 (insn_ptr
, ®
);
951 insn_ptr
= read_uleb128 (insn_ptr
, ®2
);
952 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].how
= REG_SAVED_REG
;
953 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].loc
.reg
=
958 case DW_CFA_remember_state
:
960 struct frame_state_reg_info
*new_rs
;
964 unused_rs
= unused_rs
->prev
;
967 new_rs
= alloca (sizeof (struct frame_state_reg_info
));
970 fs
->regs
.prev
= new_rs
;
974 case DW_CFA_restore_state
:
976 struct frame_state_reg_info
*old_rs
= fs
->regs
.prev
;
978 old_rs
->prev
= unused_rs
;
984 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
985 fs
->regs
.cfa_reg
= (_Unwind_Word
)utmp
;
986 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
987 fs
->regs
.cfa_offset
= (_Unwind_Word
)utmp
;
988 fs
->regs
.cfa_how
= CFA_REG_OFFSET
;
991 case DW_CFA_def_cfa_register
:
992 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
993 fs
->regs
.cfa_reg
= (_Unwind_Word
)utmp
;
994 fs
->regs
.cfa_how
= CFA_REG_OFFSET
;
997 case DW_CFA_def_cfa_offset
:
998 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
999 fs
->regs
.cfa_offset
= utmp
;
1000 /* cfa_how deliberately not set. */
1003 case DW_CFA_def_cfa_expression
:
1004 fs
->regs
.cfa_exp
= insn_ptr
;
1005 fs
->regs
.cfa_how
= CFA_EXP
;
1006 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
1010 case DW_CFA_expression
:
1011 insn_ptr
= read_uleb128 (insn_ptr
, ®
);
1012 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].how
= REG_SAVED_EXP
;
1013 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].loc
.exp
= insn_ptr
;
1014 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
1019 case DW_CFA_offset_extended_sf
:
1020 insn_ptr
= read_uleb128 (insn_ptr
, ®
);
1021 insn_ptr
= read_sleb128 (insn_ptr
, &stmp
);
1022 offset
= stmp
* fs
->data_align
;
1023 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].how
1025 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].loc
.offset
= offset
;
1028 case DW_CFA_def_cfa_sf
:
1029 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
1030 fs
->regs
.cfa_reg
= (_Unwind_Word
)utmp
;
1031 insn_ptr
= read_sleb128 (insn_ptr
, &stmp
);
1032 fs
->regs
.cfa_offset
= (_Unwind_Sword
)stmp
;
1033 fs
->regs
.cfa_how
= CFA_REG_OFFSET
;
1034 fs
->regs
.cfa_offset
*= fs
->data_align
;
1037 case DW_CFA_def_cfa_offset_sf
:
1038 insn_ptr
= read_sleb128 (insn_ptr
, &stmp
);
1039 fs
->regs
.cfa_offset
= (_Unwind_Sword
)stmp
;
1040 fs
->regs
.cfa_offset
*= fs
->data_align
;
1041 /* cfa_how deliberately not set. */
1044 case DW_CFA_val_offset
:
1045 insn_ptr
= read_uleb128 (insn_ptr
, ®
);
1046 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
1047 offset
= (_Unwind_Sword
) utmp
* fs
->data_align
;
1048 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].how
1049 = REG_SAVED_VAL_OFFSET
;
1050 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].loc
.offset
= offset
;
1053 case DW_CFA_val_offset_sf
:
1054 insn_ptr
= read_uleb128 (insn_ptr
, ®
);
1055 insn_ptr
= read_sleb128 (insn_ptr
, &stmp
);
1056 offset
= stmp
* fs
->data_align
;
1057 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].how
1058 = REG_SAVED_VAL_OFFSET
;
1059 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].loc
.offset
= offset
;
1062 case DW_CFA_val_expression
:
1063 insn_ptr
= read_uleb128 (insn_ptr
, ®
);
1064 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].how
1065 = REG_SAVED_VAL_EXP
;
1066 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].loc
.exp
= insn_ptr
;
1067 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
1071 case DW_CFA_GNU_window_save
:
1072 /* ??? Hardcoded for SPARC register window configuration. */
1073 for (reg
= 16; reg
< 32; ++reg
)
1075 fs
->regs
.reg
[reg
].how
= REG_SAVED_OFFSET
;
1076 fs
->regs
.reg
[reg
].loc
.offset
= (reg
- 16) * sizeof (void *);
1080 case DW_CFA_GNU_args_size
:
1081 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
1082 context
->args_size
= (_Unwind_Word
)utmp
;
1085 case DW_CFA_GNU_negative_offset_extended
:
1086 /* Obsoleted by DW_CFA_offset_extended_sf, but used by
1087 older PowerPC code. */
1088 insn_ptr
= read_uleb128 (insn_ptr
, ®
);
1089 insn_ptr
= read_uleb128 (insn_ptr
, &utmp
);
1090 offset
= (_Unwind_Word
) utmp
* fs
->data_align
;
1091 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].how
1093 fs
->regs
.reg
[DWARF_REG_TO_UNWIND_COLUMN (reg
)].loc
.offset
= -offset
;
1102 /* Given the _Unwind_Context CONTEXT for a stack frame, look up the FDE for
1103 its caller and decode it into FS. This function also sets the
1104 args_size and lsda members of CONTEXT, as they are really information
1105 about the caller's frame. */
1107 static _Unwind_Reason_Code
1108 uw_frame_state_for (struct _Unwind_Context
*context
, _Unwind_FrameState
*fs
)
1110 const struct dwarf_fde
*fde
;
1111 const struct dwarf_cie
*cie
;
1112 const unsigned char *aug
, *insn
, *end
;
1114 memset (fs
, 0, sizeof (*fs
));
1115 context
->args_size
= 0;
1118 if (context
->ra
== 0)
1119 return _URC_END_OF_STACK
;
1121 fde
= _Unwind_Find_FDE (context
->ra
+ _Unwind_IsSignalFrame (context
) - 1,
1125 #ifdef MD_FALLBACK_FRAME_STATE_FOR
1126 /* Couldn't find frame unwind info for this function. Try a
1127 target-specific fallback mechanism. This will necessarily
1128 not provide a personality routine or LSDA. */
1129 return MD_FALLBACK_FRAME_STATE_FOR (context
, fs
);
1131 return _URC_END_OF_STACK
;
1135 fs
->pc
= context
->bases
.func
;
1137 cie
= get_cie (fde
);
1138 insn
= extract_cie_info (cie
, context
, fs
);
1140 /* CIE contained unknown augmentation. */
1141 return _URC_FATAL_PHASE1_ERROR
;
1143 /* First decode all the insns in the CIE. */
1144 end
= (const unsigned char *) next_fde ((const struct dwarf_fde
*) cie
);
1145 execute_cfa_program (insn
, end
, context
, fs
);
1147 /* Locate augmentation for the fde. */
1148 aug
= (const unsigned char *) fde
+ sizeof (*fde
);
1149 aug
+= 2 * size_of_encoded_value (fs
->fde_encoding
);
1154 aug
= read_uleb128 (aug
, &i
);
1157 if (fs
->lsda_encoding
!= DW_EH_PE_omit
)
1161 aug
= read_encoded_value (context
, fs
->lsda_encoding
, aug
, &lsda
);
1162 context
->lsda
= (void *) lsda
;
1165 /* Then the insns in the FDE up to our target PC. */
1168 end
= (const unsigned char *) next_fde (fde
);
1169 execute_cfa_program (insn
, end
, context
, fs
);
1171 return _URC_NO_REASON
;
1174 typedef struct frame_state
1180 long reg_or_offset
[PRE_GCC3_DWARF_FRAME_REGISTERS
+1];
1181 unsigned short cfa_reg
;
1182 unsigned short retaddr_column
;
1183 char saved
[PRE_GCC3_DWARF_FRAME_REGISTERS
+1];
1186 struct frame_state
* __frame_state_for (void *, struct frame_state
*);
1188 /* Called from pre-G++ 3.0 __throw to find the registers to restore for
1189 a given PC_TARGET. The caller should allocate a local variable of
1190 `struct frame_state' and pass its address to STATE_IN. */
1192 struct frame_state
*
1193 __frame_state_for (void *pc_target
, struct frame_state
*state_in
)
1195 struct _Unwind_Context context
;
1196 _Unwind_FrameState fs
;
1199 memset (&context
, 0, sizeof (struct _Unwind_Context
));
1200 context
.flags
= EXTENDED_CONTEXT_BIT
;
1201 context
.ra
= pc_target
+ 1;
1203 if (uw_frame_state_for (&context
, &fs
) != _URC_NO_REASON
)
1206 /* We have no way to pass a location expression for the CFA to our
1207 caller. It wouldn't understand it anyway. */
1208 if (fs
.regs
.cfa_how
== CFA_EXP
)
1211 for (reg
= 0; reg
< PRE_GCC3_DWARF_FRAME_REGISTERS
+ 1; reg
++)
1213 state_in
->saved
[reg
] = fs
.regs
.reg
[reg
].how
;
1214 switch (state_in
->saved
[reg
])
1217 state_in
->reg_or_offset
[reg
] = fs
.regs
.reg
[reg
].loc
.reg
;
1219 case REG_SAVED_OFFSET
:
1220 state_in
->reg_or_offset
[reg
] = fs
.regs
.reg
[reg
].loc
.offset
;
1223 state_in
->reg_or_offset
[reg
] = 0;
1228 state_in
->cfa_offset
= fs
.regs
.cfa_offset
;
1229 state_in
->cfa_reg
= fs
.regs
.cfa_reg
;
1230 state_in
->retaddr_column
= fs
.retaddr_column
;
1231 state_in
->args_size
= context
.args_size
;
1232 state_in
->eh_ptr
= fs
.eh_ptr
;
1237 typedef union { _Unwind_Ptr ptr
; _Unwind_Word word
; } _Unwind_SpTmp
;
1240 _Unwind_SetSpColumn (struct _Unwind_Context
*context
, void *cfa
,
1241 _Unwind_SpTmp
*tmp_sp
)
1243 int size
= dwarf_reg_size_table
[__builtin_dwarf_sp_column ()];
1245 if (size
== sizeof(_Unwind_Ptr
))
1246 tmp_sp
->ptr
= (_Unwind_Ptr
) cfa
;
1249 gcc_assert (size
== sizeof(_Unwind_Word
));
1250 tmp_sp
->word
= (_Unwind_Ptr
) cfa
;
1252 _Unwind_SetGRPtr (context
, __builtin_dwarf_sp_column (), tmp_sp
);
1256 uw_update_context_1 (struct _Unwind_Context
*context
, _Unwind_FrameState
*fs
)
1258 struct _Unwind_Context orig_context
= *context
;
1262 #ifdef EH_RETURN_STACKADJ_RTX
1263 /* Special handling here: Many machines do not use a frame pointer,
1264 and track the CFA only through offsets from the stack pointer from
1265 one frame to the next. In this case, the stack pointer is never
1266 stored, so it has no saved address in the context. What we do
1267 have is the CFA from the previous stack frame.
1269 In very special situations (such as unwind info for signal return),
1270 there may be location expressions that use the stack pointer as well.
1272 Do this conditionally for one frame. This allows the unwind info
1273 for one frame to save a copy of the stack pointer from the previous
1274 frame, and be able to use much easier CFA mechanisms to do it.
1275 Always zap the saved stack pointer value for the next frame; carrying
1276 the value over from one frame to another doesn't make sense. */
1278 _Unwind_SpTmp tmp_sp
;
1280 if (!_Unwind_GetGRPtr (&orig_context
, __builtin_dwarf_sp_column ()))
1281 _Unwind_SetSpColumn (&orig_context
, context
->cfa
, &tmp_sp
);
1282 _Unwind_SetGRPtr (context
, __builtin_dwarf_sp_column (), NULL
);
1285 /* Compute this frame's CFA. */
1286 switch (fs
->regs
.cfa_how
)
1288 case CFA_REG_OFFSET
:
1289 cfa
= _Unwind_GetPtr (&orig_context
, fs
->regs
.cfa_reg
);
1290 cfa
+= fs
->regs
.cfa_offset
;
1295 const unsigned char *exp
= fs
->regs
.cfa_exp
;
1298 exp
= read_uleb128 (exp
, &len
);
1299 cfa
= (void *) (_Unwind_Ptr
)
1300 execute_stack_op (exp
, exp
+ len
, &orig_context
, 0);
1309 /* Compute the addresses of all registers saved in this frame. */
1310 for (i
= 0; i
< DWARF_FRAME_REGISTERS
+ 1; ++i
)
1311 switch (fs
->regs
.reg
[i
].how
)
1316 case REG_SAVED_OFFSET
:
1317 _Unwind_SetGRPtr (context
, i
,
1318 (void *) (cfa
+ fs
->regs
.reg
[i
].loc
.offset
));
1322 if (_Unwind_GRByValue (&orig_context
, fs
->regs
.reg
[i
].loc
.reg
))
1323 _Unwind_SetGRValue (context
, i
,
1324 _Unwind_GetGR (&orig_context
,
1325 fs
->regs
.reg
[i
].loc
.reg
));
1327 _Unwind_SetGRPtr (context
, i
,
1328 _Unwind_GetGRPtr (&orig_context
,
1329 fs
->regs
.reg
[i
].loc
.reg
));
1334 const unsigned char *exp
= fs
->regs
.reg
[i
].loc
.exp
;
1338 exp
= read_uleb128 (exp
, &len
);
1339 val
= execute_stack_op (exp
, exp
+ len
, &orig_context
,
1341 _Unwind_SetGRPtr (context
, i
, (void *) val
);
1345 case REG_SAVED_VAL_OFFSET
:
1346 _Unwind_SetGRValue (context
, i
,
1347 (_Unwind_Internal_Ptr
)
1348 (cfa
+ fs
->regs
.reg
[i
].loc
.offset
));
1351 case REG_SAVED_VAL_EXP
:
1353 const unsigned char *exp
= fs
->regs
.reg
[i
].loc
.exp
;
1357 exp
= read_uleb128 (exp
, &len
);
1358 val
= execute_stack_op (exp
, exp
+ len
, &orig_context
,
1360 _Unwind_SetGRValue (context
, i
, val
);
1365 _Unwind_SetSignalFrame (context
, fs
->signal_frame
);
1367 #ifdef MD_FROB_UPDATE_CONTEXT
1368 MD_FROB_UPDATE_CONTEXT (context
, fs
);
1372 /* CONTEXT describes the unwind state for a frame, and FS describes the FDE
1373 of its caller. Update CONTEXT to refer to the caller as well. Note
1374 that the args_size and lsda members are not updated here, but later in
1375 uw_frame_state_for. */
1378 uw_update_context (struct _Unwind_Context
*context
, _Unwind_FrameState
*fs
)
1380 uw_update_context_1 (context
, fs
);
1382 /* Compute the return address now, since the return address column
1383 can change from frame to frame. */
1384 context
->ra
= __builtin_extract_return_addr
1385 (_Unwind_GetPtr (context
, fs
->retaddr_column
));
1389 uw_advance_context (struct _Unwind_Context
*context
, _Unwind_FrameState
*fs
)
1391 uw_update_context (context
, fs
);
1394 /* Fill in CONTEXT for top-of-stack. The only valid registers at this
1395 level will be the return address and the CFA. */
1397 #define uw_init_context(CONTEXT) \
1400 /* Do any necessary initialization to access arbitrary stack frames. \
1401 On the SPARC, this means flushing the register windows. */ \
1402 __builtin_unwind_init (); \
1403 uw_init_context_1 (CONTEXT, __builtin_dwarf_cfa (), \
1404 __builtin_return_address (0)); \
1409 init_dwarf_reg_size_table (void)
1411 __builtin_init_dwarf_reg_size_table (dwarf_reg_size_table
);
1415 uw_init_context_1 (struct _Unwind_Context
*context
,
1416 void *outer_cfa
, void *outer_ra
)
1418 void *ra
= __builtin_extract_return_addr (__builtin_return_address (0));
1419 _Unwind_FrameState fs
;
1420 _Unwind_SpTmp sp_slot
;
1421 _Unwind_Reason_Code code
;
1423 memset (context
, 0, sizeof (struct _Unwind_Context
));
1425 context
->flags
= EXTENDED_CONTEXT_BIT
;
1427 code
= uw_frame_state_for (context
, &fs
);
1428 gcc_assert (code
== _URC_NO_REASON
);
1432 static __gthread_once_t once_regsizes
= __GTHREAD_ONCE_INIT
;
1433 if (__gthread_once (&once_regsizes
, init_dwarf_reg_size_table
) != 0
1434 && dwarf_reg_size_table
[0] == 0)
1435 init_dwarf_reg_size_table ();
1438 if (dwarf_reg_size_table
[0] == 0)
1439 init_dwarf_reg_size_table ();
1442 /* Force the frame state to use the known cfa value. */
1443 _Unwind_SetSpColumn (context
, outer_cfa
, &sp_slot
);
1444 fs
.regs
.cfa_how
= CFA_REG_OFFSET
;
1445 fs
.regs
.cfa_reg
= __builtin_dwarf_sp_column ();
1446 fs
.regs
.cfa_offset
= 0;
1448 uw_update_context_1 (context
, &fs
);
1450 /* If the return address column was saved in a register in the
1451 initialization context, then we can't see it in the given
1452 call frame data. So have the initialization context tell us. */
1453 context
->ra
= __builtin_extract_return_addr (outer_ra
);
1457 /* Install TARGET into CURRENT so that we can return to it. This is a
1458 macro because __builtin_eh_return must be invoked in the context of
1461 #define uw_install_context(CURRENT, TARGET) \
1464 long offset = uw_install_context_1 ((CURRENT), (TARGET)); \
1465 void *handler = __builtin_frob_return_addr ((TARGET)->ra); \
1466 __builtin_eh_return (offset, handler); \
1471 uw_install_context_1 (struct _Unwind_Context
*current
,
1472 struct _Unwind_Context
*target
)
1475 _Unwind_SpTmp sp_slot
;
1477 /* If the target frame does not have a saved stack pointer,
1478 then set up the target's CFA. */
1479 if (!_Unwind_GetGRPtr (target
, __builtin_dwarf_sp_column ()))
1480 _Unwind_SetSpColumn (target
, target
->cfa
, &sp_slot
);
1482 for (i
= 0; i
< DWARF_FRAME_REGISTERS
; ++i
)
1484 void *c
= current
->reg
[i
];
1485 void *t
= target
->reg
[i
];
1487 gcc_assert (current
->by_value
[i
] == 0);
1488 if (target
->by_value
[i
] && c
)
1492 if (dwarf_reg_size_table
[i
] == sizeof (_Unwind_Word
))
1494 w
= (_Unwind_Internal_Ptr
) t
;
1495 memcpy (c
, &w
, sizeof (_Unwind_Word
));
1499 gcc_assert (dwarf_reg_size_table
[i
] == sizeof (_Unwind_Ptr
));
1500 p
= (_Unwind_Internal_Ptr
) t
;
1501 memcpy (c
, &p
, sizeof (_Unwind_Ptr
));
1504 else if (t
&& c
&& t
!= c
)
1505 memcpy (c
, t
, dwarf_reg_size_table
[i
]);
1508 /* If the current frame doesn't have a saved stack pointer, then we
1509 need to rely on EH_RETURN_STACKADJ_RTX to get our target stack
1510 pointer value reloaded. */
1511 if (!_Unwind_GetGRPtr (current
, __builtin_dwarf_sp_column ()))
1515 target_cfa
= _Unwind_GetPtr (target
, __builtin_dwarf_sp_column ());
1517 /* We adjust SP by the difference between CURRENT and TARGET's CFA. */
1518 if (STACK_GROWS_DOWNWARD
)
1519 return target_cfa
- current
->cfa
+ target
->args_size
;
1521 return current
->cfa
- target_cfa
- target
->args_size
;
1526 static inline _Unwind_Ptr
1527 uw_identify_context (struct _Unwind_Context
*context
)
1529 return _Unwind_GetCFA (context
);
1533 #include "unwind.inc"
1535 #if defined (USE_GAS_SYMVER) && defined (SHARED) && defined (USE_LIBUNWIND_EXCEPTIONS)
1536 alias (_Unwind_Backtrace
);
1537 alias (_Unwind_DeleteException
);
1538 alias (_Unwind_FindEnclosingFunction
);
1539 alias (_Unwind_ForcedUnwind
);
1540 alias (_Unwind_GetDataRelBase
);
1541 alias (_Unwind_GetTextRelBase
);
1542 alias (_Unwind_GetCFA
);
1543 alias (_Unwind_GetGR
);
1544 alias (_Unwind_GetIP
);
1545 alias (_Unwind_GetLanguageSpecificData
);
1546 alias (_Unwind_GetRegionStart
);
1547 alias (_Unwind_RaiseException
);
1548 alias (_Unwind_Resume
);
1549 alias (_Unwind_Resume_or_Rethrow
);
1550 alias (_Unwind_SetGR
);
1551 alias (_Unwind_SetIP
);
1554 #endif /* !USING_SJLJ_EXCEPTIONS */