Home | History | Annotate | Download | only in config

Lines Matching defs:cur_proc_ptr

20049 static procS *cur_proc_ptr;
20251 if (!cur_proc_ptr)
20261 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
20272 if (p && cur_proc_ptr)
20283 cur_proc_ptr->func_end_sym = exp->X_add_symbol;
20309 md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
20310 md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
20311 md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
20312 md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
20313 md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
20314 md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
20315 md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
20320 cur_proc_ptr = NULL;
20341 if (!aent && cur_proc_ptr)
20350 cur_proc_ptr = &cur_proc;
20351 memset (cur_proc_ptr, '\0', sizeof (procS));
20353 cur_proc_ptr->func_sym = symbolP;
20382 if (cur_proc_ptr == NULL)
20389 cur_proc_ptr->frame_reg = tc_get_register (1);
20401 cur_proc_ptr->frame_offset = val;
20402 cur_proc_ptr->pc_reg = tc_get_register (0);
20423 if (cur_proc_ptr == NULL)
20442 cur_proc_ptr->fpreg_mask = mask;
20443 cur_proc_ptr->fpreg_offset = off;
20447 cur_proc_ptr->reg_mask = mask;
20448 cur_proc_ptr->reg_offset = off;
21057 if (cur_proc_ptr)