Implement liveness analysis - #229
Open
kulcsaradam wants to merge 4 commits into
Open
Conversation
kulcsaradam
marked this pull request as draft
February 22, 2024 08:14
kulcsaradam
force-pushed
the
live_analysis
branch
from
February 26, 2024 11:40
29ef8fa to
6660ba7
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
from
March 12, 2024 10:11
6660ba7 to
4ca3dd1
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
from
March 19, 2024 10:17
4ca3dd1 to
ddfeaf8
Compare
zherczeg
requested changes
Mar 21, 2024
kulcsaradam
force-pushed
the
live_analysis
branch
2 times, most recently
from
March 22, 2024 10:20
bfdbb4c to
4bb4a46
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
2 times, most recently
from
April 8, 2024 10:41
9d6a783 to
2b9957b
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
5 times, most recently
from
April 24, 2024 07:57
e0b6926 to
0a169a2
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
3 times, most recently
from
May 9, 2024 13:19
c062e79 to
0bd6931
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
from
June 3, 2024 14:04
0bd6931 to
52cc323
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
3 times, most recently
from
June 18, 2024 13:13
903818c to
8e94ba5
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
4 times, most recently
from
June 28, 2024 17:31
8eb6770 to
b7d1651
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
2 times, most recently
from
July 12, 2024 13:11
1fae2e9 to
3033fb2
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
from
July 22, 2024 08:58
3033fb2 to
dda696b
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
3 times, most recently
from
August 7, 2024 12:24
07d8e4f to
889b81a
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
4 times, most recently
from
October 31, 2024 12:54
e141fa4 to
cc50def
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
2 times, most recently
from
November 5, 2024 10:50
47849d4 to
4fc330b
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
3 times, most recently
from
July 23, 2025 14:44
95247d5 to
c29bb1f
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
2 times, most recently
from
August 12, 2025 08:56
10413e5 to
639b128
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
2 times, most recently
from
August 22, 2025 08:27
ce431eb to
4cef090
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
4 times, most recently
from
December 9, 2025 14:17
a7c9616 to
a1381fa
Compare
kulcsaradam
force-pushed
the
live_analysis
branch
4 times, most recently
from
January 7, 2026 13:56
e5e0bc1 to
da55793
Compare
Signed-off-by: Ádám László Kulcsár <kuladam@inf.u-szeged.hu>
Signed-off-by: Ádám Kulcsár <kuladam@inf.u-szeged.hu>
Signed-off-by: Ádám László Kulcsár <kuladam@inf.u-szeged.hu>
Signed-off-by: Ádám László Kulcsár <kuladam@inf.u-szeged.hu>
kulcsaradam
force-pushed
the
live_analysis
branch
from
January 8, 2026 16:14
da55793 to
6082fef
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
With this patch I aim to optimize Walrus stack useage. This patch does not run without errors yet. Currently, there is a variable pushed down the stack for each local variable.
My idea is to analyse the Bytecode and get the maximum amount of variables the code needs at one point and only push down the stack that given number of variables.
The patch is still in draft, I am just curious about things I might have missed or done better! There are definitly parts that can be optimized, which I will try to once I get the patch running properly.