Displaying 1 result from an estimated 1 matches for "__address_type_unknown".
2014 Jul 10
3
[LLVMdev] Proposal: ASan debugging API
...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_SHADOW_LOW,
__ADDRESS_TYPE_SHADOW_GAP,
__ADDRESS_TYPE_SHADOW_HIGH,
__ADDRESS_TYPE_GLOBAL,
__ADDRESS_TYPE_STACK,
__ADDRESS_TYPE_HEAP,
} asan_address_type;
// Useful for calling from the debugger to get information about a
pointer.
// R...