MagickCore  6.9.10
Convert, Edit, Or Compose Bitmap Images
memory-private.h
Go to the documentation of this file.
1 /*
2  Copyright 1999-2019 ImageMagick Studio LLC, a non-profit organization
3  dedicated to making software imaging solutions freely available.
4 
5  You may not use this file except in compliance with the License.
6  obtain a copy of the License at
7 
8  https://imagemagick.org/script/license.php
9 
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15 
16  MagickCore private memory methods.
17 */
18 #ifndef MAGICKCORE_MEMORY_PRIVATE_H
19 #define MAGICKCORE_MEMORY_PRIVATE_H
20 
21 #if defined(__cplusplus) || defined(c_plusplus)
22 extern "C" {
23 #endif
24 
26 
27 #if defined(__powerpc__)
28 # define CACHE_LINE_SIZE (16*sizeof(void *))
29 #else
30 # define CACHE_LINE_SIZE (8*sizeof(void *))
31 #endif
32 
33 #define CacheAlign(size) ((size) < CACHE_LINE_SIZE ? CACHE_LINE_SIZE : (size))
34 
35 #if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 6))
36 #if !defined(__ICC)
37 #define MagickAssumeAligned(address) \
38  __builtin_assume_aligned((address),CACHE_LINE_SIZE)
39 #else
40 #define MagickAssumeAligned(address) (address)
41 #endif
42 #else
43 #define MagickAssumeAligned(address) (address)
44 #endif
45 
47  HeapOverflowSanityCheck(const size_t,const size_t) magick_alloc_sizes(1,2);
48 
49 MagickExport size_t
50  GetMaxMemoryRequest(void);
51 
52 static inline void *AcquireCriticalMemory(const size_t size)
53 {
54  register void
55  *memory;
56 
57  /*
58  Fail if memory request cannot be fulfilled.
59  */
60  memory=AcquireMagickMemory(size);
61  if (memory == (void *) NULL)
62  ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
63  return(memory);
64 }
65 
66 #if defined(__cplusplus) || defined(c_plusplus)
67 }
68 #endif
69 
70 #endif
MagickExport
#define MagickExport
Definition: method-attribute.h:80
HeapOverflowSanityCheck
MagickExport MagickBooleanType HeapOverflowSanityCheck(const size_t, const size_t) magick_alloc_sizes(1
magick_alloc_sizes
#define magick_alloc_sizes(x, y)
Definition: method-attribute.h:114
AcquireMagickMemory
MagickExport void * AcquireMagickMemory(const size_t size)
Definition: memory.c:473
MagickBooleanType
MagickBooleanType
Definition: magick-type.h:191
exception-private.h
ThrowFatalException
#define ThrowFatalException(severity, tag)
Definition: exception-private.h:42
AcquireCriticalMemory
static void * AcquireCriticalMemory(const size_t size)
Definition: memory-private.h:52
GetMaxMemoryRequest
MagickExport MagickBooleanType MagickExport size_t GetMaxMemoryRequest(void)
Definition: memory.c:927
ResourceLimitFatalError
@ ResourceLimitFatalError
Definition: exception.h:78