Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64Relocator.cpp107 LDSection* bss_sect_hdr = NULL; in defineSymbolforCopyReloc() local
110 bss_sect_hdr = &file_format->getTBSS(); in defineSymbolforCopyReloc()
112 bss_sect_hdr = &file_format->getBSS(); in defineSymbolforCopyReloc()
116 if (bss_sect_hdr->hasSectionData()) in defineSymbolforCopyReloc()
117 bss_data = bss_sect_hdr->getSectionData(); in defineSymbolforCopyReloc()
119 bss_data = IRBuilder::CreateSectionData(*bss_sect_hdr); in defineSymbolforCopyReloc()
128 bss_sect_hdr->setSize(bss_sect_hdr->size() + size); in defineSymbolforCopyReloc()
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonRelocator.cpp411 LDSection* bss_sect_hdr = NULL; in defineSymbolforCopyReloc() local
414 bss_sect_hdr = &file_format->getTBSS(); in defineSymbolforCopyReloc()
416 bss_sect_hdr = &file_format->getBSS(); in defineSymbolforCopyReloc()
419 assert(bss_sect_hdr != NULL); in defineSymbolforCopyReloc()
421 if (bss_sect_hdr->hasSectionData()) in defineSymbolforCopyReloc()
422 bss_section = bss_sect_hdr->getSectionData(); in defineSymbolforCopyReloc()
424 bss_section = IRBuilder::CreateSectionData(*bss_sect_hdr); in defineSymbolforCopyReloc()
433 bss_sect_hdr->setSize(bss_sect_hdr->size() + size); in defineSymbolforCopyReloc()
/frameworks/compile/mclinker/lib/Target/ARM/
DARMRelocator.cpp340 LDSection* bss_sect_hdr = NULL; in defineSymbolforCopyReloc() local
343 bss_sect_hdr = &file_format->getTBSS(); in defineSymbolforCopyReloc()
345 bss_sect_hdr = &file_format->getBSS(); in defineSymbolforCopyReloc()
349 if (bss_sect_hdr->hasSectionData()) in defineSymbolforCopyReloc()
350 bss_data = bss_sect_hdr->getSectionData(); in defineSymbolforCopyReloc()
352 bss_data = IRBuilder::CreateSectionData(*bss_sect_hdr); in defineSymbolforCopyReloc()
361 bss_sect_hdr->setSize(bss_sect_hdr->size() + size); in defineSymbolforCopyReloc()
/frameworks/compile/mclinker/lib/Target/X86/
DX86Relocator.cpp206 LDSection* bss_sect_hdr = NULL; in defineSymbolforCopyReloc() local
209 bss_sect_hdr = &file_format->getTBSS(); in defineSymbolforCopyReloc()
211 bss_sect_hdr = &file_format->getBSS(); in defineSymbolforCopyReloc()
214 assert(bss_sect_hdr != NULL); in defineSymbolforCopyReloc()
216 if (bss_sect_hdr->hasSectionData()) in defineSymbolforCopyReloc()
217 bss_section = bss_sect_hdr->getSectionData(); in defineSymbolforCopyReloc()
219 bss_section = IRBuilder::CreateSectionData(*bss_sect_hdr); in defineSymbolforCopyReloc()
228 bss_sect_hdr->setSize(bss_sect_hdr->size() + size); in defineSymbolforCopyReloc()