Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/scudo/
H A Dscudo_errors.cpp21 dieWithMessage("calloc parameters overflow: count * size (%zd * %zd) cannot " in reportCallocOverflow()
26 dieWithMessage("pvalloc parameters overflow: size 0x%zx rounded up to system " in reportPvallocOverflow()
33 dieWithMessage("invalid allocation alignment: %zd exceeds maximum supported " in reportAllocationAlignmentTooBig()
38 dieWithMessage("invalid allocation alignment: %zd, alignment must be a power " in reportAllocationAlignmentNotPowerOfTwo()
43 dieWithMessage("invalid alignment requested in posix_memalign: %zd, alignment" 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.cpp81 dieWithMessage("ERROR: please use either QuarantineSizeMb (deprecated) " in initFlags()
85 dieWithMessage("ERROR: QuarantineChunksUpToSize cannot be used in " in initFlags()
104 dieWithMessage("ERROR: the chunk quarantine threshold is too large\n"); in initFlags()
109 dieWithMessage("ERROR: the quarantine size is too large\n"); in initFlags()
118 dieWithMessage("ERROR: the per thread quarantine cache size is too " in initFlags()
122 dieWithMessage("ERROR: ThreadLocalQuarantineSizeKb can be set to 0 only " in initFlags()
H A Dscudo_allocator.cpp144 dieWithMessage("corrupted chunk header at address %p\n", Ptr); in loadHeader()
166 dieWithMessage("race on chunk header at address %p\n", Ptr); in compareExchangeHeader()
180 dieWithMessage("invalid chunk state when recycling address %p\n", Ptr); in Recycle()
468 dieWithMessage("misaligned address when reallocating address %p\n", in reallocate()
473 dieWithMessage("invalid chunk state when reallocating address %p\n", in reallocate()
477 dieWithMessage("allocation type mismatch when reallocating address " in reallocate()
512 dieWithMessage("invalid chunk state when sizing address %p\n", Ptr); in getUsableSize()
573 dieWithMessage("maximum possible offset doesn't fit in header\n"); in performSanityChecks()
582 dieWithMessage("maximum possible unused bytes doesn't fit in header\n"); in performSanityChecks()
587 dieWithMessage("largest class ID doesn't fit in header\n"); in performSanityChecks()
[all …]
H A Dscudo_utils.h31 void NORETURN dieWithMessage(const char *Format, ...);
H A Dscudo_termination.cpp38 __scudo::dieWithMessage("CHECK failed at %s:%d %s (%lld, %lld)\n", in CheckFailed()
H A Dscudo_utils.cpp43 FORMAT(1, 2) void NORETURN dieWithMessage(const char *Format, ...) { in dieWithMessage() function