Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(483)

Unified Diff: src/zone/zone-allocator.h

Issue 2344143003: Moved zones and zone related stuff in its own directory. (Closed)
Patch Set: Merge branch 'master' into zonefolder Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/zone/zone.cc ('k') | src/zone/zone-containers.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/zone/zone-allocator.h
diff --git a/src/zone-allocator.h b/src/zone/zone-allocator.h
similarity index 66%
rename from src/zone-allocator.h
rename to src/zone/zone-allocator.h
index f46151ebc3db0ee40a97c6264bfd742e2189901c..8370d73e49b2fc1337162410fe39011512a6baf1 100644
--- a/src/zone-allocator.h
+++ b/src/zone/zone-allocator.h
@@ -2,17 +2,16 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef V8_ZONE_ALLOCATOR_H_
-#define V8_ZONE_ALLOCATOR_H_
-
+#ifndef V8_ZONE_ZONE_ALLOCATOR_H_
+#define V8_ZONE_ZONE_ALLOCATOR_H_
#include <limits>
-#include "src/zone.h"
+#include "src/zone/zone.h"
namespace v8 {
namespace internal {
-template<typename T>
+template <typename T>
class zone_allocator {
public:
typedef T* pointer;
@@ -22,31 +21,34 @@ class zone_allocator {
typedef T value_type;
typedef size_t size_type;
typedef ptrdiff_t difference_type;
- template<class O> struct rebind {
+ template <class O>
+ struct rebind {
typedef zone_allocator<O> other;
};
explicit zone_allocator(Zone* zone) throw() : zone_(zone) {}
explicit zone_allocator(const zone_allocator& other) throw()
: zone_(other.zone_) {}
- template<typename U> zone_allocator(const zone_allocator<U>& other) throw()
- : zone_(other.zone_) {}
- template<typename U> friend class zone_allocator;
+ template <typename U>
+ zone_allocator(const zone_allocator<U>& other) throw() : zone_(other.zone_) {}
+ template <typename U>
+ friend class zone_allocator;
- pointer address(reference x) const {return &x;}
- const_pointer address(const_reference x) const {return &x;}
+ pointer address(reference x) const { return &x; }
+ const_pointer address(const_reference x) const { return &x; }
pointer allocate(size_type n, const void* hint = 0) {
- return static_cast<pointer>(zone_->NewArray<value_type>(
- static_cast<int>(n)));
+ return static_cast<pointer>(
+ zone_->NewArray<value_type>(static_cast<int>(n)));
+ }
+ void deallocate(pointer p, size_type) { /* noop for Zones */
}
- void deallocate(pointer p, size_type) { /* noop for Zones */ }
size_type max_size() const throw() {
return std::numeric_limits<int>::max() / sizeof(value_type);
}
void construct(pointer p, const T& val) {
- new(static_cast<void*>(p)) T(val);
+ new (static_cast<void*>(p)) T(val);
}
void destroy(pointer p) { p->~T(); }
@@ -69,4 +71,4 @@ typedef zone_allocator<int> ZoneIntAllocator;
} // namespace internal
} // namespace v8
-#endif // V8_ZONE_ALLOCATOR_H_
+#endif // V8_ZONE_ZONE_ALLOCATOR_H_
« no previous file with comments | « src/zone/zone.cc ('k') | src/zone/zone-containers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698