Lines Matching refs:s1
8 #define EXECOP2(size, rsize, res, s1, flags) \
15 : "q" (s1), "0" (res), "1" (flags)); \
17 stringify(OP) size, s0, s1, res, iflags, flags & CC_MASK);
32 void exec_opq(long s0, long s1, long iflags)
41 void exec_opl(long s0, long s1, long iflags)
49 void exec_opw(long s0, long s1, long iflags)
57 void exec_opb(long s0, long s1, long iflags)
66 void exec_opq(long s0, long s1, long iflags)
71 EXECOP2("q", "", res, s1, flags);
75 void exec_opl(long s0, long s1, long iflags)
80 EXECOP2("l", "k", res, s1, flags);
83 void exec_opw(long s0, long s1, long iflags)
88 EXECOP2("w", "w", res, s1, flags);
91 void exec_opb(long s0, long s1, long iflags)
96 EXECOP2("b", "b", res, s1, flags);
100 void exec_op(long s0, long s1)
103 s1 = i2l(s1);
105 exec_opq(s0, s1, 0);
107 exec_opl(s0, s1, 0);
108 exec_opw(s0, s1, 0);
109 exec_opb(s0, s1, 0);
112 exec_opq(s0, s1, CC_C);
114 exec_opl(s0, s1, CC_C);
115 exec_opw(s0, s1, CC_C);
116 exec_opb(s0, s1, CC_C);