Searched refs:sect (Results 1 - 5 of 5) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
H A DELFDynObjWriter.cpp55 LDSection* sect = pOutput.context()->getSection(secIdx); local
58 switch(sect->kind()) {
65 region = pOutput.memArea()->request(sect->offset(), sect->size());
70 sect->name() +
86 << sect->kind()
88 << sect->name()
95 switch(sect->kind()) {
102 emitSectionData(m_Linker.getLayout(), *sect, *region);
106 emitRelocation(m_Linker.getLayout(), pOutput, *sect, *regio
[all...]
H A DELFExecWriter.cpp58 LDSection* sect = pOutput.context()->getSection(secIdx); local
61 switch(sect->kind()) {
68 region = pOutput.memArea()->request(sect->offset(), sect->size());
73 sect->name() +
89 << sect->kind()
91 << sect->name()
98 switch(sect->kind()) {
105 emitSectionData(m_Linker.getLayout(), *sect, *region);
109 emitRelocation(m_Linker.getLayout(), pOutput, *sect, *regio
[all...]
H A DLayout.cpp561 LDSection* sect = *it; local
563 switch (sect->kind()) {
572 if (0 != sect->size()) {
573 if (NULL != sect->getSectionData() &&
574 !sect->getSectionData()->getFragmentList().empty()) {
576 Fragment& frag = sect->getSectionData()->getFragmentList().back();
580 m_SectionOrder.push_back(sect);
585 m_SectionOrder.push_back(sect);
592 if (0 != sect->size())
593 m_SectionOrder.push_back(sect);
[all...]
/frameworks/compile/mclinker/unittests/
H A DReadStageTest.cpp75 LDContext::const_sect_iterator sect, sectEnd = pInput.context()->sectEnd(); local
76 for (sect = pInput.context()->sectBegin(); sect != sectEnd; ++sect) {
79 sstream << "<section name=\"" << (*sect)->name() << "\"/>\n";
97 LDContext::const_sect_iterator sect, sectEnd = pOutput.context()->sectEnd(); local
98 for (sect = pOutput.context()->sectBegin(); sect != sectEnd; ++sect) {
101 sstream << "<section name=\"" << (*sect)
[all...]
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp1419 LDContext::sect_iterator sect, sect_end = pOutput.context()->sectEnd(); local
1420 for (sect = pOutput.context()->sectBegin(); sect != sect_end; ++sect) {
1422 if (0 == ((*sect)->flag() & llvm::ELF::SHF_ALLOC) &&
1423 LDFileFormat::Null != (*sect)->kind())
1427 cur_seg_flag = getSegmentFlag((*sect)->flag());
1429 LDFileFormat::Null == (*sect)->kind()) {
1436 if (((*sect)->offset() & (abiPageSize(pInfo) - 1)) != 0)
1441 load_seg->addSection((*sect));
1551 const LDSection* sect = (*input)->context()->getSection( local
[all...]

Completed in 446 milliseconds