Home
last modified time | relevance | path

Searched refs:dieWithMessage (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_errors.cpp20 dieWithMessage("calloc parameters overflow: count * size (%zd * %zd) cannot " in reportCallocOverflow()
25 dieWithMessage("pvalloc parameters overflow: size 0x%zx rounded up to system " in reportPvallocOverflow()
32 dieWithMessage("invalid allocation alignment: %zd exceeds maximum supported " in reportAllocationAlignmentTooBig()
37 dieWithMessage("invalid allocation alignment: %zd, alignment must be a power " in reportAllocationAlignmentNotPowerOfTwo()
42 dieWithMessage( in reportInvalidPosixMemalignAlignment()
50 dieWithMessage("invalid alignment requested in aligned_alloc: %zd, alignment " in reportInvalidAlignedAllocAlignment()
54 dieWithMessage("invalid alignment requested in aligned_alloc: %zd, the " in reportInvalidAlignedAllocAlignment()
62 dieWithMessage("requested allocation size 0x%zx (0x%zx after adjustments) " in reportAllocationSizeTooBig()
68 dieWithMessage("specified RSS limit exceeded, currently set to " in reportRssLimitExceeded()
73 dieWithMessage("allocator is out of memory trying to allocate 0x%zx bytes\n", in reportOutOfMemory()
H A Dscudo_flags.cpp80 dieWithMessage("ERROR: please use either QuarantineSizeMb (deprecated) " in initFlags()
84 dieWithMessage("ERROR: QuarantineChunksUpToSize cannot be used in " in initFlags()
103 dieWithMessage("ERROR: the chunk quarantine threshold is too large\n"); in initFlags()
108 dieWithMessage("ERROR: the quarantine size is too large\n"); in initFlags()
117 dieWithMessage("ERROR: the per thread quarantine cache size is too " in initFlags()
121 dieWithMessage("ERROR: ThreadLocalQuarantineSizeKb can be set to 0 only " in initFlags()
H A Dscudo_allocator.cpp150 dieWithMessage("corrupted chunk header at address %p\n", Ptr); in loadHeader()
172 dieWithMessage("race on chunk header at address %p\n", Ptr); in compareExchangeHeader()
186 dieWithMessage("invalid chunk state when recycling address %p\n", Ptr); in Recycle()
509 dieWithMessage("misaligned address when reallocating address %p\n", in reallocate()
514 dieWithMessage("invalid chunk state when reallocating address %p\n", in reallocate()
518 dieWithMessage("allocation type mismatch when reallocating address " in reallocate()
559 dieWithMessage("invalid chunk state when sizing address %p\n", Ptr); in getUsableSize()
620 dieWithMessage("maximum possible offset doesn't fit in header\n"); in performSanityChecks()
629 dieWithMessage("maximum possible unused bytes doesn't fit in header\n"); in performSanityChecks()
634 dieWithMessage("largest class ID doesn't fit in header\n"); in performSanityChecks()
[all …]
H A Dscudo_utils.h30 void NORETURN dieWithMessage(const char *Format, ...);
H A Dscudo_termination.cpp37 __scudo::dieWithMessage("CHECK failed at %s:%d %s (%lld, %lld)\n", in CheckFailed()
H A Dscudo_utils.cpp42 FORMAT(1, 2) void NORETURN dieWithMessage(const char *Format, ...) { in dieWithMessage() function