| 96 | } |
| 97 | |
| 98 | extern "C" SANITIZER_INTERFACE_ATTRIBUTE void |
| 99 | __taint_trace_loop_pop_stack() { |
| 100 | __loop_depth_stack_top--; |
| 101 | __current_loop_depth = __loop_depth_stack_current[__loop_depth_stack_top]; |
| 102 | __base_loop_depth = __loop_depth_stack_base[__loop_depth_stack_top]; |
| 103 | __previous_loop_depth = __loop_depth_stack_previous[__loop_depth_stack_top]; |
| 104 | AOUT("loop pop stack: %u %u %u\n", __current_loop_depth, __base_loop_depth, __previous_loop_depth); |
| 105 | } |
| 106 | |
| 107 | #define get_nested_loop_depth() (__base_loop_depth + __current_loop_depth) |
| 108 |
no outgoing calls
no test coverage detected