Lines Matching refs:Elf_Addr
63 obj->pltgot[1] = (Elf_Addr) obj; in init_pltgot()
64 obj->pltgot[2] = (Elf_Addr) &_rtld_bind_start; in init_pltgot()
126 Elf_Addr dtv_gen;
128 Elf_Addr tls_offs;
133 static Elf_Addr
134 reloc_tlsdesc_alloc(int tlsindex, Elf_Addr tlsoffs) in reloc_tlsdesc_alloc()
143 return ((Elf_Addr)tlsdesc); in reloc_tlsdesc_alloc()
147 reloc_tlsdesc(const Obj_Entry *obj, const Elf_Rela *rela, Elf_Addr *where, in reloc_tlsdesc()
152 Elf_Addr offs; in reloc_tlsdesc()
165 where[0] = (Elf_Addr)_rtld_tlsdesc_undef; in reloc_tlsdesc()
174 where[0] = (Elf_Addr)_rtld_tlsdesc_static; in reloc_tlsdesc()
178 where[0] = (Elf_Addr)_rtld_tlsdesc_dynamic; in reloc_tlsdesc()
194 Elf_Addr *where; in reloc_plt()
196 where = (Elf_Addr *)(obj->relocbase + rela->r_offset); in reloc_plt()
200 *where += (Elf_Addr)obj->relocbase; in reloc_plt()
237 Elf_Addr *where, target; in reloc_jmpslots()
239 where = (Elf_Addr *)(obj->relocbase + rela->r_offset); in reloc_jmpslots()
250 target = (Elf_Addr)(defobj->relocbase + def->st_value); in reloc_jmpslots()
266 Elf_Addr *where, target, *ptr; in reloc_iresolve()
273 ptr = (Elf_Addr *)(obj->relocbase + rela->r_addend); in reloc_iresolve()
274 where = (Elf_Addr *)(obj->relocbase + rela->r_offset); in reloc_iresolve()
291 Elf_Addr *where, target; in reloc_gnu_ifunc()
300 where = (Elf_Addr *)(obj->relocbase + rela->r_offset); in reloc_gnu_ifunc()
308 target = (Elf_Addr)rtld_resolve_ifunc(defobj, def); in reloc_gnu_ifunc()
318 Elf_Addr
319 reloc_jmpslot(Elf_Addr *where, Elf_Addr target, in reloc_jmpslot()
356 Elf_Addr *where, symval; in reloc_non_plt()
402 symval = (Elf_Addr)rtld_resolve_ifunc( in reloc_non_plt()
413 symval = (Elf_Addr)defobj->relocbase + in reloc_non_plt()
422 where = (Elf_Addr *)(obj->relocbase + rela->r_offset); in reloc_non_plt()
491 *where += (Elf_Addr)defobj->tlsindex; in reloc_non_plt()
494 *where += (Elf_Addr)(def->st_value + rela->r_addend); in reloc_non_plt()
497 *where = (Elf_Addr)(obj->relocbase + rela->r_addend); in reloc_non_plt()
514 Elf_Addr **tp; in allocate_initial_tls()
524 tp = (Elf_Addr **) allocate_tls(objs, NULL, TLS_TCB_SIZE, 16); in allocate_initial_tls()
536 p = tls_get_addr_common((Elf_Addr **)(_tp), ti->ti_module, ti->ti_offset); in __tls_get_addr()