• Home
  • Raw
  • Download

Lines Matching refs:s1

8 #define EXECOP2(size, res, s1, flags) \  argument
15 : "q" (s1), "0" (res), "1" (flags));
27 inline void exec_opq(int64 s0, int64 s1, int64 iflags) in exec_opq() argument
36 inline void exec_opl(int64 s0, int64 s1, int64 iflags) in exec_opl() argument
45 inline void exec_opw(int64 s0, int64 s1, int64 iflags) in exec_opw() argument
54 inline void exec_opb(int64 s0, int64 s1, int64 iflags) in exec_opb() argument
64 inline void exec_opq(int64 s0, int64 s1, int64 iflags) in exec_opq() argument
69 EXECOP2("q", res, s1, flags); 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
79 EXECOP2("", res, s1, flags); 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
89 EXECOP2("w", res, s1, flags); 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
99 EXECOP2("b", res, s1, flags); 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()