Lines Matching refs:s1
8 #define EXECOP2(size, mod, res, s1, flags) \ argument
15 : "q" (s1), "0" (res), "1" (flags));
27 static inline void exec_opq(int64 s0, int64 s1, int64 iflags) in exec_opq() argument
36 static inline void exec_opl(int64 s0, int64 s1, int64 iflags) in exec_opl() argument
45 static inline void exec_opw(int64 s0, int64 s1, int64 iflags) in exec_opw() argument
54 static inline void exec_opb(int64 s0, int64 s1, int64 iflags) in exec_opb() argument
64 static inline void exec_opq(int64 s0, int64 s1, int64 iflags) in exec_opq() argument
69 EXECOP2("q", "q", res, s1, flags); in exec_opq()
71 stringify(OP) "q", s0, s1, res, iflags, flags & CC_MASK); in exec_opq()
74 static inline void exec_opl(int64 s0, int64 s1, int64 iflags) in exec_opl() argument
79 EXECOP2("l", "k", res, s1, flags); in exec_opl()
81 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK); in exec_opl()
84 static inline void exec_opw(int64 s0, int64 s1, int64 iflags) in exec_opw() argument
89 EXECOP2("w", "w", res, s1, flags); in exec_opw()
91 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK); in exec_opw()
94 static inline void exec_opb(int64 s0, int64 s1, int64 iflags) in exec_opb() argument
99 EXECOP2("b", "b", res, s1, flags); in exec_opb()
101 stringify(OP) "b", s0, s1, res, iflags, flags & CC_MASK); in exec_opb()
106 void exec_op(int64 s0, int64 s1) in exec_op() argument
123 exec_opq(s0, s1, flags_in); in exec_op()
124 exec_opl(s0, s1, flags_in); in exec_op()
126 exec_opw(s0, s1, flags_in); in exec_op()
127 exec_opb(s0, s1, flags_in); in exec_op()
131 exec_opq(s0, s1, 0); in exec_op()
132 exec_opl(s0, s1, 0); in exec_op()
133 exec_opw(s0, s1, 0); in exec_op()
134 exec_opb(s0, s1, 0); in exec_op()
135 exec_opq(s0, s1, CC_C); in exec_op()
136 exec_opl(s0, s1, CC_C); in exec_op()
137 exec_opw(s0, s1, CC_C); in exec_op()
138 exec_opb(s0, s1, CC_C); in exec_op()