primitive compliation is in
This commit is contained in:
parent
76c16e0304
commit
0522354d84
|
@ -957,6 +957,8 @@
|
||||||
(cond
|
(cond
|
||||||
[(KernelPrimitiveName/Inline? id)
|
[(KernelPrimitiveName/Inline? id)
|
||||||
(compile-open-codeable-application id exp cenv target linkage)]
|
(compile-open-codeable-application id exp cenv target linkage)]
|
||||||
|
[((current-primitive-identifier?) id)
|
||||||
|
(compile-primitive-application exp cenv target linkage)]
|
||||||
[else
|
[else
|
||||||
(default)]))]
|
(default)]))]
|
||||||
[(StaticallyKnownLam? op-knowledge)
|
[(StaticallyKnownLam? op-knowledge)
|
||||||
|
@ -1042,6 +1044,39 @@
|
||||||
linkage))))
|
linkage))))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
(: compile-primitive-application (App CompileTimeEnvironment Target Linkage -> InstructionSequence))
|
||||||
|
(define (compile-primitive-application exp cenv target linkage)
|
||||||
|
(let* ([extended-cenv
|
||||||
|
(extend-compile-time-environment/scratch-space
|
||||||
|
cenv
|
||||||
|
(length (App-operands exp)))]
|
||||||
|
[proc-code (compile (App-operator exp) extended-cenv 'proc next-linkage/expects-single)]
|
||||||
|
[operand-codes (map (lambda: ([operand : Expression]
|
||||||
|
[target : Target])
|
||||||
|
(compile operand
|
||||||
|
extended-cenv
|
||||||
|
target
|
||||||
|
next-linkage/expects-single))
|
||||||
|
(App-operands exp)
|
||||||
|
(build-list (length (App-operands exp))
|
||||||
|
(lambda: ([i : Natural])
|
||||||
|
(make-EnvLexicalReference i #f))))])
|
||||||
|
(append-instruction-sequences
|
||||||
|
(make-PushEnvironment (length (App-operands exp)) #f)
|
||||||
|
(apply append-instruction-sequences operand-codes)
|
||||||
|
proc-code
|
||||||
|
(make-AssignImmediateStatement 'argcount (make-Const (length (App-operands exp))))
|
||||||
|
(compile-primitive-procedure-call cenv
|
||||||
|
(make-Const (length (App-operands exp)))
|
||||||
|
target
|
||||||
|
linkage))))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
(: compile-open-codeable-application
|
(: compile-open-codeable-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
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"../promise.rkt"
|
"../promise.rkt"
|
||||||
"../get-module-bytecode.rkt"
|
"../get-module-bytecode.rkt"
|
||||||
"check-valid-module-source.rkt"
|
"check-valid-module-source.rkt"
|
||||||
|
"find-primitive-implemented.rkt"
|
||||||
(prefix-in hash-cache: "hash-cache.rkt")
|
(prefix-in hash-cache: "hash-cache.rkt")
|
||||||
racket/match
|
racket/match
|
||||||
racket/list
|
racket/list
|
||||||
|
@ -58,6 +59,19 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
(define primitive-identifiers-set
|
||||||
|
(list->set primitive-ids))
|
||||||
|
|
||||||
|
;; Sets up the compiler parameters we need to do javascript-specific compilation.
|
||||||
|
(define (with-compiler-params thunk)
|
||||||
|
(parameterize ([current-primitive-identifier?
|
||||||
|
(lambda (a-name)
|
||||||
|
(set-member? primitive-identifiers-set a-name))])
|
||||||
|
(thunk)))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
(define current-on-resource
|
(define current-on-resource
|
||||||
(make-parameter (lambda (r)
|
(make-parameter (lambda (r)
|
||||||
(log-debug "Resource ~s should be written"
|
(log-debug "Resource ~s should be written"
|
||||||
|
@ -363,7 +377,8 @@ M.modules[~s] =
|
||||||
;; last
|
;; last
|
||||||
on-last-src))
|
on-last-src))
|
||||||
|
|
||||||
(make (list source-code) packaging-configuration)
|
(with-compiler-params
|
||||||
|
(lambda () (make (list source-code) packaging-configuration)))
|
||||||
|
|
||||||
(for ([r resources])
|
(for ([r resources])
|
||||||
((current-on-resource) r)))
|
((current-on-resource) r)))
|
||||||
|
@ -467,7 +482,9 @@ M.modules[~s] =
|
||||||
|
|
||||||
(newline op)
|
(newline op)
|
||||||
(fprintf op "(function(M, SUCCESS, FAIL, PARAMS) {")
|
(fprintf op "(function(M, SUCCESS, FAIL, PARAMS) {")
|
||||||
(make (list (my-force only-bootstrapped-code)) packaging-configuration)
|
(with-compiler-params
|
||||||
|
(lambda ()
|
||||||
|
(make (list (my-force only-bootstrapped-code)) packaging-configuration)))
|
||||||
(fprintf op "})(plt.runtime.currentMachine,\nfunction(){ plt.runtime.setReadyTrue(); },\nfunction(){},\n{});\n")))
|
(fprintf op "})(plt.runtime.currentMachine,\nfunction(){ plt.runtime.setReadyTrue(); },\nfunction(){},\n{});\n")))
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,9 @@
|
||||||
current-seen-unimplemented-kernel-primitives
|
current-seen-unimplemented-kernel-primitives
|
||||||
|
|
||||||
current-kernel-module-locator?
|
current-kernel-module-locator?
|
||||||
|
|
||||||
|
current-primitive-identifier?
|
||||||
|
|
||||||
current-compress-javascript?
|
current-compress-javascript?
|
||||||
current-one-module-per-file?
|
current-one-module-per-file?
|
||||||
current-with-cache?
|
current-with-cache?
|
||||||
|
@ -74,6 +77,9 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
(: current-primitive-identifier? (Parameterof (Symbol -> Boolean)))
|
||||||
|
(define current-primitive-identifier? (make-parameter (lambda: ([name : Symbol]) #f)))
|
||||||
|
|
||||||
|
|
||||||
(: current-compress-javascript? (Parameterof Boolean))
|
(: current-compress-javascript? (Parameterof Boolean))
|
||||||
(define current-compress-javascript? (make-parameter #f))
|
(define current-compress-javascript? (make-parameter #f))
|
||||||
|
|
|
@ -6,4 +6,4 @@
|
||||||
|
|
||||||
(provide version)
|
(provide version)
|
||||||
(: version String)
|
(: version String)
|
||||||
(define version "1.49")
|
(define version "1.50")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user