/external/elfutils/libdwfl/ |
D | derelocate.c | 82 if (likely (mod->reloc_info != NULL)) in cache_sections() 83 return mod->reloc_info->count; in cache_sections() 168 mod->reloc_info = malloc (offsetof (struct dwfl_relocation, refs[nrefs])); in cache_sections() 169 if (unlikely (mod->reloc_info == NULL)) in cache_sections() 182 mod->reloc_info->count = nrefs; in cache_sections() 185 mod->reloc_info->refs[i].name = sortrefs[i]->name; in cache_sections() 186 mod->reloc_info->refs[i].scn = sortrefs[i]->scn; in cache_sections() 187 mod->reloc_info->refs[i].relocs = sortrefs[i]->relocs; in cache_sections() 188 mod->reloc_info->refs[i].start = sortrefs[i]->start; in cache_sections() 189 mod->reloc_info->refs[i].end = sortrefs[i]->end; in cache_sections() [all …]
|
D | dwfl_module.c | 119 if (mod->reloc_info != NULL) in __libdwfl_module_free() 120 free (mod->reloc_info); in __libdwfl_module_free()
|
D | libdwflP.h | 179 struct dwfl_relocation *reloc_info; /* Relocatable sections. */ member
|
D | ChangeLog | 1128 * dwfl_module.c (__libdwfl_module_free): Free mod->reloc_info if 1631 * derelocate.c (cache_sections): Intern mod->reloc_info check. 1632 (dwfl_module_relocations): Don't check mod->reloc_info.
|
/external/v8/src/ |
D | code-reference.cc | 38 : wasm_code_->reloc_info().start(); in relocation_start() 43 : wasm_code_->reloc_info().start() + in relocation_end() 44 wasm_code_->reloc_info().length(); in relocation_end() 49 : wasm_code_->reloc_info().length(); in relocation_size()
|
D | reloc-info.cc | 308 Vector<const byte> reloc_info, Address const_pool, in RelocIterator() argument 311 const_pool, reloc_info.start() + reloc_info.size(), in RelocIterator() 312 reloc_info.start(), mode_mask) {} in RelocIterator()
|
D | reloc-info.h | 402 Vector<const byte> reloc_info, Address const_pool,
|
/external/v8/src/wasm/ |
D | wasm-code-manager.cc | 174 for (RelocIterator it(instructions(), reloc_info(), constant_pool()); in Validate() 277 for (RelocIterator it(instructions(), reloc_info(), constant_pool()); in Disassemble() 366 OwnedVector<const byte> reloc_info, in AddOwnedCode() argument 385 std::move(reloc_info), std::move(source_position_table), kind, tier); in AddOwnedCode() 462 OwnedVector<byte> reloc_info = OwnedVector<byte>::New(relocation_size); in AddAnonymousCode() local 463 memcpy(reloc_info.start(), code->relocation_start(), relocation_size); in AddAnonymousCode() 483 std::move(reloc_info), // reloc_info in AddAnonymousCode() 493 for (RelocIterator it(ret->instructions(), ret->reloc_info(), in AddAnonymousCode() 523 OwnedVector<byte> reloc_info = OwnedVector<byte>::New(desc.reloc_size); in AddCode() local 524 memcpy(reloc_info.start(), desc.buffer + desc.buffer_size - desc.reloc_size, in AddCode() [all …]
|
D | wasm-serialization.cc | 265 code->reloc_info().size() + code->source_positions().size() + in MeasureCode() 296 writer->Write(code->reloc_info().size()); in WriteCode() 307 writer->WriteVector(code->reloc_info()); in WriteCode() 327 RelocIterator orig_iter(code->instructions(), code->reloc_info(), in WriteCode() 330 {code_start, code->instructions().size()}, code->reloc_info(), in WriteCode() 468 OwnedVector<byte> reloc_info = OwnedVector<byte>::New(reloc_size); in ReadCode() local 469 reader->ReadVector(reloc_info.as_vector()); in ReadCode() 480 std::move(protected_instructions), std::move(reloc_info), in ReadCode() 489 for (RelocIterator iter(code->instructions(), code->reloc_info(), in ReadCode()
|
D | wasm-code-manager.h | 111 Vector<const byte> reloc_info() const { return reloc_info_.as_vector(); } in reloc_info() function 159 OwnedVector<const byte> reloc_info, in WasmCode() argument 162 reloc_info_(std::move(reloc_info)), in WasmCode() 234 OwnedVector<const byte> reloc_info, 365 OwnedVector<const byte> reloc_info,
|
D | function-compiler.cc | 35 static_cast<int>(code->reloc_info().size())); in RecordStats()
|
/external/v8/src/heap/ |
D | factory.cc | 61 Handle<ByteArray> reloc_info, in InitializeCode() argument 73 code->set_relocation_info(*reloc_info); in InitializeCode() 2567 Handle<ByteArray> reloc_info = NewByteArray(desc.reloc_size, TENURED); in TryNewCode() local 2600 source_position_table, deopt_data, reloc_info, in TryNewCode() 2617 Handle<ByteArray> reloc_info = NewByteArray(desc.reloc_size, TENURED); in NewCode() local 2648 source_position_table, deopt_data, reloc_info, in NewCode()
|