Lines Matching refs:debug_information
36 static debug_info *debug_information = NULL; variable
1549 debug_information = cmalloc (num_units, in process_debug_info()
1550 sizeof (* debug_information)); in process_debug_info()
1551 if (debug_information == NULL) in process_debug_info()
1618 debug_information [unit].cu_offset = cu_offset; in process_debug_info()
1619 debug_information [unit].pointer_size in process_debug_info()
1621 debug_information [unit].base_address = 0; in process_debug_info()
1622 debug_information [unit].loc_offsets = NULL; in process_debug_info()
1623 debug_information [unit].have_frame_base = NULL; in process_debug_info()
1624 debug_information [unit].max_loc_offsets = 0; in process_debug_info()
1625 debug_information [unit].num_loc_offsets = 0; in process_debug_info()
1626 debug_information [unit].range_lists = NULL; in process_debug_info()
1627 debug_information [unit].max_range_lists= 0; in process_debug_info()
1628 debug_information [unit].num_range_lists = 0; in process_debug_info()
1722 &debug_information [unit], in process_debug_info()
2280 num = debug_information [i].num_loc_offsets; in display_debug_loc()
2289 last_offset = debug_information [i].loc_offsets [0]; in display_debug_loc()
2300 debug_information [i].loc_offsets [j]) in display_debug_loc()
2305 last_offset = debug_information [i].loc_offsets [j]; in display_debug_loc()
2318 if (debug_information [first].loc_offsets [0] != section->address) in display_debug_loc()
2320 section->name, debug_information [first].loc_offsets [0]); in display_debug_loc()
2338 pointer_size = debug_information [i].pointer_size; in display_debug_loc()
2339 cu_offset = debug_information [i].cu_offset; in display_debug_loc()
2341 for (j = 0; j < debug_information [i].num_loc_offsets; j++) in display_debug_loc()
2343 has_frame_base = debug_information [i].have_frame_base [j]; in display_debug_loc()
2345 offset = debug_information [i].loc_offsets [j] - section->address; in display_debug_loc()
2347 base_address = debug_information [i].base_address; in display_debug_loc()
2633 num = debug_information [i].num_range_lists; in display_debug_ranges()
2642 last_offset = debug_information [i].range_lists [0]; in display_debug_ranges()
2653 debug_information [i].range_lists [j]) in display_debug_ranges()
2658 last_offset = debug_information [i].range_lists [j]; in display_debug_ranges()
2671 if (debug_information [first].range_lists [0] != section->address) in display_debug_ranges()
2673 section->name, debug_information [first].range_lists [0]); in display_debug_ranges()
2687 pointer_size = debug_information [i].pointer_size; in display_debug_ranges()
2689 for (j = 0; j < debug_information [i].num_range_lists; j++) in display_debug_ranges()
2692 offset = debug_information [i].range_lists [j] - section->address; in display_debug_ranges()
2694 base_address = debug_information [i].base_address; in display_debug_ranges()
3689 if (debug_information) in free_debug_memory()
3693 if (!debug_information [i].max_loc_offsets) in free_debug_memory()
3695 free (debug_information [i].loc_offsets); in free_debug_memory()
3696 free (debug_information [i].have_frame_base); in free_debug_memory()
3698 if (!debug_information [i].max_range_lists) in free_debug_memory()
3699 free (debug_information [i].range_lists); in free_debug_memory()
3701 free (debug_information); in free_debug_memory()
3702 debug_information = NULL; in free_debug_memory()