File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,8 @@ class Wamr : public WasmVm {
89
89
90
90
void terminate () override {}
91
91
bool usesWasmByteOrder () override { return true ; }
92
+
93
+ void warm () override {}
92
94
93
95
private:
94
96
template <typename ... Args>
Original file line number Diff line number Diff line change @@ -264,6 +264,7 @@ class WasmEdge : public WasmVm {
264
264
};
265
265
FOR_ALL_WASM_VM_EXPORTS (_GET_MODULE_FUNCTION)
266
266
#undef _GET_MODULE_FUNCTION
267
+
267
268
private:
268
269
template <typename ... Args>
269
270
void registerHostFunctionImpl (std::string_view module_name, std::string_view function_name,
@@ -284,6 +285,8 @@ class WasmEdge : public WasmVm {
284
285
void terminate () override {}
285
286
bool usesWasmByteOrder () override { return true ; }
286
287
288
+ void warm () override {}
289
+
287
290
WasmEdgeLoaderPtr loader_;
288
291
WasmEdgeValidatorPtr validator_;
289
292
WasmEdgeExecutorPtr executor_;
Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ class Wasmtime : public WasmVm {
80
80
};
81
81
FOR_ALL_WASM_VM_EXPORTS (_GET_MODULE_FUNCTION)
82
82
#undef _GET_MODULE_FUNCTION
83
+
83
84
private:
84
85
template <typename ... Args>
85
86
void registerHostFunctionImpl (std::string_view module_name, std::string_view function_name,
@@ -100,6 +101,8 @@ class Wasmtime : public WasmVm {
100
101
void terminate () override {}
101
102
bool usesWasmByteOrder () override { return true ; }
102
103
104
+ void warm () override {}
105
+
103
106
WasmStorePtr store_;
104
107
WasmModulePtr module_;
105
108
WasmSharedModulePtr shared_module_;
You can’t perform that action at this time.
0 commit comments