aboutsummaryrefslogtreecommitdiffstats
path: root/var.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-06-15 08:04:15 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-06-15 08:04:15 -0400
commit0ad40ced64ba5b2b83f7c9274efea1aa3677a534 (patch)
treed019d32a7919f52e4aa6897bfa279ed57ef7038f /var.hpp
parent47d7c964d075f92b9ce657f1b946f5bd6895439b (diff)
break code into separate files
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
+