Searched refs:sect_data (Results 1 - 8 of 8) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
H A DLDSection.cpp36 m_Data.sect_data = NULL;
56 m_Data.sect_data = NULL;
89 return (m_Data.sect_data != NULL);
H A DELFObjectWriter.cpp451 const RelocData* sect_data = pSection.getRelocData(); local
452 assert(sect_data != NULL && "SectionData is NULL in emitRelocation!");
456 emitRel<32>(pConfig, *sect_data, pRegion);
458 emitRel<64>(pConfig, *sect_data, pRegion);
465 emitRela<32>(pConfig, *sect_data, pRegion);
467 emitRela<64>(pConfig, *sect_data, pRegion);
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSection.h133 const SectionData* getSectionData() const { return m_Data.sect_data; }
134 SectionData* getSectionData() { return m_Data.sect_data; }
136 void setSectionData(SectionData* pSD) { m_Data.sect_data = pSD; }
175 SectionData* sect_data; member in union:mcld::LDSection::Data
/frameworks/compile/mclinker/lib/Target/
H A DELFAttribute.cpp45 const SectionData* sect_data = pInputAttrSectHdr.getSectionData(); local
48 if ((sect_data->size() != 2) ||
49 (!llvm::isa<RegionFragment>(sect_data->front()))) {
54 llvm::cast<RegionFragment>(sect_data->front());
/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp287 SectionData* sect_data = SectionData::Create(pSection); local
288 pSection.setSectionData(sect_data);
289 return sect_data;
325 SectionData* sect_data = SectionData::Create(pSection); local
326 pSection.setSectionData(sect_data);
331 ObjectBuilder::AppendFragment(*frag, *sect_data);
332 return sect_data;
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.cpp411 const SectionData* sect_data = pSection.getSectionData(); local
412 SectionData::const_iterator frag_iter, frag_end = sect_data->end();
414 for (frag_iter = sect_data->begin(); frag_iter != frag_end; ++frag_iter) {
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.cpp179 const SectionData* sect_data = pSection.getSectionData(); local
180 SectionData::const_iterator frag_iter, frag_end = sect_data->end();
182 for (frag_iter = sect_data->begin(); frag_iter != frag_end; ++frag_iter) {
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp282 const SectionData* sect_data = pSection.getSectionData(); local
283 SectionData::const_iterator frag_iter, frag_end = sect_data->end();
285 for (frag_iter = sect_data->begin(); frag_iter != frag_end; ++frag_iter) {

Completed in 144 milliseconds