Home
last modified time | relevance | path

Searched refs:WasmImport (Results 1 – 8 of 8) sorted by relevance

/openbsd/gnu/llvm/llvm/lib/MC/
H A DWasmObjectWriter.cpp302 void prepareImports(SmallVectorImpl<wasm::WasmImport> &Imports,
847 void WasmObjectWriter::writeImportSection(ArrayRef<wasm::WasmImport> Imports, in writeImportSection()
859 for (const wasm::WasmImport &Import : Imports) { in writeImportSection()
1332 SmallVectorImpl<wasm::WasmImport> &Imports, MCAssembler &Asm, in prepareImports()
1337 wasm::WasmImport MemImport; in prepareImports()
1370 wasm::WasmImport Import; in prepareImports()
1382 wasm::WasmImport Import; in prepareImports()
1394 wasm::WasmImport Import; in prepareImports()
1406 wasm::WasmImport Import; in prepareImports()
1422 wasm::WasmImport Import; in prepareImports()
[all …]
/openbsd/gnu/llvm/lld/wasm/
H A DWriterUtils.h63 void writeImport(raw_ostream &os, const llvm::wasm::WasmImport &import);
H A DSyntheticSections.cpp240 WasmImport import; in writeBody()
258 WasmImport import; in writeBody()
280 WasmImport import; in writeBody()
H A DWriterUtils.cpp211 void writeImport(raw_ostream &os, const WasmImport &import) { in writeImport()
H A DInputFiles.cpp309 const WasmImport *tableImport = nullptr; in addLegacyIndirectFunctionTableIfNeeded()
/openbsd/gnu/llvm/llvm/include/llvm/Object/
H A DWasm.h139 ArrayRef<wasm::WasmImport> imports() const { return Imports; } in imports()
279 std::vector<wasm::WasmImport> Imports;
/openbsd/gnu/llvm/llvm/lib/Object/
H A DWasmObjectFile.cpp591 std::vector<wasm::WasmImport *> ImportedGlobals; in parseLinkingSectionSymtab()
592 std::vector<wasm::WasmImport *> ImportedFunctions; in parseLinkingSectionSymtab()
593 std::vector<wasm::WasmImport *> ImportedTags; in parseLinkingSectionSymtab()
594 std::vector<wasm::WasmImport *> ImportedTables; in parseLinkingSectionSymtab()
635 wasm::WasmImport &Import = *ImportedFunctions[Info.ElementIndex]; in parseLinkingSectionSymtab()
665 wasm::WasmImport &Import = *ImportedGlobals[Info.ElementIndex]; in parseLinkingSectionSymtab()
695 wasm::WasmImport &Import = *ImportedTables[Info.ElementIndex]; in parseLinkingSectionSymtab()
758 wasm::WasmImport &Import = *ImportedTags[Info.ElementIndex]; in parseLinkingSectionSymtab()
1115 wasm::WasmImport Im; in parseImportSection()
/openbsd/gnu/llvm/llvm/include/llvm/BinaryFormat/
H A DWasm.h130 struct WasmImport { struct