• 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
348 CLG_(stat).distinct_fns++; in new_fn_node()
349 fn->number = CLG_(stat).distinct_fns; in new_fn_node()
360 fn->pop_on_jump = CLG_(clo).pop_on_jump; in new_fn_node()
366 fn->separate_callers = CLG_(clo).separate_callers; in new_fn_node()
367 fn->separate_recursions = CLG_(clo).separate_recursions; in new_fn_node()
373 if (CLG_(stat).distinct_fns >= current_fn_active.size) in new_fn_node()
418 obj_node *obj = CLG_(get_obj_node)(di); in get_fn_node_inseg()
419 file_node *file = CLG_(get_file_node)(obj, dirname, filename); in get_fn_node_inseg()
426 Bool CLG_(get_debug_info)(Addr instr_addr, in CLG_() function
450 CLG_(stat).no_debug_BBs++; in CLG_()
457 CLG_(stat).full_debug_BBs++; in CLG_()
461 CLG_(stat).file_line_debug_BBs++; in CLG_()
466 CLG_(stat).fn_name_debug_BBs++; in CLG_()
488 fn_node* CLG_(get_fn_node)(BB* bb) in CLG_() function
503 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_()
614 UInt* CLG_(get_fn_entry)(Int n) in CLG_() function
620 void CLG_(init_fn_array)(fn_array* a) in CLG_() function
627 if (a->size <= CLG_(stat).distinct_fns) in CLG_()
628 a->size = CLG_(stat).distinct_fns+1; in CLG_()
636 void CLG_(copy_current_fn_array)(fn_array* dst) in CLG_() function
644 fn_array* CLG_(get_current_fn_array)() in CLG_() function
649 void CLG_(set_current_fn_array)(fn_array* a) in CLG_() function
655 if (current_fn_active.size <= CLG_(stat).distinct_fns) in CLG_()
669 while (newsize <= CLG_(stat).distinct_fns) newsize *=2; in resize_fn_array()
683 CLG_(stat).fn_array_resizes++; in resize_fn_array()