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

/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocator.cpp238 LDSection* bss_sect_hdr = NULL; local
241 bss_sect_hdr = &file_format->getTBSS();
243 bss_sect_hdr = &file_format->getBSS();
246 assert(NULL != bss_sect_hdr);
248 if (bss_sect_hdr->hasSectionData())
249 bss_section = bss_sect_hdr->getSectionData();
251 bss_section = IRBuilder::CreateSectionData(*bss_sect_hdr);
262 bss_sect_hdr->setSize(bss_sect_hdr->size() + size);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocator.cpp99 LDSection* bss_sect_hdr = NULL; local
102 bss_sect_hdr = &file_format->getTBSS();
104 bss_sect_hdr = &file_format->getBSS();
108 if (bss_sect_hdr->hasSectionData())
109 bss_data = bss_sect_hdr->getSectionData();
111 bss_data = IRBuilder::CreateSectionData(*bss_sect_hdr);
122 bss_sect_hdr->setSize(bss_sect_hdr->size() + size);
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Relocator.cpp107 LDSection* bss_sect_hdr = NULL; local
110 bss_sect_hdr = &file_format->getTBSS();
112 bss_sect_hdr = &file_format->getBSS();
115 assert(NULL != bss_sect_hdr);
117 if (bss_sect_hdr->hasSectionData())
118 bss_section = bss_sect_hdr->getSectionData();
120 bss_section = IRBuilder::CreateSectionData(*bss_sect_hdr);
131 bss_sect_hdr->setSize(bss_sect_hdr->size() + size);

Completed in 67 milliseconds