Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp298 void prepareImports(SmallVectorImpl<wasm::WasmImport> &Imports,
326 void writeImportSection(ArrayRef<wasm::WasmImport> Imports, uint64_t DataSize,
820 void WasmObjectWriter::writeImportSection(ArrayRef<wasm::WasmImport> Imports, in writeImportSection()
833 for (const wasm::WasmImport &Import : Imports) { in writeImportSection()
1323 SmallVectorImpl<wasm::WasmImport> &Imports, MCAssembler &Asm) { in prepareImports()
1327 wasm::WasmImport MemImport; in prepareImports()
1360 wasm::WasmImport Import; in prepareImports()
1372 wasm::WasmImport Import; in prepareImports()
1384 wasm::WasmImport Import; in prepareImports()
1396 wasm::WasmImport Import; in prepareImports()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h146 ArrayRef<wasm::WasmImport> imports() const { return Imports; } in imports()
289 std::vector<wasm::WasmImport> Imports;
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp704 std::vector<wasm::WasmImport *> ImportedGlobals; in parseLinkingSectionSymtab()
705 std::vector<wasm::WasmImport *> ImportedFunctions; in parseLinkingSectionSymtab()
706 std::vector<wasm::WasmImport *> ImportedTags; in parseLinkingSectionSymtab()
707 std::vector<wasm::WasmImport *> ImportedTables; in parseLinkingSectionSymtab()
748 wasm::WasmImport &Import = *ImportedFunctions[Info.ElementIndex]; in parseLinkingSectionSymtab()
778 wasm::WasmImport &Import = *ImportedGlobals[Info.ElementIndex]; in parseLinkingSectionSymtab()
808 wasm::WasmImport &Import = *ImportedTables[Info.ElementIndex]; in parseLinkingSectionSymtab()
875 wasm::WasmImport &Import = *ImportedTags[Info.ElementIndex]; in parseLinkingSectionSymtab()
1275 wasm::WasmImport Im; in parseImportSection()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h379 struct WasmImport { struct