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

  /frameworks/compile/mclinker/lib/Target/
OutputRelocSection.cpp 1 //===- OutputRelocSection.cpp ---------------------------------------------===//
9 #include "mcld/Target/OutputRelocSection.h"
22 // OutputRelocSection
24 OutputRelocSection::OutputRelocSection(Module& pModule, LDSection& pSection)
34 OutputRelocSection::~OutputRelocSection() {
37 Relocation* OutputRelocSection::create() {
43 void OutputRelocSection::reserveEntry(size_t pNum) {
48 Relocation* OutputRelocSection::consumeEntry()
    [all...]
Android.mk 12 OutputRelocSection.cpp \
  /frameworks/compile/mclinker/include/mcld/Target/
OutputRelocSection.h 1 //===- OutputRelocSection.h -----------------------------------------------===//
21 /** \class OutputRelocSection
24 class OutputRelocSection {
26 OutputRelocSection(Module& pModule, LDSection& pSection);
28 ~OutputRelocSection();
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64LDBackend.h 17 #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;
AArch64LDBackend.cpp 117 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/
ARMLDBackend.h 18 #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;
ARMLDBackend.cpp 189 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 {
    [all...]
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonLDBackend.h 21 #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;
HexagonLDBackend.cpp 249 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);
    [all...]
  /frameworks/compile/mclinker/lib/Target/X86/
X86LDBackend.h 19 #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;
X86LDBackend.cpp 212 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/
MipsLDBackend.h 24 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
MipsGOT.h 28 class OutputRelocSection;
88 void finalizeScanning(OutputRelocSection& pRelDyn);
MipsLDBackend.cpp 33 #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 {
    [all...]
MipsGOT.cpp 12 #include "mcld/Target/OutputRelocSection.h"
118 void MipsGOT::finalizeScanning(OutputRelocSection& pRelDyn) {

Completed in 164 milliseconds