MCPcopy Create free account
hub / github.com/F-Stack/f-stack / kcsan_memmove

Function kcsan_memmove

freebsd/kern/subr_csan.c:296–302  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

294}
295
296void *
297kcsan_memmove(void *dst, const void *src, size_t len)
298{
299 kcsan_access((uintptr_t)src, len, false, false, __RET_ADDR);
300 kcsan_access((uintptr_t)dst, len, true, false, __RET_ADDR);
301 return __builtin_memmove(dst, src, len);
302}
303
304char *
305kcsan_strcpy(char *dst, const char *src)

Callers

nothing calls this directly

Calls 1

kcsan_accessFunction · 0.85

Tested by

no test coverage detected