Home | History | Annotate | Download | only in config

Lines Matching defs:fde

24 /* Locate the FDE entry for a given address, using Darwin's keymgr support.  */
35 #include "unwind-dw2-fde.h"
42 static const fde * _Unwind_Find_registered_FDE (void *pc,
46 #include "unwind-dw2-fde.c"
79 void *fde;
87 ALLOCED_IMAGE_MASK = 2, /* The FDE entries were allocated by
119 __deregister_frame_info_bases (image->fde);
130 free (image->fde);
131 image->fde = NULL;
139 check whether the PC is inside the FDE of each unseen image.
142 static inline const fde *
145 const fde *result = NULL;
153 char *fde = NULL;
158 fde = getsectdatafromheader (image->mh, "__DATA", "__eh_frame", &sz);
161 if (fde == NULL)
164 fde = getsectdatafromheader_64 ((struct mach_header_64 *) image->mh,
167 fde = getsectdatafromheader (image->mh, "__TEXT",
170 if (fde != NULL)
175 if (fde != NULL && sz > 0)
177 char *real_fde = (fde + image->vm_slide);
195 image->fde = real_fde;
244 const fde *
248 const fde *ret = NULL;