aboutsummaryrefslogtreecommitdiffstats
path: root/var.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'var.hpp')
-rw-r--r--var.hpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/var.hpp b/var.hpp
new file mode 100644
index 0000000..098af69
--- /dev/null
+++ b/var.hpp
@@ -0,0 +1,22 @@
+#ifndef FORSPLL_VAR_HPP
+#define FORSPLL_VAR_HPP
+
+#include <llvm/IR/Type.h>
+#include <llvm/IR/DerivedTypes.h>
+
+struct Var {
+ llvm::Value *value;
+ bool callable;
+
+ Var(llvm::Value *v = nullptr, bool c = false):
+ value(v), callable(c) {}
+
+ static Var lookup(const std::string& name, int skip = 0);
+ static void pushScope();
+ static void popScope();
+ static Var& addGlobal(const std::string& name, Var var);
+ static Var& addLocal(const std::string& name, Var var);
+};
+
+#endif // FORSPLL_VAR_HPP
+