Searched refs:caller (Results 1 - 25 of 81) sorted by relevance

1234

/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-prof/
H A Dic-misattribution-1.c13 caller(void (*func) (void)) function
H A Dic-misattribution-1a.c5 extern void caller (void (*func) (void));
16 caller (callee);
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Davx-inline.c12 inline int caller () function
19 return caller ();
H A Dpr57756.c4 /* callee cannot be inlined into caller because it has a higher target ISA. */
12 static __inline int caller () function
19 return caller();
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/ipa/
H A Dipa-icf-4.c17 void caller(int x) function
24 caller(foo(argc));
25 caller(bar(argc));
H A Dipa-sra-5.c13 int *caller (void) function
H A Dipa-sra-3.c21 void caller (void) function
H A Dipa-sra-4.c51 void caller (void) function
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr46934.c1 int caller (unsigned int reg_type) function
H A Dlimits-fnargs.c20 void caller(void) function
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/lookup/
H A Dtemplate1.C17 int caller() { return foo(); } // This must be ::foo, not B::foo. function in class:C
22 return c.caller(); // Returns 1 if we got the wrong one.
/haiku-buildtools/binutils/gas/testsuite/gas/arm/
H A Dbl-local-2.s14 .global caller
15 .type caller, %function
16 caller: label
/haiku-buildtools/gcc/gcc/
H A Dipa-inline.c176 struct cgraph_node *to = e->caller;
183 /* Look for function e->caller is inlined to. While doing
199 to = to->callers->caller;
228 on every invocation of the caller (i.e. its call statement dominates
260 xstrdup_for_dump (e->caller->name ()), e->caller->order,
265 && e->caller->lto_file_data
269 e->caller->lto_file_data->file_name,
274 (dump_file, 2, target_opts_for_fn (e->caller->decl),
278 (dump_file, 2, opts_for_fn (e->caller
286 sanitize_attrs_match_for_inline_p(const_tree caller, const_tree callee) argument
347 cgraph_node *caller = e->caller->global.inlined_to local
679 cgraph_node *caller = (edge->caller->global.inlined_to local
701 cgraph_node *caller = (edge->caller->global.inlined_to local
1051 cgraph_node *caller = (edge->caller->global.inlined_to local
2207 struct cgraph_node *caller = node->callers->caller; local
[all...]
H A Dcgraph.c688 /* Add call graph edge E to call site hash of its caller. */
694 *e->caller->call_site_hash->find_slot_with_hash
698 /* Add call graph edge E to call site hash of its caller. */
707 cgraph_edge **slot = e->caller->call_site_hash->find_slot_with_hash
790 if (caller->call_site_hash
793 caller->call_site_hash->remove_elt_with_hash
811 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
814 if (e->caller->call_site_hash)
823 symbol_table::create_edge (cgraph_node *caller, cgraph_node *callee, argument
838 !(e = caller
[all...]
H A Dipa-profile.c346 if (edge->caller != d->function_symbol)
348 d->only_called_at_startup &= edge->caller->only_called_at_startup;
352 if (MAIN_NAME_P (DECL_NAME (edge->caller->decl)))
354 d->only_called_at_exit &= edge->caller->only_called_at_exit;
367 && (edge->caller->frequency != NODE_FREQUENCY_UNLIKELY_EXECUTED
368 || (edge->caller->global.inlined_to
369 && edge->caller->global.inlined_to->frequency
374 switch (edge->caller->frequency)
381 edge->caller->name ());
394 edge->caller
[all...]
H A Dipa-prop.c362 fprintf (f, " Jump functions of caller %s/%i:\n", node->name (),
1650 struct ipa_node_params *info = IPA_NODE_REF (cs->caller);
1664 if (ipa_func_spec_opts_forbid_analysis_p (cs->caller))
1675 struct ipa_polymorphic_call_context context (cs->caller->decl,
1858 call to a parameter number PARAM_INDEX. NODE is the caller. Return the
1874 /* Analyze the CALL and examine uses of formal parameters of the caller NODE
2067 object referenced in the expression is a formal parameter of the caller
2125 of the caller (described by INFO). PARMS_AINFO is a pointer to a vector
2171 in INFO) of caller given by FBI->NODE. Currently it only checks whether
2371 graph edge CS is being inlined, assuming that E->caller i
[all...]
/haiku-buildtools/gcc/gcc/config/avr/
H A Davr-log.c68 F: caller (via __FUNCTION__)
70 ?: Print caller, current function and pass info
94 avr_vdump (FILE *stream, const char *caller, ...) argument
101 va_start (ap, caller);
103 avr_log_vadump (stream, caller, ap);
114 avr_log_vadump (FILE *file, const char *caller, va_list ap) argument
222 fputs (caller, file);
246 avr_vdump (file, caller, "%F[%f:%P]");
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dparameter_array_ref_2.f908 caller)
/haiku-buildtools/gcc/libgcc/config/i386/
H A Dmorestack.S52 # The __morestack routine has to arrange for the caller to return to a
54 # old stack pointer and returning to the caller's caller. This calls
61 # address prediction works out. The compiler arranges for the caller
67 # After we allocate more stack, we call L, which is in our caller.
71 # the call to __generic_morestack. That then returns to the caller of
72 # the original caller.
121 # %esp + 16: return address of morestack caller's caller
128 # do anything when our caller return
[all...]
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/fixedbugs/
H A Dbug347.go35 print("BUG: bug347: cannot find caller\n")
H A Dbug348.go30 print("BUG: bug348: cannot find caller\n")
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/
H A Dfunc5.go11 func caller(f func(int, int) int, a, b int, c chan int) { func
17 go caller(f, a, b, c)
/haiku-buildtools/gcc/libsanitizer/sanitizer_common/
H A Dsanitizer_coverage_libcdep.cc65 void IndirCall(uptr caller, uptr callee, uptr callee_cache[],
204 // Registers a pair caller=>callee.
205 // When a given caller is seen for the first time, the callee_cache is added
206 // to the global array cc_array, callee_cache[0] is set to caller and
211 void CoverageData::IndirCall(uptr caller, uptr callee, uptr callee_cache[], argument
217 if (atomic_compare_exchange_strong(&atomic_callee_cache[0], &zero, caller,
225 CHECK_EQ(atomic_load(&atomic_callee_cache[0], memory_order_relaxed), caller); local
318 // This function dumps the caller=>callee pairs into a file as a sequence of
331 uptr caller = cc_cache[0]; local
335 sym->GetModuleNameAndOffsetForPC(caller,
[all...]
/haiku-buildtools/binutils/ld/testsuite/ld-m68hc11/
H A Dfar-hc12.s73 movb 0,sp, 2,sp ; Copy page register below the caller's return
/haiku-buildtools/legacy/binutils/ld/testsuite/ld-m68hc11/
H A Dfar-hc12.s73 movb 0,sp, 2,sp ; Copy page register below the caller's return

Completed in 295 milliseconds

1234