HomeSort by relevance Sort by last modified time
    Searched refs:pSection (Results 76 - 100 of 100) sorted by null

1 2 34

  /frameworks/compile/mclinker/include/mcld/LD/
EhFrame.h 38 explicit EhFrame(LDSection& pSection);
169 static EhFrame* Create(LDSection& pSection);
171 static void Destroy(EhFrame*& pSection);
LDSection.h 54 static void Destroy(LDSection*& pSection);
  /frameworks/compile/mclinker/include/mcld/Object/
SectionMap.h 94 void setSection(LDSection* pSection) { m_pSection = pSection; }
192 iterator insert(iterator pPosition, LDSection* pSection);
  /frameworks/compile/mclinker/lib/Object/
ObjectBuilder.cpp 172 void ObjectBuilder::UpdateSectionAlign(LDSection& pSection,
174 if (pSection.align() < pAlignConstraint)
175 pSection.setAlign(pAlignConstraint);
SectionMap.cpp 289 LDSection* pSection) {
290 Output* output = new Output(pSection->name());
291 output->append(new Input(pSection->name(), InputSectDesc::NoKeep));
292 output->setSection(pSection);
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonPLT.cpp 35 HexagonPLT::HexagonPLT(LDSection& pSection,
38 : PLT(pSection), m_GOTPLT(pGOTPLT) {
47 pSection.setAlign(16);
HexagonRelocator.cpp 198 LDSection& pSection,
211 assert(pSection.getLink() != NULL);
212 if ((pSection.getLink()->flag() & llvm::ELF::SHF_ALLOC) == 0)
216 scanLocalReloc(pReloc, pLinker, pModule, pSection);
218 scanGlobalReloc(pReloc, pLinker, pModule, pSection);
223 issueUndefRef(pReloc, pSection, pInput);
238 LDSection& pSection) {
277 getTarget().checkAndSetHasTextRel(*pSection.getLink());
289 LDSection& pSection) {
338 ld_backend.checkAndSetHasTextRel(*pSection.getLink())
    [all...]
HexagonLDBackend.cpp 136 uint64_t HexagonLDBackend::emitSectionData(const LDSection& pSection,
147 if (FileFormat->hasPLT() && (&pSection == &(FileFormat->getPLT()))) {
169 } else if (FileFormat->hasGOT() && (&pSection == &(FileFormat->getGOT()))) {
173 (&pSection == &(FileFormat->getGOTPLT()))) {
179 const SectionData* sect_data = pSection.getSectionData();
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOT.h 35 explicit MipsGOT(LDSection& pSection);
223 explicit Mips32GOT(LDSection& pSection);
241 explicit Mips64GOT(LDSection& pSection);
MipsRelocator.cpp 186 LDSection& pSection,
198 assert(pSection.getLink() != NULL);
199 if ((pSection.getLink()->flag() & llvm::ELF::SHF_ALLOC) == 0)
208 scanLocalReloc(info, pBuilder, pSection);
210 scanGlobalReloc(info, pBuilder, pSection);
219 issueUndefRef(pReloc, pSection, pInput);
246 const LDSection& pSection) {
262 getTarget().checkAndSetHasTextRel(*pSection.getLink());
300 getTarget().checkAndSetHasTextRel(*pSection.getLink());
309 getTarget().checkAndSetHasTextRel(*pSection.getLink())
    [all...]
MipsLDBackend.cpp 260 uint64_t MipsGNULDBackend::emitSectionData(const LDSection& pSection,
266 if (file_format->hasGOT() && (&pSection == &(file_format->getGOT()))) {
270 if (file_format->hasPLT() && (&pSection == &(file_format->getPLT()))) {
274 if (file_format->hasGOTPLT() && (&pSection == &(file_format->getGOTPLT()))) {
278 if (&pSection == m_pAbiFlags && m_pAbiInfo.hasValue())
281 if (&pSection == m_psdata && m_psdata->hasSectionData()) {
282 const SectionData* sect_data = pSection.getSectionData();
332 fatal(diag::unrecognized_output_sectoin) << pSection.name()
    [all...]
MipsGOT.cpp 93 MipsGOT::MipsGOT(LDSection& pSection)
94 : GOT(pSection),
484 Mips32GOT::Mips32GOT(LDSection& pSection) : MipsGOT(pSection) {
519 Mips64GOT::Mips64GOT(LDSection& pSection) : MipsGOT(pSection) {
MipsAbiFlags.cpp 48 bool MipsAbiFlags::fillBySection(const Input& pInput, const LDSection& pSection,
50 assert(pSection.type() == llvm::ELF::SHT_MIPS_ABIFLAGS &&
53 if (pSection.size() != size()) {
58 const SectionData* secData = pSection.getSectionData();
MipsLDBackend.h 79 /// @param pSection - the given LDSection
82 uint64_t emitSectionData(const LDSection& pSection,
225 bool mergeSection(Module& pModule, const Input& pInput, LDSection& pSection);
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64Relocator.cpp 152 const LDSection& pSection) {
163 getTarget().checkAndSetHasTextRel(*pSection.getLink());
189 getTarget().checkAndSetHasTextRel(*pSection.getLink());
217 const LDSection& pSection) {
248 getTarget().checkAndSetHasTextRel(*pSection.getLink());
377 LDSection& pSection,
383 assert(pSection.getLink() != NULL);
384 if ((pSection.getLink()->flag() & llvm::ELF::SHF_ALLOC) == 0)
393 scanLocalReloc(pReloc, pSection);
396 scanGlobalReloc(pReloc, pBuilder, pSection);
    [all...]
AArch64LDBackend.cpp 268 uint64_t AArch64GNULDBackend::emitSectionData(const LDSection& pSection,
274 if (file_format->hasPLT() && (&pSection == &(file_format->getPLT()))) {
279 if (file_format->hasGOT() && (&pSection == &(file_format->getGOT()))) {
284 if (file_format->hasGOTPLT() && (&pSection == &(file_format->getGOTPLT()))) {
532 LDSection& pSection) {
  /frameworks/compile/mclinker/include/mcld/Target/
ELFDynamic.h 154 void emit(const LDSection& pSection, MemoryRegion& pRegion) const;
  /frameworks/compile/mclinker/lib/Target/X86/
X86LDBackend.cpp 158 uint64_t X86GNULDBackend::emitSectionData(const LDSection& pSection,
169 if (FileFormat->hasPLT() && (&pSection == &(FileFormat->getPLT()))) {
190 } else if (FileFormat->hasGOT() && (&pSection == &(FileFormat->getGOT()))) {
193 (&pSection == &(FileFormat->getGOTPLT()))) {
196 fatal(diag::unrecognized_output_sectoin) << pSection.name()
X86LDBackend.h 68 /// @param pSection - the given LDSection
72 uint64_t emitSectionData(const LDSection& pSection,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mpeg2structs.h 203 } SECTION, *PSECTION;
207 PSECTION pSection;
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMRelocator.cpp 430 const LDSection& pSection) {
449 getTarget().checkAndSetHasTextRel(*pSection.getLink());
522 const LDSection& pSection) {
571 getTarget().checkAndSetHasTextRel(*pSection.getLink());
648 getTarget().checkAndSetHasTextRel(*pSection.getLink());
731 LDSection& pSection,
738 assert(pSection.getLink() != NULL);
739 if ((pSection.getLink()->flag() & llvm::ELF::SHF_ALLOC) == 0)
748 scanLocalReloc(pReloc, pSection);
752 scanGlobalReloc(pReloc, pBuilder, pSection);
    [all...]
  /frameworks/compile/mclinker/lib/LD/
ELFReader.cpp 205 LDSection& pSection,
227 IRBuilder::AddRelocation(pSection, r_type, *symbol, r_offset, r_addend);
234 LDSection& pSection,
254 IRBuilder::AddRelocation(pSection, r_type, *symbol, r_offset);
700 LDSection& pSection,
722 IRBuilder::AddRelocation(pSection, r_type, *symbol, r_offset, r_addend);
729 LDSection& pSection,
748 IRBuilder::AddRelocation(pSection, r_type, *symbol, r_offset);
    [all...]
  /external/pdfium/core/fpdfdoc/
ctypeset.cpp 176 CTypeset::CTypeset(CSection* pSection)
178 m_pVT(pSection->m_pVT),
179 m_pSection(pSection) {}
  /frameworks/compile/mclinker/lib/Target/
ELFDynamic.cpp 328 void ELFDynamic::emit(const LDSection& pSection, MemoryRegion& pRegion) const {
329 if (pRegion.size() < pSection.size()) {
GNULDBackend.cpp     [all...]

Completed in 1793 milliseconds

1 2 34