
fixing up the namespace stuff so it goes through getters and setters trying to add the necessary to the il, but running into typed racket issues corrected compilation of toplevelref so it works more correctly on module variables.
170 lines
7.5 KiB
Racket
170 lines
7.5 KiB
Racket
#lang typed/racket/base
|
|
(require "assemble-helpers.rkt"
|
|
"../compiler/il-structs.rkt"
|
|
"../compiler/lexical-structs.rkt"
|
|
"../parameters.rkt"
|
|
"assemble-structs.rkt"
|
|
racket/string)
|
|
|
|
(provide assemble-op-statement)
|
|
|
|
|
|
|
|
(: assemble-op-statement (PrimitiveCommand Blockht -> String))
|
|
(define (assemble-op-statement op blockht)
|
|
(cond
|
|
|
|
[(CheckToplevelBound!? op)
|
|
(format "if (M.e[M.e.length-~a][~a]===undefined){ RT.raiseUnboundToplevelError(M,M.e[M.e.length-~a].names[~a]); }"
|
|
(add1 (CheckToplevelBound!-depth op))
|
|
(CheckToplevelBound!-pos op)
|
|
(add1 (CheckToplevelBound!-depth op))
|
|
(CheckToplevelBound!-pos op))]
|
|
|
|
|
|
[(CheckClosureAndArity!? op)
|
|
"RT.checkClosureAndArity(M);"]
|
|
|
|
[(CheckPrimitiveArity!? op)
|
|
"RT.checkPrimitiveArity(M);"]
|
|
|
|
[(ExtendEnvironment/Prefix!? op)
|
|
(let: ([names : (Listof (U Symbol False GlobalBucket ModuleVariable)) (ExtendEnvironment/Prefix!-names op)])
|
|
(format "M.e.push([~a]);M.e[M.e.length-1].names=[~a];"
|
|
(string-join (map
|
|
(lambda: ([n : (U Symbol False GlobalBucket ModuleVariable)])
|
|
(cond [(symbol? n)
|
|
(format "M.params.currentNamespace.get(~s)||M.primitives[~s]"
|
|
(symbol->string n)
|
|
(symbol->string n))]
|
|
[(eq? n #f)
|
|
"false"]
|
|
[(GlobalBucket? n)
|
|
;; FIXME: maybe we should keep a set of global variables here?
|
|
(format "M.primitives[~s]"
|
|
(symbol->string (GlobalBucket-name n)))]
|
|
;; FIXME: this should be looking at the module path and getting
|
|
;; the value here! It shouldn't be looking into Primitives...
|
|
[(ModuleVariable? n)
|
|
(cond
|
|
[((current-kernel-module-locator?)
|
|
(ModuleVariable-module-name n))
|
|
(format "M.primitives[~s]"
|
|
(symbol->string (ModuleVariable-name n)))]
|
|
[else
|
|
"'blah'"
|
|
#;(format "M.modules[~s].getNamespace().get(~s)"
|
|
(symbol->string
|
|
(ModuleLocator-name
|
|
(ModuleVariable-module-name n)))
|
|
(symbol->string (ModuleVariable-name n)))])]))
|
|
names)
|
|
",")
|
|
(string-join (map
|
|
(lambda: ([n : (U Symbol False GlobalBucket ModuleVariable)])
|
|
(cond
|
|
[(symbol? n)
|
|
(format "~s" (symbol->string n))]
|
|
[(eq? n #f)
|
|
"false"]
|
|
[(GlobalBucket? n)
|
|
(format "~s" (symbol->string (GlobalBucket-name n)))]
|
|
[(ModuleVariable? n)
|
|
(format "~s" (symbol->string (ModuleVariable-name n)))]))
|
|
names)
|
|
",")))]
|
|
|
|
[(InstallClosureValues!? op)
|
|
(format "M.e.push(~a);"
|
|
(string-join (build-list (InstallClosureValues!-n op)
|
|
(lambda: ([i : Natural])
|
|
(format "M.p.closedVals[~a]" i)))
|
|
","))]
|
|
|
|
[(RestoreEnvironment!? op)
|
|
"M.e=M.e[M.e.length-2].slice(0);"]
|
|
|
|
[(RestoreControl!? op)
|
|
(format "M.restoreControl(~a);"
|
|
(let: ([tag : (U DefaultContinuationPromptTag OpArg)
|
|
(RestoreControl!-tag op)])
|
|
(cond
|
|
[(DefaultContinuationPromptTag? tag)
|
|
(assemble-default-continuation-prompt-tag)]
|
|
[(OpArg? tag)
|
|
(assemble-oparg tag blockht)])))]
|
|
|
|
[(FixClosureShellMap!? op)
|
|
(format "M.e[M.e.length-~a].closedVals=[~a];"
|
|
(add1 (FixClosureShellMap!-depth op))
|
|
(string-join (map
|
|
assemble-env-reference/closure-capture
|
|
;; The closure values are in reverse order
|
|
;; to make it easier to push, in bulk, into
|
|
;; the environment (which is also in reversed order)
|
|
;; during install-closure-values.
|
|
(reverse (FixClosureShellMap!-closed-vals op)))
|
|
","))]
|
|
|
|
[(SetFrameCallee!? op)
|
|
(format "M.c[M.c.length-1].p=~a;"
|
|
(assemble-oparg (SetFrameCallee!-proc op)
|
|
blockht))]
|
|
|
|
[(SpliceListIntoStack!? op)
|
|
(format "M.spliceListIntoStack(~a);"
|
|
(assemble-oparg (SpliceListIntoStack!-depth op)
|
|
blockht))]
|
|
|
|
[(UnspliceRestFromStack!? op)
|
|
(format "M.unspliceRestFromStack(~a,~a);"
|
|
(assemble-oparg (UnspliceRestFromStack!-depth op) blockht)
|
|
(assemble-oparg (UnspliceRestFromStack!-length op) blockht))]
|
|
|
|
[(InstallContinuationMarkEntry!? op)
|
|
(string-append "M.installContinuationMarkEntry("
|
|
"M.c[M.c.length-1].pendingContinuationMarkKey,"
|
|
"M.v);")]
|
|
|
|
[(RaiseContextExpectedValuesError!? op)
|
|
(format "RT.raiseContextExpectedValuesError(M,~a);"
|
|
(RaiseContextExpectedValuesError!-expected op))]
|
|
|
|
|
|
[(RaiseArityMismatchError!? op)
|
|
(format "RT.raiseArityMismatchError(M,~a,~a);"
|
|
(assemble-oparg (RaiseArityMismatchError!-proc op) blockht)
|
|
(assemble-oparg (RaiseArityMismatchError!-received op) blockht))]
|
|
|
|
|
|
[(RaiseOperatorApplicationError!? op)
|
|
(format "RT.raiseOperatorApplicationError(M,~a);"
|
|
(assemble-oparg (RaiseOperatorApplicationError!-operator op) blockht))]
|
|
|
|
|
|
[(RaiseUnimplementedPrimitiveError!? op)
|
|
(format "RT.raiseUnimplementedPrimitiveError(M,~s);"
|
|
(symbol->string (RaiseUnimplementedPrimitiveError!-name op)))]
|
|
|
|
|
|
[(InstallModuleEntry!? op)
|
|
(format "M.modules[~s]=new RT.ModuleRecord(~s,~a);"
|
|
(symbol->string (ModuleLocator-name (InstallModuleEntry!-path op)))
|
|
(symbol->string (InstallModuleEntry!-name op))
|
|
(assemble-label (make-Label (InstallModuleEntry!-entry-point op))
|
|
blockht))]
|
|
|
|
[(MarkModuleInvoked!? op)
|
|
(format "M.modules[~s].isInvoked=true;"
|
|
(symbol->string (ModuleLocator-name (MarkModuleInvoked!-path op))))]
|
|
|
|
|
|
[(AliasModuleAsMain!? op)
|
|
(format "M.mainModules.push(M.modules[~s]);"
|
|
(symbol->string (ModuleLocator-name (AliasModuleAsMain!-from op))))]
|
|
|
|
[(FinalizeModuleInvokation!? op)
|
|
(format "M.modules[~s].finalizeModuleInvokation();"
|
|
(symbol->string
|
|
(ModuleLocator-name (FinalizeModuleInvokation!-path op))))]))
|