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

1 2 3 4 5 6

  /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() : m_pSection(NULL) {
28 SectionData::SectionData(LDSection& pSection) : m_pSection(&pSection) {
31 SectionData* SectionData::Create(LDSection& pSection)
    [all...]
  /frameworks/compile/mclinker/lib/Fragment/
NullFragment.cpp 16 NullFragment::NullFragment(SectionData* pSD) : Fragment(Fragment::Null, pSD) {
FillFragment.cpp 10 #include "mcld/LD/SectionData.h"
21 SectionData* pSD)
RegionFragment.cpp 16 RegionFragment::RegionFragment(llvm::StringRef pRegion, SectionData* pSD)
AlignFragment.cpp 10 #include "mcld/LD/SectionData.h"
23 SectionData* pSD)
  /frameworks/compile/mclinker/include/mcld/Fragment/
Fragment.h 22 class SectionData;
34 explicit Fragment(Type pKind, SectionData* pParent = NULL);
40 const SectionData* getParent() const { return m_pParent; }
41 SectionData* getParent() { return m_pParent; }
43 void setParent(SectionData* pValue) { m_pParent = pValue; }
61 SectionData* m_pParent;
NullFragment.h 16 class SectionData;
24 explicit NullFragment(SectionData* pSD = NULL);
TargetFragment.h 16 class SectionData;
24 explicit TargetFragment(Fragment::Type pKind, SectionData* pSD = NULL)
FillFragment.h 18 class SectionData;
25 SectionData* pSD = NULL);
AlignFragment.h 16 class SectionData;
24 SectionData* pSD = NULL);
RegionFragment.h 23 explicit RegionFragment(llvm::StringRef pRegion, SectionData* pSD = NULL);
  /frameworks/compile/mclinker/unittests/
SectionDataTest.h 15 class SectionData;
FragmentTest.cpp 12 #include "mcld/LD/SectionData.h"
39 SectionData* s = SectionData::Create(*test);
49 // SectionData::Destroy(s);
54 SectionData* s = SectionData::Create(*test);
66 // SectionData::Destroy(s);
SectionDataTest.cpp 11 #include "mcld/LD/SectionData.h"
41 SectionData* s = SectionData::Create(*test);
50 SectionData* s = SectionData::Create(*test);
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonGOT.h 17 class SectionData;
24 HexagonGOTEntry(uint64_t pContent, SectionData* pParent)
  /frameworks/compile/mclinker/include/mcld/LD/
SectionData.h 1 //===- SectionData.h ------------------------------------------------------===//
25 /** \class SectionData
26 * \brief SectionData provides a container for all Fragments.
28 class SectionData {
30 friend class Chunk<SectionData, MCLD_SECTIONS_PER_INPUT>;
32 SectionData();
33 explicit SectionData(LDSection& pSection);
48 static SectionData* Create(LDSection& pSection);
50 static void Destroy(SectionData*& pSection);
83 DISALLOW_COPY_AND_ASSIGN(SectionData);
    [all...]
  /frameworks/compile/mclinker/lib/Target/X86/
X86GOT.h 17 class SectionData;
24 X86_32GOTEntry(uint64_t pContent, SectionData* pParent)
46 X86_64GOTEntry(uint64_t pContent, SectionData* pParent)
X86PLT.h 61 X86_32DynPLT0(SectionData& pParent);
66 X86_32DynPLT1(SectionData& pParent);
71 X86_32ExecPLT0(SectionData& pParent);
76 X86_32ExecPLT1(SectionData& pParent);
84 X86_64PLT0(SectionData& pParent);
89 X86_64PLT1(SectionData& pParent);
  /frameworks/compile/mclinker/include/mcld/Object/
ObjectBuilder.h 24 class SectionData;
68 static bool MoveSectionData(SectionData& pFrom, SectionData& pTo);
80 /// AppendFragment - To append pFrag to the given SectionData pSD.
92 SectionData& pSD,
  /frameworks/compile/mclinker/include/mcld/Target/
GOT.h 14 #include "mcld/LD/SectionData.h"
30 typedef SectionData::iterator iterator;
31 typedef SectionData::const_iterator const_iterator;
39 Entry(uint64_t pValue, SectionData* pParent)
74 SectionData* m_SectionData;
PLT.h 14 #include "mcld/LD/SectionData.h"
26 explicit PLTEntryBase(SectionData& pParent)
47 typedef SectionData::iterator iterator;
48 typedef SectionData::const_iterator const_iterator;
56 explicit Entry(SectionData& pParent) : EntryBase(pParent) {}
80 SectionData* m_pSectionData;
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMPLT.h 36 ARMPLT0(SectionData& pParent);
41 ARMPLT1(SectionData& pParent);
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsPLT.h 45 SectionData::iterator m_Last;
MipsGOTPLT.h 44 SectionData::iterator m_Last;
  /external/llvm/test/MC/ARM/
inst-directive.s 21 @ CHECK: SectionData (
40 @ CHECK: SectionData (
59 @ CHECK: SectionData (
78 @ CHECK: SectionData (

Completed in 821 milliseconds

1 2 3 4 5 6