Lines Matching defs:insn_gen_fn
293 struct insn_gen_fn struct
295 typedef rtx_insn * (*f0) (void);
296 typedef rtx_insn * (*f1) (rtx);
297 typedef rtx_insn * (*f2) (rtx, rtx);
298 typedef rtx_insn * (*f3) (rtx, rtx, rtx);
299 typedef rtx_insn * (*f4) (rtx, rtx, rtx, rtx);
300 typedef rtx_insn * (*f5) (rtx, rtx, rtx, rtx, rtx);
301 typedef rtx_insn * (*f6) (rtx, rtx, rtx, rtx, rtx, rtx);
302 typedef rtx_insn * (*f7) (rtx, rtx, rtx, rtx, rtx, rtx, rtx);
303 typedef rtx_insn * (*f8) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
304 typedef rtx_insn * (*f9) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
305 typedef rtx_insn * (*f10) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
306 typedef rtx_insn * (*f11) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
307 typedef rtx_insn * (*f12) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
308 typedef rtx_insn * (*f13) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
309 typedef rtx_insn * (*f14) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
310 …edef rtx_insn * (*f15) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
311 …rtx_insn * (*f16) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
313 typedef void (*stored_funcptr) (void);
315 rtx_insn * operator () (void) const { return ((f0)func) (); } in operator()
316 rtx_insn * operator () (rtx a0) const { return ((f1)func) (a0); } in operator()
317 rtx_insn * operator () (rtx a0, rtx a1) const { return ((f2)func) (a0, a1); } in operator()
318 rtx_insn * operator () (rtx a0, rtx a1, rtx a2) const { return ((f3)func) (a0, a1, a2); } in operator()
319 …x_insn * operator () (rtx a0, rtx a1, rtx a2, rtx a3) const { return ((f4)func) (a0, a1, a2, a3); } in operator()
320 …rator () (rtx a0, rtx a1, rtx a2, rtx a3, rtx a4) const { return ((f5)func) (a0, a1, a2, a3, a4); } in operator()
321 …x a0, rtx a1, rtx a2, rtx a3, rtx a4, rtx a5) const { return ((f6)func) (a0, a1, a2, a3, a4, a5); } in operator()
322 …, rtx a2, rtx a3, rtx a4, rtx a5, rtx a6) const { return ((f7)func) (a0, a1, a2, a3, a4, a5, a6); } in operator()
335 insn_gen_fn operator * (void) const { return *this; } argument
341 stored_funcptr func;