HomeSort by relevance Sort by last modified time
    Searched refs:SectionData (Results 26 - 50 of 73) sorted by null

12 3

  /frameworks/compile/mclinker/include/mcld/LD/
EhFrame.h 24 class SectionData;
104 const SectionData& getSectionData() const { return *m_pSectionData; }
105 SectionData& getSectionData() { return *m_pSectionData; }
146 SectionData* m_pSectionData;
LDSection.h 24 class SectionData;
101 /// constraint is set in SectionData::setAlignment. addr() contains the
153 // ----- SectionData ----- //
154 const SectionData* getSectionData() const { return m_Data.sect_data; }
155 SectionData* getSectionData() { return m_Data.sect_data; }
157 void setSectionData(SectionData* pSD) { m_Data.sect_data = pSD; }
191 SectionData* sect_data;
211 /// m_Data - the SectionData or RelocData of this section
BranchIsland.h 20 #include <mcld/LD/SectionData.h>
38 typedef SectionData::iterator iterator;
39 typedef SectionData::const_iterator const_iterator;
ELFReader.h 29 class SectionData;
77 bool readRegularSection(Input& pInput, SectionData& pSD) const;
144 bool readRegularSection(Input& pInput, SectionData& pSD) const;
ELFObjectWriter.h 27 class SectionData;
119 void emitSectionData(const SectionData& pSD, MemoryRegion& pRegion) const;
ELFReaderIf.h 30 class SectionData;
69 virtual bool readRegularSection(Input& pInput, SectionData& pSD) const = 0;
NamePool.h 31 class SectionData;
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonGOT.cpp 12 #include <mcld/LD/SectionData.h>
  /frameworks/compile/mclinker/lib/Object/
ObjectBuilder.cpp 16 #include <mcld/LD/SectionData.h>
86 SectionData* data = NULL;
103 bool ObjectBuilder::MoveSectionData(SectionData& pFrom, SectionData& pTo)
123 SectionData::FragmentListType& from_list = pFrom.getFragmentList();
124 SectionData::FragmentListType& to_list = pTo.getFragmentList();
125 SectionData::FragmentListType::iterator frag, fragEnd = from_list.end();
146 /// AppendFragment - To append pFrag to the given SectionData pSD.
148 SectionData& pSD,
  /frameworks/compile/mclinker/lib/LD/
BranchIsland.cpp 42 SectionData::iterator BranchIsland::begin()
47 SectionData::const_iterator BranchIsland::begin() const
52 SectionData::iterator BranchIsland::end()
59 SectionData::const_iterator BranchIsland::end() const
120 SectionData* sd = m_Entry.getParent();
EhFrame.cpp 11 #include <mcld/LD/SectionData.h>
52 m_pSectionData = SectionData::Create(pSection);
ELFObjectReader.cpp 168 SectionData* sd = IRBuilder::CreateSectionData(**section);
178 SectionData* sd = IRBuilder::CreateSectionData(**section);
208 SectionData* sd = IRBuilder::CreateSectionData(**section);
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMGOT.h 30 ARMGOTEntry(uint64_t pContent, SectionData* pParent)
ARMGOT.cpp 137 SectionData::iterator entry(m_GOTPLT.front);
138 SectionData::iterator e_end;
142 e_end = SectionData::iterator(m_GOT.front);
ARMPLT.cpp 22 ARMPLT0::ARMPLT0(SectionData& pParent)
25 ARMPLT1::ARMPLT1(SectionData& pParent)
54 SectionData::iterator frag, fragEnd = m_SectionData->end();
  /frameworks/compile/mclinker/lib/Target/
GOT.cpp 36 SectionData::iterator frag, fragEnd = m_SectionData->end();
  /frameworks/compile/mclinker/include/mcld/Target/
TargetLDBackend.h 34 class SectionData;
148 virtual bool readSection(Input& pInput, SectionData& pSD)
  /frameworks/compile/mclinker/lib/Target/X86/
X86PLT.cpp 24 X86_32DynPLT0::X86_32DynPLT0(SectionData& pParent)
29 X86_32DynPLT1::X86_32DynPLT1(SectionData& pParent)
34 X86_32ExecPLT0::X86_32ExecPLT0(SectionData& pParent)
39 X86_32ExecPLT1::X86_32ExecPLT1(SectionData& pParent)
44 X86_64PLT0::X86_64PLT0(SectionData& pParent)
49 X86_64PLT1::X86_64PLT1(SectionData& pParent)
119 SectionData::iterator frag, fragEnd = m_SectionData->end();
X86GOT.cpp 12 #include <mcld/LD/SectionData.h>
  /frameworks/compile/mclinker/lib/Core/
Module.cpp 15 #include <mcld/LD/SectionData.h>
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOT.h 30 MipsGOTEntry(uint64_t pContent, SectionData* pParent)
  /external/llvm/lib/MC/
WinCOFFStreamer.cpp 160 MCSectionData &SectionData = getAssembler().getOrCreateSectionData(*Section);
162 if (SectionData.getAlignment() < ByteAlignment)
163 SectionData.setAlignment(ByteAlignment);
170 new MCAlignFragment(ByteAlignment, 0, 0, ByteAlignment, &SectionData);
172 SymbolData.setFragment(new MCFillFragment(0, 0, Size, &SectionData));
WinCOFFObjectWriter.cpp 149 void DefineSection(MCSectionData const &SectionData);
364 void WinCOFFObjectWriter::DefineSection(MCSectionData const &SectionData) {
365 assert(SectionData.getSection().getVariant() == MCSection::SV_COFF
369 static_cast<MCSectionCOFF const &>(SectionData.getSection());
387 switch (SectionData.getAlignment()) {
407 coff_section->MCData = &SectionData;
408 SectionMap[&SectionData.getSection()] = coff_section;
641 MCSectionData const *SectionData = Fragment->getParent();
644 assert(SectionMap.find(&SectionData->getSection()) != SectionMap.end() &&
649 COFFSection *coff_section = SectionMap[&SectionData->getSection()]
    [all...]
  /frameworks/compile/mclinker/lib/Fragment/
FragmentRef.cpp 19 #include <mcld/LD/SectionData.h>
77 SectionData* data = NULL;
  /frameworks/compile/mclinker/include/mcld/
IRBuilder.h 261 static SectionData* CreateSectionData(LDSection& pSection);
289 static SectionData* CreateBSS(LDSection& pSection);
314 /// AppendFragment - To append pFrag to the given SectionData pSD.
328 static uint64_t AppendFragment(Fragment& pFrag, SectionData& pSD);

Completed in 179 milliseconds

12 3