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

1 2 3

  /frameworks/compile/mclinker/lib/LD/
SectionData.cpp 1 //===- SectionData.cpp ----------------------------------------------------===//
9 #include <mcld/LD/SectionData.h>
18 typedef GCFactory<SectionData, MCLD_SECTIONS_PER_INPUT> SectDataFactory;
23 // SectionData
25 SectionData::SectionData()
29 SectionData::SectionData(LDSection &pSection)
33 SectionData* SectionData::Create(LDSection& pSection
    [all...]
  /frameworks/compile/mclinker/include/mcld/Fragment/
Fragment.h 24 class SectionData;
44 Fragment(Type pKind, SectionData *pParent = NULL);
50 const SectionData* getParent() const { return m_pParent; }
51 SectionData* getParent() { return m_pParent; }
53 void setParent(SectionData *pValue) { m_pParent = pValue; }
74 SectionData* m_pParent;
NullFragment.h 19 class SectionData;
28 NullFragment(SectionData* pSD = NULL);
TargetFragment.h 19 class SectionData;
28 TargetFragment(Fragment::Type pKind, SectionData* pSD = NULL)
AlignFragment.h 19 class SectionData;
25 unsigned int pMaxBytesToEmit, SectionData *pSD = NULL);
FillFragment.h 21 class SectionData;
27 SectionData* pSD = NULL);
RegionFragment.h 27 RegionFragment(MemoryRegion& pRegion, SectionData* pSD = NULL);
  /frameworks/compile/mclinker/lib/Fragment/
NullFragment.cpp 16 NullFragment::NullFragment(SectionData* pSD)
FillFragment.cpp 10 #include <mcld/LD/SectionData.h>
21 SectionData* pSD)
AlignFragment.cpp 12 #include <mcld/LD/SectionData.h>
23 SectionData *pSD)
Fragment.cpp 14 #include <mcld/LD/SectionData.h>
25 Fragment::Fragment(Type pKind, SectionData *pParent)
RegionFragment.cpp 17 RegionFragment::RegionFragment(MemoryRegion& pRegion, SectionData* pSD)
  /frameworks/compile/mclinker/unittests/
SectionDataTest.h 15 class SectionData;
FragmentTest.cpp 12 #include <mcld/LD/SectionData.h>
44 SectionData* s = SectionData::Create(*test);
54 // SectionData::Destroy(s);
59 SectionData* s = SectionData::Create(*test);
71 // SectionData::Destroy(s);
SectionDataTest.cpp 11 #include <mcld/LD/SectionData.h>
46 SectionData* s = SectionData::Create(*test);
56 SectionData* s = SectionData::Create(*test);
  /frameworks/compile/mclinker/include/mcld/LD/
SectionData.h 1 //===- SectionData.h ------------------------------------------------------===//
27 /** \class SectionData
28 * \brief SectionData provides a container for all Fragments.
30 class SectionData
33 friend class Chunk<SectionData, MCLD_SECTIONS_PER_INPUT>;
35 SectionData();
36 explicit SectionData(LDSection &pSection);
38 SectionData(const SectionData &); // DO NOT IMPLEMENT
39 SectionData& operator=(const SectionData &); // DO NOT IMPLEMEN
    [all...]
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonPLT.h 38 HexagonDynPLT0(SectionData& pParent);
44 HexagonExecPLT0(SectionData& pParent);
73 SectionData::iterator m_Last;
HexagonGOT.h 20 class SectionData;
28 HexagonGOTEntry(uint64_t pContent, SectionData* pParent)
HexagonPLT.cpp 23 HexagonDynPLT0::HexagonDynPLT0(SectionData& pParent)
28 HexagonExecPLT0::HexagonExecPLT0(SectionData& pParent)
87 SectionData::iterator frag, fragEnd = m_SectionData->end();
  /frameworks/compile/mclinker/include/mcld/Object/
ObjectBuilder.h 26 class SectionData;
73 static bool MoveSectionData(SectionData& pFrom, SectionData& pTo);
81 /// AppendFragment - To append pFrag to the given SectionData pSD.
92 static uint64_t AppendFragment(Fragment& pFrag, SectionData& pSD,
  /frameworks/compile/mclinker/include/mcld/Target/
PLT.h 16 #include <mcld/LD/SectionData.h>
30 PLTEntryBase(SectionData& pParent)
59 typedef SectionData::iterator iterator;
60 typedef SectionData::const_iterator const_iterator;
69 Entry(SectionData& pParent)
100 SectionData* m_SectionData;
GOT.h 16 #include <mcld/LD/SectionData.h>
34 typedef SectionData::iterator iterator;
35 typedef SectionData::const_iterator const_iterator;
44 Entry(uint64_t pValue, SectionData* pParent)
91 SectionData* m_SectionData;
  /frameworks/compile/mclinker/lib/Target/X86/
X86PLT.h 66 X86_32DynPLT0(SectionData& pParent);
72 X86_32DynPLT1(SectionData& pParent);
78 X86_32ExecPLT0(SectionData& pParent);
84 X86_32ExecPLT1(SectionData& pParent);
93 X86_64PLT0(SectionData& pParent);
99 X86_64PLT1(SectionData& pParent);
138 SectionData::iterator m_Last;
X86GOT.h 20 class SectionData;
28 X86_32GOTEntry(uint64_t pContent, SectionData* pParent)
58 X86_64GOTEntry(uint64_t pContent, SectionData* pParent)
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMPLT.h 41 ARMPLT0(SectionData& pParent);
47 ARMPLT1(SectionData& pParent);

Completed in 476 milliseconds

1 2 3