Displaying 1 result from an estimated 1 matches for "llvm_gcda_increment_indirect_count".
Did you mean:
llvm_gcda_increment_indirect_counter
2016 Apr 06
2
Writing a test for gcov style coverage crashing after dlclose
...and unload shared libraries.
Each shared library must have its own copy of the following GCDA functions:
- __gcov_flush
- llvm_delete_flush_function_list
- llvm_delete_writeout_function_list
- llvm_gcda_emit_arcs
- llvm_gcda_emit_function
- llvm_gcda_end_file
- llvm_gcda_increment_indirect_counter
- llvm_gcda_start_file
- llvm_gcda_summary_info
- llvm_gcov_init
- llvm_register_flush_function
- llvm_register_writeout_function
- llvm_writeout_files
Defining these function as "hidden" prevents a shared library from
exporting them in its interface. The...