Home | History | Annotate | Download | only in bfd

Lines Matching full:hresolve

4087 	  struct aout_link_hash_entry *hresolve;
4101 hresolve to the base symbol. We also change *sym_hash so
4104 hresolve = h;
4109 hresolve = (struct aout_link_hash_entry *) h->root.u.i.link;
4110 while (hresolve->root.type == bfd_link_hash_indirect
4111 || hresolve->root.type == bfd_link_hash_warning)
4112 hresolve = ((struct aout_link_hash_entry *)
4113 hresolve->root.u.i.link);
4114 *sym_hash = hresolve;
4169 && (hresolve == NULL
4170 || (hresolve->root.type != bfd_link_hash_defined
4171 && hresolve->root.type != bfd_link_hash_defweak
4172 && hresolve->root.type != bfd_link_hash_common)))
4201 hresolve so that if we have defined an indirect
4224 else if (hresolve->root.type == bfd_link_hash_defined
4225 || hresolve->root.type == bfd_link_hash_defweak)
4232 input_section = hresolve->root.u.def.section;
4236 val = (hresolve->root.u.def.value
4252 type |= (hresolve->root.type == bfd_link_hash_defined
4256 type |= (hresolve->root.type == bfd_link_hash_defined
4260 type |= (hresolve->root.type == bfd_link_hash_defined
4264 type |= (hresolve->root.type == bfd_link_hash_defined
4268 else if (hresolve->root.type == bfd_link_hash_common)
4269 val = hresolve->root.u.c.size;
4270 else if (hresolve->root.type == bfd_link_hash_undefweak)