Home
last modified time | relevance | path

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

/external/elfutils/0.153/libdwfl/
Dderelocate.c93 if (likely (mod->reloc_info != NULL)) in cache_sections()
94 return mod->reloc_info->count; in cache_sections()
170 mod->reloc_info = malloc (offsetof (struct dwfl_relocation, refs[nrefs])); in cache_sections()
171 if (mod->reloc_info == NULL) in cache_sections()
184 mod->reloc_info->count = nrefs; in cache_sections()
187 mod->reloc_info->refs[i].name = sortrefs[i]->name; in cache_sections()
188 mod->reloc_info->refs[i].scn = sortrefs[i]->scn; in cache_sections()
189 mod->reloc_info->refs[i].relocs = sortrefs[i]->relocs; in cache_sections()
190 mod->reloc_info->refs[i].start = sortrefs[i]->start; in cache_sections()
191 mod->reloc_info->refs[i].end = sortrefs[i]->end; in cache_sections()
[all …]
DlibdwflP.h170 struct dwfl_relocation *reloc_info; /* Relocatable sections. */ member
DChangeLog24 * derelocate.c (cache_sections): Intern mod->reloc_info check.
25 (dwfl_module_relocations): Don't check mod->reloc_info.
/external/chromium_org/v8/src/x87/
Ddeoptimizer-x87.cc120 ByteArray* reloc_info = code->relocation_info(); in PatchCodeForDeoptimization() local
121 Address reloc_end_address = reloc_info->address() + reloc_info->Size(); in PatchCodeForDeoptimization()
153 reloc_info->address() + ByteArray::kHeaderSize); in PatchCodeForDeoptimization()
167 reloc_info->set_length(new_reloc_size); in PatchCodeForDeoptimization()
171 Address junk_address = reloc_info->address() + reloc_info->Size(); in PatchCodeForDeoptimization()
/external/chromium_org/v8/src/ia32/
Ddeoptimizer-ia32.cc120 ByteArray* reloc_info = code->relocation_info(); in PatchCodeForDeoptimization() local
121 Address reloc_end_address = reloc_info->address() + reloc_info->Size(); in PatchCodeForDeoptimization()
153 reloc_info->address() + ByteArray::kHeaderSize); in PatchCodeForDeoptimization()
167 reloc_info->set_length(new_reloc_size); in PatchCodeForDeoptimization()
171 Address junk_address = reloc_info->address() + reloc_info->Size(); in PatchCodeForDeoptimization()
/external/chromium_org/v8/src/
Dfactory.cc1440 Handle<ByteArray> reloc_info = NewByteArray(desc.reloc_size, TENURED); in NewCode() local
1459 code->set_relocation_info(*reloc_info); in NewCode()
1506 Handle<Code> Factory::CopyCode(Handle<Code> code, Vector<byte> reloc_info) { in CopyCode() argument
1508 isolate()->heap()->CopyCode(*code, reloc_info), in CopyCode()
Dfactory.h515 Handle<Code> CopyCode(Handle<Code> code, Vector<byte> reloc_info);
Dheap.cc3419 AllocationResult Heap::CopyCode(Code* code, Vector<byte> reloc_info) { in CopyCode() argument
3424 AllocateByteArray(reloc_info.length(), TENURED); in CopyCode()
3472 reloc_info.start(), in CopyCode()
3473 static_cast<size_t>(reloc_info.length())); in CopyCode()
Dheap.h1475 Vector<byte> reloc_info);