Lines Matching refs:pShndx
32 uint16_t pShndx) const { in getSymType()
34 if (pShndx == llvm::ELF::SHN_ABS && result == ResolveInfo::Section) { in getSymType()
46 ResolveInfo::Desc ELFReaderIF::getSymDesc(uint16_t pShndx, in getSymDesc() argument
48 if (pShndx == llvm::ELF::SHN_UNDEF) in getSymDesc()
51 if (pShndx < llvm::ELF::SHN_LORESERVE) { in getSymDesc()
54 if (pInput.context()->getSection(pShndx) == NULL || in getSymDesc()
55 LDFileFormat::Ignore == pInput.context()->getSection(pShndx)->kind()) in getSymDesc()
60 if (pShndx == llvm::ELF::SHN_ABS) in getSymDesc()
63 if (pShndx == llvm::ELF::SHN_COMMON) in getSymDesc()
66 if (pShndx >= llvm::ELF::SHN_LOPROC && pShndx <= llvm::ELF::SHN_HIPROC) in getSymDesc()
67 return target().getSymDesc(pShndx); in getSymDesc()
75 uint16_t pShndx, in getSymBinding() argument
84 if (pShndx == llvm::ELF::SHN_ABS) in getSymBinding()
96 uint16_t pShndx, in getSymFragmentRef() argument
101 if (pShndx == llvm::ELF::SHN_UNDEF) in getSymFragmentRef()
104 if (pShndx >= llvm::ELF::SHN_LORESERVE) // including ABS and COMMON in getSymFragmentRef()
107 LDSection* sect_hdr = pInput.context()->getSection(pShndx); in getSymFragmentRef()
111 << pShndx << pInput.path().native(); in getSymFragmentRef()
129 uint16_t pShndx, in getSymValue() argument
134 if (pShndx == llvm::ELF::SHN_COMMON || pShndx == llvm::ELF::SHN_ABS) { in getSymValue()