From 95901f3a5fa0ec18128030c915d1d94bade5de94 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 20 Jun 2024 18:01:48 -0400 Subject: global env; alloca locals kinda messy --- var.hpp | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'var.hpp') diff --git a/var.hpp b/var.hpp index f61883f..1ffb8b8 100644 --- a/var.hpp +++ b/var.hpp @@ -21,14 +21,21 @@ #include #include +#include +#include +#include + struct Var { llvm::Value *value; - bool callable; + bool native; + + Var(llvm::Value *v = nullptr, bool n = false): + value(v), native(n) {} - Var(llvm::Value *v = nullptr, bool c = false): - value(v), callable(c) {} + static std::list> vars; static Var lookup(const std::string& name, int skip = 0); + static Var lookupLocal(const std::string& name); static void pushScope(); static void popScope(); static Var& addGlobal(const std::string& name, Var var); -- cgit v1.2.3