Lines Matching refs:dst
80 static target_ulong compute_all_adcx(target_ulong dst, target_ulong src1, in compute_all_adcx() argument
83 return (src1 & ~CC_C) | (dst * CC_C); in compute_all_adcx()
86 static target_ulong compute_all_adox(target_ulong dst, target_ulong src1, in compute_all_adox() argument
92 static target_ulong compute_all_adcox(target_ulong dst, target_ulong src1, in compute_all_adcox() argument
95 return (src1 & ~(CC_C | CC_O)) | (dst * CC_C) | (src2 * CC_O); in compute_all_adcox()
98 target_ulong helper_cc_compute_all(target_ulong dst, target_ulong src1, in helper_cc_compute_all() argument
110 return dst ? 0 : CC_Z; in helper_cc_compute_all()
113 return compute_all_mulb(dst, src1); in helper_cc_compute_all()
115 return compute_all_mulw(dst, src1); in helper_cc_compute_all()
117 return compute_all_mull(dst, src1); in helper_cc_compute_all()
120 return compute_all_addb(dst, src1); in helper_cc_compute_all()
122 return compute_all_addw(dst, src1); in helper_cc_compute_all()
124 return compute_all_addl(dst, src1); in helper_cc_compute_all()
127 return compute_all_adcb(dst, src1, src2); in helper_cc_compute_all()
129 return compute_all_adcw(dst, src1, src2); in helper_cc_compute_all()
131 return compute_all_adcl(dst, src1, src2); in helper_cc_compute_all()
134 return compute_all_subb(dst, src1); in helper_cc_compute_all()
136 return compute_all_subw(dst, src1); in helper_cc_compute_all()
138 return compute_all_subl(dst, src1); in helper_cc_compute_all()
141 return compute_all_sbbb(dst, src1, src2); in helper_cc_compute_all()
143 return compute_all_sbbw(dst, src1, src2); in helper_cc_compute_all()
145 return compute_all_sbbl(dst, src1, src2); in helper_cc_compute_all()
148 return compute_all_logicb(dst, src1); in helper_cc_compute_all()
150 return compute_all_logicw(dst, src1); in helper_cc_compute_all()
152 return compute_all_logicl(dst, src1); in helper_cc_compute_all()
155 return compute_all_incb(dst, src1); in helper_cc_compute_all()
157 return compute_all_incw(dst, src1); in helper_cc_compute_all()
159 return compute_all_incl(dst, src1); in helper_cc_compute_all()
162 return compute_all_decb(dst, src1); in helper_cc_compute_all()
164 return compute_all_decw(dst, src1); in helper_cc_compute_all()
166 return compute_all_decl(dst, src1); in helper_cc_compute_all()
169 return compute_all_shlb(dst, src1); in helper_cc_compute_all()
171 return compute_all_shlw(dst, src1); in helper_cc_compute_all()
173 return compute_all_shll(dst, src1); in helper_cc_compute_all()
176 return compute_all_sarb(dst, src1); in helper_cc_compute_all()
178 return compute_all_sarw(dst, src1); in helper_cc_compute_all()
180 return compute_all_sarl(dst, src1); in helper_cc_compute_all()
183 return compute_all_bmilgb(dst, src1); in helper_cc_compute_all()
185 return compute_all_bmilgw(dst, src1); in helper_cc_compute_all()
187 return compute_all_bmilgl(dst, src1); in helper_cc_compute_all()
190 return compute_all_blsib(dst, src1); in helper_cc_compute_all()
192 return compute_all_blsiw(dst, src1); in helper_cc_compute_all()
194 return compute_all_blsil(dst, src1); in helper_cc_compute_all()
197 return compute_all_adcx(dst, src1, src2); in helper_cc_compute_all()
199 return compute_all_adox(dst, src1, src2); in helper_cc_compute_all()
201 return compute_all_adcox(dst, src1, src2); in helper_cc_compute_all()
205 return compute_all_mulq(dst, src1); in helper_cc_compute_all()
207 return compute_all_addq(dst, src1); in helper_cc_compute_all()
209 return compute_all_adcq(dst, src1, src2); in helper_cc_compute_all()
211 return compute_all_subq(dst, src1); in helper_cc_compute_all()
213 return compute_all_sbbq(dst, src1, src2); in helper_cc_compute_all()
215 return compute_all_logicq(dst, src1); in helper_cc_compute_all()
217 return compute_all_incq(dst, src1); in helper_cc_compute_all()
219 return compute_all_decq(dst, src1); in helper_cc_compute_all()
221 return compute_all_shlq(dst, src1); in helper_cc_compute_all()
223 return compute_all_sarq(dst, src1); in helper_cc_compute_all()
225 return compute_all_bmilgq(dst, src1); in helper_cc_compute_all()
227 return compute_all_blsiq(dst, src1); in helper_cc_compute_all()
237 target_ulong helper_cc_compute_c(target_ulong dst, target_ulong src1, in helper_cc_compute_c() argument
276 return dst; in helper_cc_compute_c()
279 return compute_c_addb(dst, src1); in helper_cc_compute_c()
281 return compute_c_addw(dst, src1); in helper_cc_compute_c()
283 return compute_c_addl(dst, src1); in helper_cc_compute_c()
286 return compute_c_adcb(dst, src1, src2); in helper_cc_compute_c()
288 return compute_c_adcw(dst, src1, src2); in helper_cc_compute_c()
290 return compute_c_adcl(dst, src1, src2); in helper_cc_compute_c()
293 return compute_c_subb(dst, src1); in helper_cc_compute_c()
295 return compute_c_subw(dst, src1); in helper_cc_compute_c()
297 return compute_c_subl(dst, src1); in helper_cc_compute_c()
300 return compute_c_sbbb(dst, src1, src2); in helper_cc_compute_c()
302 return compute_c_sbbw(dst, src1, src2); in helper_cc_compute_c()
304 return compute_c_sbbl(dst, src1, src2); in helper_cc_compute_c()
307 return compute_c_shlb(dst, src1); in helper_cc_compute_c()
309 return compute_c_shlw(dst, src1); in helper_cc_compute_c()
311 return compute_c_shll(dst, src1); in helper_cc_compute_c()
314 return compute_c_bmilgb(dst, src1); in helper_cc_compute_c()
316 return compute_c_bmilgw(dst, src1); in helper_cc_compute_c()
318 return compute_c_bmilgl(dst, src1); in helper_cc_compute_c()
321 return compute_c_blsib(dst, src1); in helper_cc_compute_c()
323 return compute_c_blsiw(dst, src1); in helper_cc_compute_c()
325 return compute_c_blsil(dst, src1); in helper_cc_compute_c()
329 return compute_c_addq(dst, src1); in helper_cc_compute_c()
331 return compute_c_adcq(dst, src1, src2); in helper_cc_compute_c()
333 return compute_c_subq(dst, src1); in helper_cc_compute_c()
335 return compute_c_sbbq(dst, src1, src2); in helper_cc_compute_c()
337 return compute_c_shlq(dst, src1); in helper_cc_compute_c()
339 return compute_c_bmilgq(dst, src1); in helper_cc_compute_c()
341 return compute_c_blsiq(dst, src1); in helper_cc_compute_c()