Home
last modified time | relevance | path

Searched refs:OutputRelocSection (Results 1 – 13 of 13) sorted by relevance

/frameworks/compile/mclinker/lib/Target/
DOutputRelocSection.cpp24 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()
DAndroid.mk10 OutputRelocSection.cpp \
/frameworks/compile/mclinker/lib/Target/ARM/
DARMLDBackend.h100 OutputRelocSection& getRelDyn();
101 const OutputRelocSection& getRelDyn() const;
103 OutputRelocSection& getRelPLT();
104 const OutputRelocSection& getRelPLT() const;
158 OutputRelocSection* m_pRelDyn;
160 OutputRelocSection* m_pRelPLT;
DARMLDBackend.cpp109 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/
DHexagonLDBackend.h110 OutputRelocSection& getRelaDyn();
112 const OutputRelocSection& getRelaDyn() const;
118 OutputRelocSection& getRelaPLT();
120 const OutputRelocSection& getRelaPLT() const;
183 OutputRelocSection* m_pRelaDyn;
185 OutputRelocSection* m_pRelaPLT;
DHexagonLDBackend.cpp256 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/
DX86LDBackend.h85 OutputRelocSection& getRelDyn();
86 const OutputRelocSection& getRelDyn() const;
88 OutputRelocSection& getRelPLT();
89 const OutputRelocSection& getRelPLT() const;
137 OutputRelocSection* m_pRelDyn;
139 OutputRelocSection* m_pRelPLT;
DX86LDBackend.cpp224 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/
DOutputRelocSection.h28 class OutputRelocSection
31 OutputRelocSection(Module& pModule, LDSection& pSection);
33 ~OutputRelocSection();
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsLDBackend.h18 class OutputRelocSection; variable
88 OutputRelocSection& getRelDyn();
89 const OutputRelocSection& getRelDyn() const;
136 OutputRelocSection* m_pRelDyn; // .rel.dyn
DMipsGOT.h30 class OutputRelocSection; variable
97 void finalizeScanning(OutputRelocSection& pRelDyn);
DMipsLDBackend.cpp66 m_pRelDyn = new OutputRelocSection(pModule, reldyn); in initTargetSections()
233 OutputRelocSection& MipsGNULDBackend::getRelDyn() in getRelDyn()
239 const OutputRelocSection& MipsGNULDBackend::getRelDyn() const in getRelDyn()
DMipsGOT.cpp103 void MipsGOT::finalizeScanning(OutputRelocSection& pRelDyn) in finalizeScanning()