summaryrefslogtreecommitdiff
path: root/src/semanticanalysis
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-06-13 11:00:06 +0200
committerGitHub <noreply@github.com>2024-06-13 11:00:06 +0200
commit8e7089a5d6ba1f4f50a90133bb50bc5c6c554aff (patch)
treed4a627e56a199720f7d811af5756402e76628864 /src/semanticanalysis
parent1c8761901b26c0be4d61f3aed5ec0495a558a0e7 (diff)
Set up visitor (#3)
Co-authored-by: geno <gabriele.genovese2@studio.unibo.it>
Diffstat (limited to 'src/semanticanalysis')
-rw-r--r--src/semanticanalysis/STentry.java55
-rw-r--r--src/semanticanalysis/SemanticError.java16
-rw-r--r--src/semanticanalysis/SymbolTable.java153
3 files changed, 224 insertions, 0 deletions
diff --git a/src/semanticanalysis/STentry.java b/src/semanticanalysis/STentry.java
new file mode 100644
index 0000000..42990fa
--- /dev/null
+++ b/src/semanticanalysis/STentry.java
@@ -0,0 +1,55 @@
+package com.clp.project.semanticanalysis;
+
+import com.clp.project.ast.types.Type;
+
+/**
+ * Entry class for the symbol table.
+ */
+public class STentry {
+ private Type type;
+ private int offset;
+ private int nesting;
+ private String label;
+
+ public STentry(Type type, int offset, int nesting) {
+ this.type = type;
+ this.offset = offset;
+ this.nesting = nesting;
+ }
+
+ public STentry(Type type, int offset, int nesting, String label) {
+ this.type = type;
+ this.offset = offset;
+ this.nesting = nesting;
+ this.label = label;
+ }
+
+ /**
+ * Getter for `type`
+ */
+ public Type getType() {
+ return type;
+ }
+
+ /**
+ * Getter for `offset`
+ */
+ public int getOffset() {
+ return offset;
+ }
+
+ /**
+ * Getter for `nesting`
+ */
+ public int getNesting() {
+ return nesting;
+ }
+
+ /**
+ * Getter for `label`
+ */
+ public String getLabel() {
+ return label;
+ }
+
+}
diff --git a/src/semanticanalysis/SemanticError.java b/src/semanticanalysis/SemanticError.java
new file mode 100644
index 0000000..1df1ce9
--- /dev/null
+++ b/src/semanticanalysis/SemanticError.java
@@ -0,0 +1,16 @@
+package com.clp.project.semanticanalysis;
+
+/**
+ * Class respresents a semantic error.
+ */
+public class SemanticError {
+ private String msg;
+
+ public SemanticError(String msg) {
+ this.msg = msg;
+ }
+
+ public String toString() {
+ return msg;
+ }
+}
diff --git a/src/semanticanalysis/SymbolTable.java b/src/semanticanalysis/SymbolTable.java
new file mode 100644
index 0000000..d4fda37
--- /dev/null
+++ b/src/semanticanalysis/SymbolTable.java
@@ -0,0 +1,153 @@
+package com.clp.project.semanticanalysis;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import com.clp.project.ast.*;
+import com.clp.project.ast.types.*;
+
+/**
+ * Class representing a symbol table. It's a list of hash table symbol table. We
+ * keep track of a ArrayList of HashMap called `symbolTable` and an array of
+ * integer called `offset`.
+ */
+public class SymbolTable {
+
+ private ArrayList<HashMap<String, STentry>> symbolTable;
+ private ArrayList<Integer> offset;
+
+ public SymbolTable() {
+ this.symbolTable = new ArrayList<HashMap<String, STentry>>();
+ this.offset = new ArrayList<Integer>();
+ }
+
+ /**
+ * Returns the nesting level.
+ */
+ public Integer nesting() {
+ return this.symbolTable.size() - 1;
+ }
+
+ /**
+ * Check out if an `id` is into the symbol table. Returns an STentry object
+ * or null if the `id` is not found.
+ *
+ * @param id is the identifier of the STentry to find.
+ */
+ public STentry lookup(String id) {
+ int n = this.symbolTable.size() - 1;
+ boolean found = false;
+ STentry T = null;
+ while ((n >= 0) && !found) {
+ HashMap<String, STentry> H = this.symbolTable.get(n);
+ T = H.get(id);
+ if (T != null) {
+ found = true;
+ }else {
+ n = n - 1;
+ }
+ }
+ return T;
+ }
+
+ /**
+ * Return the position of a STentry given the `id`, if it exists. Otherwise
+ * return `-1`. We start the search from the last inserted hashmap.
+ *
+ * @param id is the identifier of the STentry to find.
+ */
+ public Integer nslookup(String id) {
+ int n = this.symbolTable.size() - 1;
+ boolean found = false;
+ while ((n >= 0) && !found) {
+ HashMap<String, STentry> H = this.symbolTable.get(n);
+ if (H.get(id) != null) {
+ found = true;
+ }else {
+ n = n - 1;
+ }
+ }
+ return n;
+ }
+
+ /**
+ * Add an hashmap to the given symbol table and increase the offset level.
+ * We start from 2 because we have FP and AL before all.
+ *
+ * @param H is an hashmap that is must be added into the symbol table
+ */
+ public void add(HashMap<String, STentry> H) {
+ this.symbolTable.add(H);
+ this.offset.add(1);
+ }
+
+ /**
+ * Remove the last level for the symbol table.
+ */
+ public void remove() {
+ int x = this.symbolTable.size();
+ this.symbolTable.remove(x - 1);
+ this.offset.remove(x - 1);
+ }
+
+ /**
+ * Return `true` if the `id` is present in the last inseted hashmap.
+ * Otherwise return `false`.
+ *
+ * @param id is the identifier of the STentry to find.
+ */
+ public boolean top_lookup(String id) {
+ int n = symbolTable.size() - 1;
+ STentry T = null;
+ HashMap<String, STentry> H = symbolTable.get(n);
+ T = H.get(id);
+ return (T != null);
+ }
+
+ /**
+ * Insert a new entry into the symbol table.
+ *
+ * @param id
+ * @param type
+ * @param _nesting
+ * @param _label
+ */
+ public void insert(String id, Type type, int _nesting, String _label) {
+ int n = symbolTable.size() - 1;
+ HashMap<String, STentry> H = this.symbolTable.get(n);
+ this.symbolTable.remove(n);
+
+ int offs = this.offset.get(n);
+ this.offset.remove(n);
+
+ STentry idtype = new STentry(type, offs, _nesting, _label);
+ H.put(id, idtype);
+
+ this.symbolTable.add(H);
+
+ // We always increment the offset by 1 otherwise we need ad-hoc bytecode
+ // operations
+ if (type.getClass().equals((new BoolType()).getClass())) {
+ offs = offs + 1;
+ } else if (type.getClass().equals((new IntType()).getClass())) {
+ offs = offs + 1;
+ } else {
+ offs = offs + 1;
+ }
+
+ this.offset.add(offs);
+ }
+
+ /**
+ * Increase the offset level.
+ */
+ public void increaseoffset() {
+ int n = this.offset.size() - 1;
+ int offs = this.offset.get(n);
+ this.offset.remove(n);
+
+ offs = offs + 1;
+
+ this.offset.add(offs);
+ }
+
+}