From 0ad40ced64ba5b2b83f7c9274efea1aa3677a534 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 15 Jun 2024 08:04:15 -0400 Subject: break code into separate files --- llvm.hpp | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 llvm.hpp (limited to 'llvm.hpp') diff --git a/llvm.hpp b/llvm.hpp new file mode 100644 index 0000000..008d5cd --- /dev/null +++ b/llvm.hpp @@ -0,0 +1,41 @@ +#ifndef FORSPLL_LLVM_HPP +#define FORSPLL_LLVM_HPP + +#include +#include +#include +#include +#include +#include +#include + +#include + +struct LLVMState +{ + llvm::LLVMContext ctx; + llvm::Module modul; + llvm::IRBuilder<> builder; + + llvm::Type *inttype; + llvm::Type *stacktype; + llvm::FunctionType *ftype; + llvm::Constant *one; + llvm::Constant *zero; + llvm::Constant *llvmSp; + llvm::Constant *llvmStack; + + LLVMState(); + + llvm::Value *createPush(); + llvm::Value *createPop(); + llvm::Function *createFunction(const std::string& name); + llvm::BasicBlock *createEntry(llvm::Function *func); + llvm::Value *createVariable(const std::string& name); + llvm::Constant *createInt(int n); + + void output(); +}; + +#endif // FORSPLL_LLVM_HPP + -- cgit v1.2.3