Home
last modified time | relevance | path

Searched refs:LinkingData (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp166 const wasm::WasmLinkingData &LinkingData = Obj->linkingData(); in printSectionHeaders() local
167 if (!LinkingData.InitFunctions.empty()) { in printSectionHeaders()
169 for (const wasm::WasmInitFunc &F : LinkingData.InitFunctions) in printSectionHeaders()
/openbsd-src/gnu/llvm/llvm/include/llvm/Object/
H A DWasm.h146 const wasm::WasmLinkingData &linkingData() const { return LinkingData; } in linkingData()
291 wasm::WasmLinkingData LinkingData; variable
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DWasmObjectFile.cpp519 LinkingData.Version = readVaruint32(Ctx); in parseLinkingSection()
520 if (LinkingData.Version != wasm::WasmMetadataVersion) { in parseLinkingSection()
522 "unexpected metadata version: " + Twine(LinkingData.Version) + in parseLinkingSection()
554 LinkingData.InitFunctions.reserve(Count); in parseLinkingSection()
563 LinkingData.InitFunctions.emplace_back(Init); in parseLinkingSection()
587 LinkingData.SymbolTable.reserve(Count); in parseLinkingSectionSymtab()
783 LinkingData.SymbolTable.emplace_back(Info); in parseLinkingSectionSymtab()
784 Symbols.emplace_back(LinkingData.SymbolTable.back(), GlobalType, TableType, in parseLinkingSectionSymtab()
801 LinkingData.Comdats.emplace_back(Name); in parseLinkingSectionComdat()