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))]
|
(CaptureEnvironment-skip op))]
|
||||||
|
|
||||||
[(CaptureControl? op)
|
[(CaptureControl? op)
|
||||||
(format "RUNTIME.captureControl(MACHINE, ~a, ~a)"
|
(format "MACHINE.captureControl(~a, ~a)"
|
||||||
(CaptureControl-skip op)
|
(CaptureControl-skip op)
|
||||||
(let: ([tag : (U DefaultContinuationPromptTag OpArg)
|
(let: ([tag : (U DefaultContinuationPromptTag OpArg)
|
||||||
(CaptureControl-tag op)])
|
(CaptureControl-tag op)])
|
||||||
|
|
|
@ -105,7 +105,7 @@ EOF
|
||||||
"MACHINE.env = MACHINE.env[MACHINE.env.length - 2].slice(0);"]
|
"MACHINE.env = MACHINE.env[MACHINE.env.length - 2].slice(0);"]
|
||||||
|
|
||||||
[(RestoreControl!? op)
|
[(RestoreControl!? op)
|
||||||
(format "RUNTIME.restoreControl(MACHINE, ~a);"
|
(format "MACHINE.restoreControl(~a);"
|
||||||
(let: ([tag : (U DefaultContinuationPromptTag OpArg)
|
(let: ([tag : (U DefaultContinuationPromptTag OpArg)
|
||||||
(RestoreControl!-tag op)])
|
(RestoreControl!-tag op)])
|
||||||
(cond
|
(cond
|
||||||
|
@ -131,11 +131,11 @@ EOF
|
||||||
(assemble-oparg (SetFrameCallee!-proc op)))]
|
(assemble-oparg (SetFrameCallee!-proc op)))]
|
||||||
|
|
||||||
[(SpliceListIntoStack!? op)
|
[(SpliceListIntoStack!? op)
|
||||||
(format "RUNTIME.spliceListIntoStack(MACHINE, ~a);"
|
(format "MACHINE.spliceListIntoStack(~a);"
|
||||||
(assemble-oparg (SpliceListIntoStack!-depth op)))]
|
(assemble-oparg (SpliceListIntoStack!-depth op)))]
|
||||||
|
|
||||||
[(UnspliceRestFromStack!? op)
|
[(UnspliceRestFromStack!? op)
|
||||||
(format "RUNTIME.unspliceRestFromStack(MACHINE, ~a, ~a);"
|
(format "MACHINE.unspliceRestFromStack(~a, ~a);"
|
||||||
(assemble-oparg (UnspliceRestFromStack!-depth op))
|
(assemble-oparg (UnspliceRestFromStack!-depth op))
|
||||||
(assemble-oparg (UnspliceRestFromStack!-length op)))]
|
(assemble-oparg (UnspliceRestFromStack!-length op)))]
|
||||||
|
|
||||||
|
|
|
@ -51,7 +51,7 @@ for (param in params) {
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
)
|
)
|
||||||
(fprintf op "RUNTIME.trampoline(MACHINE, ~a); })"
|
(fprintf op "MACHINE.trampoline(~a); })"
|
||||||
(assemble-label (make-Label (BasicBlock-name (first basic-blocks)))))))
|
(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 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)
|
;; sort&unique: (listof string) -> (listof string)
|
||||||
(define (sort&unique names)
|
(define (sort&unique names)
|
||||||
|
|
|
@ -74,7 +74,8 @@
|
||||||
;; baselib-check has to come after the definitions of types,
|
;; baselib-check has to come after the definitions of types,
|
||||||
;; since it uses the type predicates immediately on init time.
|
;; since it uses the type predicates immediately on init time.
|
||||||
baselib-check.js
|
baselib-check.js
|
||||||
|
|
||||||
|
baselib-primitives.js
|
||||||
runtime.js))
|
runtime.js))
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -129,7 +129,7 @@
|
||||||
MACHINE.proc = oldProc;
|
MACHINE.proc = oldProc;
|
||||||
fail(e);
|
fail(e);
|
||||||
};
|
};
|
||||||
plt.runtime.trampoline(MACHINE, v.label);
|
MACHINE.trampoline(v.label);
|
||||||
};
|
};
|
||||||
return f;
|
return f;
|
||||||
};
|
};
|
||||||
|
@ -198,7 +198,7 @@
|
||||||
MACHINE.proc = oldProc;
|
MACHINE.proc = oldProc;
|
||||||
fail(e);
|
fail(e);
|
||||||
};
|
};
|
||||||
plt.runtime.trampoline(MACHINE, proc.label);
|
MACHINE.trampoline(proc.label);
|
||||||
} else {
|
} else {
|
||||||
fail(plt.baselib.exceptions.makeExnFail(
|
fail(plt.baselib.exceptions.makeExnFail(
|
||||||
plt.baselib.format.format(
|
plt.baselib.format.format(
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
if (isInternal) {
|
if (isInternal) {
|
||||||
throw that.label;
|
throw that.label;
|
||||||
} else {
|
} 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