Home
last modified time | relevance | path

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

/external/v8/src/wasm/
Dwasm-module.h109 struct WasmExport { struct
151 std::vector<WasmExport> export_table;
Dmodule-decoder.cc617 WasmExport* exp = &module_->export_table.back(); in DecodeExportSection()
665 std::vector<WasmExport> sorted_exports(module_->export_table); in DecodeExportSection()
667 auto cmp_less = [this](const WasmExport& a, const WasmExport& b) { in DecodeExportSection()
679 WasmExport* last = &*it++; in DecodeExportSection()
Dwasm-module.cc213 const WasmExport& exp = module->export_table[index]; in GetExports()
Dmodule-compiler.cc1890 for (const WasmExport& exp : module_->export_table) { in ProcessExports()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
DWasm.h132 ArrayRef<wasm::WasmExport> exports() const { return Exports; } in exports()
249 std::vector<wasm::WasmExport> Exports;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/BinaryFormat/
DWasm.h42 struct WasmExport { struct
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DWasmObjectWriter.cpp303 void writeExportSection(ArrayRef<wasm::WasmExport> Exports);
798 void WasmObjectWriter::writeExportSection(ArrayRef<wasm::WasmExport> Exports) { in writeExportSection()
806 for (const wasm::WasmExport &Export : Exports) { in writeExportSection()
1088 SmallVector<wasm::WasmExport, 4> Exports; in writeObject()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DWasmObjectFile.cpp822 wasm::WasmExport Ex; in parseExportSection()