Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp302 void prepareImports(SmallVectorImpl<wasm::WasmImport> &Imports,
849 void WasmObjectWriter::writeImportSection(ArrayRef<wasm::WasmImport> Imports, in writeImportSection()
861 for (const wasm::WasmImport &Import : Imports) { in writeImportSection()
1334 SmallVectorImpl<wasm::WasmImport> &Imports, MCAssembler &Asm, in prepareImports()
1339 wasm::WasmImport MemImport; in prepareImports()
1372 wasm::WasmImport Import; in prepareImports()
1384 wasm::WasmImport Import; in prepareImports()
1396 wasm::WasmImport Import; in prepareImports()
1408 wasm::WasmImport Import; in prepareImports()
1424 wasm::WasmImport Import; in prepareImports()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h141 ArrayRef<wasm::WasmImport> imports() const { return Imports; } in imports()
282 std::vector<wasm::WasmImport> Imports;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp610 std::vector<wasm::WasmImport *> ImportedGlobals; in parseLinkingSectionSymtab()
611 std::vector<wasm::WasmImport *> ImportedFunctions; in parseLinkingSectionSymtab()
612 std::vector<wasm::WasmImport *> ImportedTags; in parseLinkingSectionSymtab()
613 std::vector<wasm::WasmImport *> ImportedTables; in parseLinkingSectionSymtab()
654 wasm::WasmImport &Import = *ImportedFunctions[Info.ElementIndex]; in parseLinkingSectionSymtab()
684 wasm::WasmImport &Import = *ImportedGlobals[Info.ElementIndex]; in parseLinkingSectionSymtab()
714 wasm::WasmImport &Import = *ImportedTables[Info.ElementIndex]; in parseLinkingSectionSymtab()
781 wasm::WasmImport &Import = *ImportedTags[Info.ElementIndex]; in parseLinkingSectionSymtab()
1140 wasm::WasmImport Im; in parseImportSection()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h325 struct WasmImport { struct