Searched refs:OutputRelocSection (Results 1 - 15 of 15) sorted by relevance

/frameworks/compile/mclinker/lib/Target/
H A DOutputRelocSection.cpp1 //===- OutputRelocSection.cpp ---------------------------------------------===//
9 #include "mcld/Target/OutputRelocSection.h"
22 // OutputRelocSection
24 OutputRelocSection::OutputRelocSection(Module& pModule, LDSection& pSection) function in class:mcld::OutputRelocSection
34 OutputRelocSection::~OutputRelocSection() {
37 Relocation* OutputRelocSection::create() {
43 void OutputRelocSection::reserveEntry(size_t pNum) {
48 Relocation* OutputRelocSection
[all...]
H A DAndroid.mk12 OutputRelocSection.cpp \
/frameworks/compile/mclinker/include/mcld/Target/
H A DOutputRelocSection.h1 //===- OutputRelocSection.h -----------------------------------------------===//
21 /** \class OutputRelocSection
24 class OutputRelocSection { class in namespace:mcld
26 OutputRelocSection(Module& pModule, LDSection& pSection);
28 ~OutputRelocSection();
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64LDBackend.h17 #include "mcld/Target/OutputRelocSection.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;
H A DAArch64LDBackend.cpp117 m_pRelaPLT = new OutputRelocSection(pModule, relaplt);
121 m_pRelaDyn = new OutputRelocSection(pModule, reladyn);
570 OutputRelocSection& AArch64GNULDBackend::getRelaDyn() {
575 const OutputRelocSection& AArch64GNULDBackend::getRelaDyn() const {
580 OutputRelocSection& AArch64GNULDBackend::getRelaPLT() {
585 const OutputRelocSection& AArch64GNULDBackend::getRelaPLT() const {
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.h18 #include "mcld/Target/OutputRelocSection.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;
H A DARMLDBackend.cpp189 m_pRelPLT = new OutputRelocSection(pModule, relplt);
193 m_pRelDyn = new OutputRelocSection(pModule, reldyn);
657 OutputRelocSection& ARMGNULDBackend::getRelDyn() {
662 const OutputRelocSection& ARMGNULDBackend::getRelDyn() const {
667 OutputRelocSection& ARMGNULDBackend::getRelPLT() {
672 const OutputRelocSection& ARMGNULDBackend::getRelPLT() const {
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.h21 #include "mcld/Target/OutputRelocSection.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;
H A DHexagonLDBackend.cpp249 OutputRelocSection& HexagonLDBackend::getRelaDyn() {
254 const OutputRelocSection& HexagonLDBackend::getRelaDyn() const {
259 OutputRelocSection& HexagonLDBackend::getRelaPLT() {
264 const OutputRelocSection& HexagonLDBackend::getRelaPLT() const {
423 m_pRelaPLT = new OutputRelocSection(pModule, relaplt);
427 m_pRelaDyn = new OutputRelocSection(pModule, reladyn);
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86LDBackend.h19 #include "mcld/Target/OutputRelocSection.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;
H A DX86LDBackend.cpp212 OutputRelocSection& X86GNULDBackend::getRelDyn() {
217 const OutputRelocSection& X86GNULDBackend::getRelDyn() const {
222 OutputRelocSection& X86GNULDBackend::getRelPLT() {
227 const OutputRelocSection& X86GNULDBackend::getRelPLT() const {
365 m_pRelPLT = new OutputRelocSection(pModule, relplt);
369 m_pRelDyn = new OutputRelocSection(pModule, reldyn);
632 m_pRelPLT = new OutputRelocSection(pModule, relplt);
636 m_pRelDyn = new OutputRelocSection(pModule, reldyn);
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.h24 class OutputRelocSection;
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
H A DMipsGOT.h28 class OutputRelocSection;
88 void finalizeScanning(OutputRelocSection& pRelDyn);
H A DMipsLDBackend.cpp33 #include "mcld/Target/OutputRelocSection.h"
105 m_pRelPlt = new OutputRelocSection(pModule, relplt);
109 m_pRelDyn = new OutputRelocSection(pModule, reldyn);
528 OutputRelocSection& MipsGNULDBackend::getRelPLT() {
533 const OutputRelocSection& MipsGNULDBackend::getRelPLT() const {
538 OutputRelocSection& MipsGNULDBackend::getRelDyn() {
543 const OutputRelocSection& MipsGNULDBackend::getRelDyn() const {
H A DMipsGOT.cpp12 #include "mcld/Target/OutputRelocSection.h"
118 void MipsGOT::finalizeScanning(OutputRelocSection& pRelDyn) {

Completed in 204 milliseconds