HomeSort by: relevance | last modified time | path
    Searched refs:cumulative_args_t (Results 1 - 25 of 124) sorted by relevancy

1 2 3 4 5

  /src/external/gpl3/gcc/dist/gcc/
targhooks.h 44 extern void default_setup_incoming_varargs (cumulative_args_t,
48 extern bool default_pretend_outgoing_varargs_named (cumulative_args_t);
72 (cumulative_args_t, const function_arg_info &);
74 (cumulative_args_t ca, const function_arg_info &);
138 extern bool hook_bool_CUMULATIVE_ARGS_false (cumulative_args_t);
139 extern bool hook_bool_CUMULATIVE_ARGS_true (cumulative_args_t);
142 (cumulative_args_t, const function_arg_info &);
144 (cumulative_args_t, const function_arg_info &);
146 (cumulative_args_t, const function_arg_info &);
147 extern void hook_void_CUMULATIVE_ARGS (cumulative_args_t);
    [all...]
target.h 57 struct cumulative_args_t { void *magic; void *p; }; struct
62 __attribute__((transparent_union)) to get cumulative_args_t function
67 union cumulative_args_t { void *p; }; union
322 get_cumulative_args (cumulative_args_t arg)
330 inline cumulative_args_t
333 cumulative_args_t ret;
targhooks.cc 215 default_setup_incoming_varargs (cumulative_args_t,
231 hook_bool_CUMULATIVE_ARGS_false (cumulative_args_t ca ATTRIBUTE_UNUSED)
237 default_pretend_outgoing_varargs_named (cumulative_args_t ca ATTRIBUTE_UNUSED)
294 hook_bool_CUMULATIVE_ARGS_true (cumulative_args_t a ATTRIBUTE_UNUSED)
350 hook_pass_by_reference_must_pass_in_stack (cumulative_args_t,
360 hook_callee_copies_named (cumulative_args_t, const function_arg_info &arg)
777 hook_bool_CUMULATIVE_ARGS_arg_info_false (cumulative_args_t,
784 hook_bool_CUMULATIVE_ARGS_arg_info_true (cumulative_args_t,
791 hook_int_CUMULATIVE_ARGS_arg_info_0 (cumulative_args_t,
798 hook_void_CUMULATIVE_ARGS (cumulative_args_t)
    [all...]
target.def 4792 (cumulative_args_t cum, const function_arg_info &arg),
4841 void, (cumulative_args_t args_so_far, const function_arg_info &arg,
4870 void, (cumulative_args_t complete_args),
4891 void, (cumulative_args_t complete_args, rtx loc, tree type),
4904 void, (cumulative_args_t complete_args),
4935 bool, (cumulative_args_t ca),
4949 bool, (cumulative_args_t ca),
4997 (cumulative_args_t cum, const function_arg_info &arg),
5021 int, (cumulative_args_t cum, const function_arg_info &arg),
5038 (cumulative_args_t ca, const function_arg_info &arg)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
target.h 57 struct cumulative_args_t { void *magic; void *p; }; struct
62 __attribute__((transparent_union)) to get cumulative_args_t function
67 union cumulative_args_t { void *p; }; union
298 get_cumulative_args (cumulative_args_t arg)
306 static inline cumulative_args_t
309 cumulative_args_t ret;
targhooks.h 44 extern void default_setup_incoming_varargs (cumulative_args_t,
48 extern bool default_pretend_outgoing_varargs_named (cumulative_args_t);
69 (cumulative_args_t, const function_arg_info &);
71 (cumulative_args_t ca, const function_arg_info &);
133 extern bool hook_bool_CUMULATIVE_ARGS_false (cumulative_args_t);
134 extern bool hook_bool_CUMULATIVE_ARGS_true (cumulative_args_t);
137 (cumulative_args_t, const function_arg_info &);
139 (cumulative_args_t, const function_arg_info &);
141 (cumulative_args_t, const function_arg_info &);
143 (cumulative_args_t, tree)
    [all...]
targhooks.cc 212 default_setup_incoming_varargs (cumulative_args_t,
228 hook_bool_CUMULATIVE_ARGS_false (cumulative_args_t ca ATTRIBUTE_UNUSED)
234 default_pretend_outgoing_varargs_named (cumulative_args_t ca ATTRIBUTE_UNUSED)
291 hook_bool_CUMULATIVE_ARGS_true (cumulative_args_t a ATTRIBUTE_UNUSED)
339 hook_pass_by_reference_must_pass_in_stack (cumulative_args_t,
349 hook_callee_copies_named (cumulative_args_t, const function_arg_info &arg)
761 hook_bool_CUMULATIVE_ARGS_arg_info_false (cumulative_args_t,
768 hook_bool_CUMULATIVE_ARGS_arg_info_true (cumulative_args_t,
775 hook_int_CUMULATIVE_ARGS_arg_info_0 (cumulative_args_t,
782 hook_void_CUMULATIVE_ARGS_tree (cumulative_args_t ca ATTRIBUTE_UNUSED
    [all...]
target.def 4663 (cumulative_args_t cum, const function_arg_info &arg),
4710 void, (cumulative_args_t args_so_far, const function_arg_info &arg,
4769 bool, (cumulative_args_t ca),
4783 bool, (cumulative_args_t ca),
4831 (cumulative_args_t cum, const function_arg_info &arg),
4855 int, (cumulative_args_t cum, const function_arg_info &arg),
4872 (cumulative_args_t ca, const function_arg_info &arg),
4951 rtx, (cumulative_args_t ca, const function_arg_info &arg),
4973 rtx, (cumulative_args_t ca, const function_arg_info &arg),
5343 void, (cumulative_args_t ca, tree type)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000-internal.h 155 extern bool rs6000_pass_by_reference (cumulative_args_t,
157 extern void setup_incoming_varargs (cumulative_args_t,
162 extern int rs6000_arg_partial_bytes (cumulative_args_t,
164 extern void rs6000_function_arg_advance (cumulative_args_t,
168 extern rtx rs6000_function_arg (cumulative_args_t, const function_arg_info &);
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000-internal.h 156 extern bool rs6000_pass_by_reference (cumulative_args_t,
158 extern void setup_incoming_varargs (cumulative_args_t,
163 extern int rs6000_arg_partial_bytes (cumulative_args_t,
165 extern void rs6000_function_arg_advance (cumulative_args_t,
169 extern rtx rs6000_function_arg (cumulative_args_t, const function_arg_info &);
  /src/external/gpl3/gcc/dist/gcc/config/fr30/
fr30.cc 116 static void fr30_setup_incoming_varargs (cumulative_args_t,
120 static int fr30_arg_partial_bytes (cumulative_args_t,
122 static rtx fr30_function_arg (cumulative_args_t, const function_arg_info &);
123 static void fr30_function_arg_advance (cumulative_args_t,
467 fr30_setup_incoming_varargs (cumulative_args_t arg_regs_used_so_far_v,
774 fr30_arg_partial_bytes (cumulative_args_t cum_v, const function_arg_info &arg)
797 fr30_function_arg (cumulative_args_t cum_v, const function_arg_info &arg)
811 fr30_function_arg_advance (cumulative_args_t cum,
  /src/external/gpl3/gcc.old/dist/gcc/config/fr30/
fr30.cc 116 static void fr30_setup_incoming_varargs (cumulative_args_t,
120 static int fr30_arg_partial_bytes (cumulative_args_t,
122 static rtx fr30_function_arg (cumulative_args_t, const function_arg_info &);
123 static void fr30_function_arg_advance (cumulative_args_t,
467 fr30_setup_incoming_varargs (cumulative_args_t arg_regs_used_so_far_v,
771 fr30_arg_partial_bytes (cumulative_args_t cum_v, const function_arg_info &arg)
794 fr30_function_arg (cumulative_args_t cum_v, const function_arg_info &arg)
808 fr30_function_arg_advance (cumulative_args_t cum,
  /src/external/gpl3/gcc/dist/gcc/config/moxie/
moxie.cc 388 moxie_setup_incoming_varargs (cumulative_args_t cum_v,
427 moxie_function_arg (cumulative_args_t cum_v, const function_arg_info &arg)
442 moxie_function_arg_advance (cumulative_args_t cum_v,
456 moxie_pass_by_reference (cumulative_args_t, const function_arg_info &arg)
469 moxie_arg_partial_bytes (cumulative_args_t cum_v, const function_arg_info &arg)
  /src/external/gpl3/gcc.old/dist/gcc/config/moxie/
moxie.cc 388 moxie_setup_incoming_varargs (cumulative_args_t cum_v,
427 moxie_function_arg (cumulative_args_t cum_v, const function_arg_info &arg)
442 moxie_function_arg_advance (cumulative_args_t cum_v,
456 moxie_pass_by_reference (cumulative_args_t, const function_arg_info &arg)
469 moxie_arg_partial_bytes (cumulative_args_t cum_v, const function_arg_info &arg)
  /src/external/gpl3/gcc/dist/gcc/config/ft32/
ft32.cc 632 ft32_setup_incoming_varargs (cumulative_args_t cum_v,
663 ft32_function_arg (cumulative_args_t cum_v, const function_arg_info &arg)
678 ft32_function_arg_advance (cumulative_args_t cum_v,
692 ft32_pass_by_reference (cumulative_args_t, const function_arg_info &arg)
705 ft32_arg_partial_bytes (cumulative_args_t cum_v, const function_arg_info &arg)
  /src/external/gpl3/gcc.old/dist/gcc/config/ft32/
ft32.cc 632 ft32_setup_incoming_varargs (cumulative_args_t cum_v,
660 ft32_function_arg (cumulative_args_t cum_v, const function_arg_info &arg)
675 ft32_function_arg_advance (cumulative_args_t cum_v,
689 ft32_pass_by_reference (cumulative_args_t, const function_arg_info &arg)
702 ft32_arg_partial_bytes (cumulative_args_t cum_v, const function_arg_info &arg)
  /src/external/gpl3/gcc/dist/gcc/config/mmix/
mmix.cc 142 (cumulative_args_t, const function_arg_info &, int *, int);
153 static void mmix_function_arg_advance (cumulative_args_t,
155 static rtx mmix_function_incoming_arg (cumulative_args_t,
157 static rtx mmix_function_arg (cumulative_args_t, const function_arg_info &);
161 static bool mmix_pass_by_reference (cumulative_args_t,
646 mmix_function_arg_advance (cumulative_args_t argsp_v,
663 mmix_function_arg_1 (const cumulative_args_t argsp_v,
701 mmix_function_arg (cumulative_args_t argsp, const function_arg_info &arg)
707 mmix_function_incoming_arg (cumulative_args_t argsp,
717 mmix_pass_by_reference (cumulative_args_t argsp_v
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/mmix/
mmix.cc 141 (cumulative_args_t, const function_arg_info &, int *, int);
152 static void mmix_function_arg_advance (cumulative_args_t,
154 static rtx mmix_function_incoming_arg (cumulative_args_t,
156 static rtx mmix_function_arg (cumulative_args_t, const function_arg_info &);
160 static bool mmix_pass_by_reference (cumulative_args_t,
648 mmix_function_arg_advance (cumulative_args_t argsp_v,
665 mmix_function_arg_1 (const cumulative_args_t argsp_v,
703 mmix_function_arg (cumulative_args_t argsp, const function_arg_info &arg)
709 mmix_function_incoming_arg (cumulative_args_t argsp,
719 mmix_pass_by_reference (cumulative_args_t argsp_v
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/lm32/
lm32.cc 66 static void lm32_setup_incoming_varargs (cumulative_args_t cum,
76 static rtx lm32_function_arg (cumulative_args_t, const function_arg_info &);
77 static void lm32_function_arg_advance (cumulative_args_t cum,
624 lm32_function_arg (cumulative_args_t cum_v, const function_arg_info &arg)
643 lm32_function_arg_advance (cumulative_args_t cum,
679 lm32_setup_incoming_varargs (cumulative_args_t cum_v,
  /src/external/gpl3/gcc.old/dist/gcc/config/lm32/
lm32.cc 66 static void lm32_setup_incoming_varargs (cumulative_args_t cum,
76 static rtx lm32_function_arg (cumulative_args_t, const function_arg_info &);
77 static void lm32_function_arg_advance (cumulative_args_t cum,
624 lm32_function_arg (cumulative_args_t cum_v, const function_arg_info &arg)
643 lm32_function_arg_advance (cumulative_args_t cum,
679 lm32_setup_incoming_varargs (cumulative_args_t cum_v,
  /src/external/gpl3/gcc/dist/gcc/config/cris/
cris.cc 110 static void cris_setup_incoming_varargs (cumulative_args_t,
144 static bool cris_pass_by_reference (cumulative_args_t,
146 static int cris_arg_partial_bytes (cumulative_args_t,
148 static rtx cris_function_arg (cumulative_args_t, const function_arg_info &);
149 static rtx cris_function_incoming_arg (cumulative_args_t,
151 static void cris_function_arg_advance (cumulative_args_t,
3517 cris_setup_incoming_varargs (cumulative_args_t ca_v,
3541 cris_pass_by_reference (cumulative_args_t, const function_arg_info &arg)
3605 cris_arg_partial_bytes (cumulative_args_t ca, const function_arg_info &arg)
3617 cris_function_arg_1 (cumulative_args_t ca_v, const function_arg_info &arg
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/cris/
cris.cc 110 static void cris_setup_incoming_varargs (cumulative_args_t,
143 static bool cris_pass_by_reference (cumulative_args_t,
145 static int cris_arg_partial_bytes (cumulative_args_t,
147 static rtx cris_function_arg (cumulative_args_t, const function_arg_info &);
148 static rtx cris_function_incoming_arg (cumulative_args_t,
150 static void cris_function_arg_advance (cumulative_args_t,
3360 cris_setup_incoming_varargs (cumulative_args_t ca_v,
3384 cris_pass_by_reference (cumulative_args_t, const function_arg_info &arg)
3448 cris_arg_partial_bytes (cumulative_args_t ca, const function_arg_info &arg)
3460 cris_function_arg_1 (cumulative_args_t ca_v, const function_arg_info &arg
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/iq2000/
iq2000.cc 156 static void iq2000_setup_incoming_varargs (cumulative_args_t,
163 static bool iq2000_pass_by_reference (cumulative_args_t,
165 static int iq2000_arg_partial_bytes (cumulative_args_t,
167 static rtx iq2000_function_arg (cumulative_args_t,
169 static void iq2000_function_arg_advance (cumulative_args_t,
1162 iq2000_function_arg_advance (cumulative_args_t cum_v,
1233 iq2000_function_arg (cumulative_args_t cum_v, const function_arg_info &arg)
1425 iq2000_arg_partial_bytes (cumulative_args_t cum_v,
1939 cumulative_args_t args_so_far;
2265 iq2000_pass_by_reference (cumulative_args_t cum_v
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/m32r/
m32r.cc 91 static void m32r_setup_incoming_varargs (cumulative_args_t,
97 static bool m32r_pass_by_reference (cumulative_args_t,
99 static int m32r_arg_partial_bytes (cumulative_args_t,
101 static rtx m32r_function_arg (cumulative_args_t, const function_arg_info &);
102 static void m32r_function_arg_advance (cumulative_args_t,
690 m32r_pass_by_reference (cumulative_args_t, const function_arg_info &arg)
1166 m32r_arg_partial_bytes (cumulative_args_t cum_v, const function_arg_info &arg)
1217 m32r_function_arg (cumulative_args_t cum_v, const function_arg_info &arg)
1230 m32r_function_arg_advance (cumulative_args_t cum_v,
1244 cumulative_args_t dummy = pack_cumulative_args (NULL)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/iq2000/
iq2000.cc 156 static void iq2000_setup_incoming_varargs (cumulative_args_t,
163 static bool iq2000_pass_by_reference (cumulative_args_t,
165 static int iq2000_arg_partial_bytes (cumulative_args_t,
167 static rtx iq2000_function_arg (cumulative_args_t,
169 static void iq2000_function_arg_advance (cumulative_args_t,
1163 iq2000_function_arg_advance (cumulative_args_t cum_v,
1234 iq2000_function_arg (cumulative_args_t cum_v, const function_arg_info &arg)
1428 iq2000_arg_partial_bytes (cumulative_args_t cum_v,
1942 cumulative_args_t args_so_far;
2268 iq2000_pass_by_reference (cumulative_args_t cum_v
    [all...]

Completed in 41 milliseconds

1 2 3 4 5