Displaying 1 result from an estimated 1 matches for "bug_description".
2014 Jul 10
3
[LLVMdev] Proposal: ASan debugging API
...cess 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_SHADOW_LOW,
      __ADDRESS_TYPE_SHADOW_GAP,
      __ADDRESS_TYPE_SHADOW_HIGH,
      __ADDRESS_TYPE_GLOBAL,
      __ADDRESS_TYPE_STACK,
      __ADDRESS_TYPE_HEAP,
    }...