Lines Matching full:s2
11 #define EXECSHIFT(size, rsize, res, s1, s2, flags) \ argument
20 #define EXECSHIFT(size, rsize, res, s1, s2, flags) \ argument
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()
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()
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()
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()
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()
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()
119 stringify(OP) "w", s0, s2, s1, res, iflags, flags & CC_MASK); in exec_opw()
139 void exec_op(long s2, long s0, long s1) in exec_op() argument
141 s2 = i2l(s2); in exec_op()
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()
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()