search for: __asan_get_alloc_stack

Displaying 1 result from an estimated 1 matches for "__asan_get_alloc_stack".

2014 Jul 10
3
[LLVMdev] Proposal: ASan debugging API
...int __asan_get_address_type(void *addr, char **region_name, void **region_address, size_t *region_size); // Useful for calling from the debugger to get the allocation stack trace // and thread ID for a heap address. Returns 1 on success, 0 on error. int __asan_get_alloc_stack(void *addr, void **trace, size_t *frame_count, void **top_frame_bp, int *thread_id); // Useful for calling from the debugger to get the free stack trace // and thread ID for a heap address. Returns 1 on success, 0 on error. int __asan_get_free_stack(void...