| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- // Filename: pallocator.T
- // Created by: drose (05Jun01)
- //
- ////////////////////////////////////////////////////////////////////
- //
- // PANDA 3D SOFTWARE
- // Copyright (c) 2001, Disney Enterprises, Inc. All rights reserved
- //
- // All use of this software is subject to the terms of the Panda 3d
- // Software license. You should have received a copy of this license
- // along with this source code; you will also find a current copy of
- // the license at http://www.panda3d.org/license.txt .
- //
- // To contact the maintainers of this program write to
- // [email protected] .
- //
- ////////////////////////////////////////////////////////////////////
- template<class Type>
- INLINE pallocator_single<Type>::
- pallocator_single(TypeHandle type_handle) throw() :
- _type_handle(type_handle)
- {
- }
- template<class Type>
- INLINE TYPENAME pallocator_single<Type>::pointer pallocator_single<Type>::
- allocate(TYPENAME pallocator_single<Type>::size_type n, TYPENAME allocator<void>::const_pointer) {
- TAU_PROFILE("pallocator_single:allocate()", " ", TAU_USER);
- // This doesn't support allocating arrays.
- assert(n == 1);
- return StaticDeletedChain<Type>::allocate(sizeof(Type), _type_handle);
- }
- template<class Type>
- INLINE void pallocator_single<Type>::
- deallocate(TYPENAME pallocator_single<Type>::pointer p, TYPENAME pallocator_single<Type>::size_type) {
- TAU_PROFILE("pallocator_single:deallocate()", " ", TAU_USER);
- StaticDeletedChain<Type>::deallocate(p, _type_handle);
- }
- template<class Type>
- INLINE pallocator_array<Type>::
- pallocator_array(TypeHandle type_handle) throw() :
- _type_handle(type_handle)
- {
- }
- template<class Type>
- INLINE TYPENAME pallocator_array<Type>::pointer pallocator_array<Type>::
- allocate(TYPENAME pallocator_array<Type>::size_type n, TYPENAME allocator<void>::const_pointer) {
- TAU_PROFILE("pallocator_array:allocate()", " ", TAU_USER);
- #ifdef DO_MEMORY_USAGE
- size_t alloc_size = n * sizeof(Type);
- // We also need to store the total number of bytes we allocated.
- alloc_size += sizeof(size_t);
- _type_handle.inc_memory_usage(TypeHandle::MC_array, (int)alloc_size);
- void *ptr = (TYPENAME pallocator_array<Type>::pointer)PANDA_MALLOC_ARRAY(alloc_size);
- *((size_t *)ptr) = alloc_size;
- return (TYPENAME pallocator_array<Type>::pointer)(((size_t *)ptr) + 1);
- #else
- return (TYPENAME pallocator_array<Type>::pointer)malloc(n * sizeof(Type));
- #endif // DO_MEMORY_USAGE
- }
- template<class Type>
- INLINE void pallocator_array<Type>::
- deallocate(TYPENAME pallocator_array<Type>::pointer p, TYPENAME pallocator_array<Type>::size_type) {
- TAU_PROFILE("pallocator_array:deallocate()", " ", TAU_USER);
- #ifdef DO_MEMORY_USAGE
- // Now we need to recover the total number of bytes.
- size_t alloc_size = *(((size_t *)p) - 1);
- _type_handle.dec_memory_usage(TypeHandle::MC_array, (int)alloc_size);
- PANDA_FREE_ARRAY(((size_t *)p) - 1);
- #else
- free(p);
- #endif // DO_MEMORY_USAGE
- }
|