Lines Matching refs:func

232 	int (*func)(void *, void *, void *, void *);  in do_mathemu()  local
240 case LFS: func = lfs; type = D; break; in do_mathemu()
241 case LFSU: func = lfs; type = DU; break; in do_mathemu()
242 case LFD: func = lfd; type = D; break; in do_mathemu()
243 case LFDU: func = lfd; type = DU; break; in do_mathemu()
244 case STFS: func = stfs; type = D; break; in do_mathemu()
245 case STFSU: func = stfs; type = DU; break; in do_mathemu()
246 case STFD: func = stfd; type = D; break; in do_mathemu()
247 case STFDU: func = stfd; type = DU; break; in do_mathemu()
251 case LFSX: func = lfs; type = XE; break; in do_mathemu()
252 case LFSUX: func = lfs; type = XEU; break; in do_mathemu()
253 case LFDX: func = lfd; type = XE; break; in do_mathemu()
254 case LFDUX: func = lfd; type = XEU; break; in do_mathemu()
255 case STFSX: func = stfs; type = XE; break; in do_mathemu()
256 case STFSUX: func = stfs; type = XEU; break; in do_mathemu()
257 case STFDX: func = stfd; type = XE; break; in do_mathemu()
258 case STFDUX: func = stfd; type = XEU; break; in do_mathemu()
259 case STFIWX: func = stfiwx; type = XE; break; in do_mathemu()
267 case FDIVS: func = fdivs; type = AB; break; in do_mathemu()
268 case FSUBS: func = fsubs; type = AB; break; in do_mathemu()
269 case FADDS: func = fadds; type = AB; break; in do_mathemu()
270 case FSQRTS: func = fsqrts; type = XB; break; in do_mathemu()
271 case FRES: func = fres; type = XB; break; in do_mathemu()
272 case FMULS: func = fmuls; type = AC; break; in do_mathemu()
273 case FRSQRTES: func = frsqrtes;type = XB; break; in do_mathemu()
274 case FMSUBS: func = fmsubs; type = ABC; break; in do_mathemu()
275 case FMADDS: func = fmadds; type = ABC; break; in do_mathemu()
276 case FNMSUBS: func = fnmsubs; type = ABC; break; in do_mathemu()
277 case FNMADDS: func = fnmadds; type = ABC; break; in do_mathemu()
286 case FDIV: func = fdiv; type = AB; break; in do_mathemu()
287 case FSUB: func = fsub; type = AB; break; in do_mathemu()
288 case FADD: func = fadd; type = AB; break; in do_mathemu()
289 case FSQRT: func = fsqrt; type = XB; break; in do_mathemu()
290 case FRE: func = fre; type = XB; break; in do_mathemu()
291 case FSEL: func = fsel; type = ABC; break; in do_mathemu()
292 case FMUL: func = fmul; type = AC; break; in do_mathemu()
293 case FRSQRTE: func = frsqrte; type = XB; break; in do_mathemu()
294 case FMSUB: func = fmsub; type = ABC; break; in do_mathemu()
295 case FMADD: func = fmadd; type = ABC; break; in do_mathemu()
296 case FNMSUB: func = fnmsub; type = ABC; break; in do_mathemu()
297 case FNMADD: func = fnmadd; type = ABC; break; in do_mathemu()
305 case FCMPU: func = fcmpu; type = XCR; break; in do_mathemu()
306 case FRSP: func = frsp; type = XB; break; in do_mathemu()
307 case FCTIW: func = fctiw; type = XB; break; in do_mathemu()
308 case FCTIWZ: func = fctiwz; type = XB; break; in do_mathemu()
309 case FCMPO: func = fcmpo; type = XCR; break; in do_mathemu()
310 case MTFSB1: func = mtfsb1; type = XCRB; break; in do_mathemu()
311 case FNEG: func = fneg; type = XB; break; in do_mathemu()
312 case MCRFS: func = mcrfs; type = XCRL; break; in do_mathemu()
313 case MTFSB0: func = mtfsb0; type = XCRB; break; in do_mathemu()
314 case FMR: func = fmr; type = XB; break; in do_mathemu()
315 case MTFSFI: func = mtfsfi; type = XCRI; break; in do_mathemu()
316 case FNABS: func = fnabs; type = XB; break; in do_mathemu()
317 case FABS: func = fabs; type = XB; break; in do_mathemu()
318 case MFFS: func = mffs; type = X; break; in do_mathemu()
319 case MTFSF: func = mtfsf; type = XFLB; break; in do_mathemu()
434 eflag = func(op0, op1, op2, op3); in do_mathemu()