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.cpp300 void prepareImports(SmallVectorImpl<wasm::WasmImport> &Imports,
328 void writeImportSection(ArrayRef<wasm::WasmImport> Imports, uint64_t DataSize,
844 void WasmObjectWriter::writeImportSection(ArrayRef<wasm::WasmImport> Imports, in writeImportSection()
856 for (const wasm::WasmImport &Import : Imports) { in writeImportSection()
1346 SmallVectorImpl<wasm::WasmImport> &Imports, MCAssembler &Asm) { in prepareImports()
1350 wasm::WasmImport MemImport; in prepareImports()
1383 wasm::WasmImport Import; in prepareImports()
1395 wasm::WasmImport Import; in prepareImports()
1407 wasm::WasmImport Import; in prepareImports()
1419 wasm::WasmImport Impor in prepareImports()
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h145 ArrayRef<wasm::WasmImport> imports() const { return Imports; } in imports()
288 std::vector<wasm::WasmImport> Imports;
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp694 std::vector<wasm::WasmImport *> ImportedGlobals; in parseLinkingSectionSymtab()
695 std::vector<wasm::WasmImport *> ImportedFunctions; in parseLinkingSectionSymtab()
696 std::vector<wasm::WasmImport *> ImportedTags; in parseLinkingSectionSymtab()
697 std::vector<wasm::WasmImport *> ImportedTables; in parseLinkingSectionSymtab()
738 wasm::WasmImport &Import = *ImportedFunctions[Info.ElementIndex]; in parseLinkingSectionSymtab()
768 wasm::WasmImport &Import = *ImportedGlobals[Info.ElementIndex]; in parseLinkingSectionSymtab()
798 wasm::WasmImport &Import = *ImportedTables[Info.ElementIndex]; in parseLinkingSectionSymtab()
865 wasm::WasmImport &Import = *ImportedTags[Info.ElementIndex]; in parseLinkingSectionSymtab()
1267 wasm::WasmImport Im; in parseImportSection()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h366 struct WasmImport { struct