0.8.20.1: fun-name fun, debugger debugged
[sbcl.git] / src / compiler / policies.lisp
index 14a0867..2264f6d 100644 (file)
@@ -15,7 +15,6 @@
     (cond ((= safety 0) 0)
           ;; FIXME: It is duplicated in PROBABLE-TYPE-CHECK-P and in
           ;; some other places.
-
           ((and (<= speed safety)
                 (<= space safety)
                 (<= compilation-speed safety))
           (t 2))
   ("no" "maybe" "fast" "full"))
 
+(define-optimization-quality check-tag-existence
+    (cond ((= safety 0) 0)
+          (t 3))
+  ("no" "maybe" "yes" "yes"))
+
 (define-optimization-quality let-convertion
     (if (<= debug speed) 3 0)
   ("off" "maybe" "on" "on"))
@@ -60,3 +64,9 @@
 (define-optimization-quality float-accuracy
     3
   ("degraded" "full" "full" "full"))
+
+(define-optimization-quality insert-step-conditions
+    (if (> debug (max speed space))
+        debug
+        0)
+  ("no" "no" "partial" "full"))