diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-06-27 15:22:47 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-06-27 15:22:47 -0400 |
commit | 8a6a7a43116021c38d09e590f236be6ebd79eca5 (patch) | |
tree | e6780a51941ad6018437c31d145da18c574d84b7 /ast.hpp | |
parent | 69d136281d0a0d7cd36a091a8a8d10f6b2473754 (diff) |
move AST->IR outside of parsing stage
Diffstat (limited to 'ast.hpp')
-rw-r--r-- | ast.hpp | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -68,14 +68,17 @@ struct ThunkAST : public BaseAST static int tcount; static int envidx; + std::list<std::unique_ptr<BaseAST>> 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 |