Lines Matching defs:insn_gen_fn

277 struct insn_gen_fn  struct
279 typedef rtx_insn * (*f0) (void);
280 typedef rtx_insn * (*f1) (rtx);
281 typedef rtx_insn * (*f2) (rtx, rtx);
282 typedef rtx_insn * (*f3) (rtx, rtx, rtx);
283 typedef rtx_insn * (*f4) (rtx, rtx, rtx, rtx);
284 typedef rtx_insn * (*f5) (rtx, rtx, rtx, rtx, rtx);
285 typedef rtx_insn * (*f6) (rtx, rtx, rtx, rtx, rtx, rtx);
286 typedef rtx_insn * (*f7) (rtx, rtx, rtx, rtx, rtx, rtx, rtx);
287 typedef rtx_insn * (*f8) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
288 typedef rtx_insn * (*f9) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
289 typedef rtx_insn * (*f10) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
290 typedef rtx_insn * (*f11) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
291 typedef rtx_insn * (*f12) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
292 typedef rtx_insn * (*f13) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
293 typedef rtx_insn * (*f14) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
294 …edef rtx_insn * (*f15) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
295 …rtx_insn * (*f16) (rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx, rtx);
297 typedef void (*stored_funcptr) (void);
299 rtx_insn * operator () (void) const { return ((f0)func) (); } in operator()
300 rtx_insn * operator () (rtx a0) const { return ((f1)func) (a0); } in operator()
301 rtx_insn * operator () (rtx a0, rtx a1) const { return ((f2)func) (a0, a1); } in operator()
302 rtx_insn * operator () (rtx a0, rtx a1, rtx a2) const { return ((f3)func) (a0, a1, a2); } in operator()
303 …x_insn * operator () (rtx a0, rtx a1, rtx a2, rtx a3) const { return ((f4)func) (a0, a1, a2, a3); } in operator()
304 …rator () (rtx a0, rtx a1, rtx a2, rtx a3, rtx a4) const { return ((f5)func) (a0, a1, a2, a3, a4); } in operator()
305 …x a0, rtx a1, rtx a2, rtx a3, rtx a4, rtx a5) const { return ((f6)func) (a0, a1, a2, a3, a4, a5); } in operator()
306 …, rtx a2, rtx a3, rtx a4, rtx a5, rtx a6) const { return ((f7)func) (a0, a1, a2, a3, a4, a5, a6); } in operator()
319 insn_gen_fn operator * (void) const { return *this; } argument
325 stored_funcptr func;