Home | History | Annotate | Download | only in config

Lines Matching defs:cur_proc_ptr

19737 static procS *cur_proc_ptr;
19939 if (!cur_proc_ptr)
19949 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
19960 if (p && cur_proc_ptr)
19971 cur_proc_ptr->func_end_sym = exp->X_add_symbol;
19997 md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
19998 md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
19999 md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
20000 md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
20001 md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
20002 md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
20003 md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
20008 cur_proc_ptr = NULL;
20029 if (!aent && cur_proc_ptr)
20038 cur_proc_ptr = &cur_proc;
20039 memset (cur_proc_ptr, '\0', sizeof (procS));
20041 cur_proc_ptr->func_sym = symbolP;
20070 if (cur_proc_ptr == NULL)
20077 cur_proc_ptr->frame_reg = tc_get_register (1);
20089 cur_proc_ptr->frame_offset = val;
20090 cur_proc_ptr->pc_reg = tc_get_register (0);
20111 if (cur_proc_ptr == NULL)
20130 cur_proc_ptr->fpreg_mask = mask;
20131 cur_proc_ptr->fpreg_offset = off;
20135 cur_proc_ptr->reg_mask = mask;
20136 cur_proc_ptr->reg_offset = off;
20745 if (cur_proc_ptr)