Lines Matching defs:call_info
186 struct call_info
198 struct call_info *ci_next;
541 /* Root of the call_info chain. */
542 static struct call_info *call_info_root;
544 /* The last call_info (for functions) structure
547 static struct call_info *last_call_info;
5952 attributes in CALL_INFO. This is not needed for SOM as using
5957 pa_build_unwind_subspace (struct call_info *call_info)
5971 if (call_info->start_symbol == NULL)
5978 name = concat ("L$\001start_", S_GET_NAME (call_info->start_symbol),
5993 symbol_get_frag (call_info->start_symbol),
5994 S_GET_VALUE (call_info->start_symbol));
6031 value as call_info->start_symbol + function size once the linker is
6035 call_info->end_symbol, 0,
6039 unwind = UNWIND_LOW32 (&call_info->ci_unwind.descriptor);
6042 unwind = UNWIND_HIGH32 (&call_info->ci_unwind.descriptor);
6907 struct call_info *call_info;
6921 /* Create another call_info structure. */
6922 call_info = XNEW (struct call_info);
6924 if (!call_info)
6927 memset (call_info, 0, sizeof (struct call_info));
6929 call_info->ci_next = NULL;
6933 call_info_root = call_info;
6934 last_call_info = call_info;
6938 last_call_info->ci_next = call_info;
6939 last_call_info = call_info;
6942 /* set up defaults on call_info structure */
6944 call_info->ci_unwind.descriptor.cannot_unwind = 0;
6945 call_info->ci_unwind.descriptor.region_desc = 1;
6946 call_info->ci_unwind.descriptor.hpux_interrupt_marker = 0;
8506 call_info structure list, determining st_size in by taking the
8512 struct call_info *call_info_pointer;