HomeSort by relevance Sort by last modified time
    Searched refs:sect_data (Results 1 - 7 of 7) sorted by null

  /frameworks/compile/mclinker/lib/LD/
LDSection.cpp 36 m_Data.sect_data = NULL;
56 m_Data.sect_data = NULL;
95 return (NULL != m_Data.sect_data);
ELFObjectWriter.cpp 460 const RelocData* sect_data = pSection.getRelocData(); local
461 assert(NULL != sect_data && "SectionData is NULL in emitRelocation!");
465 emitRel<32>(pConfig, *sect_data, pRegion);
467 emitRel<64>(pConfig, *sect_data, pRegion);
474 emitRela<32>(pConfig, *sect_data, pRegion);
476 emitRela<64>(pConfig, *sect_data, pRegion);
  /frameworks/compile/mclinker/include/mcld/LD/
LDSection.h 151 const SectionData* getSectionData() const { return m_Data.sect_data; }
152 SectionData* getSectionData() { return m_Data.sect_data; }
154 void setSectionData(SectionData* pSD) { m_Data.sect_data = pSD; }
188 SectionData* sect_data; member in union:mcld::LDSection::SectOrRelocData
  /frameworks/compile/mclinker/lib/Target/
ELFAttribute.cpp 47 const SectionData* sect_data = pInputAttrSectHdr.getSectionData(); local
50 if ((sect_data->size() != 2) ||
51 (!llvm::isa<RegionFragment>(sect_data->front()))) {
56 llvm::cast<RegionFragment>(sect_data->front());
  /frameworks/compile/mclinker/lib/Core/
IRBuilder.cpp 297 SectionData* sect_data = SectionData::Create(pSection); local
298 pSection.setSectionData(sect_data);
299 return sect_data;
328 SectionData* sect_data = SectionData::Create(pSection); local
329 pSection.setSectionData(sect_data);
334 ObjectBuilder::AppendFragment(*frag, *sect_data);
335 return sect_data;
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMLDBackend.cpp 356 const SectionData* sect_data = pSection.getSectionData(); local
357 SectionData::const_iterator frag_iter, frag_end = sect_data->end();
359 for (frag_iter = sect_data->begin(); frag_iter != frag_end; ++frag_iter) {
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonLDBackend.cpp 188 const SectionData* sect_data = pSection.getSectionData(); local
189 SectionData::const_iterator frag_iter, frag_end = sect_data->end();
191 for (frag_iter = sect_data->begin(); frag_iter != frag_end; ++frag_iter) {
    [all...]

Completed in 192 milliseconds