OGRE  1.7
Object-Oriented Graphics Rendering Engine
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
OgreMemoryNedAlloc.h
Go to the documentation of this file.
1 /*
2 -----------------------------------------------------------------------------
3 This source file is part of OGRE
4 (Object-oriented Graphics Rendering Engine)
5 For the latest info, see http://www.ogre3d.org/
6 
7 Copyright (c) 2000-2011 Torus Knot Software Ltd
8 
9 Permission is hereby granted, free of charge, to any person obtaining a copy
10 of this software and associated documentation files (the "Software"), to deal
11 in the Software without restriction, including without limitation the rights
12 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 copies of the Software, and to permit persons to whom the Software is
14 furnished to do so, subject to the following conditions:
15 
16 The above copyright notice and this permission notice shall be included in
17 all copies or substantial portions of the Software.
18 
19 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 THE SOFTWARE.
26 -----------------------------------------------------------------------------
27 */
28 
29 #ifndef __MemoryNedAlloc_H__
30 #define __MemoryNedAlloc_H__
31 
32 #if OGRE_MEMORY_ALLOCATOR == OGRE_MEMORY_ALLOCATOR_NED
33 
34 namespace Ogre
35 {
45  {
46  public:
47  static void* allocBytes(size_t count,
48  const char* file, int line, const char* func);
49  static void deallocBytes(void* ptr);
50  static void* allocBytesAligned(size_t align, size_t count,
51  const char* file, int line, const char* func);
52  static void deallocBytesAligned(size_t align, void* ptr);
53 
54  };
55 
65  {
66  public:
67  static inline void* allocateBytes(size_t count,
68  const char* file = 0, int line = 0, const char* func = 0)
69  {
70  return NedAllocImpl::allocBytes(count, file, line, func);
71  }
72  static inline void deallocateBytes(void* ptr)
73  {
75  }
77  static inline size_t getMaxAllocationSize()
78  {
79  return std::numeric_limits<size_t>::max();
80  }
81  private:
82  // No instantiation
84  { }
85  };
86 
87 
100  template <size_t Alignment = 0>
102  {
103  public:
104  // compile-time check alignment is available.
105  typedef int IsValidAlignment
106  [Alignment <= 128 && ((Alignment & (Alignment-1)) == 0) ? +1 : -1];
107 
108  static inline void* allocateBytes(size_t count,
109  const char* file = 0, int line = 0, const char* func = 0)
110  {
111  return NedAllocImpl::allocBytesAligned(Alignment, count, file, line, func);
112  }
113 
114  static inline void deallocateBytes(void* ptr)
115  {
116  NedAllocImpl::deallocBytesAligned(Alignment, ptr);
117  }
118 
120  static inline size_t getMaxAllocationSize()
121  {
122  return std::numeric_limits<size_t>::max();
123  }
124  private:
125  // no instantiation allowed
127  { }
128  };
129 
130 
131 
135 }// namespace Ogre
136 
137 #endif
138 
139 #endif // __MemoryNedAlloc_H__
140 
static void deallocBytesAligned(size_t align, void *ptr)
#define _OgreExport
Definition: OgrePlatform.h:203
An allocation policy for use with AllocatedObject and STLAllocator.
static void deallocateBytes(void *ptr)
An allocation policy for use with AllocatedObject and STLAllocator, which aligns memory at a given bo...
static void * allocateBytes(size_t count, const char *file=0, int line=0, const char *func=0)
static void * allocBytes(size_t count, const char *file, int line, const char *func)
static void * allocateBytes(size_t count, const char *file=0, int line=0, const char *func=0)
int IsValidAlignment[Alignment<=128 &&((Alignment &(Alignment-1))==0)?+1:-1]
static size_t getMaxAllocationSize()
Get the maximum size of a single allocation.
Non-templated utility class just to hide nedmalloc.
static void deallocateBytes(void *ptr)
static void * allocBytesAligned(size_t align, size_t count, const char *file, int line, const char *func)
static size_t getMaxAllocationSize()
Get the maximum size of a single allocation.
static void deallocBytes(void *ptr)