Displaying 1 result from an estimated 1 matches for "vshadow_memmove".
2017 Feb 23
4
RFC: Generalize means the sanitizers work with memory
...ange 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_vshadow_byte(uptr vs, uptr size);
// Explicitly releases pages that fit the specified range.
void release...