Lines Matching refs:output_sect
2623 LDSection* output_sect = pModule.getSection((*rs)->name()); in preLayout() local
2624 if (NULL == output_sect) { in preLayout()
2625 output_sect = LDSection::Create((*rs)->name(), in preLayout()
2630 output_sect->setAlign((*rs)->align()); in preLayout()
2631 pModule.getSectionTable().push_back(output_sect); in preLayout()
2642 output_sect->setLink(output_link); in preLayout()
2645 if (!output_sect->hasRelocData()) in preLayout()
2646 IRBuilder::CreateRelocData(*output_sect); in preLayout()
2648 RelocData* out_reloc_data = output_sect->getRelocData(); in preLayout()
2658 if (llvm::ELF::SHT_REL == output_sect->type()) in preLayout()
2659 output_sect->setSize(out_reloc_data->size() * getRelEntrySize()); in preLayout()
2660 else if (llvm::ELF::SHT_RELA == output_sect->type()) in preLayout()
2661 output_sect->setSize(out_reloc_data->size() * getRelaEntrySize()); in preLayout()
2663 fatal(diag::unknown_reloc_section_type) << output_sect->type() in preLayout()
2664 << output_sect->name(); in preLayout()