Do not bias REG_N_REFS by loop_depth when optimising for size.
[official-gcc.git] / gcc / frame.c
blobcfd979b70f70901a1c00e784aef50a5d007a879c
1 /* Subroutines needed for unwinding stack frames for exception handling. */
2 /* Compile this one with gcc. */
3 /* Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
4 Contributed by Jason Merrill <jason@cygnus.com>.
6 This file is part of GNU CC.
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
13 GNU CC 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.
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
23 /* As a special exception, if you link this library with other files,
24 some of which are compiled with GCC, to produce an executable,
25 this library does not by itself cause the resulting executable
26 to be covered by the GNU General Public License.
27 This exception does not however invalidate any other reasons why
28 the executable file might be covered by the GNU General Public License. */
30 /* It is incorrect to include config.h here, because this file is being
31 compiled for the target, and hence definitions concerning only the host
32 do not apply. */
34 #include "tconfig.h"
35 #include "tsystem.h"
37 #include "defaults.h"
39 #ifdef DWARF2_UNWIND_INFO
40 #include "dwarf2.h"
41 #include "frame.h"
42 #include "gthr.h"
44 #ifdef __GTHREAD_MUTEX_INIT
45 static __gthread_mutex_t object_mutex = __GTHREAD_MUTEX_INIT;
46 #else
47 static __gthread_mutex_t object_mutex;
48 #endif
50 /* Don't use `fancy_abort' here even if config.h says to use it. */
51 #ifdef abort
52 #undef abort
53 #endif
55 /* Some types used by the DWARF 2 spec. */
57 typedef int sword __attribute__ ((mode (SI)));
58 typedef unsigned int uword __attribute__ ((mode (SI)));
59 typedef unsigned int uaddr __attribute__ ((mode (pointer)));
60 typedef int saddr __attribute__ ((mode (pointer)));
61 typedef unsigned char ubyte;
63 /* Terminology:
64 CIE - Common Information Element
65 FDE - Frame Descriptor Element
67 There is one per function, and it describes where the function code
68 is located, and what the register lifetimes and stack layout are
69 within the function.
71 The data structures are defined in the DWARF specfication, although
72 not in a very readable way (see LITERATURE).
74 Every time an exception is thrown, the code needs to locate the FDE
75 for the current function, and starts to look for exception regions
76 from that FDE. This works in a two-level search:
77 a) in a linear search, find the shared image (i.e. DLL) containing
78 the PC
79 b) using the FDE table for that shared object, locate the FDE using
80 binary search (which requires the sorting). */
82 /* The first few fields of a CIE. The CIE_id field is 0 for a CIE,
83 to distinguish it from a valid FDE. FDEs are aligned to an addressing
84 unit boundary, but the fields within are unaligned. */
86 struct dwarf_cie {
87 uword length;
88 sword CIE_id;
89 ubyte version;
90 char augmentation[0];
91 } __attribute__ ((packed, aligned (__alignof__ (void *))));
93 /* The first few fields of an FDE. */
95 struct dwarf_fde {
96 uword length;
97 sword CIE_delta;
98 void* pc_begin;
99 uaddr pc_range;
100 } __attribute__ ((packed, aligned (__alignof__ (void *))));
102 typedef struct dwarf_fde fde;
104 /* Objects to be searched for frame unwind info. */
106 static struct object *objects;
108 /* The information we care about from a CIE. */
110 struct cie_info {
111 char *augmentation;
112 void *eh_ptr;
113 int code_align;
114 int data_align;
115 unsigned ra_regno;
118 /* The current unwind state, plus a saved copy for DW_CFA_remember_state. */
120 struct frame_state_internal
122 struct frame_state s;
123 struct frame_state_internal *saved_state;
126 /* This is undefined below if we need it to be an actual function. */
127 #define init_object_mutex_once()
129 #if __GTHREADS
130 #ifdef __GTHREAD_MUTEX_INIT_FUNCTION
132 /* Helper for init_object_mutex_once. */
134 static void
135 init_object_mutex (void)
137 __GTHREAD_MUTEX_INIT_FUNCTION (&object_mutex);
140 /* Call this to arrange to initialize the object mutex. */
142 #undef init_object_mutex_once
143 static void
144 init_object_mutex_once (void)
146 static __gthread_once_t once = __GTHREAD_ONCE_INIT;
147 __gthread_once (&once, init_object_mutex);
150 #endif /* __GTHREAD_MUTEX_INIT_FUNCTION */
151 #endif /* __GTHREADS */
153 /* Decode the unsigned LEB128 constant at BUF into the variable pointed to
154 by R, and return the new value of BUF. */
156 static void *
157 decode_uleb128 (unsigned char *buf, unsigned *r)
159 unsigned shift = 0;
160 unsigned result = 0;
162 while (1)
164 unsigned byte = *buf++;
165 result |= (byte & 0x7f) << shift;
166 if ((byte & 0x80) == 0)
167 break;
168 shift += 7;
170 *r = result;
171 return buf;
174 /* Decode the signed LEB128 constant at BUF into the variable pointed to
175 by R, and return the new value of BUF. */
177 static void *
178 decode_sleb128 (unsigned char *buf, int *r)
180 unsigned shift = 0;
181 unsigned result = 0;
182 unsigned byte;
184 while (1)
186 byte = *buf++;
187 result |= (byte & 0x7f) << shift;
188 shift += 7;
189 if ((byte & 0x80) == 0)
190 break;
192 if (shift < (sizeof (*r) * 8) && (byte & 0x40) != 0)
193 result |= - (1 << shift);
195 *r = result;
196 return buf;
199 /* Read unaligned data from the instruction buffer. */
201 union unaligned {
202 void *p;
203 unsigned b2 __attribute__ ((mode (HI)));
204 unsigned b4 __attribute__ ((mode (SI)));
205 unsigned b8 __attribute__ ((mode (DI)));
206 } __attribute__ ((packed));
207 static inline void *
208 read_pointer (void *p)
209 { union unaligned *up = p; return up->p; }
210 static inline unsigned
211 read_1byte (void *p)
212 { return *(unsigned char *)p; }
213 static inline unsigned
214 read_2byte (void *p)
215 { union unaligned *up = p; return up->b2; }
216 static inline unsigned
217 read_4byte (void *p)
218 { union unaligned *up = p; return up->b4; }
219 static inline unsigned long
220 read_8byte (void *p)
221 { union unaligned *up = p; return up->b8; }
223 /* Ordering function for FDEs. Functions can't overlap, so we just compare
224 their starting addresses. */
226 static inline saddr
227 fde_compare (fde *x, fde *y)
229 return (saddr)x->pc_begin - (saddr)y->pc_begin;
232 /* Return the address of the FDE after P. */
234 static inline fde *
235 next_fde (fde *p)
237 return (fde *)(((char *)p) + p->length + sizeof (p->length));
240 /* Sorting an array of FDEs by address.
241 (Ideally we would have the linker sort the FDEs so we don't have to do
242 it at run time. But the linkers are not yet prepared for this.) */
244 /* This is a special mix of insertion sort and heap sort, optimized for
245 the data sets that actually occur. They look like
246 101 102 103 127 128 105 108 110 190 111 115 119 125 160 126 129 130.
247 I.e. a linearly increasing sequence (coming from functions in the text
248 section), with additionally a few unordered elements (coming from functions
249 in gnu_linkonce sections) whose values are higher than the values in the
250 surrounding linear sequence (but not necessarily higher than the values
251 at the end of the linear sequence!).
252 The worst-case total run time is O(N) + O(n log (n)), where N is the
253 total number of FDEs and n is the number of erratic ones. */
255 typedef struct fde_vector
257 fde **array;
258 size_t count;
259 } fde_vector;
261 typedef struct fde_accumulator
263 fde_vector linear;
264 fde_vector erratic;
265 } fde_accumulator;
267 static inline int
268 start_fde_sort (fde_accumulator *accu, size_t count)
270 accu->linear.array = (fde **) malloc (sizeof (fde *) * count);
271 accu->erratic.array = accu->linear.array ?
272 (fde **) malloc (sizeof (fde *) * count) : NULL;
273 accu->linear.count = 0;
274 accu->erratic.count = 0;
276 return accu->linear.array != NULL;
279 static inline void
280 fde_insert (fde_accumulator *accu, fde *this_fde)
282 if (accu->linear.array)
283 accu->linear.array[accu->linear.count++] = this_fde;
286 /* Split LINEAR into a linear sequence with low values and an erratic
287 sequence with high values, put the linear one (of longest possible
288 length) into LINEAR and the erratic one into ERRATIC. This is O(N).
290 Because the longest linear sequence we are trying to locate within the
291 incoming LINEAR array can be interspersed with (high valued) erratic
292 entries. We construct a chain indicating the sequenced entries.
293 To avoid having to allocate this chain, we overlay it onto the space of
294 the ERRATIC array during construction. A final pass iterates over the
295 chain to determine what should be placed in the ERRATIC array, and
296 what is the linear sequence. This overlay is safe from aliasing. */
297 static inline void
298 fde_split (fde_vector *linear, fde_vector *erratic)
300 static fde *marker;
301 size_t count = linear->count;
302 fde **chain_end = &marker;
303 size_t i, j, k;
305 /* This should optimize out, but it is wise to make sure this assumption
306 is correct. Should these have different sizes, we cannot cast between
307 them and the overlaying onto ERRATIC will not work. */
308 if (sizeof (fde *) != sizeof (fde **))
309 abort ();
311 for (i = 0; i < count; i++)
313 fde **probe;
315 for (probe = chain_end;
316 probe != &marker && fde_compare (linear->array[i], *probe) < 0;
317 probe = chain_end)
319 chain_end = (fde **)erratic->array[probe - linear->array];
320 erratic->array[probe - linear->array] = NULL;
322 erratic->array[i] = (fde *)chain_end;
323 chain_end = &linear->array[i];
326 /* Each entry in LINEAR which is part of the linear sequence we have
327 discovered will correspond to a non-NULL entry in the chain we built in
328 the ERRATIC array. */
329 for (i = j = k = 0; i < count; i++)
330 if (erratic->array[i])
331 linear->array[j++] = linear->array[i];
332 else
333 erratic->array[k++] = linear->array[i];
334 linear->count = j;
335 erratic->count = k;
338 /* This is O(n log(n)). BSD/OS defines heapsort in stdlib.h, so we must
339 use a name that does not conflict. */
340 static inline void
341 frame_heapsort (fde_vector *erratic)
343 /* For a description of this algorithm, see:
344 Samuel P. Harbison, Guy L. Steele Jr.: C, a reference manual, 2nd ed.,
345 p. 60-61. */
346 fde ** a = erratic->array;
347 /* A portion of the array is called a "heap" if for all i>=0:
348 If i and 2i+1 are valid indices, then a[i] >= a[2i+1].
349 If i and 2i+2 are valid indices, then a[i] >= a[2i+2]. */
350 #define SWAP(x,y) do { fde * tmp = x; x = y; y = tmp; } while (0)
351 size_t n = erratic->count;
352 size_t m = n;
353 size_t i;
355 while (m > 0)
357 /* Invariant: a[m..n-1] is a heap. */
358 m--;
359 for (i = m; 2*i+1 < n; )
361 if (2*i+2 < n
362 && fde_compare (a[2*i+2], a[2*i+1]) > 0
363 && fde_compare (a[2*i+2], a[i]) > 0)
365 SWAP (a[i], a[2*i+2]);
366 i = 2*i+2;
368 else if (fde_compare (a[2*i+1], a[i]) > 0)
370 SWAP (a[i], a[2*i+1]);
371 i = 2*i+1;
373 else
374 break;
377 while (n > 1)
379 /* Invariant: a[0..n-1] is a heap. */
380 n--;
381 SWAP (a[0], a[n]);
382 for (i = 0; 2*i+1 < n; )
384 if (2*i+2 < n
385 && fde_compare (a[2*i+2], a[2*i+1]) > 0
386 && fde_compare (a[2*i+2], a[i]) > 0)
388 SWAP (a[i], a[2*i+2]);
389 i = 2*i+2;
391 else if (fde_compare (a[2*i+1], a[i]) > 0)
393 SWAP (a[i], a[2*i+1]);
394 i = 2*i+1;
396 else
397 break;
400 #undef SWAP
403 /* Merge V1 and V2, both sorted, and put the result into V1. */
404 static void
405 fde_merge (fde_vector *v1, const fde_vector *v2)
407 size_t i1, i2;
408 fde * fde2;
410 i2 = v2->count;
411 if (i2 > 0)
413 i1 = v1->count;
414 do {
415 i2--;
416 fde2 = v2->array[i2];
417 while (i1 > 0 && fde_compare (v1->array[i1-1], fde2) > 0)
419 v1->array[i1+i2] = v1->array[i1-1];
420 i1--;
422 v1->array[i1+i2] = fde2;
423 } while (i2 > 0);
424 v1->count += v2->count;
428 static fde **
429 end_fde_sort (fde_accumulator *accu, size_t count)
431 if (accu->linear.array && accu->linear.count != count)
432 abort ();
434 if (accu->erratic.array)
436 fde_split (&accu->linear, &accu->erratic);
437 if (accu->linear.count + accu->erratic.count != count)
438 abort ();
439 frame_heapsort (&accu->erratic);
440 fde_merge (&accu->linear, &accu->erratic);
441 if (accu->erratic.array)
442 free (accu->erratic.array);
444 else
446 /* We've not managed to malloc an erratic array, so heap sort in the
447 linear one. */
448 frame_heapsort (&accu->linear);
450 return accu->linear.array;
453 static size_t
454 count_fdes (fde *this_fde)
456 size_t count;
458 for (count = 0; this_fde->length != 0; this_fde = next_fde (this_fde))
460 /* Skip CIEs and linked once FDE entries. */
461 if (this_fde->CIE_delta == 0 || this_fde->pc_begin == 0)
462 continue;
464 ++count;
467 return count;
470 static void
471 add_fdes (fde *this_fde, fde_accumulator *accu, void **beg_ptr, void **end_ptr)
473 void *pc_begin = *beg_ptr;
474 void *pc_end = *end_ptr;
476 for (; this_fde->length != 0; this_fde = next_fde (this_fde))
478 /* Skip CIEs and linked once FDE entries. */
479 if (this_fde->CIE_delta == 0 || this_fde->pc_begin == 0)
480 continue;
482 fde_insert (accu, this_fde);
484 if (this_fde->pc_begin < pc_begin)
485 pc_begin = this_fde->pc_begin;
486 if (this_fde->pc_begin + this_fde->pc_range > pc_end)
487 pc_end = this_fde->pc_begin + this_fde->pc_range;
490 *beg_ptr = pc_begin;
491 *end_ptr = pc_end;
494 /* search this fde table for the one containing the pc */
495 static fde *
496 search_fdes (fde *this_fde, void *pc)
498 for (; this_fde->length != 0; this_fde = next_fde (this_fde))
500 /* Skip CIEs and linked once FDE entries. */
501 if (this_fde->CIE_delta == 0 || this_fde->pc_begin == 0)
502 continue;
504 if ((uaddr)((char *)pc - (char *)this_fde->pc_begin) < this_fde->pc_range)
505 return this_fde;
507 return NULL;
510 /* Set up a sorted array of pointers to FDEs for a loaded object. We
511 count up the entries before allocating the array because it's likely to
512 be faster. We can be called multiple times, should we have failed to
513 allocate a sorted fde array on a previous occasion. */
515 static void
516 frame_init (struct object* ob)
518 size_t count;
519 fde_accumulator accu;
520 void *pc_begin, *pc_end;
521 fde **array;
523 if (ob->pc_begin)
524 count = ob->count;
525 else if (ob->fde_array)
527 fde **p = ob->fde_array;
528 for (count = 0; *p; ++p)
529 count += count_fdes (*p);
531 else
532 count = count_fdes (ob->fde_begin);
533 ob->count = count;
535 if (!start_fde_sort (&accu, count) && ob->pc_begin)
536 return;
538 pc_begin = (void*)(uaddr)-1;
539 pc_end = 0;
541 if (ob->fde_array)
543 fde **p = ob->fde_array;
544 for (; *p; ++p)
545 add_fdes (*p, &accu, &pc_begin, &pc_end);
547 else
548 add_fdes (ob->fde_begin, &accu, &pc_begin, &pc_end);
550 array = end_fde_sort (&accu, count);
551 if (array)
552 ob->fde_array = array;
553 ob->pc_begin = pc_begin;
554 ob->pc_end = pc_end;
557 /* Return a pointer to the FDE for the function containing PC. */
559 static fde *
560 find_fde (void *pc)
562 struct object *ob;
563 size_t lo, hi;
565 init_object_mutex_once ();
566 __gthread_mutex_lock (&object_mutex);
568 /* Linear search through the objects, to find the one containing the pc. */
569 for (ob = objects; ob; ob = ob->next)
571 if (ob->pc_begin == 0)
572 frame_init (ob);
573 if (pc >= ob->pc_begin && pc < ob->pc_end)
574 break;
577 if (ob == 0)
579 __gthread_mutex_unlock (&object_mutex);
580 return 0;
583 if (!ob->fde_array || (void *)ob->fde_array == (void *)ob->fde_begin)
584 frame_init (ob);
586 if (ob->fde_array && (void *)ob->fde_array != (void *)ob->fde_begin)
588 __gthread_mutex_unlock (&object_mutex);
590 /* Standard binary search algorithm. */
591 for (lo = 0, hi = ob->count; lo < hi; )
593 size_t i = (lo + hi) / 2;
594 fde *f = ob->fde_array[i];
596 if (pc < f->pc_begin)
597 hi = i;
598 else if (pc >= f->pc_begin + f->pc_range)
599 lo = i + 1;
600 else
601 return f;
604 else
606 /* Long slow labourious linear search, cos we've no memory. */
607 fde *f;
609 if (ob->fde_array)
611 fde **p = ob->fde_array;
615 f = search_fdes (*p, pc);
616 if (f)
617 break;
618 p++;
620 while (*p);
622 else
623 f = search_fdes (ob->fde_begin, pc);
624 __gthread_mutex_unlock (&object_mutex);
625 return f;
627 return 0;
630 static inline struct dwarf_cie *
631 get_cie (fde *f)
633 return ((void *)&f->CIE_delta) - f->CIE_delta;
636 /* Extract any interesting information from the CIE for the translation
637 unit F belongs to. */
639 static void *
640 extract_cie_info (fde *f, struct cie_info *c)
642 void *p;
643 int i;
645 c->augmentation = get_cie (f)->augmentation;
647 if (strcmp (c->augmentation, "") != 0
648 && strcmp (c->augmentation, "eh") != 0
649 && c->augmentation[0] != 'z')
650 return 0;
652 p = c->augmentation + strlen (c->augmentation) + 1;
654 if (strcmp (c->augmentation, "eh") == 0)
656 c->eh_ptr = read_pointer (p);
657 p += sizeof (void *);
659 else
660 c->eh_ptr = 0;
662 p = decode_uleb128 (p, &c->code_align);
663 p = decode_sleb128 (p, &c->data_align);
664 c->ra_regno = *(unsigned char *)p++;
666 /* If the augmentation starts with 'z', we now see the length of the
667 augmentation fields. */
668 if (c->augmentation[0] == 'z')
670 p = decode_uleb128 (p, &i);
671 p += i;
674 return p;
677 /* Decode one instruction's worth of DWARF 2 call frame information.
678 Used by __frame_state_for. Takes pointers P to the instruction to
679 decode, STATE to the current register unwind information, INFO to the
680 current CIE information, and PC to the current PC value. Returns a
681 pointer to the next instruction. */
683 static void *
684 execute_cfa_insn (void *p, struct frame_state_internal *state,
685 struct cie_info *info, void **pc)
687 unsigned insn = *(unsigned char *)p++;
688 unsigned reg;
689 int offset;
691 if (insn & DW_CFA_advance_loc)
692 *pc += ((insn & 0x3f) * info->code_align);
693 else if (insn & DW_CFA_offset)
695 reg = (insn & 0x3f);
696 p = decode_uleb128 (p, &offset);
697 if (reg == state->s.cfa_reg)
698 /* Don't record anything about this register; it's only used to
699 reload SP in the epilogue. We don't want to copy in SP
700 values for outer frames; we handle restoring SP specially. */;
701 else
703 offset *= info->data_align;
704 state->s.saved[reg] = REG_SAVED_OFFSET;
705 state->s.reg_or_offset[reg] = offset;
708 else if (insn & DW_CFA_restore)
710 reg = (insn & 0x3f);
711 state->s.saved[reg] = REG_UNSAVED;
713 else switch (insn)
715 case DW_CFA_set_loc:
716 *pc = read_pointer (p);
717 p += sizeof (void *);
718 break;
719 case DW_CFA_advance_loc1:
720 *pc += read_1byte (p);
721 p += 1;
722 break;
723 case DW_CFA_advance_loc2:
724 *pc += read_2byte (p);
725 p += 2;
726 break;
727 case DW_CFA_advance_loc4:
728 *pc += read_4byte (p);
729 p += 4;
730 break;
732 case DW_CFA_offset_extended:
733 p = decode_uleb128 (p, &reg);
734 p = decode_uleb128 (p, &offset);
735 if (reg == state->s.cfa_reg)
736 /* Don't record anything; see above. */;
737 else
739 offset *= info->data_align;
740 state->s.saved[reg] = REG_SAVED_OFFSET;
741 state->s.reg_or_offset[reg] = offset;
743 break;
744 case DW_CFA_restore_extended:
745 p = decode_uleb128 (p, &reg);
746 state->s.saved[reg] = REG_UNSAVED;
747 break;
749 case DW_CFA_undefined:
750 case DW_CFA_same_value:
751 case DW_CFA_nop:
752 break;
754 case DW_CFA_register:
756 unsigned reg2;
757 p = decode_uleb128 (p, &reg);
758 p = decode_uleb128 (p, &reg2);
759 state->s.saved[reg] = REG_SAVED_REG;
760 state->s.reg_or_offset[reg] = reg2;
762 break;
764 case DW_CFA_def_cfa:
765 p = decode_uleb128 (p, &reg);
766 p = decode_uleb128 (p, &offset);
767 state->s.cfa_reg = reg;
768 state->s.cfa_offset = offset;
769 break;
770 case DW_CFA_def_cfa_register:
771 p = decode_uleb128 (p, &reg);
772 state->s.cfa_reg = reg;
773 break;
774 case DW_CFA_def_cfa_offset:
775 p = decode_uleb128 (p, &offset);
776 state->s.cfa_offset = offset;
777 break;
779 case DW_CFA_remember_state:
781 struct frame_state_internal *save =
782 (struct frame_state_internal *)
783 malloc (sizeof (struct frame_state_internal));
784 memcpy (save, state, sizeof (struct frame_state_internal));
785 state->saved_state = save;
787 break;
788 case DW_CFA_restore_state:
790 struct frame_state_internal *save = state->saved_state;
791 memcpy (state, save, sizeof (struct frame_state_internal));
792 free (save);
794 break;
796 /* FIXME: Hardcoded for SPARC register window configuration. */
797 case DW_CFA_GNU_window_save:
798 for (reg = 16; reg < 32; ++reg)
800 state->s.saved[reg] = REG_SAVED_OFFSET;
801 state->s.reg_or_offset[reg] = (reg - 16) * sizeof (void *);
803 break;
805 case DW_CFA_GNU_args_size:
806 p = decode_uleb128 (p, &offset);
807 state->s.args_size = offset;
808 break;
810 case DW_CFA_GNU_negative_offset_extended:
811 p = decode_uleb128 (p, &reg);
812 p = decode_uleb128 (p, &offset);
813 offset *= info->data_align;
814 state->s.saved[reg] = REG_SAVED_OFFSET;
815 state->s.reg_or_offset[reg] = -offset;
816 break;
818 default:
819 abort ();
821 return p;
824 /* Called from crtbegin.o to register the unwind info for an object. */
826 void
827 __register_frame_info (void *begin, struct object *ob)
829 ob->fde_begin = begin;
831 ob->pc_begin = ob->pc_end = 0;
832 ob->fde_array = 0;
833 ob->count = 0;
835 init_object_mutex_once ();
836 __gthread_mutex_lock (&object_mutex);
838 ob->next = objects;
839 objects = ob;
841 __gthread_mutex_unlock (&object_mutex);
844 void
845 __register_frame (void *begin)
847 struct object *ob = (struct object *) malloc (sizeof (struct object));
848 __register_frame_info (begin, ob);
851 /* Similar, but BEGIN is actually a pointer to a table of unwind entries
852 for different translation units. Called from the file generated by
853 collect2. */
855 void
856 __register_frame_info_table (void *begin, struct object *ob)
858 ob->fde_begin = begin;
859 ob->fde_array = begin;
861 ob->pc_begin = ob->pc_end = 0;
862 ob->count = 0;
864 init_object_mutex_once ();
865 __gthread_mutex_lock (&object_mutex);
867 ob->next = objects;
868 objects = ob;
870 __gthread_mutex_unlock (&object_mutex);
873 void
874 __register_frame_table (void *begin)
876 struct object *ob = (struct object *) malloc (sizeof (struct object));
877 __register_frame_info_table (begin, ob);
880 /* Called from crtbegin.o to deregister the unwind info for an object. */
882 void *
883 __deregister_frame_info (void *begin)
885 struct object **p;
887 init_object_mutex_once ();
888 __gthread_mutex_lock (&object_mutex);
890 p = &objects;
891 while (*p)
893 if ((*p)->fde_begin == begin)
895 struct object *ob = *p;
896 *p = (*p)->next;
898 /* If we've run init_frame for this object, free the FDE array. */
899 if (ob->fde_array && ob->fde_array != begin)
900 free (ob->fde_array);
902 __gthread_mutex_unlock (&object_mutex);
903 return (void *) ob;
905 p = &((*p)->next);
908 __gthread_mutex_unlock (&object_mutex);
909 abort ();
912 void
913 __deregister_frame (void *begin)
915 free (__deregister_frame_info (begin));
918 /* Called from __throw to find the registers to restore for a given
919 PC_TARGET. The caller should allocate a local variable of `struct
920 frame_state' (declared in frame.h) and pass its address to STATE_IN. */
922 struct frame_state *
923 __frame_state_for (void *pc_target, struct frame_state *state_in)
925 fde *f;
926 void *insn, *end, *pc;
927 struct cie_info info;
928 struct frame_state_internal state;
930 f = find_fde (pc_target);
931 if (f == 0)
932 return 0;
934 insn = extract_cie_info (f, &info);
935 if (insn == 0)
936 return 0;
938 memset (&state, 0, sizeof (state));
939 state.s.retaddr_column = info.ra_regno;
940 state.s.eh_ptr = info.eh_ptr;
942 /* First decode all the insns in the CIE. */
943 end = next_fde ((fde*) get_cie (f));
944 while (insn < end)
945 insn = execute_cfa_insn (insn, &state, &info, 0);
947 insn = ((fde *)f) + 1;
949 if (info.augmentation[0] == 'z')
951 int i;
952 insn = decode_uleb128 (insn, &i);
953 insn += i;
956 /* Then the insns in the FDE up to our target PC. */
957 end = next_fde (f);
958 pc = f->pc_begin;
959 while (insn < end && pc <= pc_target)
960 insn = execute_cfa_insn (insn, &state, &info, &pc);
962 memcpy (state_in, &state.s, sizeof (state.s));
963 return state_in;
965 #endif /* DWARF2_UNWIND_INFO */