Home
last modified time | relevance | path

Searched refs:secIdx (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lld/ELF/
H A DInputFiles.cpp1142 uint32_t secIdx = eSym.st_shndx; in initializeSymbols() local
1143 if (secIdx == SHN_UNDEF) { in initializeSymbols()
1200 uint32_t secIdx = eSym.st_shndx; in initSectionsAndLocalSyms() local
1201 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 …]
H A DInputSection.cpp476 uint32_t secIdx = cast<Undefined>(sym).discardedSecIdx; in copyRelocations() local
477 Elf_Shdr_Impl<ELFT> sec = file->template getELFShdrs<ELFT>()[secIdx]; in copyRelocations()