Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
1335 SmallVectorImpl<wasm::WasmImport> &Imports, MCAssembler &Asm, in prepareImports()
1340 wasm::WasmImport MemImport; in prepareImports()
1373 wasm::WasmImport Import; in prepareImports()
1385 wasm::WasmImport Import; in prepareImports()
1397 wasm::WasmImport Import; in prepareImports()
1409 wasm::WasmImport Import; in prepareImports()
1425 wasm::WasmImport Import; in prepareImports()
[all …]
/llvm-project-15.0.7/lld/wasm/
H A DWriterUtils.h63 void writeImport(raw_ostream &os, const llvm::wasm::WasmImport &import);
H A DSyntheticSections.cpp238 WasmImport import; in writeBody()
256 WasmImport import; in writeBody()
278 WasmImport import; in writeBody()
H A DWriterUtils.cpp211 void writeImport(raw_ostream &os, const WasmImport &import) { in writeImport()
H A DInputFiles.cpp307 const WasmImport *tableImport = nullptr; in addLegacyIndirectFunctionTableIfNeeded()
/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DWasm.h139 ArrayRef<wasm::WasmImport> imports() const { return Imports; } in imports()
279 std::vector<wasm::WasmImport> Imports;
/llvm-project-15.0.7/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()
667 wasm::WasmImport &Import = *ImportedGlobals[Info.ElementIndex]; in parseLinkingSectionSymtab()
699 wasm::WasmImport &Import = *ImportedTables[Info.ElementIndex]; in parseLinkingSectionSymtab()
764 wasm::WasmImport &Import = *ImportedTags[Info.ElementIndex]; in parseLinkingSectionSymtab()
1123 wasm::WasmImport Im; in parseImportSection()
/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DWasm.h130 struct WasmImport { struct