1 ;;;; simple cases for generic arithmetic
3 ;;;; This software is part of the SBCL system. See the README file for
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
14 ;;;; addition, subtraction, and multiplication
16 (macrolet ((define-generic-arith-routine ((fun cost) &body body)
17 `(define-assembly-routine (,(symbolicate "GENERIC-" fun)
19 (:return-style :full-call)
23 ((:arg x (descriptor-reg any-reg) edx-offset)
24 (:arg y (descriptor-reg any-reg)
25 ;; this seems wrong esi-offset -- FIXME: What's it mean?
28 (:res res (descriptor-reg any-reg) edx-offset)
30 (:temp eax unsigned-reg eax-offset)
31 (:temp ecx unsigned-reg ecx-offset))
35 (inst test ecx fixnum-tag-mask) ; both fixnums?
36 (inst jmp :nz DO-STATIC-FUN) ; no - do generic
39 (inst clc) ; single-value return
43 ;; Same as: (inst enter (fixnumize 1))
45 (inst mov ebp-tn esp-tn)
46 (inst sub esp-tn (fixnumize 1))
47 (inst push (make-ea :dword :base ebp-tn
48 :disp (frame-byte-offset return-pc-save-offset)))
49 (inst mov ecx (fixnumize 2)) ; arg count
54 ',(symbolicate "TWO-ARG-" fun))))))))
56 (define-generic-arith-routine (+ 10)
60 (inst rcr res 1) ; carry has correct sign
61 (inst sar res 1) ; remove type bits
65 (with-fixed-allocation (res bignum-widetag (1+ bignum-digits-offset))
66 (storew ecx res bignum-digits-offset other-pointer-lowtag))
70 (define-generic-arith-routine (- 10)
74 (inst cmc) ; carry has correct sign now
76 (inst sar res 1) ; remove type bits
80 (with-fixed-allocation (res bignum-widetag (1+ bignum-digits-offset))
81 (storew ecx res bignum-digits-offset other-pointer-lowtag))
84 (define-generic-arith-routine (* 30)
85 (move eax x) ; must use eax for 64-bit result
86 (inst sar eax n-fixnum-tag-bits) ; remove *4 fixnum bias
87 (inst imul y) ; result in edx:eax
88 (inst jmp :no OKAY) ; still fixnum
90 ;; zzz jrd changed edx to ebx in here, as edx isn't listed as a temp, above
91 ;; pfw says that loses big -- edx is target for arg x and result res
92 ;; note that 'edx' is not defined -- using x
93 (inst shrd eax x n-fixnum-tag-bits) ; high bits from edx
94 (inst sar x n-fixnum-tag-bits) ; now shift edx too
96 (move ecx x) ; save high bits from cdq
97 (inst cdq) ; edx:eax <- sign-extend of eax
99 (inst jmp :e SINGLE-WORD-BIGNUM)
101 (with-fixed-allocation (res bignum-widetag (+ bignum-digits-offset 2))
102 (storew eax res bignum-digits-offset other-pointer-lowtag)
103 (storew ecx res (1+ bignum-digits-offset) other-pointer-lowtag))
108 (with-fixed-allocation (res bignum-widetag (1+ bignum-digits-offset))
109 (storew eax res bignum-digits-offset other-pointer-lowtag))
118 (define-assembly-routine (generic-negate
120 (:return-style :full-call)
124 ((:arg x (descriptor-reg any-reg) edx-offset)
125 (:res res (descriptor-reg any-reg) edx-offset)
127 (:temp eax unsigned-reg eax-offset)
128 (:temp ecx unsigned-reg ecx-offset))
129 (inst test x fixnum-tag-mask)
133 (inst mov ebp-tn esp-tn)
134 (inst sub esp-tn (fixnumize 1))
135 (inst push (make-ea :dword :base ebp-tn
136 :disp (frame-byte-offset return-pc-save-offset)))
137 (inst mov ecx (fixnumize 1)) ; arg count
138 (inst jmp (make-ea :dword
139 :disp (+ nil-value (static-fun-offset '%negate))))
143 (inst neg res) ; (- most-negative-fixnum) is BIGNUM
145 (inst shr res n-fixnum-tag-bits) ; sign bit is data - remove type bits
148 (with-fixed-allocation (res bignum-widetag (1+ bignum-digits-offset))
149 (storew ecx res bignum-digits-offset other-pointer-lowtag))
155 (macrolet ((define-cond-assem-rtn (name translate static-fn test)
157 `(define-assembly-routine (,name
158 (:return-style :none))
159 ((:arg x (descriptor-reg any-reg) edx-offset)
160 (:arg y (descriptor-reg any-reg) edi-offset)
162 (:temp ecx unsigned-reg ecx-offset))
166 (inst test ecx fixnum-tag-mask)
167 (inst jmp :nz DO-STATIC-FUN) ; are both fixnums?
174 (inst mov ebp-tn esp-tn)
175 (inst sub esp-tn (fixnumize 3))
176 (inst mov (make-ea :dword :base esp-tn
177 :disp (frame-byte-offset
182 (inst lea ebp-tn (make-ea :dword :base esp-tn
183 :disp (frame-byte-offset
187 (inst mov ecx (fixnumize 2))
188 (inst call (make-ea :dword
190 (static-fun-offset ',static-fn))))
191 ;; HACK: We depend on NIL having the lowest address of all
192 ;; static symbols (including T)
194 (:l `((inst mov y (1+ nil-value))
196 (:g `((inst cmp x (1+ nil-value)))))
201 (:translate ,translate)
204 (:args (x :scs (descriptor-reg any-reg) :target edx)
205 (y :scs (descriptor-reg any-reg) :target edi))
207 (:temporary (:sc unsigned-reg :offset edx-offset
210 (:temporary (:sc unsigned-reg :offset edi-offset
217 (inst call (make-fixup ',name :assembly-routine))))))
219 (define-cond-assem-rtn generic-< < two-arg-< :l)
220 (define-cond-assem-rtn generic-> > two-arg-> :g))
223 (define-assembly-routine (generic-eql
224 (:return-style :none))
225 ((:arg x (descriptor-reg any-reg) edx-offset)
226 (:arg y (descriptor-reg any-reg) edi-offset)
228 (:temp ecx unsigned-reg ecx-offset))
231 (inst and ecx lowtag-mask)
232 (inst cmp ecx other-pointer-lowtag)
233 (inst jmp :e DO-STATIC-FUN)
235 ;; At least one fixnum
241 ;; Might as well fast path that...
246 (inst mov ebp-tn esp-tn)
247 (inst sub esp-tn (fixnumize 3))
248 (inst mov (make-ea :dword :base esp-tn
249 :disp (frame-byte-offset
254 (inst lea ebp-tn (make-ea :dword :base esp-tn
255 :disp (frame-byte-offset
259 (inst mov ecx (fixnumize 2))
260 (inst call (make-ea :dword
261 :disp (+ nil-value (static-fun-offset 'eql))))
268 (define-vop (generic-eql)
272 (:args (x :scs (descriptor-reg any-reg) :target edx)
273 (y :scs (descriptor-reg any-reg) :target edi))
275 (:temporary (:sc unsigned-reg :offset edx-offset
278 (:temporary (:sc unsigned-reg :offset edi-offset
286 (inst call (make-fixup 'generic-eql :assembly-routine))))
289 (define-assembly-routine (generic-=
290 (:return-style :none))
291 ((:arg x (descriptor-reg any-reg) edx-offset)
292 (:arg y (descriptor-reg any-reg) edi-offset)
294 (:temp ecx unsigned-reg ecx-offset))
297 (inst test ecx fixnum-tag-mask)
298 (inst jmp :nz DO-STATIC-FUN)
306 (inst mov ebp-tn esp-tn)
307 (inst sub esp-tn (fixnumize 3))
308 (inst mov (make-ea :dword :base esp-tn
309 :disp (frame-byte-offset
314 (inst lea ebp-tn (make-ea :dword :base esp-tn
315 :disp (frame-byte-offset
319 (inst mov ecx (fixnumize 2))
320 (inst call (make-ea :dword
321 :disp (+ nil-value (static-fun-offset 'two-arg-=))))
328 (define-vop (generic-=)
332 (:args (x :scs (descriptor-reg any-reg) :target edx)
333 (y :scs (descriptor-reg any-reg) :target edi))
335 (:temporary (:sc unsigned-reg :offset edx-offset
338 (:temporary (:sc unsigned-reg :offset edi-offset
346 (inst call (make-fixup 'generic-= :assembly-routine))))
349 ;;; Support for the Mersenne Twister, MT19937, random number generator
350 ;;; due to Matsumoto and Nishimura.
352 ;;; Makoto Matsumoto and T. Nishimura, "Mersenne twister: A
353 ;;; 623-dimensionally equidistributed uniform pseudorandom number
354 ;;; generator.", ACM Transactions on Modeling and Computer Simulation,
358 ;;; 0-1: Constant matrix A. [0, #x9908b0df] (not used here)
359 ;;; 2: Index; init. to 1.
362 ;;; This assembly routine is called from the inline VOP and updates
363 ;;; the state vector with new random numbers. The state vector is
364 ;;; passed in the EAX register.
365 #+sb-assembling ; We don't want a vop for this one.
366 (define-assembly-routine
367 (random-mt19937-update)
368 ((:temp state unsigned-reg eax-offset)
369 (:temp k unsigned-reg ebx-offset)
370 (:temp y unsigned-reg ecx-offset)
371 (:temp tmp unsigned-reg edx-offset))
373 ;; Save the temporary registers.
378 ;; Generate a new set of results.
381 (inst mov y (make-ea-for-vector-data state :index k :offset 3))
382 (inst mov tmp (make-ea-for-vector-data state :index k :offset (+ 1 3)))
383 (inst and y #x80000000)
384 (inst and tmp #x7fffffff)
388 (inst xor y #x9908b0df)
390 (inst xor y (make-ea-for-vector-data state :index k :offset (+ 397 3)))
391 (inst mov (make-ea-for-vector-data state :index k :offset 3) y)
393 (inst cmp k (- 624 397))
396 (inst mov y (make-ea-for-vector-data state :index k :offset 3))
397 (inst mov tmp (make-ea-for-vector-data state :index k :offset (+ 1 3)))
398 (inst and y #x80000000)
399 (inst and tmp #x7fffffff)
403 (inst xor y #x9908b0df)
405 (inst xor y (make-ea-for-vector-data state :index k :offset (+ (- 397 624) 3)))
406 (inst mov (make-ea-for-vector-data state :index k :offset 3) y)
408 (inst cmp k (- 624 1))
411 (inst mov y (make-ea-for-vector-data state :offset (+ (- 624 1) 3)))
412 (inst mov tmp (make-ea-for-vector-data state :offset (+ 0 3)))
413 (inst and y #x80000000)
414 (inst and tmp #x7fffffff)
418 (inst xor y #x9908b0df)
420 (inst xor y (make-ea-for-vector-data state :offset (+ (- 397 1) 3)))
421 (inst mov (make-ea-for-vector-data state :offset (+ (- 624 1) 3)) y)
423 ;; Restore the temporary registers and return.