Nathan Braswell
90750933fc
Fixed the recursion! Memo has moved to just being the infinite recursion detector based on body and inner-env
2022-01-27 21:54:15 -05:00
Nathan Braswell
2746e1ca75
contains_symbols is/was exhibiting exponential behavior - probs memoizing or using needed_for_eval could fix it, but also it doesn't normally have to be called, so just doing that got us a 50x speedup or so
2022-01-26 23:43:50 -05:00
Nathan Braswell
3748610dea
Can finally compile let! The memoization of partial_eval was allowing re-introduction of fake envs somehow. Temporarily disabled, also added a bunch of debugging aids like str_strip only printing envs in full the first time, need_value being passed through compile to fail faster, etc
2022-01-26 22:41:29 -05:00
Nathan Braswell
9bc658a1a4
Ah, found additional infinate recursion. In the process of fixing the second, trickier one, caused by compile & partial eval together. Should be fixed? but there's a nil coming out somewhere
2022-01-26 01:55:38 -05:00
Nathan Braswell
d4752eddb4
Fixed the bug! ctx has env in it, and was being returned upwards, messing up the environment of subsequently compiled things. The key is to make sure things that modify the environment (compiling functions) return the env it was passed in the ctx
2022-01-25 16:51:06 -05:00
Nathan Braswell
77c7a05a28
Hopefully fixed the new exponential behavior by piggybacking on a now more accurate needed-for-eval tracking (that hopefully didn't introduce it's own exponential behavior but might have), and other fixes. We still have the same weird problem though
2022-01-23 14:16:07 -05:00
Nathan Braswell
94e2d62a10
Ok, finished fixing check_for_env_id_in_result, now works up to before. Weirdly, we're now just back to the previous error, and I think I might have reintroduced exponential behavior with the env_id searching
2022-01-22 00:56:02 -05:00
Nathan Braswell
99926cdb7c
check_for_env_id_in_result fixed, I had accidentally left it unimplemented. Bug with envs escaping when they weren't real fixed, and most everything works, but compiling lapply fails now
2022-01-22 00:19:10 -05:00
Nathan Braswell
6602ff3151
The refactor has either caught up, or is close, and is much faster.
...
Need to make partial_eval_helper able to fail though, so that it can fail in the now fallible compiler.
Squashed commit of the following:
commit 283150d1e19cf9f74bc32e9c554f5e041d53582d
Author: Nathan Braswell <miloignis@gmail.com >
Date: Tue Jan 18 00:14:51 2022 -0500
Another bugfix, I think now we're truely running into the partial-eval needs to be able to fail part
commit c62c228a1e89e7922850d2070bc046e5f80af5a5
Author: Nathan Braswell <miloignis@gmail.com >
Date: Mon Jan 17 23:34:19 2022 -0500
Fixed needed check, added note on needing to support failing partial eval
commit d480e486210dd5c7c4842e3a3d3e447dc7a5274e
Author: Nathan Braswell <miloignis@gmail.com >
Date: Mon Jan 17 22:14:58 2022 -0500
Fixed compilation bugs, added debugging prints to running.
commit fc4dc4d3170bf1ceb4cd934cff54dd9ce6c8713a
Author: Nathan Braswell <miloignis@gmail.com >
Date: Mon Jan 17 17:28:29 2022 -0500
The unique id / ctx refactor is starting to work, with all basic test cases compiling & partial evaling, but mis-compile bugs remaining
2022-01-18 00:36:42 -05:00
Nathan Braswell
6ef60c4cc6
I belive I fixed the bug revealed by the let definition - it was a similar thing where <comb>s were counted as values even if there were fake envs inside, and then thouse fake envs could be moved inside another env_stack and then later resolve to a wrong env, or at lest I think that's what was happening. The let test takes too long to run now - I killed it at 20 minutes and 48GB of RAM taken. Given that, it's now time to move on towards optimization
2022-01-07 22:08:29 -05:00
Nathan Braswell
b559bfdf90
Add note about compiling params meant for Vau & additional partial eval for that case to help in cases where it's legitimate. Eventually it should handle errors gracefully, but non-gracefully can be good enough for now.
2022-01-05 22:58:26 -05:00
Nathan Braswell
1aa9ca972a
Fix & and error checking for compiling environments as code & value, add a todo for things deferred
2022-01-05 01:05:16 -05:00