summaryrefslogtreecommitdiff
path: root/src/codegen/Label.java
diff options
context:
space:
mode:
authorEmanuele Grasso <96300448+L0P0P@users.noreply.github.com>2024-07-14 18:48:09 +0200
committerGitHub <noreply@github.com>2024-07-14 18:48:09 +0200
commitce49d20a5fe3726e1800bc495a25c7617212abf4 (patch)
tree5a1a79efa79e7bf6dcf3d3151aec2edf6a47b3e7 /src/codegen/Label.java
parent57599a42b863cc48050c137de2ec108aa1d59a44 (diff)
Reaching definition analysis (#17)
Co-authored-by: Santo Cariotti <santo@dcariotti.me> Co-authored-by: geno <gabriele.genovese2@studio.unibo.it> Co-authored-by: geno <gabrigeno@gmail.com>
Diffstat (limited to 'src/codegen/Label.java')
-rw-r--r--src/codegen/Label.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/codegen/Label.java b/src/codegen/Label.java
index f0a4c6e..a301ede 100644
--- a/src/codegen/Label.java
+++ b/src/codegen/Label.java
@@ -6,6 +6,7 @@ public class Label {
private static int labelCounter = 0;
private static int globalVarNum = 0;
private static int functionLabelCounter = 0;
+ private static int varDefCount = 0;
public static void addFunDef(String s) {
funDef += s;
@@ -38,4 +39,8 @@ public class Label {
return base + (functionLabelCounter++);
}
+
+ public static String newVar() {
+ return "_tmp" + (varDefCount++);
+ }
}