// Copyright 2014 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_ZONE_ZONE_ALLOCATOR_H_ #define V8_ZONE_ZONE_ALLOCATOR_H_ #include <limits> #include "src/zone/zone.h" namespace v8 { namespace internal { template <typename T> class ZoneAllocator { … }; // A recycling zone allocator maintains a free list of deallocated chunks // to reuse on subsequent allocations. The free list management is purposely // very simple and works best for data-structures which regularly allocate and // free blocks of similar sized memory (such as std::deque). template <typename T> class RecyclingZoneAllocator : public ZoneAllocator<T> { … }; ZoneBoolAllocator; ZoneIntAllocator; } // namespace internal } // namespace v8 #endif // V8_ZONE_ZONE_ALLOCATOR_H_