search for: __asan_get_report_data

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

2014 Jul 10
3
[LLVMdev] Proposal: ASan debugging API
...ful for calling from a debugger to get information about an error. // If an error has been (or is beign) reported, returns the pc, bp, sp, // address, access type, access type and bug description, and the return // value of the function is 1. If no error occurred yet, returns 0. int __asan_get_report_data(void **pc, void **bp, void **sp, void **addr, int *is_write, size_t *access_size, char **bug_description); // Address/memory type from ASan's point of view. typedef enum { __ADDRESS_TYPE_UNKNOWN, __ADDRESS_TYPE_S...