correcting error with compiling operands when they are kernel-primitive.
This commit is contained in:
parent
01cd1f5867
commit
9c0fb9f39e
|
@ -1335,8 +1335,13 @@
|
|||
[(ToplevelRef? e)
|
||||
(cond
|
||||
[(ModuleVariable? k)
|
||||
(make-EnvPrefixReference (ToplevelRef-depth e) (ToplevelRef-pos e) #t)]
|
||||
|
||||
(cond [(kernel-module-name? (ModuleVariable-module-name k))
|
||||
(make-PrimitiveKernelValue
|
||||
(kernel-module-variable->primitive-name k))]
|
||||
[else
|
||||
(make-EnvPrefixReference (ToplevelRef-depth e)
|
||||
(ToplevelRef-pos e)
|
||||
#t)])]
|
||||
[else
|
||||
(make-EnvPrefixReference (ToplevelRef-depth e) (ToplevelRef-pos e) #f)])]
|
||||
[(PrimitiveKernelValue? e)
|
||||
|
|
|
@ -138,6 +138,28 @@
|
|||
(maybe-with-profiling
|
||||
(print-il path))]
|
||||
|
||||
["print-bytecode" "print the bytecode of a module"
|
||||
"Prints the bytecode of a module; used for debugging purposes."
|
||||
#:once-each
|
||||
[("-v" "--verbose")
|
||||
("Display verbose messages.")
|
||||
(current-verbose? #t)]
|
||||
[("--debug-show-timings")
|
||||
("Display debug messages about compilation time.")
|
||||
(current-timing-port (current-output-port))]
|
||||
[("--enable-profiling")
|
||||
("Enable profiling to standard output")
|
||||
(with-profiling? #t)]
|
||||
[("--root-dir")
|
||||
root-path
|
||||
("Set the root package path (default: current-directory)")
|
||||
(set-root-path! root-path)]
|
||||
#:args (path)
|
||||
(maybe-with-profiling
|
||||
(print-bytecode path))]
|
||||
|
||||
|
||||
|
||||
["get-runtime" "print the runtime library to standard output"
|
||||
"Prints the runtime JavaScript library that's used by Whalesong programs."
|
||||
#:once-each
|
||||
|
|
|
@ -319,6 +319,15 @@
|
|||
(current-output-port)))))
|
||||
|
||||
|
||||
(define (print-bytecode filename)
|
||||
(with-catchall-exception-handler
|
||||
(lambda ()
|
||||
(turn-on-logger!)
|
||||
(define path (normalize-path (build-path filename)))
|
||||
(define bytecode (parse-bytecode path))
|
||||
(pretty-print bytecode))))
|
||||
|
||||
|
||||
(define (print-il filename)
|
||||
(with-catchall-exception-handler
|
||||
(lambda ()
|
||||
|
|
Loading…
Reference in New Issue
Block a user