1 /* Subroutines needed for unwinding stack frames for exception handling. */
2 /* Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008,
3 2009, 2010, 2011 Free Software Foundation, Inc.
4 Contributed by Jason Merrill <jason@cygnus.com>.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 Under Section 7 of GPL version 3, you are granted additional
19 permissions described in the GCC Runtime Library Exception, version
20 3.1, as published by the Free Software Foundation.
22 You should have received a copy of the GNU General Public License and
23 a copy of the GCC Runtime Library Exception along with this program;
24 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 <http://www.gnu.org/licenses/>. */
27 #ifndef _Unwind_Find_FDE
30 #include "coretypes.h"
32 #include "libgcc_tm.h"
35 #define NO_BASE_OF_ENCODED_VALUE
36 #include "unwind-pe.h"
37 #include "unwind-dw2-fde.h"
41 /* The unseen_objects list contains objects that have been registered
42 but not yet categorized in any way. The seen_objects list has had
43 its pc_begin and count fields initialized at minimum, and is sorted
44 by decreasing value of pc_begin. */
45 static struct object
*unseen_objects
;
46 static struct object
*seen_objects
;
48 #ifdef __GTHREAD_MUTEX_INIT
49 static __gthread_mutex_t object_mutex
= __GTHREAD_MUTEX_INIT
;
50 #define init_object_mutex_once()
52 #ifdef __GTHREAD_MUTEX_INIT_FUNCTION
53 static __gthread_mutex_t object_mutex
;
56 init_object_mutex (void)
58 __GTHREAD_MUTEX_INIT_FUNCTION (&object_mutex
);
62 init_object_mutex_once (void)
64 static __gthread_once_t once
= __GTHREAD_ONCE_INIT
;
65 __gthread_once (&once
, init_object_mutex
);
68 /* ??? Several targets include this file with stubbing parts of gthr.h
69 and expect no locking to be done. */
70 #define init_object_mutex_once()
71 static __gthread_mutex_t object_mutex
;
75 /* Called from crtbegin.o to register the unwind info for an object. */
78 __register_frame_info_bases (const void *begin
, struct object
*ob
,
79 void *tbase
, void *dbase
)
81 /* If .eh_frame is empty, don't register at all. */
82 if ((const uword
*) begin
== 0 || *(const uword
*) begin
== 0)
85 ob
->pc_begin
= (void *)-1;
90 ob
->s
.b
.encoding
= DW_EH_PE_omit
;
91 #ifdef DWARF2_OBJECT_END_PTR_EXTENSION
95 init_object_mutex_once ();
96 __gthread_mutex_lock (&object_mutex
);
98 ob
->next
= unseen_objects
;
101 __gthread_mutex_unlock (&object_mutex
);
105 __register_frame_info (const void *begin
, struct object
*ob
)
107 __register_frame_info_bases (begin
, ob
, 0, 0);
111 __register_frame (void *begin
)
115 /* If .eh_frame is empty, don't register at all. */
116 if (*(uword
*) begin
== 0)
119 ob
= malloc (sizeof (struct object
));
120 __register_frame_info (begin
, ob
);
123 /* Similar, but BEGIN is actually a pointer to a table of unwind entries
124 for different translation units. Called from the file generated by
128 __register_frame_info_table_bases (void *begin
, struct object
*ob
,
129 void *tbase
, void *dbase
)
131 ob
->pc_begin
= (void *)-1;
136 ob
->s
.b
.from_array
= 1;
137 ob
->s
.b
.encoding
= DW_EH_PE_omit
;
139 init_object_mutex_once ();
140 __gthread_mutex_lock (&object_mutex
);
142 ob
->next
= unseen_objects
;
145 __gthread_mutex_unlock (&object_mutex
);
149 __register_frame_info_table (void *begin
, struct object
*ob
)
151 __register_frame_info_table_bases (begin
, ob
, 0, 0);
155 __register_frame_table (void *begin
)
157 struct object
*ob
= malloc (sizeof (struct object
));
158 __register_frame_info_table (begin
, ob
);
161 /* Called from crtbegin.o to deregister the unwind info for an object. */
162 /* ??? Glibc has for a while now exported __register_frame_info and
163 __deregister_frame_info. If we call __register_frame_info_bases
164 from crtbegin (wherein it is declared weak), and this object does
165 not get pulled from libgcc.a for other reasons, then the
166 invocation of __deregister_frame_info will be resolved from glibc.
167 Since the registration did not happen there, we'll die.
169 Therefore, declare a new deregistration entry point that does the
170 exact same thing, but will resolve to the same library as
171 implements __register_frame_info_bases. */
174 __deregister_frame_info_bases (const void *begin
)
177 struct object
*ob
= 0;
179 /* If .eh_frame is empty, we haven't registered. */
180 if ((const uword
*) begin
== 0 || *(const uword
*) begin
== 0)
183 init_object_mutex_once ();
184 __gthread_mutex_lock (&object_mutex
);
186 for (p
= &unseen_objects
; *p
; p
= &(*p
)->next
)
187 if ((*p
)->u
.single
== begin
)
194 for (p
= &seen_objects
; *p
; p
= &(*p
)->next
)
195 if ((*p
)->s
.b
.sorted
)
197 if ((*p
)->u
.sort
->orig_data
== begin
)
207 if ((*p
)->u
.single
== begin
)
216 __gthread_mutex_unlock (&object_mutex
);
222 __deregister_frame_info (const void *begin
)
224 return __deregister_frame_info_bases (begin
);
228 __deregister_frame (void *begin
)
230 /* If .eh_frame is empty, we haven't registered. */
231 if (*(uword
*) begin
!= 0)
232 free (__deregister_frame_info (begin
));
236 /* Like base_of_encoded_value, but take the base from a struct object
237 instead of an _Unwind_Context. */
240 base_from_object (unsigned char encoding
, struct object
*ob
)
242 if (encoding
== DW_EH_PE_omit
)
245 switch (encoding
& 0x70)
247 case DW_EH_PE_absptr
:
249 case DW_EH_PE_aligned
:
252 case DW_EH_PE_textrel
:
253 return (_Unwind_Ptr
) ob
->tbase
;
254 case DW_EH_PE_datarel
:
255 return (_Unwind_Ptr
) ob
->dbase
;
261 /* Return the FDE pointer encoding from the CIE. */
262 /* ??? This is a subset of extract_cie_info from unwind-dw2.c. */
265 get_cie_encoding (const struct dwarf_cie
*cie
)
267 const unsigned char *aug
, *p
;
272 aug
= cie
->augmentation
;
273 p
= aug
+ strlen ((const char *)aug
) + 1; /* Skip the augmentation string. */
274 if (__builtin_expect (cie
->version
>= 4, 0))
276 if (p
[0] != sizeof (void *) || p
[1] != 0)
277 return DW_EH_PE_omit
; /* We are not prepared to handle unexpected
278 address sizes or segment selectors. */
279 p
+= 2; /* Skip address size and segment size. */
283 return DW_EH_PE_absptr
;
285 p
= read_uleb128 (p
, &utmp
); /* Skip code alignment. */
286 p
= read_sleb128 (p
, &stmp
); /* Skip data alignment. */
287 if (cie
->version
== 1) /* Skip return address column. */
290 p
= read_uleb128 (p
, &utmp
);
292 aug
++; /* Skip 'z' */
293 p
= read_uleb128 (p
, &utmp
); /* Skip augmentation length. */
296 /* This is what we're looking for. */
299 /* Personality encoding and pointer. */
300 else if (*aug
== 'P')
302 /* ??? Avoid dereferencing indirect pointers, since we're
303 faking the base address. Gotta keep DW_EH_PE_aligned
305 p
= read_encoded_value_with_base (*p
& 0x7F, 0, p
+ 1, &dummy
);
308 else if (*aug
== 'L')
310 /* Otherwise end of string, or unknown augmentation. */
312 return DW_EH_PE_absptr
;
318 get_fde_encoding (const struct dwarf_fde
*f
)
320 return get_cie_encoding (get_cie (f
));
324 /* Sorting an array of FDEs by address.
325 (Ideally we would have the linker sort the FDEs so we don't have to do
326 it at run time. But the linkers are not yet prepared for this.) */
328 /* Comparison routines. Three variants of increasing complexity. */
331 fde_unencoded_compare (struct object
*ob
__attribute__((unused
)),
332 const fde
*x
, const fde
*y
)
334 _Unwind_Ptr x_ptr
, y_ptr
;
335 memcpy (&x_ptr
, x
->pc_begin
, sizeof (_Unwind_Ptr
));
336 memcpy (&y_ptr
, y
->pc_begin
, sizeof (_Unwind_Ptr
));
346 fde_single_encoding_compare (struct object
*ob
, const fde
*x
, const fde
*y
)
348 _Unwind_Ptr base
, x_ptr
, y_ptr
;
350 base
= base_from_object (ob
->s
.b
.encoding
, ob
);
351 read_encoded_value_with_base (ob
->s
.b
.encoding
, base
, x
->pc_begin
, &x_ptr
);
352 read_encoded_value_with_base (ob
->s
.b
.encoding
, base
, y
->pc_begin
, &y_ptr
);
362 fde_mixed_encoding_compare (struct object
*ob
, const fde
*x
, const fde
*y
)
364 int x_encoding
, y_encoding
;
365 _Unwind_Ptr x_ptr
, y_ptr
;
367 x_encoding
= get_fde_encoding (x
);
368 read_encoded_value_with_base (x_encoding
, base_from_object (x_encoding
, ob
),
369 x
->pc_begin
, &x_ptr
);
371 y_encoding
= get_fde_encoding (y
);
372 read_encoded_value_with_base (y_encoding
, base_from_object (y_encoding
, ob
),
373 y
->pc_begin
, &y_ptr
);
382 typedef int (*fde_compare_t
) (struct object
*, const fde
*, const fde
*);
385 /* This is a special mix of insertion sort and heap sort, optimized for
386 the data sets that actually occur. They look like
387 101 102 103 127 128 105 108 110 190 111 115 119 125 160 126 129 130.
388 I.e. a linearly increasing sequence (coming from functions in the text
389 section), with additionally a few unordered elements (coming from functions
390 in gnu_linkonce sections) whose values are higher than the values in the
391 surrounding linear sequence (but not necessarily higher than the values
392 at the end of the linear sequence!).
393 The worst-case total run time is O(N) + O(n log (n)), where N is the
394 total number of FDEs and n is the number of erratic ones. */
396 struct fde_accumulator
398 struct fde_vector
*linear
;
399 struct fde_vector
*erratic
;
403 start_fde_sort (struct fde_accumulator
*accu
, size_t count
)
409 size
= sizeof (struct fde_vector
) + sizeof (const fde
*) * count
;
410 if ((accu
->linear
= malloc (size
)))
412 accu
->linear
->count
= 0;
413 if ((accu
->erratic
= malloc (size
)))
414 accu
->erratic
->count
= 0;
422 fde_insert (struct fde_accumulator
*accu
, const fde
*this_fde
)
425 accu
->linear
->array
[accu
->linear
->count
++] = this_fde
;
428 /* Split LINEAR into a linear sequence with low values and an erratic
429 sequence with high values, put the linear one (of longest possible
430 length) into LINEAR and the erratic one into ERRATIC. This is O(N).
432 Because the longest linear sequence we are trying to locate within the
433 incoming LINEAR array can be interspersed with (high valued) erratic
434 entries. We construct a chain indicating the sequenced entries.
435 To avoid having to allocate this chain, we overlay it onto the space of
436 the ERRATIC array during construction. A final pass iterates over the
437 chain to determine what should be placed in the ERRATIC array, and
438 what is the linear sequence. This overlay is safe from aliasing. */
441 fde_split (struct object
*ob
, fde_compare_t fde_compare
,
442 struct fde_vector
*linear
, struct fde_vector
*erratic
)
444 static const fde
*marker
;
445 size_t count
= linear
->count
;
446 const fde
*const *chain_end
= &marker
;
449 /* This should optimize out, but it is wise to make sure this assumption
450 is correct. Should these have different sizes, we cannot cast between
451 them and the overlaying onto ERRATIC will not work. */
452 gcc_assert (sizeof (const fde
*) == sizeof (const fde
**));
454 for (i
= 0; i
< count
; i
++)
456 const fde
*const *probe
;
458 for (probe
= chain_end
;
459 probe
!= &marker
&& fde_compare (ob
, linear
->array
[i
], *probe
) < 0;
462 chain_end
= (const fde
*const*) erratic
->array
[probe
- linear
->array
];
463 erratic
->array
[probe
- linear
->array
] = NULL
;
465 erratic
->array
[i
] = (const fde
*) chain_end
;
466 chain_end
= &linear
->array
[i
];
469 /* Each entry in LINEAR which is part of the linear sequence we have
470 discovered will correspond to a non-NULL entry in the chain we built in
471 the ERRATIC array. */
472 for (i
= j
= k
= 0; i
< count
; i
++)
473 if (erratic
->array
[i
])
474 linear
->array
[j
++] = linear
->array
[i
];
476 erratic
->array
[k
++] = linear
->array
[i
];
481 #define SWAP(x,y) do { const fde * tmp = x; x = y; y = tmp; } while (0)
483 /* Convert a semi-heap to a heap. A semi-heap is a heap except possibly
484 for the first (root) node; push it down to its rightful place. */
487 frame_downheap (struct object
*ob
, fde_compare_t fde_compare
, const fde
**a
,
492 for (i
= lo
, j
= 2*i
+1;
496 if (j
+1 < hi
&& fde_compare (ob
, a
[j
], a
[j
+1]) < 0)
499 if (fde_compare (ob
, a
[i
], a
[j
]) < 0)
509 /* This is O(n log(n)). BSD/OS defines heapsort in stdlib.h, so we must
510 use a name that does not conflict. */
513 frame_heapsort (struct object
*ob
, fde_compare_t fde_compare
,
514 struct fde_vector
*erratic
)
516 /* For a description of this algorithm, see:
517 Samuel P. Harbison, Guy L. Steele Jr.: C, a reference manual, 2nd ed.,
519 const fde
** a
= erratic
->array
;
520 /* A portion of the array is called a "heap" if for all i>=0:
521 If i and 2i+1 are valid indices, then a[i] >= a[2i+1].
522 If i and 2i+2 are valid indices, then a[i] >= a[2i+2]. */
523 size_t n
= erratic
->count
;
526 /* Expand our heap incrementally from the end of the array, heapifying
527 each resulting semi-heap as we go. After each step, a[m] is the top
529 for (m
= n
/2-1; m
>= 0; --m
)
530 frame_downheap (ob
, fde_compare
, a
, m
, n
);
532 /* Shrink our heap incrementally from the end of the array, first
533 swapping out the largest element a[0] and then re-heapifying the
534 resulting semi-heap. After each step, a[0..m) is a heap. */
535 for (m
= n
-1; m
>= 1; --m
)
538 frame_downheap (ob
, fde_compare
, a
, 0, m
);
543 /* Merge V1 and V2, both sorted, and put the result into V1. */
545 fde_merge (struct object
*ob
, fde_compare_t fde_compare
,
546 struct fde_vector
*v1
, struct fde_vector
*v2
)
558 fde2
= v2
->array
[i2
];
559 while (i1
> 0 && fde_compare (ob
, v1
->array
[i1
-1], fde2
) > 0)
561 v1
->array
[i1
+i2
] = v1
->array
[i1
-1];
564 v1
->array
[i1
+i2
] = fde2
;
567 v1
->count
+= v2
->count
;
572 end_fde_sort (struct object
*ob
, struct fde_accumulator
*accu
, size_t count
)
574 fde_compare_t fde_compare
;
576 gcc_assert (!accu
->linear
|| accu
->linear
->count
== count
);
578 if (ob
->s
.b
.mixed_encoding
)
579 fde_compare
= fde_mixed_encoding_compare
;
580 else if (ob
->s
.b
.encoding
== DW_EH_PE_absptr
)
581 fde_compare
= fde_unencoded_compare
;
583 fde_compare
= fde_single_encoding_compare
;
587 fde_split (ob
, fde_compare
, accu
->linear
, accu
->erratic
);
588 gcc_assert (accu
->linear
->count
+ accu
->erratic
->count
== count
);
589 frame_heapsort (ob
, fde_compare
, accu
->erratic
);
590 fde_merge (ob
, fde_compare
, accu
->linear
, accu
->erratic
);
591 free (accu
->erratic
);
595 /* We've not managed to malloc an erratic array,
596 so heap sort in the linear one. */
597 frame_heapsort (ob
, fde_compare
, accu
->linear
);
602 /* Update encoding, mixed_encoding, and pc_begin for OB for the
603 fde array beginning at THIS_FDE. Return the number of fdes
604 encountered along the way. */
607 classify_object_over_fdes (struct object
*ob
, const fde
*this_fde
)
609 const struct dwarf_cie
*last_cie
= 0;
611 int encoding
= DW_EH_PE_absptr
;
612 _Unwind_Ptr base
= 0;
614 for (; ! last_fde (ob
, this_fde
); this_fde
= next_fde (this_fde
))
616 const struct dwarf_cie
*this_cie
;
617 _Unwind_Ptr mask
, pc_begin
;
620 if (this_fde
->CIE_delta
== 0)
623 /* Determine the encoding for this FDE. Note mixed encoded
624 objects for later. */
625 this_cie
= get_cie (this_fde
);
626 if (this_cie
!= last_cie
)
629 encoding
= get_cie_encoding (this_cie
);
630 if (encoding
== DW_EH_PE_omit
)
632 base
= base_from_object (encoding
, ob
);
633 if (ob
->s
.b
.encoding
== DW_EH_PE_omit
)
634 ob
->s
.b
.encoding
= encoding
;
635 else if (ob
->s
.b
.encoding
!= encoding
)
636 ob
->s
.b
.mixed_encoding
= 1;
639 read_encoded_value_with_base (encoding
, base
, this_fde
->pc_begin
,
642 /* Take care to ignore link-once functions that were removed.
643 In these cases, the function address will be NULL, but if
644 the encoding is smaller than a pointer a true NULL may not
645 be representable. Assume 0 in the representable bits is NULL. */
646 mask
= size_of_encoded_value (encoding
);
647 if (mask
< sizeof (void *))
648 mask
= (((_Unwind_Ptr
) 1) << (mask
<< 3)) - 1;
652 if ((pc_begin
& mask
) == 0)
656 if ((void *) pc_begin
< ob
->pc_begin
)
657 ob
->pc_begin
= (void *) pc_begin
;
664 add_fdes (struct object
*ob
, struct fde_accumulator
*accu
, const fde
*this_fde
)
666 const struct dwarf_cie
*last_cie
= 0;
667 int encoding
= ob
->s
.b
.encoding
;
668 _Unwind_Ptr base
= base_from_object (ob
->s
.b
.encoding
, ob
);
670 for (; ! last_fde (ob
, this_fde
); this_fde
= next_fde (this_fde
))
672 const struct dwarf_cie
*this_cie
;
675 if (this_fde
->CIE_delta
== 0)
678 if (ob
->s
.b
.mixed_encoding
)
680 /* Determine the encoding for this FDE. Note mixed encoded
681 objects for later. */
682 this_cie
= get_cie (this_fde
);
683 if (this_cie
!= last_cie
)
686 encoding
= get_cie_encoding (this_cie
);
687 base
= base_from_object (encoding
, ob
);
691 if (encoding
== DW_EH_PE_absptr
)
694 memcpy (&ptr
, this_fde
->pc_begin
, sizeof (_Unwind_Ptr
));
700 _Unwind_Ptr pc_begin
, mask
;
702 read_encoded_value_with_base (encoding
, base
, this_fde
->pc_begin
,
705 /* Take care to ignore link-once functions that were removed.
706 In these cases, the function address will be NULL, but if
707 the encoding is smaller than a pointer a true NULL may not
708 be representable. Assume 0 in the representable bits is NULL. */
709 mask
= size_of_encoded_value (encoding
);
710 if (mask
< sizeof (void *))
711 mask
= (((_Unwind_Ptr
) 1) << (mask
<< 3)) - 1;
715 if ((pc_begin
& mask
) == 0)
719 fde_insert (accu
, this_fde
);
723 /* Set up a sorted array of pointers to FDEs for a loaded object. We
724 count up the entries before allocating the array because it's likely to
725 be faster. We can be called multiple times, should we have failed to
726 allocate a sorted fde array on a previous occasion. */
729 init_object (struct object
* ob
)
731 struct fde_accumulator accu
;
734 count
= ob
->s
.b
.count
;
737 if (ob
->s
.b
.from_array
)
739 fde
**p
= ob
->u
.array
;
740 for (count
= 0; *p
; ++p
)
742 size_t cur_count
= classify_object_over_fdes (ob
, *p
);
743 if (cur_count
== (size_t) -1)
750 count
= classify_object_over_fdes (ob
, ob
->u
.single
);
751 if (count
== (size_t) -1)
753 static const fde terminator
;
756 ob
->s
.b
.encoding
= DW_EH_PE_omit
;
757 ob
->u
.single
= &terminator
;
762 /* The count field we have in the main struct object is somewhat
763 limited, but should suffice for virtually all cases. If the
764 counted value doesn't fit, re-write a zero. The worst that
765 happens is that we re-count next time -- admittedly non-trivial
766 in that this implies some 2M fdes, but at least we function. */
767 ob
->s
.b
.count
= count
;
768 if (ob
->s
.b
.count
!= count
)
772 if (!start_fde_sort (&accu
, count
))
775 if (ob
->s
.b
.from_array
)
778 for (p
= ob
->u
.array
; *p
; ++p
)
779 add_fdes (ob
, &accu
, *p
);
782 add_fdes (ob
, &accu
, ob
->u
.single
);
784 end_fde_sort (ob
, &accu
, count
);
786 /* Save the original fde pointer, since this is the key by which the
787 DSO will deregister the object. */
788 accu
.linear
->orig_data
= ob
->u
.single
;
789 ob
->u
.sort
= accu
.linear
;
794 /* A linear search through a set of FDEs for the given PC. This is
795 used when there was insufficient memory to allocate and sort an
799 linear_search_fdes (struct object
*ob
, const fde
*this_fde
, void *pc
)
801 const struct dwarf_cie
*last_cie
= 0;
802 int encoding
= ob
->s
.b
.encoding
;
803 _Unwind_Ptr base
= base_from_object (ob
->s
.b
.encoding
, ob
);
805 for (; ! last_fde (ob
, this_fde
); this_fde
= next_fde (this_fde
))
807 const struct dwarf_cie
*this_cie
;
808 _Unwind_Ptr pc_begin
, pc_range
;
811 if (this_fde
->CIE_delta
== 0)
814 if (ob
->s
.b
.mixed_encoding
)
816 /* Determine the encoding for this FDE. Note mixed encoded
817 objects for later. */
818 this_cie
= get_cie (this_fde
);
819 if (this_cie
!= last_cie
)
822 encoding
= get_cie_encoding (this_cie
);
823 base
= base_from_object (encoding
, ob
);
827 if (encoding
== DW_EH_PE_absptr
)
829 const _Unwind_Ptr
*pc_array
= (const _Unwind_Ptr
*) this_fde
->pc_begin
;
830 pc_begin
= pc_array
[0];
831 pc_range
= pc_array
[1];
838 const unsigned char *p
;
840 p
= read_encoded_value_with_base (encoding
, base
,
841 this_fde
->pc_begin
, &pc_begin
);
842 read_encoded_value_with_base (encoding
& 0x0F, 0, p
, &pc_range
);
844 /* Take care to ignore link-once functions that were removed.
845 In these cases, the function address will be NULL, but if
846 the encoding is smaller than a pointer a true NULL may not
847 be representable. Assume 0 in the representable bits is NULL. */
848 mask
= size_of_encoded_value (encoding
);
849 if (mask
< sizeof (void *))
850 mask
= (((_Unwind_Ptr
) 1) << (mask
<< 3)) - 1;
854 if ((pc_begin
& mask
) == 0)
858 if ((_Unwind_Ptr
) pc
- pc_begin
< pc_range
)
865 /* Binary search for an FDE containing the given PC. Here are three
866 implementations of increasing complexity. */
868 static inline const fde
*
869 binary_search_unencoded_fdes (struct object
*ob
, void *pc
)
871 struct fde_vector
*vec
= ob
->u
.sort
;
874 for (lo
= 0, hi
= vec
->count
; lo
< hi
; )
876 size_t i
= (lo
+ hi
) / 2;
877 const fde
*const f
= vec
->array
[i
];
880 memcpy (&pc_begin
, (const void * const *) f
->pc_begin
, sizeof (void *));
881 memcpy (&pc_range
, (const uaddr
*) f
->pc_begin
+ 1, sizeof (uaddr
));
885 else if (pc
>= pc_begin
+ pc_range
)
894 static inline const fde
*
895 binary_search_single_encoding_fdes (struct object
*ob
, void *pc
)
897 struct fde_vector
*vec
= ob
->u
.sort
;
898 int encoding
= ob
->s
.b
.encoding
;
899 _Unwind_Ptr base
= base_from_object (encoding
, ob
);
902 for (lo
= 0, hi
= vec
->count
; lo
< hi
; )
904 size_t i
= (lo
+ hi
) / 2;
905 const fde
*f
= vec
->array
[i
];
906 _Unwind_Ptr pc_begin
, pc_range
;
907 const unsigned char *p
;
909 p
= read_encoded_value_with_base (encoding
, base
, f
->pc_begin
,
911 read_encoded_value_with_base (encoding
& 0x0F, 0, p
, &pc_range
);
913 if ((_Unwind_Ptr
) pc
< pc_begin
)
915 else if ((_Unwind_Ptr
) pc
>= pc_begin
+ pc_range
)
924 static inline const fde
*
925 binary_search_mixed_encoding_fdes (struct object
*ob
, void *pc
)
927 struct fde_vector
*vec
= ob
->u
.sort
;
930 for (lo
= 0, hi
= vec
->count
; lo
< hi
; )
932 size_t i
= (lo
+ hi
) / 2;
933 const fde
*f
= vec
->array
[i
];
934 _Unwind_Ptr pc_begin
, pc_range
;
935 const unsigned char *p
;
938 encoding
= get_fde_encoding (f
);
939 p
= read_encoded_value_with_base (encoding
,
940 base_from_object (encoding
, ob
),
941 f
->pc_begin
, &pc_begin
);
942 read_encoded_value_with_base (encoding
& 0x0F, 0, p
, &pc_range
);
944 if ((_Unwind_Ptr
) pc
< pc_begin
)
946 else if ((_Unwind_Ptr
) pc
>= pc_begin
+ pc_range
)
956 search_object (struct object
* ob
, void *pc
)
958 /* If the data hasn't been sorted, try to do this now. We may have
959 more memory available than last time we tried. */
960 if (! ob
->s
.b
.sorted
)
964 /* Despite the above comment, the normal reason to get here is
965 that we've not processed this object before. A quick range
966 check is in order. */
967 if (pc
< ob
->pc_begin
)
973 if (ob
->s
.b
.mixed_encoding
)
974 return binary_search_mixed_encoding_fdes (ob
, pc
);
975 else if (ob
->s
.b
.encoding
== DW_EH_PE_absptr
)
976 return binary_search_unencoded_fdes (ob
, pc
);
978 return binary_search_single_encoding_fdes (ob
, pc
);
982 /* Long slow laborious linear search, cos we've no memory. */
983 if (ob
->s
.b
.from_array
)
986 for (p
= ob
->u
.array
; *p
; p
++)
988 const fde
*f
= linear_search_fdes (ob
, *p
, pc
);
995 return linear_search_fdes (ob
, ob
->u
.single
, pc
);
1000 _Unwind_Find_FDE (void *pc
, struct dwarf_eh_bases
*bases
)
1003 const fde
*f
= NULL
;
1005 init_object_mutex_once ();
1006 __gthread_mutex_lock (&object_mutex
);
1008 /* Linear search through the classified objects, to find the one
1009 containing the pc. Note that pc_begin is sorted descending, and
1010 we expect objects to be non-overlapping. */
1011 for (ob
= seen_objects
; ob
; ob
= ob
->next
)
1012 if (pc
>= ob
->pc_begin
)
1014 f
= search_object (ob
, pc
);
1020 /* Classify and search the objects we've not yet processed. */
1021 while ((ob
= unseen_objects
))
1025 unseen_objects
= ob
->next
;
1026 f
= search_object (ob
, pc
);
1028 /* Insert the object into the classified list. */
1029 for (p
= &seen_objects
; *p
; p
= &(*p
)->next
)
1030 if ((*p
)->pc_begin
< ob
->pc_begin
)
1040 __gthread_mutex_unlock (&object_mutex
);
1047 bases
->tbase
= ob
->tbase
;
1048 bases
->dbase
= ob
->dbase
;
1050 encoding
= ob
->s
.b
.encoding
;
1051 if (ob
->s
.b
.mixed_encoding
)
1052 encoding
= get_fde_encoding (f
);
1053 read_encoded_value_with_base (encoding
, base_from_object (encoding
, ob
),
1054 f
->pc_begin
, &func
);
1055 bases
->func
= (void *) func
;