moving primitives to separate module, moved some functions as methods of the machine
This commit is contained in:
parent
5122f44885
commit
1026dff4cb
|
@ -46,7 +46,7 @@
|
|||
(CaptureEnvironment-skip op))]
|
||||
|
||||
[(CaptureControl? op)
|
||||
(format "RUNTIME.captureControl(MACHINE, ~a, ~a)"
|
||||
(format "MACHINE.captureControl(~a, ~a)"
|
||||
(CaptureControl-skip op)
|
||||
(let: ([tag : (U DefaultContinuationPromptTag OpArg)
|
||||
(CaptureControl-tag op)])
|
||||
|
|
|
@ -105,7 +105,7 @@ EOF
|
|||
"MACHINE.env = MACHINE.env[MACHINE.env.length - 2].slice(0);"]
|
||||
|
||||
[(RestoreControl!? op)
|
||||
(format "RUNTIME.restoreControl(MACHINE, ~a);"
|
||||
(format "MACHINE.restoreControl(~a);"
|
||||
(let: ([tag : (U DefaultContinuationPromptTag OpArg)
|
||||
(RestoreControl!-tag op)])
|
||||
(cond
|
||||
|
@ -131,11 +131,11 @@ EOF
|
|||
(assemble-oparg (SetFrameCallee!-proc op)))]
|
||||
|
||||
[(SpliceListIntoStack!? op)
|
||||
(format "RUNTIME.spliceListIntoStack(MACHINE, ~a);"
|
||||
(format "MACHINE.spliceListIntoStack(~a);"
|
||||
(assemble-oparg (SpliceListIntoStack!-depth op)))]
|
||||
|
||||
[(UnspliceRestFromStack!? op)
|
||||
(format "RUNTIME.unspliceRestFromStack(MACHINE, ~a, ~a);"
|
||||
(format "MACHINE.unspliceRestFromStack(~a, ~a);"
|
||||
(assemble-oparg (UnspliceRestFromStack!-depth op))
|
||||
(assemble-oparg (UnspliceRestFromStack!-length op)))]
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ for (param in params) {
|
|||
}
|
||||
EOF
|
||||
)
|
||||
(fprintf op "RUNTIME.trampoline(MACHINE, ~a); })"
|
||||
(fprintf op "MACHINE.trampoline(~a); })"
|
||||
(assemble-label (make-Label (BasicBlock-name (first basic-blocks)))))))
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
(define-runtime-path js-vm-primitives.js "runtime-src/js-vm-primitives.js")
|
||||
|
||||
(define-runtime-path whalesong-primitives.js "runtime-src/runtime.js")
|
||||
(define-runtime-path whalesong-primitives.js "runtime-src/baselib-primitives.js")
|
||||
|
||||
;; sort&unique: (listof string) -> (listof string)
|
||||
(define (sort&unique names)
|
||||
|
|
|
@ -74,7 +74,8 @@
|
|||
;; baselib-check has to come after the definitions of types,
|
||||
;; since it uses the type predicates immediately on init time.
|
||||
baselib-check.js
|
||||
|
||||
|
||||
baselib-primitives.js
|
||||
runtime.js))
|
||||
|
||||
|
||||
|
|
|
@ -129,7 +129,7 @@
|
|||
MACHINE.proc = oldProc;
|
||||
fail(e);
|
||||
};
|
||||
plt.runtime.trampoline(MACHINE, v.label);
|
||||
MACHINE.trampoline(v.label);
|
||||
};
|
||||
return f;
|
||||
};
|
||||
|
@ -198,7 +198,7 @@
|
|||
MACHINE.proc = oldProc;
|
||||
fail(e);
|
||||
};
|
||||
plt.runtime.trampoline(MACHINE, proc.label);
|
||||
MACHINE.trampoline(proc.label);
|
||||
} else {
|
||||
fail(plt.baselib.exceptions.makeExnFail(
|
||||
plt.baselib.format.format(
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
if (isInternal) {
|
||||
throw that.label;
|
||||
} else {
|
||||
plt.runtime.trampoline(MACHINE, that.label);
|
||||
MACHINE.trampoline(that.label);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
1586
js-assembler/runtime-src/baselib-primitives.js
Normal file
1586
js-assembler/runtime-src/baselib-primitives.js
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user