diff --git a/compiler/compiler.rkt b/compiler/compiler.rkt index b39c6b9..e40136a 100644 --- a/compiler/compiler.rkt +++ b/compiler/compiler.rkt @@ -1086,7 +1086,6 @@ (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 @@ -1100,7 +1099,6 @@ (append-instruction-sequences (make-PushEnvironment (length (App-operands exp)) #f) (apply append-instruction-sequences operand-codes) - proc-code (make-AssignImmediate 'argcount (make-Const (length (App-operands exp)))) (if (arity-matches? expected-arity (length (App-operands exp))) (compile-primitive-procedure-call primitive-name @@ -1117,7 +1115,8 @@ ;; If we know the procedure is implemented as a primitive (as opposed to a general closure), ;; we can do a little less work. ;; We don't need to check arity (as that's already been checked statically). -;; Assumes 1. the procedure value is loaded into proc, +;; Assumes 1. the procedure value is NOT loaded into proc. We know statically what the +;; procedure is supposed to be. ;; 2. number-of-arguments has been written into the argcount register, ; ; 3. the number-of-arguments values are on the stack. (: compile-primitive-procedure-call (Symbol CompileTimeEnvironment OpArg Target Linkage -> InstructionSequence)) diff --git a/js-assembler/assemble-expression.rkt b/js-assembler/assemble-expression.rkt index a31ad93..9341ac8 100644 --- a/js-assembler/assemble-expression.rkt +++ b/js-assembler/assemble-expression.rkt @@ -72,7 +72,7 @@ (open-code-kernel-primitive-procedure op blockht)] [(ApplyPrimitiveProcedure? op) - "M.p._i(M)"] + (format "M.primitives[~s]._i(M)" (symbol->string (ApplyPrimitiveProcedure-name op)))] [(ModuleVariable? op) (format "M.modules[~s].getNamespace().get(~s)" diff --git a/version.rkt b/version.rkt index 6320d29..e2ffcd6 100644 --- a/version.rkt +++ b/version.rkt @@ -7,4 +7,4 @@ (provide version) (: version String) -(define version "1.199") +(define version "1.201")