From d4c29bc29e7ff237ef00221f66c63da7c1a9bd20 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Sat, 3 Nov 1990 03:20:07 +0000 Subject: [PATCH] Moved primitive-type stuff into a different file so it can be shared between vms. --- compiler/mips/vm.lisp | 248 ++---------------------------------------- 1 file changed, 8 insertions(+), 240 deletions(-) diff --git a/compiler/mips/vm.lisp b/compiler/mips/vm.lisp index c8846583c..b115b9476 100644 --- a/compiler/mips/vm.lisp +++ b/compiler/mips/vm.lisp @@ -1,4 +1,4 @@ -;;; -*- Package: C; Log: C.Log -*- +;;; -*- Package: MIPS; Log: C.Log -*- ;;; ;;; ********************************************************************** ;;; This code was written as part of the CMU Common Lisp project at @@ -7,14 +7,14 @@ ;;; Lisp, please contact Scott Fahlman (Scott.Fahlman@CS.CMU.EDU) ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/vm.lisp,v 1.35 1990/10/23 02:23:46 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/vm.lisp,v 1.36 1990/11/03 03:20:07 wlott Exp $ ;;; ;;; This file contains the VM definition for the MIPS R2000 and the new ;;; object format. ;;; ;;; Written by Christopher Hoover and William Lott. ;;; -(in-package "C") +(in-package "MIPS") ;;;; Registers @@ -244,236 +244,6 @@ - -;;;; Primitive Type Definitions - -;;; *Anything* -;;; -(def-primitive-type t (descriptor-reg)) -(defvar *any-primitive-type* (primitive-type-or-lose 't)) - -;;; Primitive integer types that fit in registers. -;;; -(def-primitive-type positive-fixnum (any-reg signed-reg unsigned-reg) - :type (unsigned-byte 29)) -(def-primitive-type unsigned-byte-31 (signed-reg unsigned-reg descriptor-reg) - :type (unsigned-byte 31)) -(def-primitive-type unsigned-byte-32 (unsigned-reg descriptor-reg) - :type (unsigned-byte 32)) -(def-primitive-type fixnum (any-reg signed-reg) - :type (signed-byte 30)) -(def-primitive-type signed-byte-32 (signed-reg descriptor-reg) - :type (signed-byte 32)) - -(defvar *fixnum-primitive-type* (primitive-type-or-lose 'fixnum)) - -(def-primitive-type-alias tagged-num (:or positive-fixnum fixnum)) -(def-primitive-type-alias unsigned-num (:or unsigned-byte-32 - unsigned-byte-31 - positive-fixnum)) -(def-primitive-type-alias signed-num (:or signed-byte-32 - fixnum - unsigned-byte-31 - positive-fixnum)) - -;;; Other primitive immediate types. -(def-primitive-type base-character (base-character-reg any-reg)) - -;;; Primitive pointer types. -;;; -(def-primitive-type function (descriptor-reg)) -(def-primitive-type list (descriptor-reg)) -(def-primitive-type structure (descriptor-reg)) - -;;; Primitive other-pointer number types. -;;; -(def-primitive-type bignum (descriptor-reg)) -(def-primitive-type ratio (descriptor-reg)) -(def-primitive-type complex (descriptor-reg)) -(def-primitive-type single-float (single-reg descriptor-reg)) -(def-primitive-type double-float (double-reg descriptor-reg)) - -;;; Primitive other-pointer array types. -;;; -(def-primitive-type simple-string (descriptor-reg) :type simple-base-string) -(def-primitive-type simple-bit-vector (descriptor-reg)) -(def-primitive-type simple-vector (descriptor-reg)) -(def-primitive-type simple-array-unsigned-byte-2 (descriptor-reg) - :type (simple-array (unsigned-byte 2) (*))) -(def-primitive-type simple-array-unsigned-byte-4 (descriptor-reg) - :type (simple-array (unsigned-byte 4) (*))) -(def-primitive-type simple-array-unsigned-byte-8 (descriptor-reg) - :type (simple-array (unsigned-byte 8) (*))) -(def-primitive-type simple-array-unsigned-byte-16 (descriptor-reg) - :type (simple-array (unsigned-byte 16) (*))) -(def-primitive-type simple-array-unsigned-byte-32 (descriptor-reg) - :type (simple-array (unsigned-byte 32) (*))) -(def-primitive-type simple-array-single-float (descriptor-reg) - :type (simple-array single-float (*))) -(def-primitive-type simple-array-double-float (descriptor-reg) - :type (simple-array double-float (*))) - -;;; Note: The complex array types are not inclueded, 'cause it is pointless to -;;; restrict VOPs to them. - -;;; Other primitive other-pointer types. -;;; -(def-primitive-type system-area-pointer (sap-reg descriptor-reg)) -(def-primitive-type weak-pointer (descriptor-reg)) - -;;; Random primitive types that don't exist at the LISP level. -;;; -(def-primitive-type random (non-descriptor-reg) :type nil) -(def-primitive-type interior (interior-reg) :type nil) -(def-primitive-type catch-block (catch-block) :type nil) - - - - -;;;; Primitive-type-of and friends. - -;;; Primitive-Type-Of -- Interface -;;; -;;; Return the most restrictive primitive type that contains Object. -;;; -(defun primitive-type-of (object) - (let ((type (ctype-of object))) - (cond ((not (member-type-p type)) (primitive-type type)) - ((equal (member-type-members type) '(nil)) - (primitive-type-or-lose 'list)) - (t - *any-primitive-type*)))) - -;;; -(defvar *simple-array-primitive-types* - '((base-character . simple-string) - (string-char . simple-string) - (bit . simple-bit-vector) - ((unsigned-byte 2) . simple-array-unsigned-byte-2) - ((unsigned-byte 4) . simple-array-unsigned-byte-4) - ((unsigned-byte 8) . simple-array-unsigned-byte-8) - ((unsigned-byte 16) . simple-array-unsigned-byte-16) - ((unsigned-byte 32) . simple-array-unsigned-byte-32) - (single-float . simple-array-single-float) - (double-float . simple-array-double-float) - (t . simple-vector)) - "An a-list for mapping simple array element types to their - corresponding primitive types.") - -;;; -;;; Return the primitive type corresponding to a type descriptor -;;; structure. The second value is true when the primitive type is -;;; exactly equivalent to the argument Lisp type. -;;; -;;; In a bootstrapping situation, we should be careful to use the -;;; correct values for the system parameters. -;;; -(defun-cached (primitive-type - :hash-function (lambda (x) - (logand (cache-hash-eq x) #x1FF)) - :hash-bits 9 - :values 2 - :default (values nil :empty)) - ((type eq)) - (declare (type ctype type)) - (macrolet ((any () '(values *any-primitive-type* nil)) - (exactly (type) `(values (primitive-type-or-lose ',type) t)) - (part-of (type) `(values (primitive-type-or-lose ',type) nil))) - (etypecase type - (numeric-type - (let ((lo (numeric-type-low type)) - (hi (numeric-type-high type))) - (case (numeric-type-complexp type) - (:real - (case (numeric-type-class type) - (integer - (cond ((and hi lo) - (dolist (spec - '((positive-fixnum 0 #.(1- (ash 1 29))) - (unsigned-byte-31 0 #.(1- (ash 1 31))) - (unsigned-byte-32 0 #.(1- (ash 1 32))) - (fixnum #.(ash -1 29) #.(1- (ash 1 29))) - (signed-byte-32 #.(ash -1 31) - #.(1- (ash 1 31)))) - (if (or (< hi (ash -1 29)) - (> lo (1- (ash 1 29)))) - (part-of bignum) - (any))) - (let ((type (car spec)) - (min (cadr spec)) - (max (caddr spec))) - (when (<= min lo hi max) - (return (values (primitive-type-or-lose type) - (and (= lo min) (= hi max)))))))) - ((or (and hi (< hi most-negative-fixnum)) - (and lo (> lo most-positive-fixnum))) - (part-of bignum)) - (t - (any)))) - (float - (let ((exact (and (null lo) (null hi)))) - (case (numeric-type-format type) - ((short-float single-float) - (values (primitive-type-or-lose 'single-float) exact)) - ((double-float long-float) - (values (primitive-type-or-lose 'double-float) exact)) - (t - (any))))) - (t - (any)))) - (:complex - (part-of complex)) - (t - (any))))) - (array-type - (if (array-type-complexp type) - (any) - (let* ((dims (array-type-dimensions type)) - (etype (array-type-specialized-element-type type)) - (type-spec (type-specifier etype)) - (ptype (cdr (assoc type-spec *simple-array-primitive-types* - :test #'equal)))) - (if (and (consp dims) (null (rest dims)) ptype) - (values (primitive-type-or-lose ptype) (eq (first dims) '*)) - (any))))) - (union-type - (if (type= type (specifier-type 'list)) - (exactly list) - (let ((types (union-type-types type))) - (multiple-value-bind (res exact) - (primitive-type (first types)) - (dolist (type (rest types) (values res exact)) - (multiple-value-bind (ptype ptype-exact) - (primitive-type type) - (unless ptype-exact (setq exact nil)) - (unless (eq ptype res) - (return (any))))))))) - (member-type - (let* ((members (member-type-members type)) - (res (primitive-type-of (first members)))) - (dolist (mem (rest members) (values res nil)) - (unless (eq (primitive-type-of mem) res) - (return (values *any-primitive-type* nil)))))) - (named-type - (case (named-type-name type) - ((t bignum ratio complex function structure - system-area-pointer weak-pointer) - (values (primitive-type-or-lose (named-type-name type)) t)) - ((character base-character string-char) - (exactly base-character)) - (standard-char - (part-of base-character)) - (cons - (part-of list)) - (t - (any)))) - (function-type - (exactly function)) - (structure-type - (part-of structure)) - (ctype - (any))))) - ;;;; Random TNs for interesting registers @@ -515,15 +285,13 @@ any) -;;;; Constants - ;;; ;;; Immediate-Constant-SC -- Interface ;;; ;;; If value can be represented as an immediate constant, then return the ;;; appropriate SC number, otherwise return NIL. ;;; -(defun immediate-constant-sc (value) +(def-vm-support-routine immediate-constant-sc (value) (typecase value ((integer 0 0) (sc-number-or-lose 'zero)) @@ -558,9 +326,9 @@ ;;; The SC numbers for register and stack arguments/return values. ;;; -(defconstant register-arg-scn (sc-number-or-lose 'descriptor-reg)) -(defconstant immediate-arg-scn (sc-number-or-lose 'any-reg)) -(defconstant control-stack-arg-scn (sc-number-or-lose 'control-stack)) +(defconstant register-arg-scn (meta-sc-number-or-lose 'descriptor-reg)) +(defconstant immediate-arg-scn (meta-sc-number-or-lose 'any-reg)) +(defconstant control-stack-arg-scn (meta-sc-number-or-lose 'control-stack)) (eval-when (compile load eval) @@ -601,7 +369,7 @@ ;;; This function is called by debug output routines that want a pretty name ;;; for a TN's location. It returns a thing that can be printed with PRINC. ;;; -(defun location-print-name (tn) +(def-vm-support-routine location-print-name (tn) (declare (type tn tn)) (let ((sb (sb-name (sc-sb (tn-sc tn)))) (offset (tn-offset tn))) -- GitLab