Get rid of vm-support-routines indirection.
[sbcl.git] / src / compiler / sparc / pred.lisp
1 ;;;; the VM definition of predicate VOPs for the Sparc
2
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
11
12 (in-package "SB!VM")
13 \f
14 ;;;; the Branch VOP.
15
16 ;;; The unconditional branch, emitted when we can't drop through to
17 ;;; the desired destination.  Dest is the continuation we transfer
18 ;;; control to.
19 (define-vop (branch)
20   (:info dest)
21   (:generator 5
22     (inst b dest)
23     (inst nop)))
24
25 \f
26 ;;;; Generic conditional VOPs
27
28 ;;; The generic conditional branch, emitted immediately after test
29 ;;; VOPs that only set flags.
30
31 (define-vop (branch-if)
32   (:info dest flags not-p)
33   (:ignore dest flags not-p)
34   (:generator 0
35      (error "BRANCH-IF not yet implemented")))
36
37 (defun
38     convert-conditional-move-p (node dst-tn x-tn y-tn)
39   (declare (ignore node dst-tn x-tn y-tn))
40   nil)
41
42 \f
43 ;;;; conditional VOPs:
44
45 (define-vop (if-eq)
46   (:args (x :scs (any-reg descriptor-reg zero null))
47          (y :scs (any-reg descriptor-reg zero null)))
48   (:conditional)
49   (:info target not-p)
50   (:policy :fast-safe)
51   (:translate eq)
52   (:generator 3
53     (inst cmp x y)
54     (inst b (if not-p :ne :eq) target)
55     (inst nop)))
56