Lines Matching refs:s0
31 void exec_opq(long s2, long s0, long s1, long iflags)
34 res = s0;
41 stringify(OP) "q", s0, s1, res, iflags, flags & CC_MASK);
45 void exec_opl(long s2, long s0, long s1, long iflags)
48 res = s0;
55 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK);
58 void exec_opw(long s2, long s0, long s1, long iflags)
61 res = s0;
68 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK);
82 void exec_opq(long s2, long s0, long s1, long iflags)
85 res = s0;
92 stringify(OP) "q", s0, s2, s1, res, iflags, flags & CC_MASK);
96 void exec_opl(long s2, long s0, long s1, long iflags)
99 res = s0;
106 stringify(OP) "l", s0, s2, s1, res, iflags, flags & CC_MASK);
109 void exec_opw(long s2, long s0, long s1, long iflags)
112 res = s0;
119 stringify(OP) "w", s0, s2, s1, res, iflags, flags & CC_MASK);
125 void exec_opb(long s0, long s1, long iflags)
128 res = s0;
135 stringify(OP) "b", s0, s1, res, iflags, flags & CC_MASK);
139 void exec_op(long s2, long s0, long s1)
142 s0 = i2l(s0);
144 exec_opq(s2, s0, s1, 0);
146 exec_opl(s2, s0, s1, 0);
148 exec_opw(s2, s0, s1, 0);
150 exec_opw(s2, s0, s1, 0);
153 exec_opb(s0, s1, 0);
157 exec_opq(s2, s0, s1, CC_C);
159 exec_opl(s2, s0, s1, CC_C);
160 exec_opw(s2, s0, s1, CC_C);
161 exec_opb(s0, s1, CC_C);