Lines Matching refs:s0
27 inline void exec_opq(int64 s0, int64 s1, int64 iflags) in exec_opq() argument
30 res = s0; in exec_opq()
34 stringify(OP) "q", s0, res, iflags, flags & CC_MASK); in exec_opq()
36 inline void exec_opl(int64 s0, int64 s1, int64 iflags) in exec_opl() argument
39 res = s0; in exec_opl()
43 stringify(OP) "l", s0, res, iflags, flags & CC_MASK); in exec_opl()
45 inline void exec_opw(int64 s0, int64 s1, int64 iflags) in exec_opw() argument
48 res = s0; in exec_opw()
52 stringify(OP) "w", s0, res, iflags, flags & CC_MASK); in exec_opw()
54 inline void exec_opb(int64 s0, int64 s1, int64 iflags) in exec_opb() argument
57 res = s0; in exec_opb()
61 stringify(OP) "b", s0, res, iflags, flags & CC_MASK); in exec_opb()
64 inline void exec_opq(int64 s0, int64 s1, int64 iflags) in exec_opq() argument
67 res = s0; in exec_opq()
71 stringify(OP) "q", s0, s1, res, iflags, flags & CC_MASK); in exec_opq()
74 inline void exec_opl(int64 s0, int64 s1, int64 iflags) in exec_opl() argument
77 res = s0; in exec_opl()
81 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK); in exec_opl()
84 inline void exec_opw(int64 s0, int64 s1, int64 iflags) in exec_opw() argument
87 res = s0; in exec_opw()
91 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK); in exec_opw()
94 inline void exec_opb(int64 s0, int64 s1, int64 iflags) in exec_opb() argument
97 res = s0; in exec_opb()
101 stringify(OP) "b", s0, s1, res, iflags, flags & CC_MASK); in exec_opb()
105 void exec_op(int64 s0, int64 s1) in exec_op() argument
122 exec_opq(s0, s1, flags_in); in exec_op()
123 exec_opl(s0, s1, flags_in); in exec_op()
124 exec_opw(s0, s1, flags_in); in exec_op()
125 exec_opb(s0, s1, flags_in); in exec_op()
128 exec_opq(s0, s1, 0); in exec_op()
129 exec_opl(s0, s1, 0); in exec_op()
130 exec_opw(s0, s1, 0); in exec_op()
131 exec_opb(s0, s1, 0); in exec_op()
132 exec_opq(s0, s1, CC_C); in exec_op()
133 exec_opl(s0, s1, CC_C); in exec_op()
134 exec_opw(s0, s1, CC_C); in exec_op()
135 exec_opb(s0, s1, CC_C); in exec_op()