X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fsparc%2Fpred.lisp;h=3d0052823d1484d538bb6b38b3276af9173e28b2;hb=c6aa07913db78733634b49d305f41bb8ae4f97e2;hp=0dc6a7cb926dcb5cb6c45b76f05c904dbc83717c;hpb=52cfe54802db8736f1f4e2b67764c43bba9b78b3;p=sbcl.git diff --git a/src/compiler/sparc/pred.lisp b/src/compiler/sparc/pred.lisp index 0dc6a7c..3d00528 100644 --- a/src/compiler/sparc/pred.lisp +++ b/src/compiler/sparc/pred.lisp @@ -21,6 +21,24 @@ (:generator 5 (inst b dest) (inst nop))) + + +;;;; Generic conditional VOPs + +;;; The generic conditional branch, emitted immediately after test +;;; VOPs that only set flags. + +(define-vop (branch-if) + (:info dest flags not-p) + (:ignore dest flags not-p) + (:generator 0 + (error "BRANCH-IF not yet implemented"))) + +(!def-vm-support-routine + convert-conditional-move-p (node dst-tn x-tn y-tn) + (declare (ignore node dst-tn x-tn y-tn)) + nil) + ;;;; conditional VOPs: