search for: region_address

Displaying 2 results from an estimated 2 matches for "region_address".

2014 Jul 10
3
[LLVMdev] Proposal: ASan debugging API
...// 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 // return the chunk address and size. int __asan_get_address_type(void *addr, char **region_name, void **region_address, size_t *region_size); // Useful for calling from the debugger to get the allocation stack trace // and thread ID for a heap address. Returns 1 on success, 0 on error. int __asan_get_alloc_stack(void *addr, void **trace, size_t *frame_count, void **top_fr...
2012 Jul 16
3
[LLVMdev] RFC: LLVM incubation, or requirements for committing new backends
...ressSpaces { > + PRIVATE_ADDRESS = 0, // Address space for private memory. > + GLOBAL_ADDRESS = 1, // Address space for global memory (RAT0, VTX0). > + CONSTANT_ADDRESS = 2, // Address space for constant memory. > + LOCAL_ADDRESS = 3, // Address space for local memory. > + REGION_ADDRESS = 4, // Address space for region memory. > + ADDRESS_NONE = 5, // Address space for unknown memory. > + PARAM_D_ADDRESS = 6, // Address space for direct addressible parameter memory (CONST0) > + PARAM_I_ADDRESS = 7, // Address space for indirect addressible parameter memory (VTX...