Lines Matching refs:s0
28 inline void exec_opl(int s0, int s1, int iflags) in exec_opl() argument
31 res = s0; in exec_opl()
36 stringify(OP) "l", s0, res, iflags, flags & CC_MASK); in exec_opl()
42 inline void exec_opw(int s0, int s1, int iflags) in exec_opw() argument
45 res = s0; in exec_opw()
50 stringify(OP) "w", s0, res, iflags, flags & CC_MASK); in exec_opw()
56 inline void exec_opb(int s0, int s1, int iflags) in exec_opb() argument
59 res = s0; in exec_opb()
64 stringify(OP) "b", s0, res, iflags, flags & CC_MASK); in exec_opb()
71 inline void exec_opl(int s0, int s1, int iflags) in exec_opl() argument
74 res = s0; in exec_opl()
79 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK); in exec_opl()
85 inline void exec_opw(int s0, int s1, int iflags) in exec_opw() argument
88 res = s0; in exec_opw()
93 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK); in exec_opw()
99 inline void exec_opb(int s0, int s1, int iflags) in exec_opb() argument
102 res = s0; in exec_opb()
107 stringify(OP) "b", s0, s1, res, iflags, flags & CC_MASK); in exec_opb()
114 void exec_op(int s0, int s1) in exec_op() argument
131 exec_opl(s0, s1, flags_in); in exec_op()
132 exec_opw(s0, s1, flags_in); in exec_op()
133 exec_opb(s0, s1, flags_in); in exec_op()
136 exec_opl(s0, s1, 0); in exec_op()
137 exec_opw(s0, s1, 0); in exec_op()
138 exec_opb(s0, s1, 0); in exec_op()
139 exec_opl(s0, s1, CC_C); in exec_op()
140 exec_opw(s0, s1, CC_C); in exec_op()
141 exec_opb(s0, s1, CC_C); in exec_op()