Home
last modified time | relevance | path

Searched refs:reloc_info (Results 1 – 8 of 8) sorted by relevance

/external/elfutils/libdwfl/
Dderelocate.c72 if (likely (mod->reloc_info != NULL)) in cache_sections()
73 return mod->reloc_info->count; in cache_sections()
158 mod->reloc_info = malloc (offsetof (struct dwfl_relocation, refs[nrefs])); in cache_sections()
159 if (unlikely (mod->reloc_info == NULL)) in cache_sections()
172 mod->reloc_info->count = nrefs; in cache_sections()
175 mod->reloc_info->refs[i].name = sortrefs[i]->name; in cache_sections()
176 mod->reloc_info->refs[i].scn = sortrefs[i]->scn; in cache_sections()
177 mod->reloc_info->refs[i].relocs = sortrefs[i]->relocs; in cache_sections()
178 mod->reloc_info->refs[i].start = sortrefs[i]->start; in cache_sections()
179 mod->reloc_info->refs[i].end = sortrefs[i]->end; in cache_sections()
[all …]
Ddwfl_module.c115 if (mod->reloc_info != NULL) in __libdwfl_module_free()
116 free (mod->reloc_info); in __libdwfl_module_free()
DlibdwflP.h182 struct dwfl_relocation *reloc_info; /* Relocatable sections. */ member
DChangeLog797 * dwfl_module.c (__libdwfl_module_free): Free mod->reloc_info if
1300 * derelocate.c (cache_sections): Intern mod->reloc_info check.
1301 (dwfl_module_relocations): Don't check mod->reloc_info.
/external/syslinux/com32/gdbstub/
Dmain.c17 struct reloc_info { struct
29 static inline uint32_t reloc_ptr(struct reloc_info *ri, void *ptr) in reloc_ptr() argument
61 static __noreturn reloc_entry(struct reloc_info *ri) in reloc_entry()
97 __noreturn(*entry_fn) (struct reloc_info *); in reloc()
98 struct reloc_info ri; in reloc()
/external/v8/src/ia32/
Ddeoptimizer-ia32.cc122 ByteArray* reloc_info = code->relocation_info(); in PatchCodeForDeoptimization() local
123 Address reloc_end_address = reloc_info->address() + reloc_info->Size(); in PatchCodeForDeoptimization()
151 reloc_info->address() + ByteArray::kHeaderSize); in PatchCodeForDeoptimization()
165 const int delta = reloc_info->length() - new_reloc_length; in PatchCodeForDeoptimization()
167 isolate->heap()->RightTrimFixedArray(reloc_info, delta); in PatchCodeForDeoptimization()
/external/v8/src/x87/
Ddeoptimizer-x87.cc122 ByteArray* reloc_info = code->relocation_info(); in PatchCodeForDeoptimization() local
123 Address reloc_end_address = reloc_info->address() + reloc_info->Size(); in PatchCodeForDeoptimization()
151 reloc_info->address() + ByteArray::kHeaderSize); in PatchCodeForDeoptimization()
165 const int delta = reloc_info->length() - new_reloc_length; in PatchCodeForDeoptimization()
167 isolate->heap()->RightTrimFixedArray(reloc_info, delta); in PatchCodeForDeoptimization()
/external/v8/src/
Dfactory.cc1652 Handle<ByteArray> reloc_info = NewByteArray(desc.reloc_size, TENURED); in NewCode() local
1679 code->set_relocation_info(*reloc_info); in NewCode()