Lines Matching defs:cie_inf
49 struct eh_cie_fde *cie_inf;
234 && (c1->cie_inf->u.cie.u.sec->output_section
235 == c2->cie_inf->u.cie.u.sec->output_section)
269 h = iterative_hash_object (c->cie_inf->u.cie.u.sec->output_section, h);
744 cie->cie_inf = this_inf;
903 if (cie_offset == cie->cie_inf->offset)
909 this_inf->u.fde.cie_inf = cie->cie_inf;
910 this_inf->make_relative = cie->cie_inf->make_relative;
912 = cie->cie_inf->add_augmentation_size;
947 this_inf->u.fde.cie_inf = NULL;
963 cie->cie_inf->u.cie.make_lsda_relative = 1;
1179 /* At this stage, all cie_inf fields point to local CIEs, so we
1181 cie = fde->u.fde.cie_inf;
1193 CIE described by CIE_INF. Return a version of CIE_INF that is going
1194 to be kept in the output, adding CIE_INF to the output if necessary.
1203 struct eh_cie_fde *cie_inf)
1210 /* Use CIE_INF if we have already decided to keep it. */
1211 if (!cie_inf->removed)
1212 return cie_inf;
1214 /* If we have merged CIE_INF with another CIE, use that CIE instead. */
1215 if (cie_inf->u.cie.merged)
1216 return cie_inf->u.cie.u.merged_with;
1218 cie = cie_inf->u.cie.u.full_cie;
1220 /* Assume we will need to keep CIE_INF. */
1221 cie_inf->removed = 0;
1222 cie_inf->u.cie.u.sec = sec;
1224 /* If we are not merging CIEs, use CIE_INF. */
1226 return cie_inf;
1269 return cie_inf;
1274 return cie_inf;
1288 cie_inf->u.cie.make_per_encoding_relative = 1;
1289 cie_inf->u.cie.per_encoding_relative = 1;
1299 return cie_inf;
1304 return cie_inf;
1309 /* Keep CIE_INF and record it in the hash table. */
1312 return cie_inf;
1319 /* Merge CIE_INF with NEW_CIE->CIE_INF. */
1320 cie_inf->removed = 1;
1321 cie_inf->u.cie.merged = 1;
1322 cie_inf->u.cie.u.merged_with = new_cie->cie_inf;
1323 if (cie_inf->u.cie.make_lsda_relative)
1324 new_cie->cie_inf->u.cie.make_lsda_relative = 1;
1326 return new_cie->cie_inf;
1501 else if (!ent->cie && ent->u.fde.cie_inf != NULL)
1556 ent->u.fde.cie_inf = find_merged_cie (abfd, info, sec, hdr_info,
1557 cookie, ent->u.fde.cie_inf);
1803 && sec_info->entry[mid].u.fde.cie_inf->u.cie.make_lsda_relative
2114 cie = ent->u.fde.cie_inf;