-
Notifications
You must be signed in to change notification settings - Fork 5.3k
[Wasm RyuJIT] Add Instruction Encoding for Local Var Declarations and Emit Local Declarations #122425
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
base: main
Are you sure you want to change the base?
[Wasm RyuJIT] Add Instruction Encoding for Local Var Declarations and Emit Local Declarations #122425
Changes from 11 commits
e93e57d
4b991da
5933e67
7b8e339
78b7c70
9fbfb86
7d12af0
4b91b3a
183851f
c9d3046
0482ee3
dfb0627
b237c17
19c9eaf
76a15f2
d32f695
f3e2f82
0820a24
78945a3
9a3c21a
ddb4801
704a4a7
7bb7cfc
06207d5
c52da98
9373181
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,6 +42,7 @@ void CodeGen::genFnEpilog(BasicBlock* block) | |
| // TODO-WASM-CQ: do not emit "return" in case this is the last block | ||
|
|
||
| instGen(INS_return); | ||
| instGen(INS_end); | ||
|
||
| } | ||
|
|
||
| void CodeGen::genCaptureFuncletPrologEpilogInfo() | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,7 +9,6 @@ enum class WasmValueType : unsigned | |
| F32, | ||
| F64, | ||
| Count, | ||
|
|
||
| #ifdef TARGET_64BIT | ||
| I = I64, | ||
| #else | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.