// Mutually recursive functions implement a multi-entry loop using 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. // // The variable ballast is intended to test that we handle various combinations // of stack and register arguments properly.
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);
let text = `
(module
(func $odd (export "odd") (param $n i32) (param ${ps}) (param $dummy i32) (result i32)
(if (result i32) (i32.eqz (local.get $n))
(then (return (i32.or (i32.shl ${sum} (i32.const 1)) (i32.const 0))))
(else (return_call $even (i32.sub (local.get $n) (i32.const 1)) ${es}))))
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.