// Mutually recursive functions implement a multi-entry loop using indirect // cross-module tail calls. The functions do not have the same signatures, so // if all arguments are stack arguments then these use different amounts of // stack space. // // Cross-module mutual recursion must be set up by JS, which is a bit of hair. // But this should not destroy the ability to tail-call. // // The variable ballast is intended to test that we handle various combinations // of stack and register arguments properly. // // The mutable globals accessed after the call are there to attempt to ensure // that the correct instance is restored after the chain of tail calls.
for ( let ballast=1; ballast < TailCallBallast; ballast++ ) {
let vals = iota(ballast,1);
let ps = vals.map(_ => 'i32').join(' ')
let es = vals.map(i => `(local.get ${i})`).join(' ')
let sum = vals.reduceRight((p,c) => `(i32.add (local.get ${c}) ${p})`, `(i32.const 0)`)
let sumv = vals.reduce((p,c) => p+c);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.