Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DWasmObjectWriter.cpp283 void prepareImports(SmallVectorImpl<wasm::WasmImport> &Imports,
310 void writeImportSection(ArrayRef<wasm::WasmImport> Imports, uint64_t DataSize,
782 void WasmObjectWriter::writeImportSection(ArrayRef<wasm::WasmImport> Imports, in writeImportSection()
794 for (const wasm::WasmImport &Import : Imports) { in writeImportSection()
1266 SmallVectorImpl<wasm::WasmImport> &Imports, MCAssembler &Asm, in prepareImports()
1271 wasm::WasmImport MemImport; in prepareImports()
1304 wasm::WasmImport Import; in prepareImports()
1316 wasm::WasmImport Import; in prepareImports()
1328 wasm::WasmImport Import; in prepareImports()
1341 wasm::WasmImport Import; in prepareImports()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DWasmObjectFile.cpp508 std::vector<wasm::WasmImport *> ImportedGlobals; in parseLinkingSectionSymtab()
509 std::vector<wasm::WasmImport *> ImportedFunctions; in parseLinkingSectionSymtab()
510 std::vector<wasm::WasmImport *> ImportedEvents; in parseLinkingSectionSymtab()
511 std::vector<wasm::WasmImport *> ImportedTables; in parseLinkingSectionSymtab()
553 wasm::WasmImport &Import = *ImportedFunctions[Info.ElementIndex]; in parseLinkingSectionSymtab()
585 wasm::WasmImport &Import = *ImportedGlobals[Info.ElementIndex]; in parseLinkingSectionSymtab()
617 wasm::WasmImport &Import = *ImportedTables[Info.ElementIndex]; in parseLinkingSectionSymtab()
683 wasm::WasmImport &Import = *ImportedEvents[Info.ElementIndex]; in parseLinkingSectionSymtab()
1038 wasm::WasmImport Im; in parseImportSection()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DWasm.h142 ArrayRef<wasm::WasmImport> imports() const { return Imports; } in imports()
282 std::vector<wasm::WasmImport> Imports;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DWasm.h116 struct WasmImport { struct