Par exemple, il est la source:Comment dire à gcc d'instrumenter le code avec des appels à ma propre fonction chaque _line_ de code?
void my_special_debugging_function(const char* function_name, const char* file_name, int line_number);
void func1() {
func3();
func4();
}
void foo() {
func1();
if(qqq) {
func2();
};
func3();
func4();
for(...) {
func5();
}
}
Il devrait compiler comme:
void my_special_debugging_function(const char* function_name, const char* file_name, int line_number);
void func1() {
my_special_debugging_function("func1", "prog.c", 3);
func3();
my_special_debugging_function("func1", "prog.c", 4);
func4();
my_special_debugging_function("func1", "prog.c", 5);
}
void foo() {
my_special_debugging_function("foo", "prog.c", 8);
func1();
my_special_debugging_function("foo", "prog.c", 9);
if(qqq) {
my_special_debugging_function("foo", "prog.c", 10);
func2();
my_special_debugging_function("foo", "prog.c", 11);
};
my_special_debugging_function("foo", "prog.c", 12);
func3();
my_special_debugging_function("foo", "prog.c", 13);
func4();
my_special_debugging_function("foo", "prog.c", 14);
for(...) {
my_special_debugging_function("foo", "prog.c", 15);
func5();
my_special_debugging_function("foo", "prog.c", 16);
}
my_special_debugging_function("foo", "prog.c", 17);
}
Bien sûr, my_special_debugging_function devrait être en mesure d'utiliser la fonction backtrace
.
Y at-il une option de gcc pour le faire? Ou y a-t-il un outil pour le faire au niveau du code source? (Par exemple générer des autres C souce avec ma fonction)
@relatedHow to "interleave" C/C++ souce with my string (only inside functions at appropriate places)?
Pas exactement cela. Cependant, vous devez connaître les macros '__FILE__',' __LINE__' et '__func__'. – nategoose