Skip to content

Push to the inline stack after compiling arguments #2527

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ under the licensing terms detailed in LICENSE:
* Ruixiang Chen <xiang19890319@gmail.com>
* Daniel Salvadori <danaugrs@gmail.com>
* Jairus Tanaka <jairus.v.tanaka@outlook.com>
* CountBleck <Mr.YouKnowWhoIAm@protonmail.com>

Portions of this software are derived from third-party works licensed under
the following terms:
Expand Down
5 changes: 3 additions & 2 deletions src/compiler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6447,15 +6447,16 @@ export class Compiler extends DiagnosticEmitter {
reportNode.range, instance.internalName
);
} else {
inlineStack.push(instance);
let parameterTypes = signature.parameterTypes;
assert(numArguments <= parameterTypes.length);
// compile argument expressions
// compile argument expressions *before* pushing to the inline stack
// otherwise, the arguments may not be inlined, e.g. `abc(abc(123))`
let args = new Array<ExpressionRef>(numArguments);
for (let i = 0; i < numArguments; ++i) {
args[i] = this.compileExpression(argumentExpressions[i], parameterTypes[i], Constraints.CONV_IMPLICIT);
}
// make the inlined call
inlineStack.push(instance);
let expr = this.makeCallInline(instance, args, thisArg, (constraints & Constraints.WILL_DROP) != 0);
inlineStack.pop();
return expr;
Expand Down
20 changes: 14 additions & 6 deletions tests/compiler/inlining.debug.wat
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,14 @@
i32.const 1
i32.eq
drop
i32.const 1
local.set $var$2
local.get $var$2
local.set $var$2
local.get $var$2
i32.const 1
i32.eq
drop
i32.const 2
local.set $var$2
local.get $var$2
Expand Down Expand Up @@ -203,7 +211,7 @@
if
i32.const 0
i32.const 32
i32.const 68
i32.const 69
i32.const 3
call $~lib/builtins/abort
unreachable
Expand Down Expand Up @@ -235,7 +243,7 @@
if
i32.const 0
i32.const 32
i32.const 71
i32.const 72
i32.const 3
call $~lib/builtins/abort
unreachable
Expand Down Expand Up @@ -2416,7 +2424,7 @@
if
i32.const 0
i32.const 32
i32.const 95
i32.const 96
i32.const 3
call $~lib/builtins/abort
unreachable
Expand All @@ -2429,7 +2437,7 @@
if
i32.const 0
i32.const 32
i32.const 96
i32.const 97
i32.const 3
call $~lib/builtins/abort
unreachable
Expand All @@ -2442,7 +2450,7 @@
if
i32.const 0
i32.const 32
i32.const 97
i32.const 98
i32.const 3
call $~lib/builtins/abort
unreachable
Expand All @@ -2455,7 +2463,7 @@
if
i32.const 0
i32.const 32
i32.const 98
i32.const 99
i32.const 3
call $~lib/builtins/abort
unreachable
Expand Down
8 changes: 4 additions & 4 deletions tests/compiler/inlining.release.wat
Original file line number Diff line number Diff line change
Expand Up @@ -1550,7 +1550,7 @@
if
i32.const 0
i32.const 1056
i32.const 95
i32.const 96
i32.const 3
call $~lib/builtins/abort
unreachable
Expand All @@ -1562,7 +1562,7 @@
if
i32.const 0
i32.const 1056
i32.const 96
i32.const 97
i32.const 3
call $~lib/builtins/abort
unreachable
Expand All @@ -1574,7 +1574,7 @@
if
i32.const 0
i32.const 1056
i32.const 97
i32.const 98
i32.const 3
call $~lib/builtins/abort
unreachable
Expand All @@ -1586,7 +1586,7 @@
if
i32.const 0
i32.const 1056
i32.const 98
i32.const 99
i32.const 3
call $~lib/builtins/abort
unreachable
Expand Down
1 change: 1 addition & 0 deletions tests/compiler/inlining.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ function test_funcs(): void {
assert(func_ii(43) == 3);
assert(func_ii_opt() == 0);
assert(func_ii_opt(1) == 1);
assert(func_ii_opt(func_ii_opt(1)) == 1);
assert(func_ii_loc(2) == 3);
assert(func_ii_loc(3) == 4);
func_iv(0);
Expand Down