• Home
  • Raw
  • Download

Lines Matching refs:CLG_

208 void CLG_(init_obj_table)()  in CLG_()  function
241 CLG_(stat).distinct_objs ++; in new_obj_node()
242 obj->number = CLG_(stat).distinct_objs; in new_obj_node()
264 obj_node* CLG_(get_obj_node)(DebugInfo* di) in CLG_() function
299 CLG_(stat).distinct_files++; in new_file_node()
300 file->number = CLG_(stat).distinct_files; in new_file_node()
307 file_node* CLG_(get_file_node)(obj_node* curr_obj_node, in CLG_() function
340 CLG_(stat).distinct_fns++; in new_fn_node()
341 fn->number = CLG_(stat).distinct_fns; in new_fn_node()
352 fn->pop_on_jump = CLG_(clo).pop_on_jump; in new_fn_node()
358 fn->separate_callers = CLG_(clo).separate_callers; in new_fn_node()
359 fn->separate_recursions = CLG_(clo).separate_recursions; in new_fn_node()
365 if (CLG_(stat).distinct_fns >= current_fn_active.size) in new_fn_node()
409 obj_node *obj = CLG_(get_obj_node)(di); in get_fn_node_inseg()
410 file_node *file = CLG_(get_file_node)(obj, filename); in get_fn_node_inseg()
417 Bool CLG_(get_debug_info)(Addr instr_addr, in CLG_() function
451 CLG_(stat).no_debug_BBs++; in CLG_()
458 CLG_(stat).full_debug_BBs++; in CLG_()
462 CLG_(stat).file_line_debug_BBs++; in CLG_()
467 CLG_(stat).fn_name_debug_BBs++; in CLG_()
489 fn_node* CLG_(get_fn_node)(BB* bb) in CLG_() function
504 CLG_(get_debug_info)(bb_addr(bb), in CLG_()
534 CLG_(get_debug_info)(bb_addr(exit_bb), in CLG_()
563 fn->pure_cxt = CLG_(get_cxt)(pure+1); in CLG_()
566 fn->skip = CLG_(clo).skip_plt; in CLG_()
584 CLG_(update_fn_config)(fn); in CLG_()
610 UInt* CLG_(get_fn_entry)(Int n) in CLG_() function
616 void CLG_(init_fn_array)(fn_array* a) in CLG_() function
623 if (a->size <= CLG_(stat).distinct_fns) in CLG_()
624 a->size = CLG_(stat).distinct_fns+1; in CLG_()
632 void CLG_(copy_current_fn_array)(fn_array* dst) in CLG_() function
640 fn_array* CLG_(get_current_fn_array)() in CLG_() function
645 void CLG_(set_current_fn_array)(fn_array* a) in CLG_() function
651 if (current_fn_active.size <= CLG_(stat).distinct_fns) in CLG_()
665 while (newsize <= CLG_(stat).distinct_fns) newsize *=2; in resize_fn_array()
679 CLG_(stat).fn_array_resizes++; in resize_fn_array()