Lines Matching defs:os

657 Output_section_data::set_output_section(Output_section* os)
660 this->output_section_ = os;
661 this->do_adjust_output_section(os);
811 Output_section* os,
822 this->u1_.os = os;
827 os->set_needs_symtab_index();
832 Output_section* os,
845 this->u1_.os = os;
850 os->set_needs_symtab_index();
944 this->u1_.os->set_needs_dynsym_index();
995 index = this->u1_.os->dynsym_index();
997 index = this->u1_.os->symtab_index();
1025 Output_section* os = relobj->output_section(lsi);
1026 gold_assert(os != NULL);
1028 index = os->dynsym_index();
1030 index = os->symtab_index();
1054 Output_section* os = this->u1_.relobj->output_section(lsi);
1055 gold_assert(os != NULL);
1063 offset = os->output_address(relobj, lsi, addend);
1077 Output_section* os = this->u2_.relobj->output_section(this->shndx_);
1078 gold_assert(os != NULL);
1081 address += os->address() + off;
1087 address = os->output_address(relobj, this->shndx_, address);
1140 return this->u1_.os->address() + addend;
1234 ::do_adjust_output_section(Output_section* os)
1237 os->set_entsize(elfcpp::Elf_sizes<size>::rel_size);
1239 os->set_entsize(elfcpp::Elf_sizes<size>::rela_size);
1248 os->set_should_link_to_symtab();
1252 os->set_should_link_to_dynsym();
1325 Output_section* os = this->relobj_->output_section(*p);
1328 if (os != NULL)
1329 output_shndx = os->out_shndx();
1642 Output_section* os = object->output_section(shndx);
1643 rel_dyn->add_output_section_generic(os, r_type, this, got_offset, 0);
1668 Output_section* os = object->output_section(shndx);
1669 rel_dyn->add_output_section_generic(os, r_type, this, got_offset, addend);
1875 Output_data_dynamic::do_adjust_output_section(Output_section* os)
1878 os->set_entsize(elfcpp::Elf_sizes<32>::dyn_size);
1880 os->set_entsize(elfcpp::Elf_sizes<64>::dyn_size);
4119 Output_section* os,
4123 gold_assert((os->flags() & elfcpp::SHF_ALLOC) != 0);
4125 gold_assert(os->is_large_data_section() == this->is_large_data_segment());
4131 Output_section_order order = os->order();
4137 this->output_lists_[order].push_back(os);
4143 Output_segment::add_output_section_to_nonload(Output_section* os,
4147 gold_assert((os->flags() & elfcpp::SHF_ALLOC) != 0);
4152 this->output_lists_[0].push_back(os);
4159 Output_segment::remove_output_section(Output_section* os)
4166 if (*p == os)
4617 Output_section* os = (*p)->output_section();
4625 if (os == NULL)
4631 os->name(), previous_dot, dot);
4862 Output_section* os = static_cast<Output_section*>(*p);
4863 uint64_t lma = (os->has_load_address()
4864 ? os->load_address()
4865 : os->address());
4868 *found = os;