Lines Matching refs:info
115 const char *gcov_info_filename(struct gcov_info *info) in gcov_info_filename() argument
117 return info->filename; in gcov_info_filename()
124 unsigned int gcov_info_version(struct gcov_info *info) in gcov_info_version() argument
126 return info->version; in gcov_info_version()
136 struct gcov_info *gcov_info_next(struct gcov_info *info) in gcov_info_next() argument
138 if (!info) in gcov_info_next()
141 return info->next; in gcov_info_next()
148 void gcov_info_link(struct gcov_info *info) in gcov_info_link() argument
150 info->next = gcov_info_head; in gcov_info_link()
151 gcov_info_head = info; in gcov_info_link()
159 void gcov_info_unlink(struct gcov_info *prev, struct gcov_info *info) in gcov_info_unlink() argument
162 prev->next = info->next; in gcov_info_unlink()
164 gcov_info_head = info->next; in gcov_info_unlink()
174 bool gcov_info_within_module(struct gcov_info *info, struct module *mod) in gcov_info_within_module() argument
176 return within_module((unsigned long)info, mod); in gcov_info_within_module()
188 static int counter_active(struct gcov_info *info, unsigned int type) in counter_active() argument
190 return info->merge[type] ? 1 : 0; in counter_active()
194 static unsigned int num_counter_active(struct gcov_info *info) in num_counter_active() argument
200 if (counter_active(info, i)) in num_counter_active()
210 void gcov_info_reset(struct gcov_info *info) in gcov_info_reset() argument
216 for (fi_idx = 0; fi_idx < info->n_functions; fi_idx++) { in gcov_info_reset()
217 ci_ptr = info->functions[fi_idx]->ctrs; in gcov_info_reset()
220 if (!counter_active(info, ct_idx)) in gcov_info_reset()
281 struct gcov_info *gcov_info_dup(struct gcov_info *info) in gcov_info_dup() argument
292 dup = kmemdup(info, sizeof(*dup), GFP_KERNEL); in gcov_info_dup()
300 dup->filename = kstrdup(info->filename, GFP_KERNEL); in gcov_info_dup()
304 dup->functions = kcalloc(info->n_functions, in gcov_info_dup()
309 active = num_counter_active(info); in gcov_info_dup()
313 for (fi_idx = 0; fi_idx < info->n_functions; fi_idx++) { in gcov_info_dup()
318 *(dup->functions[fi_idx]) = *(info->functions[fi_idx]); in gcov_info_dup()
320 sci_ptr = info->functions[fi_idx]->ctrs; in gcov_info_dup()
350 void gcov_info_free(struct gcov_info *info) in gcov_info_free() argument
357 if (!info->functions) in gcov_info_free()
360 active = num_counter_active(info); in gcov_info_free()
362 for (fi_idx = 0; fi_idx < info->n_functions; fi_idx++) { in gcov_info_free()
363 if (!info->functions[fi_idx]) in gcov_info_free()
366 ci_ptr = info->functions[fi_idx]->ctrs; in gcov_info_free()
371 kfree(info->functions[fi_idx]); in gcov_info_free()
375 kfree(info->functions); in gcov_info_free()
376 kfree(info->filename); in gcov_info_free()
377 kfree(info); in gcov_info_free()
390 struct gcov_info *info; member
452 static size_t convert_to_gcda(char *buffer, struct gcov_info *info) in convert_to_gcda() argument
463 pos += store_gcov_u32(buffer, pos, info->version); in convert_to_gcda()
464 pos += store_gcov_u32(buffer, pos, info->stamp); in convert_to_gcda()
471 for (fi_idx = 0; fi_idx < info->n_functions; fi_idx++) { in convert_to_gcda()
472 fi_ptr = info->functions[fi_idx]; in convert_to_gcda()
485 if (!counter_active(info, ct_idx)) in convert_to_gcda()
512 struct gcov_iterator *gcov_iter_new(struct gcov_info *info) in gcov_iter_new() argument
520 iter->info = info; in gcov_iter_new()
522 iter->size = convert_to_gcda(NULL, info); in gcov_iter_new()
527 convert_to_gcda(iter->buffer, info); in gcov_iter_new()
553 return iter->info; in gcov_iter_get_info()