Searched refs:pSection (Results 1 - 25 of 95) sorted by relevance

1234

/frameworks/compile/mclinker/lib/Target/
H A DPLT.cpp20 PLT::PLT(LDSection& pSection) : m_Section(pSection) { argument
21 m_pSectionData = IRBuilder::CreateSectionData(pSection);
H A DGOT.cpp24 GOT::GOT(LDSection& pSection) : m_Section(pSection) { argument
25 m_SectionData = IRBuilder::CreateSectionData(pSection);
H A DOutputRelocSection.cpp24 OutputRelocSection::OutputRelocSection(Module& pModule, LDSection& pSection) argument
29 assert(!pSection.hasRelocData() &&
31 m_pRelocData = IRBuilder::CreateRelocData(pSection);
/frameworks/compile/mclinker/lib/LD/
H A DSectionData.cpp28 SectionData::SectionData(LDSection& pSection) : m_pSection(&pSection) { argument
31 SectionData* SectionData::Create(LDSection& pSection) { argument
33 new (result) SectionData(pSection);
37 void SectionData::Destroy(SectionData*& pSection) { argument
38 pSection->~SectionData();
39 g_SectDataFactory->deallocate(pSection);
40 pSection = NULL;
H A DRelocData.cpp27 RelocData::RelocData(LDSection& pSection) : m_pSection(&pSection) { argument
30 RelocData* RelocData::Create(LDSection& pSection) { argument
32 new (result) RelocData(pSection);
36 void RelocData::Destroy(RelocData*& pSection) { argument
37 pSection->~RelocData();
38 g_RelocDataFactory->deallocate(pSection);
39 pSection = NULL;
H A DELFSegment.cpp73 LDSection* pSection) {
74 return m_SectionList.insert(pPos, pSection);
77 void ELFSegment::append(LDSection* pSection) { argument
78 assert(pSection != NULL);
79 if (pSection->align() > m_MaxSectionAlign)
80 m_MaxSectionAlign = pSection->align();
81 m_SectionList.push_back(pSection);
72 insert(ELFSegment::iterator pPos, LDSection* pSection) argument
H A DDebugString.cpp40 void DebugString::merge(LDSection& pSection) { argument
43 SectionData::iterator it, end = pSection.getSectionData()->end();
44 for (it = pSection.getSectionData()->begin(); it != end; ++it) {
53 const char* str_end = str + pSection.size();
90 DebugString* DebugString::Create(LDSection& pSection) { argument
91 g_DebugString->setOutputSection(pSection);
H A DLDSection.cpp77 void LDSection::Destroy(LDSection*& pSection) { argument
78 g_SectFactory->destroy(pSection);
79 g_SectFactory->deallocate(pSection);
80 pSection = NULL;
H A DLDContext.cpp20 LDContext& LDContext::appendSection(LDSection& pSection) { argument
21 if (LDFileFormat::Relocation == pSection.kind())
22 m_RelocSections.push_back(&pSection);
23 pSection.setIndex(m_SectionTable.size());
24 m_SectionTable.push_back(&pSection);
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86GOT.cpp21 X86_32GOT::X86_32GOT(LDSection& pSection) : GOT(pSection) { argument
34 X86_64GOT::X86_64GOT(LDSection& pSection) : GOT(pSection) { argument
H A DX86GOTPLT.h28 explicit X86_32GOTPLT(LDSection& pSection);
45 explicit X86_64GOTPLT(LDSection& pSection);
H A DX86GOT.h34 explicit X86_32GOT(LDSection& pSection);
56 explicit X86_64GOT(LDSection& pSection);
H A DX86Relocator.h83 LDSection& pSection,
102 LDSection& pSection) = 0;
107 LDSection& pSection) = 0;
163 LDSection& pSection);
168 LDSection& pSection);
172 void convertTLSIEtoLE(Relocation& pReloc, LDSection& pSection);
228 LDSection& pSection);
233 LDSection& pSection);
H A DX86GOTPLT.cpp23 X86_32GOTPLT::X86_32GOTPLT(LDSection& pSection) : X86_32GOT(pSection) { argument
57 X86_64GOTPLT::X86_64GOTPLT(LDSection& pSection) : X86_64GOT(pSection) { argument
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonGOT.cpp21 HexagonGOT::HexagonGOT(LDSection& pSection) : GOT(pSection) { argument
H A DHexagonGOTPLT.cpp23 HexagonGOTPLT::HexagonGOTPLT(LDSection& pSection) : HexagonGOT(pSection) { argument
28 pSection.setAlign(8);
H A DHexagonGOTPLT.h28 explicit HexagonGOTPLT(LDSection& pSection);
H A DHexagonGOT.h34 explicit HexagonGOT(LDSection& pSection);
/frameworks/compile/mclinker/include/mcld/LD/
H A DDebugString.h30 static DebugString* Create(LDSection& pSection);
34 void merge(LDSection& pSection);
48 void setOutputSection(LDSection& pSection) argument
49 { m_pSection = &pSection; }
H A DELFObjectWriter.h73 void emitSectionData(const LDSection& pSection, MemoryRegion& pRegion) const;
80 const LDSection& pSection,
97 uint64_t getSectEntrySize(const LDSection& pSection) const;
100 uint64_t getSectLink(const LDSection& pSection,
104 uint64_t getSectInfo(const LDSection& pSection) const;
H A DRelocData.h41 explicit RelocData(LDSection& pSection);
57 static RelocData* Create(LDSection& pSection);
59 static void Destroy(RelocData*& pSection);
H A DSectionData.h33 explicit SectionData(LDSection& pSection);
48 static SectionData* Create(LDSection& pSection);
50 static void Destroy(SectionData*& pSection);
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsPLT.h27 explicit MipsPLT(LDSection& pSection);
H A DMipsGOTPLT.h25 explicit MipsGOTPLT(LDSection& pSection);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocator.h92 LDSection& pSection,
108 void scanLocalReloc(Relocation& pReloc, const LDSection& pSection);
112 const LDSection& pSection);

Completed in 5479 milliseconds

1234