X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Falpha%2Falloc.lisp;h=4852fec3d48253e7d6fa9cfd733398b7c578a8db;hb=1ac136852028fcd4d5568e996ebc612136c26b4f;hp=68f74e5e904841829589766cefaca9f43580672d;hpb=dfa55a883f94470267b626dae77ce7e7dfac3df6;p=sbcl.git diff --git a/src/compiler/alpha/alloc.lisp b/src/compiler/alpha/alloc.lisp index 68f74e5..4852fec 100644 --- a/src/compiler/alpha/alloc.lisp +++ b/src/compiler/alpha/alloc.lisp @@ -1,86 +1,89 @@ -;;; -*- Package: ALPHA -*- -;;; -;;; ********************************************************************** -;;; This code was written as part of the CMU Common Lisp project at -;;; Carnegie Mellon University, and has been placed in the public domain. -;;; +;;;; allocation VOPs for the Alpha port -;;; -;;; ********************************************************************** -;;; -;;; Allocation VOPs for the Alpha port. -;;; -;;; Written by William Lott. -;;; Converted by Sean Hallgren. -;;; +;;;; This software is part of the SBCL system. See the README file for +;;;; more information. +;;;; +;;;; This software is derived from the CMU CL system, which was +;;;; written at Carnegie Mellon University and released into the +;;;; public domain. The software is in the public domain and is +;;;; provided with absolutely no warranty. See the COPYING and CREDITS +;;;; files for more information. (in-package "SB!VM") - - ;;;; LIST and LIST* +(defoptimizer (list stack-allocate-result) ((&rest args)) + (not (null args))) +(defoptimizer (list* stack-allocate-result) ((&rest args)) + (not (null (rest args)))) (define-vop (list-or-list*) (:args (things :more t)) (:temporary (:scs (descriptor-reg) :type list) ptr) (:temporary (:scs (descriptor-reg)) temp) (:temporary (:scs (descriptor-reg) :type list :to (:result 0) :target result) - res) + res) (:info num) (:results (result :scs (descriptor-reg))) (:variant-vars star) (:policy :safe) + (:node-var node) (:generator 0 (cond ((zerop num) - (move null-tn result)) - ((and star (= num 1)) - (move (tn-ref-tn things) result)) - (t - (macrolet - ((store-car (tn list &optional (slot cons-car-slot)) - `(let ((reg - (sc-case ,tn - ((any-reg descriptor-reg) ,tn) - (zero zero-tn) - (null null-tn) - (control-stack - (load-stack-tn temp ,tn) - temp)))) - (storew reg ,list ,slot list-pointer-type)))) - (let ((cons-cells (if star (1- num) num))) - (pseudo-atomic (:extra (* (pad-data-block cons-size) - cons-cells)) - (inst bis alloc-tn list-pointer-type res) - (move res ptr) - (dotimes (i (1- cons-cells)) - (store-car (tn-ref-tn things) ptr) - (setf things (tn-ref-across things)) - (inst lda ptr (pad-data-block cons-size) ptr) - (storew ptr ptr - (- cons-cdr-slot cons-size) - list-pointer-type)) - (store-car (tn-ref-tn things) ptr) - (cond (star - (setf things (tn-ref-across things)) - (store-car (tn-ref-tn things) ptr cons-cdr-slot)) - (t - (storew null-tn ptr - cons-cdr-slot list-pointer-type))) - (assert (null (tn-ref-across things))) - (move res result)))))))) + (move null-tn result)) + ((and star (= num 1)) + (move (tn-ref-tn things) result)) + (t + (macrolet + ((store-car (tn list &optional (slot cons-car-slot)) + `(let ((reg + (sc-case ,tn + ((any-reg descriptor-reg) ,tn) + (zero zero-tn) + (null null-tn) + (control-stack + (load-stack-tn temp ,tn) + temp)))) + (storew reg ,list ,slot list-pointer-lowtag)))) + (let* ((dx-p (node-stack-allocate-p node)) + (cons-cells (if star (1- num) num)) + (space (* (pad-data-block cons-size) cons-cells))) + (pseudo-atomic (:extra (if dx-p 0 space)) + (cond (dx-p + (align-csp res) + (inst bis csp-tn list-pointer-lowtag res) + (inst lda csp-tn space csp-tn)) + (t + (inst bis alloc-tn list-pointer-lowtag res))) + (move res ptr) + (dotimes (i (1- cons-cells)) + (store-car (tn-ref-tn things) ptr) + (setf things (tn-ref-across things)) + (inst lda ptr (pad-data-block cons-size) ptr) + (storew ptr ptr + (- cons-cdr-slot cons-size) + list-pointer-lowtag)) + (store-car (tn-ref-tn things) ptr) + (cond (star + (setf things (tn-ref-across things)) + (store-car (tn-ref-tn things) ptr cons-cdr-slot)) + (t + (storew null-tn ptr + cons-cdr-slot list-pointer-lowtag))) + (aver (null (tn-ref-across things))) + (move res result)))))))) (define-vop (list list-or-list*) (:variant nil)) (define-vop (list* list-or-list*) (:variant t)) - -;;;; Special purpose inline allocators. +;;;; special purpose inline allocators (define-vop (allocate-code-object) (:args (boxed-arg :scs (any-reg)) - (unboxed-arg :scs (any-reg))) + (unboxed-arg :scs (any-reg))) (:results (result :scs (descriptor-reg))) (:temporary (:scs (non-descriptor-reg)) ndescr) (:temporary (:scs (any-reg) :from (:argument 0)) boxed) @@ -88,23 +91,23 @@ (:generator 100 (inst li (lognot lowtag-mask) ndescr) (inst lda boxed (fixnumize (1+ code-trace-table-offset-slot)) - boxed-arg) + boxed-arg) (inst and boxed ndescr boxed) (inst srl unboxed-arg word-shift unboxed) (inst lda unboxed lowtag-mask unboxed) (inst and unboxed ndescr unboxed) - (inst sll boxed (- type-bits word-shift) ndescr) - (inst bis ndescr code-header-type ndescr) - + (inst sll boxed (- n-widetag-bits word-shift) ndescr) + (inst bis ndescr code-header-widetag ndescr) + (pseudo-atomic () - (inst bis alloc-tn other-pointer-type result) - (storew ndescr result 0 other-pointer-type) - (storew unboxed result code-code-size-slot other-pointer-type) - (storew null-tn result code-entry-points-slot other-pointer-type) + (inst bis alloc-tn other-pointer-lowtag result) + (storew ndescr result 0 other-pointer-lowtag) + (storew unboxed result code-code-size-slot other-pointer-lowtag) + (storew null-tn result code-entry-points-slot other-pointer-lowtag) (inst addq alloc-tn boxed alloc-tn) (inst addq alloc-tn unboxed alloc-tn)) - (storew null-tn result code-debug-info-slot other-pointer-type))) + (storew null-tn result code-debug-info-slot other-pointer-lowtag))) (define-vop (make-fdefn) (:policy :fast-safe) @@ -113,44 +116,56 @@ (:temporary (:scs (non-descriptor-reg)) temp) (:results (result :scs (descriptor-reg) :from :argument)) (:generator 37 - (with-fixed-allocation (result temp fdefn-type fdefn-size) - (storew name result fdefn-name-slot other-pointer-type) - (storew null-tn result fdefn-function-slot other-pointer-type) + (with-fixed-allocation (result temp fdefn-widetag fdefn-size) + (storew name result fdefn-name-slot other-pointer-lowtag) + (storew null-tn result fdefn-fun-slot other-pointer-lowtag) (inst li (make-fixup "undefined_tramp" :foreign) temp) - (storew temp result fdefn-raw-addr-slot other-pointer-type)))) + (storew temp result fdefn-raw-addr-slot other-pointer-lowtag)))) (define-vop (make-closure) (:args (function :to :save :scs (descriptor-reg))) - (:info length) + (:info length stack-allocate-p) (:temporary (:scs (non-descriptor-reg)) temp) (:results (result :scs (descriptor-reg))) (:generator 10 - (let ((size (+ length closure-info-offset))) - (inst li (logior (ash (1- size) type-bits) closure-header-type) temp) - (pseudo-atomic (:extra (pad-data-block size)) - (inst bis alloc-tn function-pointer-type result) - (storew temp result 0 function-pointer-type)) - (storew function result closure-function-slot function-pointer-type)))) + (let* ((size (+ length closure-info-offset)) + (alloc-size (pad-data-block size))) + (inst li + (logior (ash (1- size) n-widetag-bits) closure-header-widetag) + temp) + (pseudo-atomic (:extra (if stack-allocate-p 0 alloc-size)) + (cond (stack-allocate-p + (align-csp result) + (inst bis csp-tn fun-pointer-lowtag result) + (inst lda csp-tn alloc-size csp-tn)) + (t + (inst bis alloc-tn fun-pointer-lowtag result))) + (storew temp result 0 fun-pointer-lowtag)) + (storew function result closure-fun-slot fun-pointer-lowtag)))) ;;; The compiler likes to be able to directly make value cells. -;;; (define-vop (make-value-cell) (:args (value :to :save :scs (descriptor-reg any-reg null zero))) (:temporary (:scs (non-descriptor-reg)) temp) (:results (result :scs (descriptor-reg))) (:generator 10 (with-fixed-allocation - (result temp value-cell-header-type value-cell-size)) - (storew value result value-cell-value-slot other-pointer-type))) - + (result temp value-cell-header-widetag value-cell-size) + (storew value result value-cell-value-slot other-pointer-lowtag)))) -;;;; Automatic allocators for primitive objects. +;;;; automatic allocators for primitive objects (define-vop (make-unbound-marker) (:args) (:results (result :scs (any-reg))) (:generator 1 - (inst li unbound-marker-type result))) + (inst li unbound-marker-widetag result))) + +(define-vop (make-funcallable-instance-tramp) + (:args) + (:results (result :scs (any-reg))) + (:generator 1 + (inst li (make-fixup "funcallable_instance_tramp" :foreign) result))) (define-vop (fixed-alloc) (:args) @@ -162,8 +177,8 @@ (pseudo-atomic (:extra (pad-data-block words)) (inst bis alloc-tn lowtag result) (when type - (inst li (logior (ash (1- words) type-bits) type) temp) - (storew temp result 0 lowtag))))) + (inst li (logior (ash (1- words) n-widetag-bits) type) temp) + (storew temp result 0 lowtag))))) (define-vop (var-alloc) (:args (extra :scs (any-reg))) @@ -174,11 +189,11 @@ (:temporary (:scs (non-descriptor-reg)) header) (:temporary (:scs (non-descriptor-reg)) bytes) (:generator 6 - (inst lda bytes (* (1+ words) word-bytes) extra) - (inst sll bytes (- type-bits 2) header) - (inst lda header (+ (ash -2 type-bits) type) header) - (inst srl bytes lowtag-bits bytes) - (inst sll bytes lowtag-bits bytes) + (inst lda bytes (* (1+ words) n-word-bytes) extra) + (inst sll bytes (- n-widetag-bits 2) header) + (inst lda header (+ (ash -2 n-widetag-bits) type) header) + (inst srl bytes n-lowtag-bits bytes) + (inst sll bytes n-lowtag-bits bytes) (pseudo-atomic () (inst bis alloc-tn lowtag result) (storew header result 0 lowtag)