Home
last modified time | relevance | path

Searched refs:asan_tag_access (Results 1 – 7 of 7) sorted by relevance

/optee_os/core/include/kernel/
H A Dasan.h31 void asan_tag_access(const void *begin, const void *end);
41 static inline void asan_tag_access(const void *begin __unused, in asan_tag_access() function
/optee_os/core/mm/
H A Dboot_mem.c77 asan_tag_access((void *)va, (void *)(va + len)); in mem_alloc_tmp()
121 asan_tag_access((void *)va, (void *)(va + len)); in mem_alloc()
156 asan_tag_access((void *)ROUNDDOWN(boot_mem_desc->orig_mem_start, in boot_mem_init_asan()
159 asan_tag_access((void *)ROUNDDOWN(boot_mem_desc->mem_end, in boot_mem_init_asan()
262 asan_tag_access(pad, (uint8_t *)pad + sizeof(*pad)); in boot_mem_foreach_padding()
265 asan_tag_access((void *)start, (void *)(start + len)); in boot_mem_foreach_padding()
/optee_os/core/arch/arm/kernel/
H A Dboot.c331 asan_tag_access(&__ctor_list, &__ctor_end); in init_asan()
332 asan_tag_access(__rodata_start, __rodata_end); in init_asan()
334 asan_tag_access(__pageable_start, __pageable_end); in init_asan()
336 asan_tag_access(__nozi_start, __nozi_end); in init_asan()
338 asan_tag_access(__exidx_start, __exidx_end); in init_asan()
339 asan_tag_access(__extab_start, __extab_end); in init_asan()
/optee_os/core/kernel/
H A Dasan.c121 void asan_tag_access(const void *begin, const void *end) in asan_tag_access() function
422 asan_tag_access((void *)begin, (void *)end); in __asan_register_globals()
440 asan_tag_access(bottom, top); in asan_handle_longjmp()
H A Dthread.c560 asan_tag_access((void *)tee_mm_get_smem(mm), (void *)sp); in init_thread_stacks()
/optee_os/core/arch/arm/mm/
H A Dtee_pager.c1383 asan_tag_access(va_alias, va_alias + SMALL_PAGE_SIZE); in pager_deploy_page()
1576 asan_tag_access(va, va + SMALL_PAGE_SIZE); in pager_get_page()
2022 asan_tag_access(smem, smem + num_pages * SMALL_PAGE_SIZE); in tee_pager_alloc()
2043 asan_tag_access(smem, smem + fobj->num_pages * SMALL_PAGE_SIZE); in tee_pager_init_iv_region()
/optee_os/lib/libutils/isoc/
H A Dbget_malloc.c243 asan_tag_access(buf, buf + hdr_size + requested_size); in maybe_tag_buf()