Home | History | Annotate | Download | only in config

Lines Matching full: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;
5988 attributes in CALL_INFO. This is not needed for SOM as using
5993 pa_build_unwind_subspace (struct call_info *call_info)
6007 if (call_info->start_symbol == NULL)
6015 + strlen (S_GET_NAME (call_info->start_symbol))
6018 strcat (name, S_GET_NAME (call_info->start_symbol));
6032 S_GET_VALUE (call_info->start_symbol), frag_now);
6072 value as call_info->start_symbol + function size once the linker is
6076 call_info->end_symbol, (offsetT) 0,
6081 unwind = UNWIND_LOW32 (&call_info->ci_unwind.descriptor);
6084 unwind = UNWIND_HIGH32 (&call_info->ci_unwind.descriptor);
6976 struct call_info *call_info;
6990 /* Create another call_info structure. */
6991 call_info = xmalloc (sizeof (struct call_info));
6993 if (!call_info)
6996 memset (call_info, 0, sizeof (struct call_info));
6998 call_info->ci_next = NULL;
7002 call_info_root = call_info;
7003 last_call_info = call_info;
7007 last_call_info->ci_next = call_info;
7008 last_call_info = call_info;
7011 /* set up defaults on call_info structure */
7013 call_info->ci_unwind.descriptor.cannot_unwind = 0;
7014 call_info->ci_unwind.descriptor.region_desc = 1;
7015 call_info->ci_unwind.descriptor.hpux_interrupt_marker = 0;
8596 call_info structure list, determining st_size in by taking the
8602 struct call_info *call_info_pointer;