wasm util: remove superfluous function.bind() calls to eliminate a level of call() indirection.
FossilOrigin-Name: 1aab9627983ef0f016b01f78564e79cf815ed14d4b1b6dc04ec627b96f1b2f70
This commit is contained in:
parent
2f06bf2541
commit
5bb5965710
@ -326,7 +326,7 @@ self.WhWasmUtilInstaller = function(target){
|
||||
if(c.HEAP64) return unsigned ? c.HEAP64U : c.HEAP64;
|
||||
break;
|
||||
default:
|
||||
if(this.bigIntEnabled){
|
||||
if(target.bigIntEnabled){
|
||||
if(n===self['BigUint64Array']) return c.HEAP64U;
|
||||
else if(n===self['BigInt64Array']) return c.HEAP64;
|
||||
break;
|
||||
@ -334,7 +334,7 @@ self.WhWasmUtilInstaller = function(target){
|
||||
}
|
||||
toss("Invalid heapForSize() size: expecting 8, 16, 32,",
|
||||
"or (if BigInt is enabled) 64.");
|
||||
}.bind(target);
|
||||
};
|
||||
|
||||
/**
|
||||
Returns the WASM-exported "indirect function table."
|
||||
@ -346,16 +346,16 @@ self.WhWasmUtilInstaller = function(target){
|
||||
- Use `__indirect_function_table` as the import name for the
|
||||
table, which is what LLVM does.
|
||||
*/
|
||||
}.bind(target);
|
||||
};
|
||||
|
||||
/**
|
||||
Given a function pointer, returns the WASM function table entry
|
||||
if found, else returns a falsy value.
|
||||
*/
|
||||
target.functionEntry = function(fptr){
|
||||
const ft = this.functionTable();
|
||||
const ft = target.functionTable();
|
||||
return fptr < ft.length ? ft.get(fptr) : undefined;
|
||||
}.bind(target);
|
||||
};
|
||||
|
||||
/**
|
||||
Creates a WASM function which wraps the given JS function and
|
||||
@ -504,7 +504,7 @@ self.WhWasmUtilInstaller = function(target){
|
||||
https://github.com/emscripten-core/emscripten/issues/17323
|
||||
*/
|
||||
target.installFunction = function f(func, sig){
|
||||
const ft = this.functionTable();
|
||||
const ft = target.functionTable();
|
||||
const oldLen = ft.length;
|
||||
let ptr;
|
||||
while(cache.freeFuncIndexes.length){
|
||||
@ -532,13 +532,13 @@ self.WhWasmUtilInstaller = function(target){
|
||||
}
|
||||
// It's not a WASM-exported function, so compile one...
|
||||
try {
|
||||
ft.set(ptr, this.jsFuncToWasm(func, sig));
|
||||
ft.set(ptr, target.jsFuncToWasm(func, sig));
|
||||
}catch(e){
|
||||
if(ptr===oldLen) cache.freeFuncIndexes.push(oldLen);
|
||||
throw e;
|
||||
}
|
||||
return ptr;
|
||||
}.bind(target);
|
||||
};
|
||||
|
||||
/**
|
||||
Requires a pointer value previously returned from
|
||||
@ -551,12 +551,12 @@ self.WhWasmUtilInstaller = function(target){
|
||||
*/
|
||||
target.uninstallFunction = function(ptr){
|
||||
const fi = cache.freeFuncIndexes;
|
||||
const ft = this.functionTable();
|
||||
const ft = target.functionTable();
|
||||
fi.push(ptr);
|
||||
const rc = ft.get(ptr);
|
||||
ft.set(ptr, null);
|
||||
return rc;
|
||||
}.bind(target);
|
||||
};
|
||||
|
||||
/**
|
||||
Given a WASM heap memory address and a data type name in the form
|
||||
@ -614,14 +614,14 @@ self.WhWasmUtilInstaller = function(target){
|
||||
case 'i16': return c.HEAP16[ptr>>1];
|
||||
case 'i32': return c.HEAP32[ptr>>2];
|
||||
case 'i64':
|
||||
if(this.bigIntEnabled) return BigInt(c.HEAP64[ptr>>3]);
|
||||
if(target.bigIntEnabled) return BigInt(c.HEAP64[ptr>>3]);
|
||||
break;
|
||||
case 'float': case 'f32': return c.HEAP32F[ptr>>2];
|
||||
case 'double': case 'f64': return Number(c.HEAP64F[ptr>>3]);
|
||||
default: break;
|
||||
}
|
||||
toss('Invalid type for getMemValue():',type);
|
||||
}.bind(target);
|
||||
};
|
||||
|
||||
/**
|
||||
The counterpart of getMemValue(), this sets a numeric value at
|
||||
@ -698,9 +698,9 @@ self.WhWasmUtilInstaller = function(target){
|
||||
ptr is falsy, `null` is returned.
|
||||
*/
|
||||
target.cstringToJs = function(ptr){
|
||||
const n = this.cstrlen(ptr);
|
||||
const n = target.cstrlen(ptr);
|
||||
return n ? __utf8Decode(heapWrappers().HEAP8U, ptr, ptr+n) : (null===n ? n : "");
|
||||
}.bind(target);
|
||||
};
|
||||
|
||||
/**
|
||||
Given a JS string, this function returns its UTF-8 length in
|
||||
@ -828,16 +828,16 @@ self.WhWasmUtilInstaller = function(target){
|
||||
*/
|
||||
target.cstrncpy = function(tgtPtr, srcPtr, n){
|
||||
if(!tgtPtr || !srcPtr) toss("cstrncpy() does not accept NULL strings.");
|
||||
if(n<0) n = this.cstrlen(strPtr)+1;
|
||||
if(n<0) n = target.cstrlen(strPtr)+1;
|
||||
else if(!(n>0)) return 0;
|
||||
const heap = this.heap8u();
|
||||
const heap = target.heap8u();
|
||||
let i = 0, ch;
|
||||
for(; i < n && (ch = heap[srcPtr+i]); ++i){
|
||||
heap[tgtPtr+i] = ch;
|
||||
}
|
||||
if(i<n) heap[tgtPtr + i++] = 0;
|
||||
return i;
|
||||
}.bind(target);
|
||||
};
|
||||
|
||||
/**
|
||||
For the given JS string, returns a Uint8Array of its contents
|
||||
@ -882,13 +882,13 @@ self.WhWasmUtilInstaller = function(target){
|
||||
};
|
||||
|
||||
const __allocCStr = function(jstr, returnWithLength, allocator, funcName){
|
||||
__affirmAlloc(this, funcName);
|
||||
__affirmAlloc(target, funcName);
|
||||
if('string'!==typeof jstr) return null;
|
||||
const n = this.jstrlen(jstr),
|
||||
const n = target.jstrlen(jstr),
|
||||
ptr = allocator(n+1);
|
||||
this.jstrcpy(jstr, this.heap8u(), ptr, n+1, true);
|
||||
target.jstrcpy(jstr, target.heap8u(), ptr, n+1, true);
|
||||
return returnWithLength ? [ptr, n] : ptr;
|
||||
}.bind(target);
|
||||
};
|
||||
|
||||
/**
|
||||
Uses target.alloc() to allocate enough memory for jstrlen(jstr)+1
|
||||
@ -941,11 +941,11 @@ self.WhWasmUtilInstaller = function(target){
|
||||
alloc levels are currently active.
|
||||
*/
|
||||
target.scopedAllocPush = function(){
|
||||
__affirmAlloc(this, 'scopedAllocPush');
|
||||
__affirmAlloc(target, 'scopedAllocPush');
|
||||
const a = [];
|
||||
cache.scopedAlloc.push(a);
|
||||
return a;
|
||||
}.bind(target);
|
||||
};
|
||||
|
||||
/**
|
||||
Cleans up all allocations made using scopedAlloc() in the context
|
||||
@ -970,15 +970,15 @@ self.WhWasmUtilInstaller = function(target){
|
||||
trivial code that may be a non-issue.
|
||||
*/
|
||||
target.scopedAllocPop = function(state){
|
||||
__affirmAlloc(this, 'scopedAllocPop');
|
||||
__affirmAlloc(target, 'scopedAllocPop');
|
||||
const n = arguments.length
|
||||
? cache.scopedAlloc.indexOf(state)
|
||||
: cache.scopedAlloc.length-1;
|
||||
if(n<0) toss("Invalid state object for scopedAllocPop().");
|
||||
if(0===arguments.length) state = cache.scopedAlloc[n];
|
||||
cache.scopedAlloc.splice(n,1);
|
||||
for(let p; (p = state.pop()); ) this.dealloc(p);
|
||||
}.bind(target);
|
||||
for(let p; (p = state.pop()); ) target.dealloc(p);
|
||||
};
|
||||
|
||||
/**
|
||||
Allocates n bytes of memory using this.alloc() and records that
|
||||
@ -1000,10 +1000,10 @@ self.WhWasmUtilInstaller = function(target){
|
||||
if(!cache.scopedAlloc.length){
|
||||
toss("No scopedAllocPush() scope is active.");
|
||||
}
|
||||
const p = this.alloc(n);
|
||||
const p = target.alloc(n);
|
||||
cache.scopedAlloc[cache.scopedAlloc.length-1].push(p);
|
||||
return p;
|
||||
}.bind(target);
|
||||
};
|
||||
|
||||
Object.defineProperty(target.scopedAlloc, 'level', {
|
||||
configurable: false, enumerable: false,
|
||||
@ -1030,15 +1030,15 @@ self.WhWasmUtilInstaller = function(target){
|
||||
result of calling func().
|
||||
*/
|
||||
target.scopedAllocCall = function(func){
|
||||
this.scopedAllocPush();
|
||||
try{ return func() } finally{ this.scopedAllocPop() }
|
||||
}.bind(target);
|
||||
target.scopedAllocPush();
|
||||
try{ return func() } finally{ target.scopedAllocPop() }
|
||||
};
|
||||
|
||||
/** Internal impl for allocPtr() and scopedAllocPtr(). */
|
||||
const __allocPtr = function(howMany, method){
|
||||
__affirmAlloc(this, method);
|
||||
let m = this[method](howMany * ptrSizeof);
|
||||
this.setMemValue(m, 0, ptrIR)
|
||||
__affirmAlloc(target, method);
|
||||
let m = target[method](howMany * ptrSizeof);
|
||||
target.setMemValue(m, 0, ptrIR)
|
||||
if(1===howMany){
|
||||
return m;
|
||||
}
|
||||
@ -1046,10 +1046,10 @@ self.WhWasmUtilInstaller = function(target){
|
||||
for(let i = 1; i < howMany; ++i){
|
||||
m += ptrSizeof;
|
||||
a[i] = m;
|
||||
this.setMemValue(m, 0, ptrIR);
|
||||
target.setMemValue(m, 0, ptrIR);
|
||||
}
|
||||
return a;
|
||||
}.bind(target);
|
||||
};
|
||||
|
||||
/**
|
||||
Allocates a single chunk of memory capable of holding `howMany`
|
||||
@ -1099,7 +1099,7 @@ self.WhWasmUtilInstaller = function(target){
|
||||
not legal to pass an Array object to a WASM function.)
|
||||
*/
|
||||
target.xCall = function(fname, ...args){
|
||||
const f = this.xGet(fname);
|
||||
const f = target.xGet(fname);
|
||||
if(!(f instanceof Function)) toss("Exported symbol",fname,"is not a function.");
|
||||
if(f.length!==args.length) __argcMismatch(fname,f.length)
|
||||
/* This is arguably over-pedantic but we want to help clients keep
|
||||
@ -1107,7 +1107,7 @@ self.WhWasmUtilInstaller = function(target){
|
||||
return (2===arguments.length && Array.isArray(arguments[1]))
|
||||
? f.apply(null, arguments[1])
|
||||
: f.apply(null, args);
|
||||
}.bind(target);
|
||||
};
|
||||
|
||||
/**
|
||||
State for use with xWrap()
|
||||
@ -1181,19 +1181,19 @@ self.WhWasmUtilInstaller = function(target){
|
||||
*/
|
||||
xcv.arg['func-ptr'] = function(v){
|
||||
if(!(v instanceof Function)) return xcv.arg[ptrIR];
|
||||
const f = this.jsFuncToWasm(v, WHAT_SIGNATURE);
|
||||
}.bind(target);
|
||||
const f = target.jsFuncToWasm(v, WHAT_SIGNATURE);
|
||||
};
|
||||
}
|
||||
|
||||
const __xArgAdapter =
|
||||
const __xArgAdapterCheck =
|
||||
(t)=>xcv.arg[t] || toss("Argument adapter not found:",t);
|
||||
|
||||
const __xResultAdapter =
|
||||
const __xResultAdapterCheck =
|
||||
(t)=>xcv.result[t] || toss("Result adapter not found:",t);
|
||||
|
||||
cache.xWrap.convertArg = (t,v)=>__xArgAdapter(t)(v);
|
||||
cache.xWrap.convertArg = (t,v)=>__xArgAdapterCheck(t)(v);
|
||||
cache.xWrap.convertResult =
|
||||
(t,v)=>(null===t ? v : (t ? __xResultAdapter(t)(v) : undefined));
|
||||
(t,v)=>(null===t ? v : (t ? __xResultAdapterCheck(t)(v) : undefined));
|
||||
|
||||
/**
|
||||
Creates a wrapper for the WASM-exported function fname. Uses
|
||||
@ -1327,34 +1327,32 @@ self.WhWasmUtilInstaller = function(target){
|
||||
if(3===arguments.length && Array.isArray(arguments[2])){
|
||||
argTypes = arguments[2];
|
||||
}
|
||||
const xf = this.xGet(fname);
|
||||
if(argTypes.length!==xf.length) __argcMismatch(fname, xf.length)
|
||||
const xf = target.xGet(fname);
|
||||
if(argTypes.length!==xf.length) __argcMismatch(fname, xf.length);
|
||||
if((null===resultType) && 0===xf.length){
|
||||
/* Func taking no args with an as-is return. We don't need a wrapper. */
|
||||
return xf;
|
||||
}
|
||||
/*Verify the arg type conversions are valid...*/;
|
||||
if(undefined!==resultType && null!==resultType) __xResultAdapter(resultType);
|
||||
argTypes.forEach(__xArgAdapter)
|
||||
if(undefined!==resultType && null!==resultType) __xResultAdapterCheck(resultType);
|
||||
argTypes.forEach(__xArgAdapterCheck);
|
||||
if(0===xf.length){
|
||||
// No args to convert, so we can create a simpler wrapper...
|
||||
return function(){
|
||||
return (arguments.length
|
||||
? __argcMismatch(fname, xf.length)
|
||||
: cache.xWrap.convertResult(resultType, xf.call(null)));
|
||||
};
|
||||
return (...args)=>(args.length
|
||||
? __argcMismatch(fname, xf.length)
|
||||
: cache.xWrap.convertResult(resultType, xf.call(null)));
|
||||
}
|
||||
return function(...args){
|
||||
if(args.length!==xf.length) __argcMismatch(fname, xf.length);
|
||||
const scope = this.scopedAllocPush();
|
||||
const scope = target.scopedAllocPush();
|
||||
try{
|
||||
const rc = xf.apply(null,args.map((v,i)=>cache.xWrap.convertArg(argTypes[i], v)));
|
||||
return cache.xWrap.convertResult(resultType, rc);
|
||||
}finally{
|
||||
this.scopedAllocPop(scope);
|
||||
target.scopedAllocPop(scope);
|
||||
}
|
||||
}.bind(this);
|
||||
}.bind(target)/*xWrap()*/;
|
||||
};
|
||||
}/*xWrap()*/;
|
||||
|
||||
/** Internal impl for xWrap.resultAdapter() and argAdaptor(). */
|
||||
const __xAdapter = function(func, argc, typeName, adapter, modeName, xcvPart){
|
||||
@ -1458,8 +1456,8 @@ self.WhWasmUtilInstaller = function(target){
|
||||
*/
|
||||
target.xCallWrapped = function(fname, resultType, argTypes, ...args){
|
||||
if(Array.isArray(arguments[3])) args = arguments[3];
|
||||
return this.xWrap(fname, resultType, argTypes||[]).apply(null, args||[]);
|
||||
}.bind(target);
|
||||
return target.xWrap(fname, resultType, argTypes||[]).apply(null, args||[]);
|
||||
};
|
||||
|
||||
return target;
|
||||
};
|
||||
@ -1539,10 +1537,11 @@ self.WhWasmUtilInstaller.yawl = function(config){
|
||||
|| toss("Missing 'memory' object!");
|
||||
}
|
||||
if(!tgt.alloc && arg.instance.exports.malloc){
|
||||
const exports = arg.instance.exports;
|
||||
tgt.alloc = function(n){
|
||||
return this(n) || toss("Allocation of",n,"bytes failed.");
|
||||
}.bind(arg.instance.exports.malloc);
|
||||
tgt.dealloc = function(m){this(m)}.bind(arg.instance.exports.free);
|
||||
return exports.malloc(n) || toss("Allocation of",n,"bytes failed.");
|
||||
};
|
||||
tgt.dealloc = function(m){exports.free(m)};
|
||||
}
|
||||
wui(tgt);
|
||||
}
|
||||
|
12
manifest
12
manifest
@ -1,5 +1,5 @@
|
||||
C Lots\sof\stweaking\sin\sbatch-runner.js.\sMinor\sinternal\sAPI\supdate\sin\sOO\s#1\sAPI.
|
||||
D 2022-08-29T18:58:38.025
|
||||
C wasm\sutil:\sremove\ssuperfluous\sfunction.bind()\scalls\sto\seliminate\sa\slevel\sof\scall()\sindirection.
|
||||
D 2022-08-30T09:49:30.007
|
||||
F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
|
||||
F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
|
||||
F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
|
||||
@ -494,7 +494,7 @@ F ext/wasm/batch-runner.js 84a465acde760de81d0372415cce56737799876395a878c44a7d3
|
||||
F ext/wasm/common/SqliteTestUtil.js eb96275bed43fdb364b7d65bcded0ca5e22aaacff120d593d1385f852f486247
|
||||
F ext/wasm/common/emscripten.css 3d253a6fdb8983a2ac983855bfbdd4b6fa1ff267c28d69513dd6ef1f289ada3f
|
||||
F ext/wasm/common/testing.css 572cf1ffae0b6eb7ca63684d3392bf350217a07b90e7a896e4fa850700c989b0
|
||||
F ext/wasm/common/whwasmutil.js e1c6779c977c8614053e24311d489dd4872962cb58c27013d4778f0dd7329e9c
|
||||
F ext/wasm/common/whwasmutil.js 3d68a9cd87a2d8f7e6d5a78f3b829a927f2e28422685e029139f6e75d4ed42e4
|
||||
F ext/wasm/demo-oo1.html 75646855b38405d82781246fd08c852a2b3bee05dd9f0fe10ab655a8cffb79aa
|
||||
F ext/wasm/demo-oo1.js aad38cb90b6fa7fd4d1184e759b25056fb4ed45c4957c458896354281259515f
|
||||
F ext/wasm/fiddle/emscripten.css 3d253a6fdb8983a2ac983855bfbdd4b6fa1ff267c28d69513dd6ef1f289ada3f
|
||||
@ -2012,8 +2012,8 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
|
||||
F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
|
||||
F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
|
||||
F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
|
||||
P e5b7006f0f57f10a490d7eaeb7df77251a2f684602fed8ff161d8ce60033e7bc
|
||||
R ac09921b66efbf8cc7311954674841d9
|
||||
P 24b82b9504db3d8e1335c2300b133f897dc1a541026dc24be5b0ffd8be66d977
|
||||
R c9f285330e60c2a709dc88c6f308d17d
|
||||
U stephan
|
||||
Z 16cfbad53a69907d89a4919845ccdd35
|
||||
Z 746ec57f2eb86d7d664aa6615f7c7bf3
|
||||
# Remove this line to create a well-formed Fossil manifest.
|
||||
|
@ -1 +1 @@
|
||||
24b82b9504db3d8e1335c2300b133f897dc1a541026dc24be5b0ffd8be66d977
|
||||
1aab9627983ef0f016b01f78564e79cf815ed14d4b1b6dc04ec627b96f1b2f70
|
Loading…
Reference in New Issue
Block a user