search for: __address_type_shadow_gap

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

2014 Jul 10
3
[LLVMdev] Proposal: ASan debugging API
...**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. // Return one of the __ADDRESS_TYPE_* enum values. If global or stack,...