Searched refs:malloced (Results 1 – 8 of 8) sorted by relevance
/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_stats.cpp | 44 malloced>>20, malloced_redzones>>20, mallocs); in Print() 96 if (max_malloced_memory < stats->malloced) { in GetAccumulatedStats() 97 max_malloced_memory = stats->malloced; in GetAccumulatedStats() 111 malloc_stats->size_in_use = stats.malloced; in FillMallocStatistics() 141 uptr malloced = stats.malloced; in __sanitizer_get_current_allocated_bytes() local 145 return (malloced > freed) ? malloced - freed : 0; in __sanitizer_get_current_allocated_bytes() 160 uptr total_used = stats.malloced in __sanitizer_get_free_bytes()
|
H A D | asan_stats.h | 28 uptr malloced; member
|
H A D | asan_allocator.cpp | 637 thread_stats.malloced += size; in Allocate() 1250 // Die if p is not malloced or if it is already freed. in __sanitizer_get_allocated_size_fast()
|
/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_stats.cpp | 44 malloced >> 20, malloced_overhead >> 20, mallocs); in Print() 96 if (max_malloced_memory < stats->malloced) { in GetAccumulatedStats() 97 max_malloced_memory = stats->malloced; in GetAccumulatedStats() 132 uptr malloced = stats.malloced; in __sanitizer_get_current_allocated_bytes() local 136 return (malloced > freed) ? malloced - freed : 1; in __sanitizer_get_current_allocated_bytes() 149 uptr total_used = stats.malloced; in __sanitizer_get_free_bytes()
|
H A D | memprof_stats.h | 28 uptr malloced; member
|
H A D | memprof_allocator.cpp | 489 thread_stats.malloced += size; in Allocate()
|
/llvm-project/llvm/test/Transforms/LowerConstantIntrinsics/ |
H A D | builtin-object-size-phi.ll | 30 %malloced = call noalias dereferenceable_or_null(8) ptr @malloc(i64 noundef 8) 34 %p = phi ptr [ %malloced, %if.else ], [ @buffer, %entry ] 56 %malloced = call noalias dereferenceable_or_null(8) ptr @malloc(i64 noundef 8) 60 %p = phi ptr [ %malloced, %if.else ], [ @buffer, %entry ]
|
/llvm-project/llvm/test/Transforms/Attributor/ |
H A D | memory_locations.ll | 122 ; FIXME: This is actually inaccessiblememonly because the malloced memory does not escape 135 ; FIXME: This is actually inaccessiblememonly because the malloced memory does not escape
|