shithub: femtolisp

ref: ee58f398fec62d3096b0e01da51a3969ed37a32d
dir: /test/number-boundaries.lsp/

View raw version

; NUMBER BOUNDARIES ------------------------------------------------------------
(define-macro (half-max-signed numtype)
  (list 'ash (list numtype 1)
        (list '- (list '* 8 (list 'sizeof (list 'quote numtype))) 2)))

(define-macro (high-border-signed numtype)
  (list '+ (list '- (list 'half-max-signed numtype) 1)
           (list 'half-max-signed numtype)))

(define-macro (low-border-signed numtype)
  (list '- -1 (list 'high-border-signed numtype)))

(define-macro (low-border numtype)
  (list 'if (list '< (list numtype -1) 1)
        (list 'low-border-signed numtype)
        (list numtype 0)))

(define-macro (high-border numtype)
  (list 'lognot (list 'low-border numtype)))
  ;(list numtype (list 'lognot (list 'low-border numtype))))

(define-macro (number-borders numtype)
  (list 'cons (list 'low-border numtype)
              (list 'high-border numtype)))

; TESTS ------------------------------------------------------------------------
(princ "---\n")
(princ "int8 : " (number-borders int8) "\n")
(princ "int16 : " (number-borders int16) "\n")
(princ "int32 : " (number-borders int32) "\n")
(princ "int64 : " (number-borders int64) "\n")
(princ "uint8 : " (number-borders uint8) "\n")
(princ "uint16 : " (number-borders uint16) "\n")
(princ "uint32 : " (number-borders uint32) "\n")
(princ "uint64 : " (number-borders uint64) "\n")
(princ "---\n")

; add/sub signed
(assert (= 128 (+ (high-border int8) 1)))
(assert (= 128 (+ 1 (high-border int8))))
(assert (= -129 (- (low-border int8) 1)))
(assert (= 129 (- 1 (low-border int8))))
(assert (= 32768 (+ (high-border int16) 1)))
(assert (= 32768 (+ 1 (high-border int16))))
(assert (= -32769 (- (low-border int16) 1)))
(assert (= 32769 (- 1 (low-border int16))))
(assert (= 2147483648 (+ (high-border int32) 1)))
(assert (= 2147483648 (+ 1 (high-border int32))))
(assert (= -2147483649 (- (low-border int32) 1)))
(assert (= 2147483649 (- 1 (low-border int32))))
(assert (= 9223372036854775808 (+ (high-border int64) 1)))
(assert (= 9223372036854775808 (+ 1 (high-border int64))))
(assert (= -9223372036854775809 (- (low-border int64) 1)))
(assert (= 9223372036854775809 (- 1 (low-border int64))))
(assert (= 27670116110564327421 (+ 9223372036854775807 9223372036854775807 9223372036854775807)))
(assert (= -12297829382473033728 (+ -3074457345618258432 -3074457345618258432 -3074457345618258432 -3074457345618258432)))
(assert (= 6148914691236516864 (- -3074457345618258432 -3074457345618258432 -3074457345618258432 -3074457345618258432)))

; add/sub unsigned
(assert (= 256 (+ (high-border uint8) 1)))
(assert (= 256 (+ 1 (high-border uint8))))
(assert (= -1 (- (low-border uint8) 1)))
(assert (= 1 (- 1 (low-border uint8))))
(assert (= 65536 (+ (high-border uint16) 1)))
(assert (= 65536 (+ 1 (high-border uint16))))
(assert (= -1 (- (low-border uint16) 1)))
(assert (= 1 (- 1 (low-border uint16))))
(assert (= 4294967296 (+ (high-border uint32) 1)))
(assert (= 4294967296 (+ 1 (high-border uint32))))
(assert (= -1 (- (low-border uint32) 1)))
(assert (= 1 (- 1 (low-border uint32))))
(assert (= 18446744073709551616 (+ (high-border uint64) 1)))
(assert (= 18446744073709551616 (+ 1 (high-border uint64))))
(assert (= 36893488147419103230 (+ (high-border uint64) (high-border uint64))))
(assert (= 36893488147419103231 (+ 1 (high-border uint64) (high-border uint64))))
(assert (= 36893488147419103231 (+ (high-border uint64) 1 (high-border uint64))))
(assert (= 36893488147419103231 (+ (high-border uint64) (high-border uint64) 1)))
(assert (= -1 (- (low-border uint64) 1)))
(assert (= 1 (- 1 (low-border uint64))))

; mul signed
(assert (= 18446744073709551614 (* (high-border int64) 2)))
;(assert (= -18446744073709551614 (* (high-border int64) -2)))
(assert (= 18446744073709551614 (* 2 (high-border int64))))
;(assert (= -18446744073709551616 (* (low-border int64) 2)))
;(assert (= -18446744073709551616 (* 2 (low-border int64))))

; mul unsigned
;(assert (= 36893488147419103230 (* (high-border uint64) 2)))
;(assert (= 36893488147419103230 (* 2 (high-border uint64))))
;(assert (= -36893488147419103230 (* (high-border uint64) -2)))
;(assert (= -36893488147419103230 (* -2 (high-border uint64))))

(princ "all number boundaries tests pass\n\n")
#t