Searched refs:secIdx (Results 1 – 2 of 2) sorted by relevance
1142 uint32_t secIdx = eSym.st_shndx; in initializeSymbols() local1143 if (secIdx == SHN_UNDEF) { in initializeSymbols()1200 uint32_t secIdx = eSym.st_shndx; in initSectionsAndLocalSyms() local1201 if (LLVM_UNLIKELY(secIdx == SHN_XINDEX)) in initSectionsAndLocalSyms()1202 secIdx = check(getExtendedSymbolTableIndex<ELFT>(eSym, i, shndxTable)); in initSectionsAndLocalSyms()1203 else if (secIdx >= SHN_LORESERVE) in initSectionsAndLocalSyms()1204 secIdx = 0; in initSectionsAndLocalSyms()1205 if (LLVM_UNLIKELY(secIdx >= sections.size())) in initSectionsAndLocalSyms()1206 fatal(toString(this) + ": invalid section index: " + Twine(secIdx)); in initSectionsAndLocalSyms()1211 InputSectionBase *sec = sections[secIdx]; in initSectionsAndLocalSyms()[all …]
476 uint32_t secIdx = cast<Undefined>(sym).discardedSecIdx; in copyRelocations() local477 Elf_Shdr_Impl<ELFT> sec = file->template getELFShdrs<ELFT>()[secIdx]; in copyRelocations()