trying to trace why conform is failing
This commit is contained in:
parent
1550196a5a
commit
664f778da6
24
compiler.rkt
24
compiler.rkt
|
@ -965,7 +965,7 @@
|
||||||
(ModuleVariable-module-name op-knowledge))
|
(ModuleVariable-module-name op-knowledge))
|
||||||
'#%kernel)
|
'#%kernel)
|
||||||
(let ([op (ModuleVariable-name op-knowledge)])
|
(let ([op (ModuleVariable-name op-knowledge)])
|
||||||
(cond #;[(KernelPrimitiveName/Inline? op)
|
(cond [(KernelPrimitiveName/Inline? op)
|
||||||
(compile-kernel-primitive-application
|
(compile-kernel-primitive-application
|
||||||
op
|
op
|
||||||
exp cenv target linkage)]
|
exp cenv target linkage)]
|
||||||
|
@ -1016,8 +1016,6 @@
|
||||||
,(make-PushEnvironment (length (App-operands exp)) #f)))
|
,(make-PushEnvironment (length (App-operands exp)) #f)))
|
||||||
proc-code
|
proc-code
|
||||||
(juggle-operands operand-codes)
|
(juggle-operands operand-codes)
|
||||||
(make-instruction-sequence
|
|
||||||
`(,(make-DebugPrint (make-Reg 'proc))))
|
|
||||||
(make-instruction-sequence `(,(make-AssignImmediateStatement
|
(make-instruction-sequence `(,(make-AssignImmediateStatement
|
||||||
'argcount
|
'argcount
|
||||||
(make-Const (length (App-operands exp))))))
|
(make-Const (length (App-operands exp))))))
|
||||||
|
@ -1027,7 +1025,7 @@
|
||||||
linkage))))
|
linkage))))
|
||||||
|
|
||||||
|
|
||||||
#;(: compile-kernel-primitive-application
|
(: compile-kernel-primitive-application
|
||||||
(KernelPrimitiveName/Inline App CompileTimeEnvironment Target Linkage -> InstructionSequence))
|
(KernelPrimitiveName/Inline App CompileTimeEnvironment Target Linkage -> InstructionSequence))
|
||||||
;; This is a special case of application, where the operator is statically
|
;; This is a special case of application, where the operator is statically
|
||||||
;; known to be in the set of hardcoded primitives.
|
;; known to be in the set of hardcoded primitives.
|
||||||
|
@ -1037,7 +1035,7 @@
|
||||||
;; stack slots, we can do less than that.
|
;; stack slots, we can do less than that.
|
||||||
;;
|
;;
|
||||||
;; We have to be sensitive to mutation.
|
;; We have to be sensitive to mutation.
|
||||||
#;(define (compile-kernel-primitive-application kernel-op exp cenv target linkage)
|
(define (compile-kernel-primitive-application kernel-op exp cenv target linkage)
|
||||||
(let ([singular-context-check (emit-singular-context linkage)])
|
(let ([singular-context-check (emit-singular-context linkage)])
|
||||||
(cond
|
(cond
|
||||||
;; If all the arguments are primitive enough (all constants, localrefs, or toplevelrefs),
|
;; If all the arguments are primitive enough (all constants, localrefs, or toplevelrefs),
|
||||||
|
@ -1631,18 +1629,18 @@
|
||||||
;; we can generate better code.
|
;; we can generate better code.
|
||||||
(define (extract-static-knowledge exp cenv)
|
(define (extract-static-knowledge exp cenv)
|
||||||
(cond
|
(cond
|
||||||
#;[(Lam? exp)
|
[(Lam? exp)
|
||||||
(make-StaticallyKnownLam (Lam-name exp)
|
(make-StaticallyKnownLam (Lam-name exp)
|
||||||
(Lam-entry-label exp)
|
(Lam-entry-label exp)
|
||||||
(if (Lam-rest? exp)
|
(if (Lam-rest? exp)
|
||||||
(make-ArityAtLeast (Lam-num-parameters exp))
|
(make-ArityAtLeast (Lam-num-parameters exp))
|
||||||
(Lam-num-parameters exp)))]
|
(Lam-num-parameters exp)))]
|
||||||
#;[(and (LocalRef? exp)
|
[(and (LocalRef? exp)
|
||||||
(not (LocalRef-unbox? exp)))
|
(not (LocalRef-unbox? exp)))
|
||||||
(let ([entry (list-ref cenv (LocalRef-depth exp))])
|
(let ([entry (list-ref cenv (LocalRef-depth exp))])
|
||||||
entry)]
|
entry)]
|
||||||
|
|
||||||
#;[(ToplevelRef? exp)
|
[(ToplevelRef? exp)
|
||||||
(let: ([name : (U Symbol False GlobalBucket ModuleVariable)
|
(let: ([name : (U Symbol False GlobalBucket ModuleVariable)
|
||||||
(list-ref (Prefix-names (ensure-prefix (list-ref cenv (ToplevelRef-depth exp))))
|
(list-ref (Prefix-names (ensure-prefix (list-ref cenv (ToplevelRef-depth exp))))
|
||||||
(ToplevelRef-pos exp))])
|
(ToplevelRef-pos exp))])
|
||||||
|
@ -1654,7 +1652,7 @@
|
||||||
[else
|
[else
|
||||||
'?]))]
|
'?]))]
|
||||||
|
|
||||||
#;[(Constant? exp)
|
[(Constant? exp)
|
||||||
(make-Const (Constant-v exp))]
|
(make-Const (Constant-v exp))]
|
||||||
|
|
||||||
[else
|
[else
|
||||||
|
@ -1750,9 +1748,7 @@
|
||||||
(define (compile-let-rec exp cenv target linkage)
|
(define (compile-let-rec exp cenv target linkage)
|
||||||
(let*: ([n : Natural (length (LetRec-procs exp))]
|
(let*: ([n : Natural (length (LetRec-procs exp))]
|
||||||
[extended-cenv : CompileTimeEnvironment
|
[extended-cenv : CompileTimeEnvironment
|
||||||
cenv
|
(append (map (lambda: ([p : Lam])
|
||||||
;; Temporarily removing the optimization
|
|
||||||
#;(append (map (lambda: ([p : Lam])
|
|
||||||
(extract-static-knowledge
|
(extract-static-knowledge
|
||||||
p
|
p
|
||||||
(append (build-list (length (LetRec-procs exp))
|
(append (build-list (length (LetRec-procs exp))
|
||||||
|
@ -2092,10 +2088,10 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#;(: adjust-expression-depth (Expression Natural Natural -> Expression))
|
(: adjust-expression-depth (Expression Natural Natural -> Expression))
|
||||||
;; Redirects references to the stack to route around a region of size n.
|
;; Redirects references to the stack to route around a region of size n.
|
||||||
;; The region begins at offset skip into the environment.
|
;; The region begins at offset skip into the environment.
|
||||||
#;(define (adjust-expression-depth exp n skip)
|
(define (adjust-expression-depth exp n skip)
|
||||||
(cond
|
(cond
|
||||||
[(Top? exp)
|
[(Top? exp)
|
||||||
(make-Top (Top-prefix exp)
|
(make-Top (Top-prefix exp)
|
||||||
|
|
|
@ -97,7 +97,7 @@
|
||||||
[(LinkedLabel? i)
|
[(LinkedLabel? i)
|
||||||
'ok]
|
'ok]
|
||||||
[(DebugPrint? i)
|
[(DebugPrint? i)
|
||||||
;; Hack: just to monitor evaluation.
|
;; Hack to monitor evaluation.
|
||||||
(displayln (evaluate-oparg m (DebugPrint-value i)))
|
(displayln (evaluate-oparg m (DebugPrint-value i)))
|
||||||
'ok]
|
'ok]
|
||||||
[(AssignImmediateStatement? i)
|
[(AssignImmediateStatement? i)
|
||||||
|
|
|
@ -2,14 +2,9 @@
|
||||||
|
|
||||||
(require "simulator/simulator.rkt"
|
(require "simulator/simulator.rkt"
|
||||||
"simulator/simulator-structs.rkt"
|
"simulator/simulator-structs.rkt"
|
||||||
"compiler-structs.rkt"
|
"test-helpers.rkt")
|
||||||
"compiler.rkt"
|
|
||||||
"parse.rkt"
|
|
||||||
"il-structs.rkt")
|
|
||||||
|
|
||||||
|
|
||||||
(define (run-compiler code)
|
|
||||||
(compile (parse code) 'val next-linkage/drop-multiple))
|
|
||||||
|
|
||||||
;; run: machine -> (machine number)
|
;; run: machine -> (machine number)
|
||||||
;; Run the machine to completion.
|
;; Run the machine to completion.
|
||||||
|
|
|
@ -54,5 +54,4 @@
|
||||||
|
|
||||||
(test (read (open-input-file "tests/earley/earley.sch"))
|
(test (read (open-input-file "tests/earley/earley.sch"))
|
||||||
(port->string (open-input-file "tests/earley/expected.txt"))
|
(port->string (open-input-file "tests/earley/expected.txt"))
|
||||||
#:debug? #t
|
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
(begin
|
(let ()
|
||||||
|
|
||||||
;; (define (caar l)
|
;; (define (caar l)
|
||||||
;; (car (car l)))
|
;; (car (car l)))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user