diff --git a/compiler/checkgen.lisp b/compiler/checkgen.lisp index 3496f1956bf84a7ef1f2cffc8be7aa2d2d136452..fca90aec814592962d662db4f5624c8891e20b97 100644 --- a/compiler/checkgen.lisp +++ b/compiler/checkgen.lisp @@ -34,13 +34,13 @@ (defun function-cost (name) (declare (symbol name)) (let ((info (info function info name)) - (call-cost (template-cost (template-or-lose 'call-named)))) + (call-cost (template-cost (template-or-lose 'call-named *backend*)))) (if info (let ((templates (function-info-templates info))) (if templates (template-cost (first templates)) (case name - (null (template-cost (template-or-lose 'if-eq))) + (null (template-cost (template-or-lose 'if-eq *backend*))) (t call-cost)))) call-cost))) diff --git a/compiler/codegen.lisp b/compiler/codegen.lisp index bb3193ddceeb28a2b0ef3c62350692544b519a5c..f29ff3ed9d8369fa1938339c7cc00474a9d2623b 100644 --- a/compiler/codegen.lisp +++ b/compiler/codegen.lisp @@ -35,7 +35,7 @@ (defun sb-allocated-size (name) "The size of the Name'd SB in the currently compiled component. Useful mainly for finding the size for allocating stack frames." - (finite-sb-current-size (sb-or-lose name))) + (finite-sb-current-size (sb-or-lose name *backend*))) ;;; Current-NFP-TN -- Interface diff --git a/compiler/ir2tran.lisp b/compiler/ir2tran.lisp index ff085d12963046e1684cf39a4a0492e27187da92..3b32283a0e70546bb7db65c965ee5815c513f640 100644 --- a/compiler/ir2tran.lisp +++ b/compiler/ir2tran.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir2tran.lisp,v 1.24 1990/11/03 03:14:41 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir2tran.lisp,v 1.25 1990/11/13 22:49:12 wlott Exp $ ;;; ;;; This file contains the virtual machine independent parts of the code ;;; which does the actual translation of nodes to VOPs. @@ -46,7 +46,7 @@ (primitive-type-check check-ptype) (let ((name (hairy-type-check-template type))) (if name - (template-or-lose name) + (template-or-lose name *backend*) nil))))) @@ -539,7 +539,7 @@ (test-ref (reference-tn (continuation-tn node block test) nil)) (nil-ref (reference-tn (emit-constant nil) nil))) (setf (tn-ref-across test-ref) nil-ref) - (ir2-convert-conditional node block (template-or-lose 'if-eq) + (ir2-convert-conditional node block (template-or-lose 'if-eq *backend*) test-ref () node t))) @@ -898,7 +898,7 @@ (let* ((locs (ir2-continuation-locs 2cont)) (loc (first locs)) (check (continuation-type-check cont)) - (function-ptype (primitive-type-or-lose 'function))) + (function-ptype (primitive-type-or-lose 'function *backend*))) (assert (and (eq (ir2-continuation-kind 2cont) :fixed) (= (length locs) 1))) (cond ((eq (tn-primitive-type loc) function-ptype) @@ -1433,7 +1433,8 @@ (let* ((2info (nlx-info-info info)) (kind (cleanup-kind (nlx-info-cleanup info))) (block-tn (environment-live-tn - (make-normal-tn (primitive-type-or-lose 'catch-block)) + (make-normal-tn (primitive-type-or-lose 'catch-block + *backend*)) (node-environment node))) (res (make-stack-pointer-tn)) (target-label (ir2-nlx-info-target 2info))) diff --git a/compiler/ltn.lisp b/compiler/ltn.lisp index 3dd20960f437113ac6e62b9e12a4e2e62d02c5a0..f44555ed3b38ee6e08a11fdd94130e9119effa0e 100644 --- a/compiler/ltn.lisp +++ b/compiler/ltn.lisp @@ -751,7 +751,8 @@ (let ((safe-p (policy-safe-p policy)) (verbose-p (policy call (= brevity 0))) (max-cost (- (template-cost (or template - (template-or-lose 'call-named))) + (template-or-lose 'call-named + *backend*))) *efficency-note-cost-threshold*))) (dolist (try (function-info-templates (basic-combination-kind call))) (when (> (template-cost try) max-cost) (return)) diff --git a/compiler/pack.lisp b/compiler/pack.lisp index b0beaebc9ec29cf527ef56eb9e23c106498cec11..c15db72e468d39165b3bdff5dae7e79ad2b33ca1 100644 --- a/compiler/pack.lisp +++ b/compiler/pack.lisp @@ -430,7 +430,7 @@ (declare (type node node) (type ir2-block block) (type tn src dest) (type (or vop null) before)) (emit-load-template node block - (template-or-lose 'move-operand) + (template-or-lose 'move-operand *backend*) src dest (list (or (svref (sc-move-functions (tn-sc dest)) (sc-number (tn-sc src))) diff --git a/compiler/represent.lisp b/compiler/represent.lisp index 1fcc120e0468269119774961de08204ae83314e1..6a902f2324f0a6a8a2daff08542f7a93591c5ecf 100644 --- a/compiler/represent.lisp +++ b/compiler/represent.lisp @@ -53,7 +53,8 @@ nil nil)) (when (eq refs ref) - (let ((parse (vop-parse-or-lose (vop-info-name info)))) + (let ((parse (vop-parse-or-lose (vop-info-name info) + *backend*))) (multiple-value-bind (ccosts cscs) (compute-loading-costs @@ -533,7 +534,7 @@ (tn-primitive-type nfp-tn))))) (emit-context-template node block - (template-or-lose 'compute-old-nfp) + (template-or-lose 'compute-old-nfp *backend*) nfp-tn vop) (assert (not (sc-number-stack-p (tn-sc nfp-tn)))) nfp-tn))) diff --git a/compiler/tn.lisp b/compiler/tn.lisp index 90e33dbb98d243f0ce2e220aec09268004aaa8ac..bea420de1747ca3e1c58e6667fbadfe1db98dfbc 100644 --- a/compiler/tn.lisp +++ b/compiler/tn.lisp @@ -203,7 +203,7 @@ (let* ((component (component-info *compile-component*)) (immed (immediate-constant-sc (constant-value constant))) (sc (svref (backend-sc-numbers *backend*) - (or immed (sc-number-or-lose 'constant)))) + (or immed (sc-number-or-lose 'constant *backend*)))) (res (make-tn 0 :constant (primitive-type (leaf-type constant)) sc))) (unless immed (let ((constants (ir2-component-constants component))) @@ -240,7 +240,7 @@ (let* ((component (component-info *compile-component*)) (res (make-tn 0 :constant (backend-any-primitive-type *backend*) (svref (backend-sc-numbers *backend*) - (sc-number-or-lose 'constant)))) + (sc-number-or-lose 'constant *backend*)))) (constants (ir2-component-constants component))) (do ((i 0 (1+ i)))