X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=base-target-features.lisp-expr;h=f3895074c55b00b868c56a6361eb9c9926c383d4;hb=77f6e094a26f45886047dbe7270c050d44cb5a2d;hp=fdc3c680b80b18b88efa1e4135fb41f38c02f14b;hpb=6d3a964ae6d89003fc056d9cfa8afe31fd63514f;p=sbcl.git diff --git a/base-target-features.lisp-expr b/base-target-features.lisp-expr index fdc3c68..f389507 100644 --- a/base-target-features.lisp-expr +++ b/base-target-features.lisp-expr @@ -138,6 +138,35 @@ ;; anyone who wants to collect such statistics in the future. ; :sb-dyncount + ;; Enable code for detecting concurrent accesses to the same hash-table + ;; in multiple threads. Note that this implementation is currently + ;; (2007-09-11) somewhat too eager: even though in the current implementation + ;; multiple readers are thread safe as long as there are no writers, this + ;; code will also trap multiple readers. + ; :sb-hash-table-debug + + ;; Enabled automatically by make-config.sh for platforms which implement + ;; the %READ-CYCLE-COUNTER VOP. Can be disabled manually: affects TIME. + ;; + ;; FIXME: Should this be :SB-CYCLE-COUNTER instead? If so, then the same goes + ;; for :COMPARE-AND-SWAP-VOPS as well, and a bunch of others. Perhaps + ;; built-time convenience features like this should all live in eg. SB!INT + ;; instead? + ;; + ; :cycle-counter + + ;; Enabled automatically for platforms which implement complex arithmetic + ;; VOPs. Such platforms should implement real-complex, complex-real and + ;; complex-complex addition and subtractions (for complex-single-float + ;; and complex-double-float). They should also also implement complex-real + ;; and real-complex multiplication, complex-real division, and + ;; sb!vm::swap-complex, which swaps the real and imaginary parts. + ;; Finally, they should implement conjugate and complex-real, real-complex + ;; and complex-complex CL:= (complex-complex EQL would usually be a good + ;; idea). + ;; + ; :complex-float-vops + ;; Peter Van Eynde's increase-bulletproofness code for CMU CL ;; ;; Some of the code which was #+high-security before the fork has now @@ -331,6 +360,7 @@ ;; :darwin = We're intended to run under Darwin (including MacOS X). ;; :sunos = We're intended to run under Solaris user environment ;; with the SunOS kernel. + ;; :hpux = We're intended to run under HP-UX 11.11 or later ;; :osf1 = We're intended to run under Tru64 (aka Digital Unix ;; aka OSF/1). ;; :win32 = We're intended to under some version of Microsoft Windows.