Searched refs:OutputRelocSection (Results 1 – 13 of 13) sorted by relevance
/frameworks/compile/mclinker/lib/Target/ |
D | OutputRelocSection.cpp | 24 OutputRelocSection::OutputRelocSection(Module& pModule, LDSection& pSection) in OutputRelocSection() function in OutputRelocSection 33 OutputRelocSection::~OutputRelocSection() in ~OutputRelocSection() 37 void OutputRelocSection::reserveEntry(size_t pNum) in reserveEntry() 43 Relocation* OutputRelocSection::consumeEntry() in consumeEntry() 67 size_t OutputRelocSection::numOfRelocs() in numOfRelocs() 72 bool OutputRelocSection::addSymbolToDynSym(LDSymbol& pSymbol) in addSymbolToDynSym()
|
D | Android.mk | 10 OutputRelocSection.cpp \
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMLDBackend.h | 100 OutputRelocSection& getRelDyn(); 101 const OutputRelocSection& getRelDyn() const; 103 OutputRelocSection& getRelPLT(); 104 const OutputRelocSection& getRelPLT() const; 158 OutputRelocSection* m_pRelDyn; 160 OutputRelocSection* m_pRelPLT;
|
D | ARMLDBackend.cpp | 109 m_pRelPLT = new OutputRelocSection(pModule, relplt); in initTargetSections() 113 m_pRelDyn = new OutputRelocSection(pModule, reldyn); in initTargetSections() 468 OutputRelocSection& ARMGNULDBackend::getRelDyn() in getRelDyn() 474 const OutputRelocSection& ARMGNULDBackend::getRelDyn() const in getRelDyn() 480 OutputRelocSection& ARMGNULDBackend::getRelPLT() in getRelPLT() 486 const OutputRelocSection& ARMGNULDBackend::getRelPLT() const in getRelPLT()
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonLDBackend.h | 110 OutputRelocSection& getRelaDyn(); 112 const OutputRelocSection& getRelaDyn() const; 118 OutputRelocSection& getRelaPLT(); 120 const OutputRelocSection& getRelaPLT() const; 183 OutputRelocSection* m_pRelaDyn; 185 OutputRelocSection* m_pRelaPLT;
|
D | HexagonLDBackend.cpp | 256 OutputRelocSection& HexagonLDBackend::getRelaDyn() in getRelaDyn() 262 const OutputRelocSection& HexagonLDBackend::getRelaDyn() const in getRelaDyn() 268 OutputRelocSection& HexagonLDBackend::getRelaPLT() in getRelaPLT() 274 const OutputRelocSection& HexagonLDBackend::getRelaPLT() const in getRelaPLT() 447 m_pRelaPLT = new OutputRelocSection(pModule, relaplt); in initTargetSections() 451 m_pRelaDyn = new OutputRelocSection(pModule, reladyn); in initTargetSections()
|
/frameworks/compile/mclinker/lib/Target/X86/ |
D | X86LDBackend.h | 85 OutputRelocSection& getRelDyn(); 86 const OutputRelocSection& getRelDyn() const; 88 OutputRelocSection& getRelPLT(); 89 const OutputRelocSection& getRelPLT() const; 137 OutputRelocSection* m_pRelDyn; 139 OutputRelocSection* m_pRelPLT;
|
D | X86LDBackend.cpp | 224 OutputRelocSection& X86GNULDBackend::getRelDyn() in getRelDyn() 230 const OutputRelocSection& X86GNULDBackend::getRelDyn() const in getRelDyn() 236 OutputRelocSection& X86GNULDBackend::getRelPLT() in getRelPLT() 242 const OutputRelocSection& X86GNULDBackend::getRelPLT() const in getRelPLT() 345 m_pRelPLT = new OutputRelocSection(pModule, relplt); in initTargetSections() 349 m_pRelDyn = new OutputRelocSection(pModule, reldyn); in initTargetSections() 531 m_pRelPLT = new OutputRelocSection(pModule, relplt); in initTargetSections() 535 m_pRelDyn = new OutputRelocSection(pModule, reldyn); in initTargetSections()
|
/frameworks/compile/mclinker/include/mcld/Target/ |
D | OutputRelocSection.h | 28 class OutputRelocSection 31 OutputRelocSection(Module& pModule, LDSection& pSection); 33 ~OutputRelocSection();
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsLDBackend.h | 18 class OutputRelocSection; variable 88 OutputRelocSection& getRelDyn(); 89 const OutputRelocSection& getRelDyn() const; 136 OutputRelocSection* m_pRelDyn; // .rel.dyn
|
D | MipsGOT.h | 30 class OutputRelocSection; variable 97 void finalizeScanning(OutputRelocSection& pRelDyn);
|
D | MipsLDBackend.cpp | 66 m_pRelDyn = new OutputRelocSection(pModule, reldyn); in initTargetSections() 233 OutputRelocSection& MipsGNULDBackend::getRelDyn() in getRelDyn() 239 const OutputRelocSection& MipsGNULDBackend::getRelDyn() const in getRelDyn()
|
D | MipsGOT.cpp | 103 void MipsGOT::finalizeScanning(OutputRelocSection& pRelDyn) in finalizeScanning()
|