/frameworks/compile/mclinker/lib/Object/ |
D | ObjectBuilder.cpp | 170 SectionData& pSD, in AppendFragment() argument 175 if (!pSD.empty()) in AppendFragment() 176 offset = pSD.back().getOffset() + pSD.back().size(); in AppendFragment() 187 align->setParent(&pSD); in AppendFragment() 188 pSD.getFragmentList().push_back(align); in AppendFragment() 193 pFrag.setParent(&pSD); in AppendFragment() 195 pSD.getFragmentList().push_back(&pFrag); in AppendFragment() 199 NullFragment* null = new NullFragment(&pSD); in AppendFragment()
|
/frameworks/compile/mclinker/lib/Fragment/ |
D | NullFragment.cpp | 16 NullFragment::NullFragment(SectionData* pSD) in NullFragment() argument 17 : Fragment(Fragment::Null, pSD) in NullFragment()
|
D | RegionFragment.cpp | 16 RegionFragment::RegionFragment(llvm::StringRef pRegion, SectionData* pSD) in RegionFragment() argument 17 : Fragment(Fragment::Region, pSD), m_Region(pRegion) { in RegionFragment()
|
D | FillFragment.cpp | 21 SectionData* pSD) in FillFragment() argument 22 : Fragment(Fragment::Fillment, pSD), m_Value(pValue), m_ValueSize(pValueSize), in FillFragment()
|
D | AlignFragment.cpp | 23 SectionData *pSD) in AlignFragment() argument 24 : Fragment(Fragment::Alignment, pSD), m_Alignment(pAlignment), in AlignFragment()
|
/frameworks/compile/mclinker/include/mcld/Fragment/ |
D | TargetFragment.h | 25 TargetFragment(Fragment::Type pKind, SectionData* pSD = NULL) 26 : Fragment(pKind, pSD) {} in Fragment() argument
|
D | NullFragment.h | 25 NullFragment(SectionData* pSD = NULL);
|
D | RegionFragment.h | 23 RegionFragment(llvm::StringRef pRegion, SectionData* pSD = NULL);
|
D | FillFragment.h | 24 SectionData* pSD = NULL);
|
D | AlignFragment.h | 22 unsigned int pMaxBytesToEmit, SectionData *pSD = NULL);
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | LDSection.h | 154 void setSectionData(SectionData* pSD) { m_Data.sect_data = pSD; } in setSectionData() argument
|
D | ELFReader.h | 73 bool readRegularSection(Input& pInput, SectionData& pSD) const; 163 bool readRegularSection(Input& pInput, SectionData& pSD) const;
|
D | ELFReaderIf.h | 67 virtual bool readRegularSection(Input& pInput, SectionData& pSD) const = 0;
|
D | ELFObjectWriter.h | 116 void emitSectionData(const SectionData& pSD, MemoryRegion& pRegion) const;
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsLDBackend.cpp | 372 bool MipsGNULDBackend::readSection(Input& pInput, SectionData& pSD) in readSection() argument 374 llvm::StringRef name(pSD.getSection().name()); in readSection() 377 uint64_t offset = pInput.fileOffset() + pSD.getSection().offset(); in readSection() 378 uint64_t size = pSD.getSection().size(); in readSection() 381 ObjectBuilder::AppendFragment(*frag, pSD); in readSection() 385 if (pSD.getSection().type() == llvm::ELF::SHT_MIPS_OPTIONS) { in readSection() 386 uint32_t offset = pInput.fileOffset() + pSD.getSection().offset(); in readSection() 387 uint32_t size = pSD.getSection().size(); in readSection() 420 return GNULDBackend::readSection(pInput, pSD); in readSection()
|
D | MipsLDBackend.h | 91 bool readSection(Input& pInput, SectionData& pSD);
|
/frameworks/compile/mclinker/include/mcld/Object/ |
D | ObjectBuilder.h | 90 static uint64_t AppendFragment(Fragment& pFrag, SectionData& pSD,
|
/frameworks/compile/mclinker/lib/Target/AArch64/ |
D | AArch64LDBackend.h | 112 bool readSection(Input& pInput, SectionData& pSD);
|
/frameworks/compile/mclinker/lib/LD/ |
D | ELFReader.cpp | 57 ELFReader<32, true>::readRegularSection(Input& pInput, SectionData& pSD) const in readRegularSection() 59 uint32_t offset = pInput.fileOffset() + pSD.getSection().offset(); in readRegularSection() 60 uint32_t size = pSD.getSection().size(); in readRegularSection() 63 ObjectBuilder::AppendFragment(*frag, pSD); in readRegularSection() 582 ELFReader<64, true>::readRegularSection(Input& pInput, SectionData& pSD) const in readRegularSection() 584 uint64_t offset = pInput.fileOffset() + pSD.getSection().offset(); in readRegularSection() 585 uint64_t size = pSD.getSection().size(); in readRegularSection() 588 ObjectBuilder::AppendFragment(*frag, pSD); in readRegularSection()
|
/frameworks/compile/mclinker/lib/Core/ |
D | IRBuilder.cpp | 364 uint64_t IRBuilder::AppendFragment(Fragment& pFrag, SectionData& pSD) in AppendFragment() argument 367 pSD, in AppendFragment() 368 pSD.getSection().align()); in AppendFragment() 369 pSD.getSection().setSize(pSD.getSection().size() + size); in AppendFragment()
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMLDBackend.h | 127 bool readSection(Input& pInput, SectionData& pSD);
|
D | ARMLDBackend.cpp | 504 bool ARMGNULDBackend::readSection(Input& pInput, SectionData& pSD) in readSection() argument 507 uint32_t offset = pInput.fileOffset() + pSD.getSection().offset(); in readSection() 508 uint32_t size = pSD.getSection().size(); in readSection() 520 ObjectBuilder::AppendFragment(*frag, pSD); in readSection()
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonLDBackend.h | 133 bool readSection(Input& pInput, SectionData& pSD);
|
D | HexagonLDBackend.cpp | 971 bool HexagonLDBackend::readSection(Input& pInput, SectionData& pSD) in readSection() argument 974 uint32_t offset = pInput.fileOffset() + pSD.getSection().offset(); in readSection() 975 uint32_t size = pSD.getSection().size(); in readSection() 977 if (pSD.getSection().type() == llvm::ELF::SHT_NOBITS) { in readSection() 992 ObjectBuilder::AppendFragment(*frag, pSD); in readSection()
|
/frameworks/compile/mclinker/include/mcld/Target/ |
D | TargetLDBackend.h | 134 virtual bool readSection(Input& pInput, SectionData& pSD) in readSection() argument
|