Searched defs:pSD (Results 1 - 13 of 13) sorted by relevance

/frameworks/compile/mclinker/lib/Fragment/
H A DNullFragment.cpp16 NullFragment::NullFragment(SectionData* pSD) argument
17 : Fragment(Fragment::Null, pSD)
H A DFillFragment.cpp21 SectionData* pSD)
22 : Fragment(Fragment::Fillment, pSD), m_Value(pValue), m_ValueSize(pValueSize),
18 FillFragment(int64_t pValue, unsigned int pValueSize, uint64_t pSize, SectionData* pSD) argument
H A DRegionFragment.cpp16 RegionFragment::RegionFragment(llvm::StringRef pRegion, SectionData* pSD) argument
17 : Fragment(Fragment::Region, pSD), m_Region(pRegion) {
H A DAlignFragment.cpp23 SectionData *pSD)
24 : Fragment(Fragment::Alignment, pSD), m_Alignment(pAlignment),
19 AlignFragment(unsigned int pAlignment, int64_t pValue, unsigned int pValueSize, unsigned int pMaxBytesToEmit, SectionData *pSD) argument
/frameworks/compile/mclinker/include/mcld/Target/
H A DTargetLDBackend.h134 virtual bool readSection(Input& pInput, SectionData& pSD) argument
/frameworks/compile/mclinker/lib/Object/
H A DObjectBuilder.cpp168 /// AppendFragment - To append pFrag to the given SectionData pSD.
170 SectionData& pSD,
175 if (!pSD.empty())
176 offset = pSD.back().getOffset() + pSD.back().size();
187 align->setParent(&pSD);
188 pSD.getFragmentList().push_back(align);
193 pFrag.setParent(&pSD);
195 pSD.getFragmentList().push_back(&pFrag);
199 NullFragment* null = new NullFragment(&pSD);
169 AppendFragment(Fragment& pFrag, SectionData& pSD, uint32_t pAlignConstraint) argument
[all...]
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSection.h154 void setSectionData(SectionData* pSD) { m_Data.sect_data = pSD; } argument
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64LDBackend.cpp361 bool AArch64GNULDBackend::readSection(Input& pInput, SectionData& pSD) argument
/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp363 /// AppendFragment - To append pFrag to the given SectionData pSD
364 uint64_t IRBuilder::AppendFragment(Fragment& pFrag, SectionData& pSD) argument
367 pSD,
368 pSD.getSection().align());
369 pSD.getSection().setSize(pSD.getSection().size() + size);
/frameworks/compile/mclinker/lib/LD/
H A DELFObjectWriter.cpp667 void ELFObjectWriter::emitSectionData(const SectionData& pSD, argument
670 SectionData::const_iterator fragIter, fragEnd = pSD.end();
672 for (fragIter = pSD.begin(); fragIter != fragEnd; ++fragIter) {
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.cpp504 bool ARMGNULDBackend::readSection(Input& pInput, SectionData& pSD) argument
507 uint32_t offset = pInput.fileOffset() + pSD.getSection().offset();
508 uint32_t size = pSD.getSection().size();
520 ObjectBuilder::AppendFragment(*frag, pSD);
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.cpp971 bool HexagonLDBackend::readSection(Input& pInput, SectionData& pSD) argument
974 uint32_t offset = pInput.fileOffset() + pSD.getSection().offset();
975 uint32_t size = pSD.getSection().size();
977 if (pSD.getSection().type() == llvm::ELF::SHT_NOBITS) {
992 ObjectBuilder::AppendFragment(*frag, pSD);
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp372 bool MipsGNULDBackend::readSection(Input& pInput, SectionData& pSD) argument
374 llvm::StringRef name(pSD.getSection().name());
377 uint64_t offset = pInput.fileOffset() + pSD.getSection().offset();
378 uint64_t size = pSD.getSection().size();
381 ObjectBuilder::AppendFragment(*frag, pSD);
385 if (pSD.getSection().type() == llvm::ELF::SHT_MIPS_OPTIONS) {
386 uint32_t offset = pInput.fileOffset() + pSD.getSection().offset();
387 uint32_t size = pSD.getSection().size();
420 return GNULDBackend::readSection(pInput, pSD);

Completed in 1660 milliseconds