From 8a6a7a43116021c38d09e590f236be6ebd79eca5 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 27 Jun 2024 15:22:47 -0400 Subject: move AST->IR outside of parsing stage --- ast.hpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'ast.hpp') diff --git a/ast.hpp b/ast.hpp index b7802c1..380a38f 100644 --- a/ast.hpp +++ b/ast.hpp @@ -68,14 +68,17 @@ struct ThunkAST : public BaseAST static int tcount; static int envidx; + std::list> ast; llvm::IRBuilderBase::InsertPoint parent; llvm::Function *func; llvm::BasicBlock *entry, *body; llvm::Value *env; - explicit ThunkAST(LLVMState& llvmState); - explicit ThunkAST(LLVMState& llvmState, std::string n); + explicit ThunkAST(); llvm::Value *codegen(LLVMState& llvmState) const override; + + void beginGen(LLVMState& llvmState); + void endGen(LLVMState& llvmState); }; #endif // FORSPLL_AST_HPP -- cgit v1.2.3