Displaying 1 result from an estimated 1 matches for "fill_rodata_vshadow".
2017 Feb 23
4
RFC: Generalize means the sanitizers work with memory
...id vshadow_memset(uptr vs, u8 value, uptr size);
// Similarly to vshadow_memset(), this function fills a range of virtual
// memory with a given value and additionally claims that range as read-only
// so the memory manager is not required to support modifying accesses for
// these addresses.
void fill_rodata_vshadow(uptr vs, u8 value, uptr size);
// Copies potentially overlapping memory regions.
void vshadow_memmove(uptr dest, uptr src, uptr size);
// Returns the virtual address of the first non-zero byte in a given virtual
// address range. Can also be used to test for zeroed regions.
uptr find_non_zero_vsh...