Lines Matching refs:s1

11 #define EXECSHIFT(size, rsize, res, s1, s2, flags) \  argument
18 : "r" (s1), "0" (res), "1" (flags));
20 #define EXECSHIFT(size, rsize, res, s1, s2, flags) \ argument
27 : "c" (s1), "0" (res), "1" (flags));
31 void exec_opq(long s2, long s0, long s1, long iflags) in exec_opq() argument
36 EXECSHIFT("q", "", res, s1, s2, flags); in exec_opq()
38 if (s1 != 1) in exec_opq()
41 stringify(OP) "q", s0, s1, res, iflags, flags & CC_MASK); in exec_opq()
45 void exec_opl(long s2, long s0, long s1, long iflags) in exec_opl() argument
50 EXECSHIFT("l", "k", res, s1, s2, flags); in exec_opl()
52 if (s1 != 1) in exec_opl()
55 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK); in exec_opl()
58 void exec_opw(long s2, long s0, long s1, long iflags) in exec_opw() argument
63 EXECSHIFT("w", "w", res, s1, s2, flags); in exec_opw()
65 if (s1 != 1) in exec_opw()
68 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK); in exec_opw()
72 #define EXECSHIFT(size, rsize, res, s1, s2, flags) \ argument
79 : "c" (s1), "0" (res), "1" (flags), "r" (s2));
82 void exec_opq(long s2, long s0, long s1, long iflags) in exec_opq() argument
87 EXECSHIFT("q", "", res, s1, s2, flags); in exec_opq()
89 if (s1 != 1) in exec_opq()
92 stringify(OP) "q", s0, s2, s1, res, iflags, flags & CC_MASK); in exec_opq()
96 void exec_opl(long s2, long s0, long s1, long iflags) in exec_opl() argument
101 EXECSHIFT("l", "k", res, s1, s2, flags); in exec_opl()
103 if (s1 != 1) in exec_opl()
106 stringify(OP) "l", s0, s2, s1, res, iflags, flags & CC_MASK); in exec_opl()
109 void exec_opw(long s2, long s0, long s1, long iflags) in exec_opw() argument
114 EXECSHIFT("w", "w", res, s1, s2, flags); in exec_opw()
116 if (s1 != 1) in exec_opw()
119 stringify(OP) "w", s0, s2, s1, res, iflags, flags & CC_MASK); in exec_opw()
125 void exec_opb(long s0, long s1, long iflags) in exec_opb() argument
130 EXECSHIFT("b", "b", res, s1, 0, flags); in exec_opb()
132 if (s1 != 1) in exec_opb()
135 stringify(OP) "b", s0, s1, res, iflags, flags & CC_MASK); in exec_opb()
139 void exec_op(long s2, long s0, long s1) in exec_op() argument
144 exec_opq(s2, s0, s1, 0); in exec_op()
146 exec_opl(s2, s0, s1, 0); in exec_op()
148 exec_opw(s2, s0, s1, 0); in exec_op()
150 exec_opw(s2, s0, s1, 0); in exec_op()
153 exec_opb(s0, s1, 0); in exec_op()
157 exec_opq(s2, s0, s1, CC_C); in exec_op()
159 exec_opl(s2, s0, s1, CC_C); in exec_op()
160 exec_opw(s2, s0, s1, CC_C); in exec_op()
161 exec_opb(s0, s1, CC_C); in exec_op()