#include "partition_alloc/partition_oom.h"
#include "partition_alloc/build_config.h"
#include "partition_alloc/oom.h"
#include "partition_alloc/partition_alloc_base/compiler_specific.h"
#include "partition_alloc/partition_alloc_base/debug/alias.h"
namespace partition_alloc::internal {
OomFunction g_oom_handling_function = …;
PA_NOINLINE PA_NOT_TAIL_CALLED void PartitionExcessiveAllocationSize(
size_t size) { … }
#if !PA_BUILDFLAG(PA_ARCH_CPU_64_BITS)
PA_NOINLINE PA_NOT_TAIL_CALLED void
PartitionOutOfMemoryWithLotsOfUncommitedPages(size_t size) {
PA_NO_CODE_FOLDING();
OOM_CRASH(size);
}
[[noreturn]] PA_NOT_TAIL_CALLED PA_NOINLINE void
PartitionOutOfMemoryWithLargeVirtualSize(size_t virtual_size) {
PA_NO_CODE_FOLDING();
OOM_CRASH(virtual_size);
}
#endif
}