Searched refs:ASAN_POISON_MEMORY_REGION (Results 1 – 10 of 10) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/base/ |
D | asan_interface.h | 36 #ifndef ASAN_POISON_MEMORY_REGION 37 #define ASAN_POISON_MEMORY_REGION(addr, size) __asan_poison_memory_region((addr), (size)) macro 45 #ifdef ASAN_POISON_MEMORY_REGION 46 #undef ASAN_POISON_MEMORY_REGION 48 #define ASAN_POISON_MEMORY_REGION(addr, size) ((void)(addr), (void)(size)) macro
|
/arkcompiler/ets_runtime/ecmascript/ |
D | free_object.h | 89 ASAN_POISON_MEMORY_REGION(this, NEXT_OFFSET); in AsanPoisonFreeObject() 91 ASAN_POISON_MEMORY_REGION(this, SIZE_OFFSET); in AsanPoisonFreeObject() 93 ASAN_POISON_MEMORY_REGION(this, SIZE); in AsanPoisonFreeObject()
|
D | free_object.cpp | 24 ASAN_POISON_MEMORY_REGION(reinterpret_cast<void *>(address), size); in FillFreeObject()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | asan_interface.h | 41 #define ASAN_POISON_MEMORY_REGION(addr, size) __asan_poison_memory_region((addr), (size)) macro 51 #define ASAN_POISON_MEMORY_REGION(addr, size) ((void)(addr), (void)(size)) macro
|
/arkcompiler/runtime_core/libpandabase/mem/ |
D | arena-inl.h | 36 ASAN_POISON_MEMORY_REGION(buff_, size_); in Arena() 125 ASAN_POISON_MEMORY_REGION(mem, ToUintPtr(curPos_) - ToUintPtr(mem)); in Free() 134 ASAN_POISON_MEMORY_REGION(curPos_, old_size - new_size); in Resize() 146 ASAN_POISON_MEMORY_REGION(extra_buff, size); in ExpandArena()
|
D | mmap_mem_pool-inl.h | 368 ASAN_POISON_MEMORY_REGION(mem, size); in FreePoolUnsafe()
|
/arkcompiler/ets_runtime/ecmascript/mem/ |
D | allocator-inl.h | 40 ASAN_POISON_MEMORY_REGION(reinterpret_cast<void *>(top_), (end_ - top_)); in Reset() 48 ASAN_POISON_MEMORY_REGION(reinterpret_cast<void *>(top_), (end_ - top_)); in Reset() 153 ASAN_POISON_MEMORY_REGION(reinterpret_cast<void *>(begin), size); in Free()
|
D | region.h | 533 ASAN_POISON_MEMORY_REGION(reinterpret_cast<void *>(begin_), (end - begin_)); in PackedData()
|
/arkcompiler/runtime_core/platforms/unix/libpandabase/ |
D | mem.cpp | 153 ASAN_POISON_MEMORY_REGION(result, size); in MapRWAnonymousRaw() 215 ASAN_POISON_MEMORY_REGION(result, size); in MapRWAnonymousFixedRaw()
|
/arkcompiler/runtime_core/platforms/windows/libpandabase/ |
D | mem.cpp | 233 ASAN_POISON_MEMORY_REGION(result, size); in MapRWAnonymousRaw()
|