X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fmips%2Fpred.lisp;h=7bd7c16f99c5e024275ffc3e9cffae30d5cf02c7;hb=f6b2e375747a54a1bfa34ead9f9af2d4e8b5aa38;hp=11f959024ad353122a5ea04cceeb2c97ad6c5782;hpb=52cfe54802db8736f1f4e2b67764c43bba9b78b3;p=sbcl.git diff --git a/src/compiler/mips/pred.lisp b/src/compiler/mips/pred.lisp index 11f9590..7bd7c16 100644 --- a/src/compiler/mips/pred.lisp +++ b/src/compiler/mips/pred.lisp @@ -13,6 +13,23 @@ (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"))) + +(defun + convert-conditional-move-p (node dst-tn x-tn y-tn) + (declare (ignore node dst-tn x-tn y-tn)) + nil) + + ;;;; Conditional VOPs: (define-vop (if-eq)