forked from kozorizki/binaryen
We previously supported a non-standard `(func "name" ...` syntax for declaring functions exported with the quoted name. Since that is not part of the standard text format, drop support for it, replacing it with the standard `(func $name (export "name") ...` syntax instead. Also replace our other usage of the quoted form in our text output, which was where we quoted names containing characters that are not allowed to appear in standard names. To handle that case, adjust our output from `"$name"` to `$"name"`, which is the standards-track way of supporting such names. Also fix how we detect non-standard name characters to match the spec. Update the lit test output generation script to account for these changes, including by making the `$` prefix on names mandatory. This causes the script to stop interpreting declarative element segments with the `(elem declare ...` syntax as being named "declare", so prevent our generated output from regressing by counting "declare" as a name in the script.
37 lines
703 B
JavaScript
37 lines
703 B
JavaScript
|
|
function asmFunc(imports) {
|
|
var Math_imul = Math.imul;
|
|
var Math_fround = Math.fround;
|
|
var Math_abs = Math.abs;
|
|
var Math_clz32 = Math.clz32;
|
|
var Math_min = Math.min;
|
|
var Math_max = Math.max;
|
|
var Math_floor = Math.floor;
|
|
var Math_ceil = Math.ceil;
|
|
var Math_trunc = Math.trunc;
|
|
var Math_sqrt = Math.sqrt;
|
|
var f = -1412567121;
|
|
var f$hi = 305419896;
|
|
function call($0, $0$hi) {
|
|
$0 = $0 | 0;
|
|
$0$hi = $0$hi | 0;
|
|
}
|
|
|
|
function exp() {
|
|
var i64toi32_i32$0 = 0;
|
|
i64toi32_i32$0 = f$hi;
|
|
call(f | 0, i64toi32_i32$0 | 0);
|
|
i64toi32_i32$0 = 287454020;
|
|
f = 1432778632;
|
|
f$hi = i64toi32_i32$0;
|
|
}
|
|
|
|
return {
|
|
"exp": exp
|
|
};
|
|
}
|
|
|
|
var retasmFunc = asmFunc({
|
|
});
|
|
export var exp = retasmFunc.exp;
|