This repository was archived by the owner on Sep 10, 2021. It is now read-only.
This repository was archived by the owner on Sep 10, 2021. It is now read-only.
Failed to parse (TRUE) because: The constructor TRUE is unknown. #11
Open
Description
I'm following along with the README and noticed a weird interaction between coalton and ASDF, whereby coalton gets confused if I try to reload it after restarting my inferior lisp (sbcl). For example:
First run, A-OK
On the first compile/load, everything is fine:
CL-USER> (ql:quickload :coalton)
To load "coalton":
Load 1 ASDF system:
coalton
; Loading "coalton"
..................................................
[package coalton].................................
[package coalton-user]............................
[package coalton-impl]............................
[package coalton-global-symbols]..................
......
(:COALTON)
CL-USER> (in-package :coalton-user)
#<COMMON-LISP:PACKAGE "COALTON-USER">
COALTON-USER> (coalton-toplevel
(define (gg x) (if x (left 1) (right x))))
COMMON-LISP:NIL
Second run
But if I then slime-restart-inferior-lisp
and reload, coalton gets confused.
CL-USER> (ql:quickload :coalton)
To load "coalton":
Load 1 ASDF system:
coalton
; Loading "coalton"
.
(:COALTON)
CL-USER> (in-package :coalton-user)
#<COMMON-LISP:PACKAGE "COALTON-USER">
COALTON-USER> (coalton-toplevel
(define (gg x) (if x (left 1) (right x))))
; Evaluation aborted on #<COALTON-IMPL:COALTON-PARSE-ERROR {10040AF5A3}>.
The exact error is
Failed to parse (TRUE) because: The constructor TRUE is unknown.
[Condition of type COALTON-IMPL:COALTON-PARSE-ERROR]
Restarts:
0: [RETRY] Retry SLIME REPL evaluation request.
1: [*ABORT] Return to SLIME's top level.
2: [ABORT] abort thread (#<THREAD "repl-thread" RUNNING {10023F9B63}>)
Backtrace:
0: (COALTON-IMPL::ERROR-PARSING (TRUE) "The constructor ~S is unknown." TRUE)
1: ((COMMON-LISP:LABELS COALTON-IMPL::PARSE :IN COALTON-IMPL::PARSE-FORM) (MATCH X (TRUE (LEFT 1)) (FALSE (RIGHT X))))
2: ((COMMON-LISP:LABELS COALTON-IMPL::PARSE :IN COALTON-IMPL::PARSE-FORM) (FN (X) (IF X (LEFT 1) (RIGHT X))))
3: (COALTON-IMPL::PARSE-DEFINE-FORM-FUNCTION GG (X) (IF X (LEFT 1) (RIGHT X)))
4: (COALTON-IMPL::PROCESS-TOPLEVEL-VALUE-DEFINITIONS ((DEFINE (GG X) (IF X # #))))
5: ((COMMON-LISP:MACRO-FUNCTION COALTON-TOPLEVEL) (COALTON-TOPLEVEL (DEFINE (GG X) (IF X # #))) #<unused argument>)
6: ((COMMON-LISP:FLET SB-IMPL::PERFORM-EXPANSION :IN COMMON-LISP:MACROEXPAND-1) #<FUNCTION (COMMON-LISP:MACRO-FUNCTION COALTON-TOPLEVEL) {52E143BB}> COMMON-LISP:NIL)
7: (COMMON-LISP:MACROEXPAND (COALTON-TOPLEVEL (DEFINE (GG X) (IF X # #))) #<NULL-LEXENV>)
8: (SB-INT:SIMPLE-EVAL-IN-LEXENV (COALTON-TOPLEVEL (DEFINE (GG X) (IF X # #))) #<NULL-LEXENV>)
9: (COMMON-LISP:EVAL (COALTON-TOPLEVEL (DEFINE (GG X) (IF X # #))))
Workarounds
Any of the following workarounds can be used immediately after restarting sbcl.
- Manually LOAD the file
library.lisp
after loading the system:(ql:quickload :coalton) (load (asdf:system-relative-pathname :coalton "src/library.lisp"))
- Use
(asdf:load-system :coalton :force t)
instead of(ql:quickload :coalton)
- Remove cached FASL files and recompile
- In shell:
$ rm ~/.cache/common-lisp/sbcl-1.4.16-linux-x64/home/ma/src/repos/coalton/src/*.fasl
- In REPL:
(ql:quickload :coalton)
- In shell:
Metadata
Metadata
Assignees
Labels
No labels
Activity
appleby commentedon May 19, 2019
I think maybe the side-effecty stuff at the top of
compile-toplevel-define-type-form
that appears to be registering thetycon
and it's constructors needs to be pushed down into the macro expansion, possibly within aneval-when
?Proof-of-concept PR coming soon (hopefully)...
Make define-type forms work at load-time
appleby commentedon May 21, 2019
Thinking about this a bit more, perhaps things are not so simple as I had hoped (they never are!).
There seem to be at least three competing concerns here:
coalton-toplevel
form need to be visible to each other at macro-expansion time.:load-toplevel
time, so that loading a precompiled FASL does the right thing.The corollary to (3) is that the definitions should only be registered in the global environment once, probably inside the macro form and possibly wrapped in an
(eval-when (:compile-toplevel :load-toplevel :execute) ...)
. (I suspect the:compile-toplevel
is not needed which means theeval-when
is not needed, but, as usual, staring at the hyperspec section for Processing Toplevel Forms has left me less than certain...).But pushing the tycon and ctor registrations down into the macro form means that the macro expander needs some other provision to know about in-process definitions. The current implementation already tracks an
extra-tycons
parameter for this purpose, andparse-type-expression
is smart enough to lookup stuff inextra-tycons
before trying the "global environment." Perhaps similar provisions could be made for ctors and the like. So far I have been ignoring other toplevel definition forms likedefine
anddeclare
, which may need similar treatment (haven't looked yet).Maybe instead of just
extra-tycons
any of theprocess-toplevel-*
functions (and whatever functions they call) could get passed some kind of environment object that tracks all type/ctor/value definitions, similar to the&environment
defmacro parameter.tl;dr - Not quite as simple as I had hoped. I should probably read and understand the coalton source (and maybe the MACROEXPAND-ALL chapter of this Dick Waters paper) before proceeding further :). I have other stuff I want to work on first, but will circle back to this eventually (famous last words).
stylewarning commentedon May 31, 2019
This is a good thing to pick up on. I've felt uneasy about the compile-time side effects Coalton does. There needs to be a better way to manage it all.
stylewarning commentedon Dec 14, 2019
Probably what needs to happen is side effects need to happen at macroexpansion time, but they also need to be put in the macroexpansion as well so the FASL loader catches them.
It seems to be "working" when I do that, e.g.
stylewarning commentedon Dec 14, 2019
Note: PR in progress #14
appleby commentedon Dec 15, 2019
The diff in #14 looks similar to what I did in #12. I'm struggling to remember now why I abandoned that PR. Can't remember if I stumbled on a bug or if I was just vaguely unsatisfied with it.