Home
last modified time | relevance | path

Searched refs:Shndx (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELFLinkGraphBuilder.h495 unsigned Shndx = Sym.st_shndx; in graphifySymbols() local
496 if (Shndx == ELF::SHN_XINDEX) { in graphifySymbols()
504 Shndx = *NdxOrErr; in graphifySymbols()
506 if (auto *B = getGraphBlock(Shndx)) { in graphifySymbols()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp264 const ELFYAML::SymtabShndxSection &Shndx,
1366 Elf_Shdr &SHeader, const ELFYAML::SymtabShndxSection &Shndx, in writeSectionContent() argument
1368 if (Shndx.Content || Shndx.Size) { in writeSectionContent()
1369 SHeader.sh_size = writeContent(CBA, Shndx.Content, Shndx.Size); in writeSectionContent()
1373 if (!Shndx.Entries) in writeSectionContent()
1376 for (uint32_t E : *Shndx.Entries) in writeSectionContent()
1378 SHeader.sh_size = Shndx.Entries->size() * SHeader.sh_entsize; in writeSectionContent()
/freebsd/contrib/llvm-project/llvm/lib/InterfaceStub/
H A DELFObjHandler.cpp220 uint16_t Shndx = Sym.Undefined ? SHN_UNDEF : 1; in ELFStubBuilder() local
223 convertIFSSymbolTypeToELF(Sym.Type), 0, Shndx); in ELFStubBuilder()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp716 uint8_t Visibility, uint16_t Shndx, in addSymbol() argument
726 if (Shndx >= SHN_LORESERVE) in addSymbol()
727 Sym.ShndxType = static_cast<SymbolShndxType>(Shndx); in addSymbol()
2615 auto &Shndx = Obj.addSection<SectionIndexSection>(); in finalize() local
2616 Obj.SymbolTable->setShndxTable(&Shndx); in finalize()
2617 Shndx.setSymTab(Obj.SymbolTable); in finalize()
H A DELFObject.h829 uint64_t Value, uint8_t Visibility, uint16_t Shndx,