Searched refs:OutputRelocSection (Results 1 – 15 of 15) sorted by relevance
/frameworks/compile/mclinker/lib/Target/ |
D | OutputRelocSection.cpp | 24 OutputRelocSection::OutputRelocSection(Module& pModule, LDSection& pSection) in OutputRelocSection() function in mcld::OutputRelocSection 34 OutputRelocSection::~OutputRelocSection() { in ~OutputRelocSection() 37 Relocation* OutputRelocSection::create() { in create() 43 void OutputRelocSection::reserveEntry(size_t pNum) { in reserveEntry() 48 Relocation* OutputRelocSection::consumeEntry() { in consumeEntry() 70 size_t OutputRelocSection::numOfRelocs() { in numOfRelocs() 74 bool OutputRelocSection::addSymbolToDynSym(LDSymbol& pSymbol) { in addSymbolToDynSym()
|
D | Android.mk | 12 OutputRelocSection.cpp \
|
/frameworks/compile/mclinker/lib/Target/AArch64/ |
D | AArch64LDBackend.h | 94 OutputRelocSection& getRelaDyn(); 95 const OutputRelocSection& getRelaDyn() const; 97 OutputRelocSection& getRelaPLT(); 98 const OutputRelocSection& getRelaPLT() const; 156 OutputRelocSection* m_pRelaDyn; 158 OutputRelocSection* m_pRelaPLT;
|
D | AArch64LDBackend.cpp | 117 m_pRelaPLT = new OutputRelocSection(pModule, relaplt); in initTargetSections() 121 m_pRelaDyn = new OutputRelocSection(pModule, reladyn); in initTargetSections() 570 OutputRelocSection& AArch64GNULDBackend::getRelaDyn() { in getRelaDyn() 575 const OutputRelocSection& AArch64GNULDBackend::getRelaDyn() const { in getRelaDyn() 580 OutputRelocSection& AArch64GNULDBackend::getRelaPLT() { in getRelaPLT() 585 const OutputRelocSection& AArch64GNULDBackend::getRelaPLT() const { in getRelaPLT()
|
/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; 185 OutputRelocSection* m_pRelDyn; 187 OutputRelocSection* m_pRelPLT;
|
D | ARMLDBackend.cpp | 189 m_pRelPLT = new OutputRelocSection(pModule, relplt); in initTargetSections() 193 m_pRelDyn = new OutputRelocSection(pModule, reldyn); in initTargetSections() 657 OutputRelocSection& ARMGNULDBackend::getRelDyn() { in getRelDyn() 662 const OutputRelocSection& ARMGNULDBackend::getRelDyn() const { in getRelDyn() 667 OutputRelocSection& ARMGNULDBackend::getRelPLT() { in getRelPLT() 672 const OutputRelocSection& ARMGNULDBackend::getRelPLT() const { in getRelPLT()
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonLDBackend.h | 109 OutputRelocSection& getRelaDyn(); 111 const OutputRelocSection& getRelaDyn() const; 117 OutputRelocSection& getRelaPLT(); 119 const OutputRelocSection& getRelaPLT() const; 178 OutputRelocSection* m_pRelaDyn; 180 OutputRelocSection* m_pRelaPLT;
|
D | HexagonLDBackend.cpp | 249 OutputRelocSection& HexagonLDBackend::getRelaDyn() { in getRelaDyn() 254 const OutputRelocSection& HexagonLDBackend::getRelaDyn() const { in getRelaDyn() 259 OutputRelocSection& HexagonLDBackend::getRelaPLT() { in getRelaPLT() 264 const OutputRelocSection& HexagonLDBackend::getRelaPLT() const { in getRelaPLT() 423 m_pRelaPLT = new OutputRelocSection(pModule, relaplt); in initTargetSections() 427 m_pRelaDyn = new OutputRelocSection(pModule, reladyn); in initTargetSections()
|
/frameworks/compile/mclinker/lib/Target/X86/ |
D | X86LDBackend.h | 86 OutputRelocSection& getRelDyn(); 87 const OutputRelocSection& getRelDyn() const; 89 OutputRelocSection& getRelPLT(); 90 const OutputRelocSection& getRelPLT() const; 140 OutputRelocSection* m_pRelDyn; 142 OutputRelocSection* m_pRelPLT;
|
D | X86LDBackend.cpp | 212 OutputRelocSection& X86GNULDBackend::getRelDyn() { in getRelDyn() 217 const OutputRelocSection& X86GNULDBackend::getRelDyn() const { in getRelDyn() 222 OutputRelocSection& X86GNULDBackend::getRelPLT() { in getRelPLT() 227 const OutputRelocSection& X86GNULDBackend::getRelPLT() const { in getRelPLT() 365 m_pRelPLT = new OutputRelocSection(pModule, relplt); in initTargetSections() 369 m_pRelDyn = new OutputRelocSection(pModule, reldyn); in initTargetSections() 632 m_pRelPLT = new OutputRelocSection(pModule, relplt); in initTargetSections() 636 m_pRelDyn = new OutputRelocSection(pModule, reldyn); in initTargetSections()
|
/frameworks/compile/mclinker/include/mcld/Target/ |
D | OutputRelocSection.h | 24 class OutputRelocSection { 26 OutputRelocSection(Module& pModule, LDSection& pSection); 28 ~OutputRelocSection();
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsLDBackend.h | 24 class OutputRelocSection; variable 103 OutputRelocSection& getRelPLT(); 104 const OutputRelocSection& getRelPLT() const; 106 OutputRelocSection& getRelDyn(); 107 const OutputRelocSection& getRelDyn() const; 245 OutputRelocSection* m_pRelPlt; // .rel.plt 246 OutputRelocSection* m_pRelDyn; // .rel.dyn
|
D | MipsGOT.h | 28 class OutputRelocSection; variable 88 void finalizeScanning(OutputRelocSection& pRelDyn);
|
D | MipsLDBackend.cpp | 105 m_pRelPlt = new OutputRelocSection(pModule, relplt); in initTargetSections() 109 m_pRelDyn = new OutputRelocSection(pModule, reldyn); in initTargetSections() 528 OutputRelocSection& MipsGNULDBackend::getRelPLT() { in getRelPLT() 533 const OutputRelocSection& MipsGNULDBackend::getRelPLT() const { in getRelPLT() 538 OutputRelocSection& MipsGNULDBackend::getRelDyn() { in getRelDyn() 543 const OutputRelocSection& MipsGNULDBackend::getRelDyn() const { in getRelDyn()
|
D | MipsGOT.cpp | 118 void MipsGOT::finalizeScanning(OutputRelocSection& pRelDyn) { in finalizeScanning()
|