// Mutually recursive functions implement a multi-entry loop using indirect 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
(table 2 2 funcref)
(elem (i32.const 0) $even $odd)
(type $t (func (param i32 ${ps}) (result i32)))
(type $q (func (param i32 ${ps} i32) (result i32)))
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.