Lines Matching refs:src1

45 static target_ulong compute_all_adcx(target_ulong dst, target_ulong src1,  in compute_all_adcx()  argument
48 return (src1 & ~CC_C) | (dst * CC_C); in compute_all_adcx()
51 static target_ulong compute_all_adox(target_ulong dst, target_ulong src1, in compute_all_adox() argument
54 return (src1 & ~CC_O) | (src2 * CC_O); in compute_all_adox()
57 static target_ulong compute_all_adcox(target_ulong dst, target_ulong src1, in compute_all_adcox() argument
60 return (src1 & ~(CC_C | CC_O)) | (dst * CC_C) | (src2 * CC_O); in compute_all_adcox()
63 target_ulong helper_cc_compute_nz(target_ulong dst, target_ulong src1, in helper_cc_compute_nz() argument
67 return ~src1 & CC_Z; in helper_cc_compute_nz()
76 target_ulong helper_cc_compute_all(target_ulong dst, target_ulong src1, in helper_cc_compute_all() argument
84 return src1; in helper_cc_compute_all()
89 return compute_all_mulb(dst, src1); in helper_cc_compute_all()
91 return compute_all_mulw(dst, src1); in helper_cc_compute_all()
93 return compute_all_mull(dst, src1); in helper_cc_compute_all()
96 return compute_all_addb(dst, src1); in helper_cc_compute_all()
98 return compute_all_addw(dst, src1); in helper_cc_compute_all()
100 return compute_all_addl(dst, src1); in helper_cc_compute_all()
103 return compute_all_adcb(dst, src1, src2); in helper_cc_compute_all()
105 return compute_all_adcw(dst, src1, src2); in helper_cc_compute_all()
107 return compute_all_adcl(dst, src1, src2); in helper_cc_compute_all()
110 return compute_all_subb(dst, src1); in helper_cc_compute_all()
112 return compute_all_subw(dst, src1); in helper_cc_compute_all()
114 return compute_all_subl(dst, src1); in helper_cc_compute_all()
117 return compute_all_sbbb(dst, src1, src2); in helper_cc_compute_all()
119 return compute_all_sbbw(dst, src1, src2); in helper_cc_compute_all()
121 return compute_all_sbbl(dst, src1, src2); in helper_cc_compute_all()
124 return compute_all_logicb(dst, src1); in helper_cc_compute_all()
126 return compute_all_logicw(dst, src1); in helper_cc_compute_all()
128 return compute_all_logicl(dst, src1); in helper_cc_compute_all()
131 return compute_all_incb(dst, src1); in helper_cc_compute_all()
133 return compute_all_incw(dst, src1); in helper_cc_compute_all()
135 return compute_all_incl(dst, src1); in helper_cc_compute_all()
138 return compute_all_decb(dst, src1); in helper_cc_compute_all()
140 return compute_all_decw(dst, src1); in helper_cc_compute_all()
142 return compute_all_decl(dst, src1); in helper_cc_compute_all()
145 return compute_all_shlb(dst, src1); in helper_cc_compute_all()
147 return compute_all_shlw(dst, src1); in helper_cc_compute_all()
149 return compute_all_shll(dst, src1); in helper_cc_compute_all()
152 return compute_all_sarb(dst, src1); in helper_cc_compute_all()
154 return compute_all_sarw(dst, src1); in helper_cc_compute_all()
156 return compute_all_sarl(dst, src1); in helper_cc_compute_all()
159 return compute_all_bmilgb(dst, src1); in helper_cc_compute_all()
161 return compute_all_bmilgw(dst, src1); in helper_cc_compute_all()
163 return compute_all_bmilgl(dst, src1); in helper_cc_compute_all()
166 return compute_all_blsib(dst, src1); in helper_cc_compute_all()
168 return compute_all_blsiw(dst, src1); in helper_cc_compute_all()
170 return compute_all_blsil(dst, src1); in helper_cc_compute_all()
173 return compute_all_adcx(dst, src1, src2); in helper_cc_compute_all()
175 return compute_all_adox(dst, src1, src2); in helper_cc_compute_all()
177 return compute_all_adcox(dst, src1, src2); in helper_cc_compute_all()
181 return compute_all_mulq(dst, src1); in helper_cc_compute_all()
183 return compute_all_addq(dst, src1); in helper_cc_compute_all()
185 return compute_all_adcq(dst, src1, src2); in helper_cc_compute_all()
187 return compute_all_subq(dst, src1); in helper_cc_compute_all()
189 return compute_all_sbbq(dst, src1, src2); in helper_cc_compute_all()
191 return compute_all_logicq(dst, src1); in helper_cc_compute_all()
193 return compute_all_incq(dst, src1); in helper_cc_compute_all()
195 return compute_all_decq(dst, src1); in helper_cc_compute_all()
197 return compute_all_shlq(dst, src1); in helper_cc_compute_all()
199 return compute_all_sarq(dst, src1); in helper_cc_compute_all()
201 return compute_all_bmilgq(dst, src1); in helper_cc_compute_all()
203 return compute_all_blsiq(dst, src1); in helper_cc_compute_all()
213 target_ulong helper_cc_compute_c(target_ulong dst, target_ulong src1, in helper_cc_compute_c() argument
231 return src1 & 1; in helper_cc_compute_c()
241 return src1; in helper_cc_compute_c()
247 return src1 != 0; in helper_cc_compute_c()
254 return compute_c_addb(dst, src1); in helper_cc_compute_c()
256 return compute_c_addw(dst, src1); in helper_cc_compute_c()
258 return compute_c_addl(dst, src1); in helper_cc_compute_c()
261 return compute_c_adcb(dst, src1, src2); in helper_cc_compute_c()
263 return compute_c_adcw(dst, src1, src2); in helper_cc_compute_c()
265 return compute_c_adcl(dst, src1, src2); in helper_cc_compute_c()
268 return compute_c_subb(dst, src1); in helper_cc_compute_c()
270 return compute_c_subw(dst, src1); in helper_cc_compute_c()
272 return compute_c_subl(dst, src1); in helper_cc_compute_c()
275 return compute_c_sbbb(dst, src1, src2); in helper_cc_compute_c()
277 return compute_c_sbbw(dst, src1, src2); in helper_cc_compute_c()
279 return compute_c_sbbl(dst, src1, src2); in helper_cc_compute_c()
282 return compute_c_shlb(dst, src1); in helper_cc_compute_c()
284 return compute_c_shlw(dst, src1); in helper_cc_compute_c()
286 return compute_c_shll(dst, src1); in helper_cc_compute_c()
289 return compute_c_bmilgb(dst, src1); in helper_cc_compute_c()
291 return compute_c_bmilgw(dst, src1); in helper_cc_compute_c()
293 return compute_c_bmilgl(dst, src1); in helper_cc_compute_c()
296 return compute_c_blsib(dst, src1); in helper_cc_compute_c()
298 return compute_c_blsiw(dst, src1); in helper_cc_compute_c()
300 return compute_c_blsil(dst, src1); in helper_cc_compute_c()
304 return compute_c_addq(dst, src1); in helper_cc_compute_c()
306 return compute_c_adcq(dst, src1, src2); in helper_cc_compute_c()
308 return compute_c_subq(dst, src1); in helper_cc_compute_c()
310 return compute_c_sbbq(dst, src1, src2); in helper_cc_compute_c()
312 return compute_c_shlq(dst, src1); in helper_cc_compute_c()
314 return compute_c_bmilgq(dst, src1); in helper_cc_compute_c()
316 return compute_c_blsiq(dst, src1); in helper_cc_compute_c()