AssemblyScript Rtrace
A tiny utility to sanitize the AssemblyScript runtime. Records allocations, retains, releases and frees performed by the runtime and emits an error if something is off. Also checks for leaks.
Instructions
Compile your module that uses the full or half runtime with -use ASC_RTRACE=1 --explicitStart
and include an instance of this module as the import named rtrace
.
var rtrace = new Rtrace({
onerror(err, info) {
},
oninfo(msg) {
},
getMemory() {
return instance.exports.memory;
}
});
var { module, instance } = await WebAssembly.instantiate(..., {
rtrace,
env: Object.assign({
...
}, rtrace.env),
...
});
instance.exports._start();
...
if (rtrace.active) {
let leakCount = rtr.check();
if (leakCount) {
}
}
Note that references retained in globals which are not cleared before execution concludes appear as leaks, including their inner members. A TypedArray would leak itself and its backing ArrayBuffer in this case for example. This is perfectly normal and clearing all globals avoids this.