Searched defs:pSection (Results 1 - 25 of 45) sorted by relevance

12

/frameworks/compile/mclinker/lib/Target/
H A DPLT.cpp20 PLT::PLT(LDSection& pSection) argument
21 :m_Section(pSection)
23 m_pSectionData = IRBuilder::CreateSectionData(pSection);
H A DGOT.cpp24 GOT::GOT(LDSection& pSection) argument
25 : m_Section(pSection) {
26 m_SectionData = IRBuilder::CreateSectionData(pSection);
H A DOutputRelocSection.cpp24 OutputRelocSection::OutputRelocSection(Module& pModule, LDSection& pSection) argument
29 assert(!pSection.hasRelocData() && "Given section is not a relocation section");
30 m_pRelocData = IRBuilder::CreateRelocData(pSection);
H A DELFDynamic.cpp348 void ELFDynamic::emit(const LDSection& pSection, MemoryRegion& pRegion) const argument
350 if (pRegion.size() < pSection.size()) {
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonGOT.cpp21 HexagonGOT::HexagonGOT(LDSection& pSection) argument
22 : GOT(pSection)
H A DHexagonGOTPLT.cpp23 HexagonGOTPLT::HexagonGOTPLT(LDSection& pSection) argument
24 : HexagonGOT(pSection)
30 pSection.setAlign(8);
H A DHexagonPLT.cpp37 HexagonPLT::HexagonPLT(LDSection& pSection, argument
40 : PLT(pSection),
52 pSection.setAlign(16);
/frameworks/compile/mclinker/lib/LD/
H A DSectionData.cpp29 SectionData::SectionData(LDSection &pSection) argument
30 : m_pSection(&pSection) {
33 SectionData* SectionData::Create(LDSection& pSection) argument
36 new (result) SectionData(pSection);
40 void SectionData::Destroy(SectionData*& pSection) argument
42 pSection->~SectionData();
43 g_SectDataFactory->deallocate(pSection);
44 pSection = NULL;
H A DELFSegmentFactory.cpp49 ELFSegmentFactory::find(uint32_t pType, const LDSection* pSection) argument
56 if (*sect == pSection)
65 ELFSegmentFactory::find(uint32_t pType, const LDSection* pSection) const
72 if (*sect == pSection)
H A DLDContext.cpp19 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);
H A DRelocData.cpp27 RelocData::RelocData(LDSection &pSection) argument
28 : m_pSection(&pSection) {
31 RelocData* RelocData::Create(LDSection& pSection) argument
34 new (result) RelocData(pSection);
38 void RelocData::Destroy(RelocData*& pSection) argument
40 pSection->~RelocData();
41 g_RelocDataFactory->deallocate(pSection);
42 pSection = NULL;
H A DELFSegment.cpp76 LDSection* pSection)
78 return m_SectionList.insert(pPos, pSection);
81 void ELFSegment::append(LDSection* pSection) argument
83 assert(NULL != pSection);
84 if (pSection->align() > m_MaxSectionAlign)
85 m_MaxSectionAlign = pSection->align();
86 m_SectionList.push_back(pSection);
75 insert(ELFSegment::iterator pPos, LDSection* pSection) argument
H A DRelocator.cpp32 const LDSection& pSection)
55 LDSection& pSection,
59 std::string sect_name(pSection.name());
30 partialScanRelocation(Relocation& pReloc, Module& pModule, const LDSection& pSection) argument
54 issueUndefRef(Relocation& pReloc, LDSection& pSection, Input& pInput) argument
H A DLDSection.cpp80 void LDSection::Destroy(LDSection*& pSection) argument
82 g_SectFactory->destroy(pSection);
83 g_SectFactory->deallocate(pSection);
84 pSection = NULL;
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86GOT.cpp21 X86_32GOT::X86_32GOT(LDSection& pSection) argument
22 : GOT(pSection)
38 X86_64GOT::X86_64GOT(LDSection& pSection) argument
39 : GOT(pSection)
H A DX86GOTPLT.cpp23 X86_32GOTPLT::X86_32GOTPLT(LDSection& pSection) argument
24 : X86_32GOT(pSection)
63 X86_64GOTPLT::X86_64GOTPLT(LDSection& pSection) argument
64 : X86_64GOT(pSection)
H A DX86PLT.cpp57 X86PLT::X86PLT(LDSection& pSection, const LinkerConfig& pConfig, int got_size) argument
58 : PLT(pSection),
150 X86_32PLT::X86_32PLT(LDSection& pSection, argument
153 : X86PLT(pSection, pConfig, 32),
236 X86_64PLT::X86_64PLT(LDSection& pSection, argument
239 : X86PLT(pSection, pConfig, 64),
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOTPLT.cpp23 MipsGOTPLT::MipsGOTPLT(LDSection& pSection) argument
24 : GOT(pSection)
H A DMipsPLT.cpp64 MipsPLT::MipsPLT(LDSection& pSection) argument
65 : PLT(pSection)
/frameworks/compile/mclinker/lib/Fragment/
H A DFragmentRef.cpp79 FragmentRef* FragmentRef::Create(LDSection& pSection, uint64_t pOffset) argument
82 switch (pSection.kind()) {
87 if (pSection.hasEhFrame())
88 data = pSection.getEhFrame()->getSectionData();
91 data = pSection.getSectionData();
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64GOT.cpp25 AArch64GOT::AArch64GOT(LDSection& pSection) argument
26 : GOT(pSection), m_pGOTPLTFront(NULL), m_pGOTFront(NULL)
H A DAArch64PLT.cpp31 AArch64PLT::AArch64PLT(LDSection& pSection, AArch64GOT &pGOTPLT) argument
32 : PLT(pSection), m_GOT(pGOTPLT) {
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMGOT.cpp25 ARMGOT::ARMGOT(LDSection& pSection) argument
26 : GOT(pSection), m_pGOTPLTFront(NULL), m_pGOTFront(NULL)
H A DARMPLT.cpp30 ARMPLT::ARMPLT(LDSection& pSection, ARMGOT &pGOTPLT) argument
31 : PLT(pSection), m_GOT(pGOTPLT) {
/frameworks/compile/mclinker/lib/Object/
H A DObjectBuilder.cpp161 void ObjectBuilder::UpdateSectionAlign(LDSection& pSection, argument
164 if (pSection.align() < pAlignConstraint)
165 pSection.setAlign(pAlignConstraint);

Completed in 439 milliseconds

12