Displaying 1 result from an estimated 1 matches for "__address_type_stack".
2014 Jul 10
3
[LLVMdev] Proposal: ASan debugging API
...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,
tries
// to also return the variable name, address and size. If heap, tries to
//...