Searched refs:sect_data (Results 1 – 8 of 8) sorted by relevance
/frameworks/compile/mclinker/include/mcld/LD/ |
D | LDSection.h | 133 const SectionData* getSectionData() const { return m_Data.sect_data; } in getSectionData() 134 SectionData* getSectionData() { return m_Data.sect_data; } in getSectionData() 136 void setSectionData(SectionData* pSD) { m_Data.sect_data = pSD; } in setSectionData() 175 SectionData* sect_data; member
|
/frameworks/compile/mclinker/lib/LD/ |
D | LDSection.cpp | 36 m_Data.sect_data = NULL; in LDSection() 56 m_Data.sect_data = NULL; in LDSection() 89 return (m_Data.sect_data != NULL); in hasSectionData()
|
D | ELFObjectWriter.cpp | 451 const RelocData* sect_data = pSection.getRelocData(); in emitRelocation() local 452 assert(sect_data != NULL && "SectionData is NULL in emitRelocation!"); in emitRelocation() 456 emitRel<32>(pConfig, *sect_data, pRegion); in emitRelocation() 458 emitRel<64>(pConfig, *sect_data, pRegion); in emitRelocation() 465 emitRela<32>(pConfig, *sect_data, pRegion); in emitRelocation() 467 emitRela<64>(pConfig, *sect_data, pRegion); in emitRelocation()
|
/frameworks/compile/mclinker/lib/Target/ |
D | ELFAttribute.cpp | 45 const SectionData* sect_data = pInputAttrSectHdr.getSectionData(); in merge() local 48 if ((sect_data->size() != 2) || in merge() 49 (!llvm::isa<RegionFragment>(sect_data->front()))) { in merge() 54 llvm::cast<RegionFragment>(sect_data->front()); in merge()
|
/frameworks/compile/mclinker/lib/Core/ |
D | IRBuilder.cpp | 288 SectionData* sect_data = SectionData::Create(pSection); in CreateSectionData() local 289 pSection.setSectionData(sect_data); in CreateSectionData() 290 return sect_data; in CreateSectionData() 326 SectionData* sect_data = SectionData::Create(pSection); in CreateBSS() local 327 pSection.setSectionData(sect_data); in CreateBSS() 332 ObjectBuilder::AppendFragment(*frag, *sect_data); in CreateBSS() 333 return sect_data; in CreateBSS()
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMLDBackend.cpp | 411 const SectionData* sect_data = pSection.getSectionData(); in emitSectionData() local 412 SectionData::const_iterator frag_iter, frag_end = sect_data->end(); in emitSectionData() 414 for (frag_iter = sect_data->begin(); frag_iter != frag_end; ++frag_iter) { in emitSectionData()
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonLDBackend.cpp | 179 const SectionData* sect_data = pSection.getSectionData(); in emitSectionData() local 180 SectionData::const_iterator frag_iter, frag_end = sect_data->end(); in emitSectionData() 182 for (frag_iter = sect_data->begin(); frag_iter != frag_end; ++frag_iter) { in emitSectionData()
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsLDBackend.cpp | 282 const SectionData* sect_data = pSection.getSectionData(); in emitSectionData() local 283 SectionData::const_iterator frag_iter, frag_end = sect_data->end(); in emitSectionData() 285 for (frag_iter = sect_data->begin(); frag_iter != frag_end; ++frag_iter) { in emitSectionData()
|