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

  /frameworks/compile/mclinker/lib/LD/
RelocData.cpp 1 //===- RelocData.cpp ------------------------------------------------------===//
9 #include "mcld/LD/RelocData.h"
17 typedef GCFactory<RelocData, MCLD_SECTIONS_PER_INPUT> RelocDataFactory;
22 // RelocData
24 RelocData::RelocData() : m_pSection(NULL) {
27 RelocData::RelocData(LDSection& pSection) : m_pSection(&pSection) {
30 RelocData* RelocData::Create(LDSection& pSection)
    [all...]
EhFrame.cpp 15 #include "mcld/LD/RelocData.h"
225 const RelocData* reloc_data = rel_sec->getRelocData();
226 for (RelocData::const_iterator ri = reloc_data->begin(),
252 const RelocData* reloc_data = pRelocSect->getRelocData();
255 for (RelocData::const_iterator ri = reloc_data->begin(),
283 for (RelocData::const_iterator ri = reloc_data->begin(),
289 const_cast<RelocData*>(reloc_data)->remove(rel);
302 const_cast<RelocData*>(rel_sect->getRelocData())->remove(*rel);
ELFObjectWriter.cpp 27 #include "mcld/LD/RelocData.h"
451 const RelocData* sect_data = pSection.getRelocData();
479 const RelocData& pRelocData,
490 for (RelocData::const_iterator it = pRelocData.begin(), ie = pRelocData.end();
521 const RelocData& pRelocData,
532 for (RelocData::const_iterator it = pRelocData.begin(), ie = pRelocData.end();
GarbageCollection.cpp 18 #include "mcld/LD/RelocData.h"
148 RelocData::iterator reloc_it, rEnd = reloc_sect->getRelocData()->end();
IdenticalCodeFolding.cpp 16 #include "mcld/LD/RelocData.h"
141 RelocData::iterator rel, relEnd = (*sect)->getRelocData()->end();
  /frameworks/compile/mclinker/include/mcld/LD/
RelocData.h 1 //===- RelocData.h --------------------------------------------------------===//
29 /** \class RelocData
30 * \brief RelocData stores Relocation.
36 class RelocData {
38 friend class Chunk<RelocData, MCLD_SECTIONS_PER_INPUT>;
40 RelocData();
41 explicit RelocData(LDSection& pSection);
57 static RelocData* Create(LDSection& pSection);
59 static void Destroy(RelocData*& pSection);
73 RelocData& append(Relocation& pRelocation)
    [all...]
ELFObjectWriter.h 23 class RelocData;
86 const RelocData& pRelocData,
92 const RelocData& pRelocData,
LDSection.h 24 class RelocData;
140 // ------ RelocData ------ //
141 const RelocData* getRelocData() const { return m_Data.reloc_data; }
142 RelocData* getRelocData() { return m_Data.reloc_data; }
144 void setRelocData(RelocData* pRD) { m_Data.reloc_data = pRD; }
176 RelocData* reloc_data;
196 /// m_Data - the SectionData or RelocData of this section
  /frameworks/compile/mclinker/include/mcld/Target/
OutputRelocSection.h 12 #include "mcld/LD/RelocData.h"
47 typedef RelocData::iterator RelocIterator;
52 /// m_RelocData - the output RelocData which contains the dynamic
54 RelocData* m_pRelocData;
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMException.h 29 class RelocData;
ARMLDBackend.cpp 580 RelocData::iterator reloc_it, rEnd = reloc_sect->getRelocData()->end();
830 RelocData::iterator reloc, rEnd = (*rs)->getRelocData()->end();
    [all...]
  /frameworks/compile/mclinker/include/mcld/
IRBuilder.h 244 static RelocData* CreateRelocData(LDSection& pSection);
318 static void AppendRelocation(Relocation& pRelocation, RelocData& pRD);
  /frameworks/compile/mclinker/unittests/
ELFReaderTest.cpp 135 const RelocData::RelocationListType& rRelocs =
137 RelocData::const_iterator rReloc = rRelocs.begin();
  /frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp 31 #include "mcld/LD/RelocData.h"
595 RelocData::iterator reloc, rEnd = (*rs)->getRelocData()->end();
799 RelocData::iterator reloc, rEnd = (*rs)->getRelocData()->end();
    [all...]
  /frameworks/compile/mclinker/lib/Core/
IRBuilder.cpp 17 #include "mcld/LD/RelocData.h"
293 RelocData* IRBuilder::CreateRelocData(LDSection& pSection) {
296 RelocData* reloc_data = RelocData::Create(pSection);
368 /// AppendRelocation - To append an relocation to the given RelocData pRD.
369 void IRBuilder::AppendRelocation(Relocation& pRelocation, RelocData& pRD) {
Linker.cpp 19 #include "mcld/LD/RelocData.h"
306 // RelocData before deleting target backend.
307 RelocData::Clear();
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64LDBackend.cpp 383 RelocData::iterator reloc, rEnd = (*rs)->getRelocData()->end();
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonLDBackend.cpp 558 RelocData::iterator reloc, rEnd = (*rs)->getRelocData()->end();
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp 815 for (RelocData::iterator reloc = sec->getRelocData()->begin();
    [all...]
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp 30 #include "mcld/LD/RelocData.h"
    [all...]
  /frameworks/compile/mclinker/lib/Target/X86/
X86Relocator.cpp 827 RelocData::iterator(pReloc), reloc);
    [all...]

Completed in 274 milliseconds