HomeSort by relevance Sort by last modified time
    Searched refs:addralign (Results 1 - 25 of 32) sorted by null

1 2

  /toolchain/binutils/binutils-2.25/gold/
copy-relocs.cc 128 typename elfcpp::Elf_types<size>::Elf_WXword addralign; local
137 addralign = obj->section_addralign(shndx);
141 while ((value & (addralign - 1)) != 0)
142 addralign >>= 1;
149 this->dynbss_ = new Output_data_space(addralign, "** dynbss");
158 if (addralign > dynbss->addralign())
159 dynbss->set_space_alignment(addralign);
163 dynbss_size = align_address(dynbss_size, addralign);
merge.h 218 Output_merge_base(uint64_t entsize, uint64_t addralign)
219 : Output_section_data(addralign), merge_map_(), entsize_(entsize),
340 Output_merge_data(uint64_t entsize, uint64_t addralign)
341 : Output_merge_base(entsize, addralign), p_(NULL), len_(0), alc_(0),
463 Output_merge_string(uint64_t addralign)
464 : Output_merge_base(sizeof(Char_type), addralign), stringpool_(addralign),
ehframe.cc 331 // encoding, from the CIE. ADDRALIGN is the required alignment.
338 section_offset_type offset, uint64_t address, unsigned int addralign,
342 gold_assert((offset & (addralign - 1)) == 0);
348 size_t aligned_full_length = align_address(length + 8, addralign);
414 unsigned int addralign,
429 length = align_address(length, addralign);
438 fde_length = align_address(fde_length, addralign);
447 // the bytes to ADDRALIGN. ADDRESS is the virtual address of OVIEW.
456 unsigned int addralign, Eh_frame_hdr* eh_frame_hdr,
459 gold_assert((offset & (addralign - 1)) == 0)
1190 unsigned int addralign = this->addralign(); local
    [all...]
output.h 134 addralign() const function in class:gold::Output_data
634 Output_section_data(off_t data_size, uint64_t addralign,
636 : Output_data(), output_section_(NULL), addralign_(addralign)
643 Output_section_data(uint64_t addralign)
644 : Output_data(), output_section_(NULL), addralign_(addralign)
755 set_addralign(uint64_t addralign);
771 Output_section_data_build(uint64_t addralign)
772 : Output_section_data(addralign)
775 Output_section_data_build(off_t data_size, uint64_t addralign)
776 : Output_section_data(data_size, addralign, false
3621 addralign() const function in class:gold::Output_section::Input_section
4135 addralign() const function in class:gold::Output_section::Checkpoint_output_section
    [all...]
common.cc 229 uint64_t addralign = 0; local
246 if (ssym->value() > addralign)
247 addralign = ssym->value();
291 poc = new Output_data_space(addralign, ds_name);
output.cc 677 Output_section_data::set_addralign(uint64_t addralign)
679 this->addralign_ = addralign;
681 && this->output_section_->addralign() < addralign)
682 this->output_section_->set_addralign(addralign);
2372 elfcpp::Elf_Xword addralign = shdr.get_sh_addralign(); local
2614 uint64_t addralign = inp->addralign(); local
3868 uint64_t addralign = sis.addralign(); local
4198 uint64_t addralign = Output_segment::maximum_alignment_list(pdl); local
4218 uint64_t addralign = (*p)->addralign(); local
    [all...]
ehframe.h 209 // encoding, from the CIE. Round up the bytes to ADDRALIGN if
215 section_offset_type offset, uint64_t address, unsigned int addralign,
306 // followed by all its FDEs. ADDRALIGN is the required address
310 set_output_offset(section_offset_type output_offset, unsigned int addralign,
314 // ADDRALIGN. ADDRESS is the virtual address of OVIEW.
322 unsigned int addralign, Eh_frame_hdr* eh_frame_hdr,
merge.cc 377 section_size_type addralign =
378 convert_to_section_size_type(this->addralign());
379 section_size_type addsize = std::max(entsize, addralign);
561 & (this->addralign() - 1));
570 && ((reinterpret_cast<uintptr_t>(p) & (this->addralign() - 1))
expression.cc 778 uint64_t addralign, uint64_t size) = 0;
798 uint64_t addralign; local
806 &addralign,
809 addralign, size);
980 { return os->addralign(); }
983 value_from_script_output_section(uint64_t, uint64_t, uint64_t addralign,
985 { return addralign; }
    [all...]
stringpool.cc 37 Stringpool_template<Stringpool_char>::Stringpool_template(uint64_t addralign)
40 addralign_(addralign)
44 && addralign <= sizeof(Stringpool_char))
script-sections.cc 1474 addralign() const function in class:gold::Input_section_info
2912 uint64_t addralign = p->addralign(); local
    [all...]
script-sections.h 206 uint64_t* load_address, uint64_t* addralign,
binary.cc 318 unsigned int addralign,
332 oshdr.put_sh_addralign(addralign);
layout.h     [all...]
stringpool.h 183 Stringpool_template(uint64_t addralign = 1);
arm.cc     [all...]
layout.cc     [all...]
  /external/elfutils/libelf/
elf_compress.c 258 __libelf_decompress_elf (Elf_Scn *scn, size_t *size_out, size_t *addralign)
293 *addralign = chdr.ch_addralign;
478 size_t size_out, addralign; local
479 void *buf_out = __libelf_decompress_elf (scn, &size_out, &addralign);
485 scn->zdata_align = addralign;
libelfP.h 243 size_t zdata_align; /* If zdata_base != NULL, the addralign. */
606 size_t *size_out, size_t *addralign)
  /external/elfutils/tests/
elfstrmerge.c 606 size_t addralign = newshdr.sh_addralign ?: 1; local
607 last_offset = (last_offset + addralign - 1) & ~(addralign - 1);
  /external/elfutils/src/
elfcompress.c 1093 size_t addralign = shdr->sh_addralign ?: 1; local
1094 last_offset = (last_offset + addralign - 1) & ~(addralign - 1);
    [all...]
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64Relocator.cpp 125 uint32_t addralign = config().targets().bitclass() / 8; local
129 uint64_t size = ObjectBuilder::AppendFragment(*frag, *bss_data, addralign);
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonRelocator.cpp 428 uint32_t addralign = config().targets().bitclass() / 8; local
432 uint64_t size = ObjectBuilder::AppendFragment(*frag, *bss_section, addralign);
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMRelocator.cpp 356 uint32_t addralign = config().targets().bitclass() / 8; local
360 uint64_t size = ObjectBuilder::AppendFragment(*frag, *bss_data, addralign);
    [all...]
  /frameworks/compile/mclinker/lib/Target/X86/
X86Relocator.cpp 223 uint32_t addralign = config().targets().bitclass() / 8; local
227 uint64_t size = ObjectBuilder::AppendFragment(*frag, *bss_section, addralign);
    [all...]

Completed in 3686 milliseconds

1 2