X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fx86%2Falloc.lisp;h=a0ec28b416c70cfd064e12b268cacdabee1685a2;hb=80f222325e1f677e5cf8de01c6990906fa47f65d;hp=4286c2e11440f108a3dcd9733cd5ffed40022138;hpb=50305b602c3953440af716137a56f50cd204375d;p=sbcl.git diff --git a/src/compiler/x86/alloc.lisp b/src/compiler/x86/alloc.lisp index 4286c2e..a0ec28b 100644 --- a/src/compiler/x86/alloc.lisp +++ b/src/compiler/x86/alloc.lisp @@ -71,49 +71,6 @@ (define-vop (allocate-code-object) (:args (boxed-arg :scs (any-reg) :target boxed) (unboxed-arg :scs (any-reg) :target unboxed)) - (:results (result :scs (descriptor-reg))) - (:temporary (:sc unsigned-reg :from :eval) temp) - (:temporary (:sc unsigned-reg :from (:argument 0)) boxed) - (:temporary (:sc unsigned-reg :from (:argument 1)) unboxed) - (:generator 100 - (move boxed boxed-arg) - (inst add boxed (fixnumize (1+ code-trace-table-offset-slot))) - (inst and boxed (lognot lowtag-mask)) - (move unboxed unboxed-arg) - (inst shr unboxed word-shift) - (inst add unboxed lowtag-mask) - (inst and unboxed (lognot lowtag-mask)) - (pseudo-atomic - ;; comment from CMU CL code: - ;; now loading code into static space cause it can't move - ;; - ;; KLUDGE: What? What's all the cruft about saving fixups for then? - ;; I think what's happened is that ALLOCATE-CODE-OBJECT is the basic - ;; CMU CL primitive; this ALLOCATE-CODE-OBJECT was hacked for - ;; static space only in a simple-minded port to the X86; and then - ;; in an attempt to improve the port to the X86, - ;; ALLOCATE-DYNAMIC-CODE-OBJECT was defined. If that's right, I'd like - ;; to know why not just go back to the basic CMU CL behavior of - ;; ALLOCATE-CODE-OBJECT, where it makes a relocatable code object. - ;; -- WHN 19990916 - ;; - ;; FIXME: should have a check for overflow of static space - (load-symbol-value temp *static-space-free-pointer*) - (inst lea result (make-ea :byte :base temp :disp other-pointer-lowtag)) - (inst add temp boxed) - (inst add temp unboxed) - (store-symbol-value temp *static-space-free-pointer*) - (inst shl boxed (- n-widetag-bits word-shift)) - (inst or boxed code-header-widetag) - (storew boxed result 0 other-pointer-lowtag) - (storew unboxed result code-code-size-slot other-pointer-lowtag) - (inst mov temp nil-value) - (storew temp result code-entry-points-slot other-pointer-lowtag)) - (storew temp result code-debug-info-slot other-pointer-lowtag))) - -(define-vop (allocate-dynamic-code-object) - (:args (boxed-arg :scs (any-reg) :target boxed) - (unboxed-arg :scs (any-reg) :target unboxed)) (:results (result :scs (descriptor-reg) :from :eval)) (:temporary (:sc unsigned-reg :from (:argument 0)) boxed) (:temporary (:sc unsigned-reg :from (:argument 1)) unboxed) @@ -224,34 +181,4 @@ (inst lea result (make-ea :byte :base result :disp lowtag)) (storew header result 0 lowtag)))) -(define-vop (make-symbol) - (:policy :fast-safe) - (:translate make-symbol) - (:args (name :scs (descriptor-reg) :to :eval)) - (:temporary (:sc unsigned-reg :from :eval) temp) - (:results (result :scs (descriptor-reg) :from :argument)) - (:node-var node) - (:generator 37 - (with-fixed-allocation (result symbol-header-widetag symbol-size node) - (storew name result symbol-name-slot other-pointer-lowtag) - (storew unbound-marker-widetag - result - symbol-value-slot - other-pointer-lowtag) - ;; Set up a random hash value for the symbol. Perhaps the object - ;; address could be used for even faster and smaller code! - ;; FIXME: We don't mind the symbol hash not being repeatable, so - ;; we might as well add in the object address here, too. (Adding entropy - ;; is good, even if ANSI doesn't understand that.) - (inst imul temp - (make-fixup (extern-alien-name "fast_random_state") :foreign) - 1103515245) - (inst add temp 12345) - (inst mov (make-fixup (extern-alien-name "fast_random_state") :foreign) - temp) - ;; We want a positive fixnum for the hash value, so discard the LS bits. - (inst shr temp 1) - (inst and temp #xfffffffc) - (storew temp result symbol-hash-slot other-pointer-lowtag) - (storew nil-value result symbol-plist-slot other-pointer-lowtag) - (storew nil-value result symbol-package-slot other-pointer-lowtag)))) +