/frameworks/compile/mclinker/lib/LD/ |
LDSection.cpp | 36 m_Data.sect_data = NULL; 56 m_Data.sect_data = NULL; 89 return (m_Data.sect_data != NULL);
|
ELFObjectWriter.cpp | 451 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/ |
LDSection.h | 133 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/ |
ELFAttribute.cpp | 45 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/ |
IRBuilder.cpp | 287 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/ |
ARMLDBackend.cpp | 411 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) { [all...] |
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
HexagonLDBackend.cpp | 179 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) { [all...] |
/frameworks/compile/mclinker/lib/Target/Mips/ |
MipsLDBackend.cpp | 282 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) { [all...] |