1 #ifndef APPS_DEBUGGER_CONFIG_H 2 #define APPS_DEBUGGER_CONFIG_H 3 4 5 // trace DWARF debug info entry parsing 6 #define APPS_DEBUGGER_TRACE_DWARF_DIE 0 7 8 // trace DWARF line info: 9 // 1: general info only 10 // 2: line number program execution 11 #define APPS_DEBUGGER_TRACE_DWARF_LINE_INFO 0 12 13 // trace DWARF expression evaluation 14 #define APPS_DEBUGGER_TRACE_DWARF_EXPRESSIONS 0 15 16 // dump DWARF public types section 17 #define APPS_DEBUGGER_TRACE_DWARF_PUBLIC_TYPES 0 18 19 // trace (DWARF) canonical frame info parsing/evaluation 20 #define APPS_DEBUGGER_TRACE_CFI 0 21 22 // trace retrieving of stack frame local variable types and values 23 #define APPS_DEBUGGER_TRACE_STACK_FRAME_LOCALS 0 24 25 // trace image loading and changes 26 #define APPS_DEBUGGER_TRACE_IMAGES 0 27 28 // trace program code reading/analyzing 29 #define APPS_DEBUGGER_TRACE_CODE 0 30 31 // trace general job handling 32 #define APPS_DEBUGGER_TRACE_JOBS 0 33 34 // trace debug events 35 #define APPS_DEBUGGER_TRACE_DEBUG_EVENTS 0 36 37 // trace controlling the debugged team (stepping, breakpoints,...) 38 #define APPS_DEBUGGER_TRACE_TEAM_CONTROL 0 39 40 // trace GUI operations 41 #define APPS_DEBUGGER_TRACE_GUI 0 42 43 44 #endif // APPS_DEBUGGER_CONFIG_H 45