Getting the prefix reference stuff working.

This commit is contained in:
Danny Yoo 2011-05-25 13:20:48 -04:00
parent d9bb1dd631
commit c9ddc357e0
6 changed files with 30 additions and 5 deletions

View File

@ -344,6 +344,9 @@
;; 2. Next, evaluate the module body.
(make-instruction-sequence
`(,(make-PerformStatement (make-ExtendEnvironment/Prefix! names))))
(make-AssignImmediateStatement (make-ModulePrefixTarget path)
(make-EnvWholePrefixReference 0))
;; TODO: we need to sequester the prefix of the module with the record.
(compile (Module-code mod)
(cons (Module-prefix mod) module-cenv)
@ -2122,6 +2125,8 @@
[(PrimitivesReference? target)
target]
[(ControlFrameTemporary? target)
target]
[(ModulePrefixTarget? target)
target]))

View File

@ -45,7 +45,8 @@
EnvLexicalReference
EnvPrefixReference
PrimitivesReference
ControlFrameTemporary))
ControlFrameTemporary
ModulePrefixTarget))
;; When we need to store a value temporarily in the top control frame, we can use this as a target.
@ -57,6 +58,11 @@
#:transparent)
;; Targetting the prefix attribute of a module.
(define-struct: ModulePrefixTarget ([path : ModuleLocator])
#:transparent)
(define-struct: Label ([name : Symbol])
#:transparent)

View File

@ -82,7 +82,10 @@
[(PrimitivesReference? target)
(format "MACHINE.primitives[~s]" (symbol->string (PrimitivesReference-name target)))]
[(ControlFrameTemporary? target)
(assemble-control-frame-temporary target)]))
(assemble-control-frame-temporary target)]
[(ModulePrefixTarget? target)
(format "MACHINE.modules[~s].prefix"
(symbol->string (ModuleLocator-name (ModulePrefixTarget-path target))))]))
(: assemble-control-frame-temporary (ControlFrameTemporary -> String))

View File

@ -97,7 +97,7 @@
this.name = name;
this.label = label;
this.isInvoked = false;
this.exports = {};
this.prefix = false;
};

View File

@ -74,7 +74,8 @@
[self-path : Symbol]
[label : Symbol]
[invoked? : Boolean]
[exports : (HashTable Symbol PrimitiveValue)])
[exports : (HashTable Symbol PrimitiveValue)]
[toplevel : (U False toplevel)])
#:transparent
#:mutable)

View File

@ -464,7 +464,8 @@
(InstallModuleEntry!-path op))
(InstallModuleEntry!-entry-point op)
#f
(make-hash)))
(make-hash)
#f))
'ok]
@ -554,6 +555,15 @@
(hash-set! ht
(ControlFrameTemporary-name t)
(ensure-primitive-value v))
'ok))]
[(ModulePrefixTarget? t)
(lambda: ([m : machine] [v : SlotValue])
(let ([module-record
(hash-ref (machine-modules m)
(ModuleLocator-name
(ModulePrefixTarget-path t)))])
(set-module-record-toplevel! module-record
(ensure-toplevel v))
'ok))]))