Searched refs:bss_sect_hdr (Results 1 - 4 of 4) sorted by relevance

/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Relocator.cpp113 LDSection* bss_sect_hdr = NULL; local
116 bss_sect_hdr = &file_format->getTBSS();
118 bss_sect_hdr = &file_format->getBSS();
122 if (bss_sect_hdr->hasSectionData())
123 bss_data = bss_sect_hdr->getSectionData();
125 bss_data = IRBuilder::CreateSectionData(*bss_sect_hdr);
134 bss_sect_hdr->setSize(bss_sect_hdr->size() + size);
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocator.cpp401 LDSection *bss_sect_hdr = NULL; local
404 bss_sect_hdr = &file_format->getTBSS();
406 bss_sect_hdr = &file_format->getBSS();
409 assert(NULL != bss_sect_hdr);
411 if (bss_sect_hdr->hasSectionData())
412 bss_section = bss_sect_hdr->getSectionData();
414 bss_section = IRBuilder::CreateSectionData(*bss_sect_hdr);
423 bss_sect_hdr->setSize(bss_sect_hdr->size() + size);
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Relocator.cpp229 LDSection* bss_sect_hdr = NULL; local
232 bss_sect_hdr = &file_format->getTBSS();
234 bss_sect_hdr = &file_format->getBSS();
237 assert(NULL != bss_sect_hdr);
239 if (bss_sect_hdr->hasSectionData())
240 bss_section = bss_sect_hdr->getSectionData();
242 bss_section = IRBuilder::CreateSectionData(*bss_sect_hdr);
253 bss_sect_hdr->setSize(bss_sect_hdr->size() + size);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocator.cpp391 LDSection* bss_sect_hdr = NULL; local
394 bss_sect_hdr = &file_format->getTBSS();
396 bss_sect_hdr = &file_format->getBSS();
400 if (bss_sect_hdr->hasSectionData())
401 bss_data = bss_sect_hdr->getSectionData();
403 bss_data = IRBuilder::CreateSectionData(*bss_sect_hdr);
414 bss_sect_hdr->setSize(bss_sect_hdr->size() + size);

Completed in 90 milliseconds