Lines Matching defs:hdr_info

464   struct eh_frame_hdr_info *hdr_info;
484 hdr_info = &htab->eh_info;
486 if (hdr_info->cies == NULL && !info->relocatable)
487 hdr_info->cies = htab_try_create (1, cie_hash, cie_eq, free);
820 hdr_info->table = FALSE;
826 hdr_info->fde_count++;
922 if (hdr_info->cies != NULL)
924 void **loc = htab_find_slot_with_hash (hdr_info->cies, &ecie->cie,
981 hdr_info->table = FALSE;
995 struct eh_frame_hdr_info *hdr_info;
999 hdr_info = &htab->eh_info;
1001 if (hdr_info->cies != NULL)
1003 htab_delete (hdr_info->cies);
1004 hdr_info->cies = NULL;
1007 sec = hdr_info->hdr_sec;
1012 if (hdr_info->table)
1013 sec->size += 4 + hdr_info->fde_count * 8;
1030 struct eh_frame_hdr_info *hdr_info;
1033 hdr_info = &htab->eh_info;
1034 if (hdr_info->hdr_sec == NULL)
1037 if (bfd_is_abs_section (hdr_info->hdr_sec->output_section))
1039 hdr_info->hdr_sec = NULL;
1056 hdr_info->hdr_sec->flags |= SEC_EXCLUDE;
1057 hdr_info->hdr_sec = NULL;
1061 hdr_info->table = TRUE;
1078 struct eh_frame_hdr_info *hdr_info;
1089 hdr_info = &htab->eh_info;
1090 if (hdr_info->offsets_adjusted)
1128 || !hdr_info->offsets_adjusted))
1151 if (hdr_info->offsets_adjusted)
1171 struct eh_frame_hdr_info *hdr_info;
1185 hdr_info = &htab->eh_info;
1193 if (!hdr_info->offsets_adjusted)
1216 hdr_info->offsets_adjusted = TRUE;
1219 if (hdr_info->table && hdr_info->array == NULL)
1220 hdr_info->array
1221 = bfd_malloc (hdr_info->fde_count * sizeof(*hdr_info->array));
1222 if (hdr_info->array == NULL)
1223 hdr_info = NULL;
1392 BFD_ASSERT (hdr_info == NULL);
1414 if (hdr_info)
1416 hdr_info->array[hdr_info->array_count].initial_loc = address;
1417 hdr_info->array[hdr_info->array_count++].fde
1533 struct eh_frame_hdr_info *hdr_info;
1542 hdr_info = &htab->eh_info;
1543 sec = hdr_info->hdr_sec;
1548 if (hdr_info->array && hdr_info->array_count == hdr_info->fde_count)
1549 size += 4 + hdr_info->fde_count * 8;
1567 if (hdr_info->array && hdr_info->array_count == hdr_info->fde_count)
1583 bfd_put_32 (abfd, hdr_info->fde_count, contents + EH_FRAME_HDR_SIZE);
1584 qsort (hdr_info->array, hdr_info->fde_count, sizeof (*hdr_info->array),
1586 for (i = 0; i < hdr_info->fde_count; i++)
1589 hdr_info->array[i].initial_loc
1593 hdr_info->array[i].fde - sec->output_section->vma,