aboutsummaryrefslogtreecommitdiffstats
path: root/ast.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-06-25 17:29:45 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-06-25 17:29:45 -0400
commit0d8932e96934dbeb0f1e21872693ca833a64341f (patch)
tree93c95a0bd94f143362144d8a0a7704a797eb8ac5 /ast.cpp
parentb16e418091bad151ed064b56f6c4d195242044d7 (diff)
take env off stack; only save locals for recursion
Diffstat (limited to 'ast.cpp')
-rw-r--r--ast.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/ast.cpp b/ast.cpp
index 0e2d8c5..6aaa8a0 100644
--- a/ast.cpp
+++ b/ast.cpp
@@ -117,15 +117,17 @@ llvm::Value *CallAST::codegen(LLVMState& llvmState) const
Var::addGlobal(name, Var {fn, true});
}
- auto ptrty = llvmState.inttype->getPointerTo();
- llvm::Type *type;
- llvm::Value *mem;
-
- if (auto sz = Var::vars.back().size(); sz > 0) {
- type = llvm::VectorType::get(llvmState.inttype, sz, false);
- mem = llvmState.builder.CreateAlloca(type, nullptr);
+ bool couldRecur = Var::lookup("self").value != nullptr;
+ auto localCount = Var::vars.back().size();
+ if (!couldRecur || localCount == 0) {
+ return llvmState.builder.CreateCall(llvmState.ftype, fn, llvm::ArrayRef {scope.back().env});
+ } else {
+ int i;
+ auto ptrty = llvmState.inttype->getPointerTo();
+ auto type = llvm::VectorType::get(llvmState.inttype, localCount, false);
+ auto mem = llvmState.builder.CreateAlloca(type, nullptr);
- int i = 0;
+ i = 0;
for (auto& [_, v] : Var::vars.back()) {
if (!v.native) {
auto index = llvm::ConstantInt::get(llvmState.inttype, i++);
@@ -133,12 +135,10 @@ llvm::Value *CallAST::codegen(LLVMState& llvmState) const
llvmState.builder.CreateStore(loadEnv(llvmState, v.value), m, false);
}
}
- }
- auto call = llvmState.builder.CreateCall(llvmState.ftype, fn, llvm::ArrayRef {scope.back().env});
+ auto call = llvmState.builder.CreateCall(llvmState.ftype, fn, llvm::ArrayRef {scope.back().env});
- if (auto sz = Var::vars.back().size(); sz > 0) {
- int i = 0;
+ i = 0;
for (auto& [_, v] : Var::vars.back()) {
if (!v.native) {
auto index = llvm::ConstantInt::get(llvmState.inttype, i++);
@@ -147,9 +147,9 @@ llvm::Value *CallAST::codegen(LLVMState& llvmState) const
storeEnv(llvmState, v.value, l);
}
}
- }
- return call;
+ return call;
+ }
}
ThunkAST::ThunkAST(LLVMState& llvmState):