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

Side by Side Diff: src/zone-containers.h

Issue 726513002: [turbofan] Smartify the GraphReducer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE Created 6 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « src/compiler/pipeline.cc ('k') | test/cctest/compiler/test-changes-lowering.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_ZONE_CONTAINERS_H_ 5 #ifndef V8_ZONE_CONTAINERS_H_
6 #define V8_ZONE_CONTAINERS_H_ 6 #define V8_ZONE_CONTAINERS_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <queue> 9 #include <queue>
10 #include <stack>
10 #include <vector> 11 #include <vector>
11 12
12 #include "src/zone-allocator.h" 13 #include "src/zone-allocator.h"
13 14
14 namespace v8 { 15 namespace v8 {
15 namespace internal { 16 namespace internal {
16 17
17 // A wrapper subclass for std::vector to make it easy to construct one 18 // A wrapper subclass for std::vector to make it easy to construct one
18 // that uses a zone allocator. 19 // that uses a zone allocator.
19 template <typename T> 20 template <typename T>
20 class ZoneVector : public std::vector<T, zone_allocator<T> > { 21 class ZoneVector : public std::vector<T, zone_allocator<T> > {
21 public: 22 public:
22 // Constructs an empty vector. 23 // Constructs an empty vector.
23 explicit ZoneVector(Zone* zone) 24 explicit ZoneVector(Zone* zone)
24 : std::vector<T, zone_allocator<T> >(zone_allocator<T>(zone)) {} 25 : std::vector<T, zone_allocator<T> >(zone_allocator<T>(zone)) {}
25 26
26 // Constructs a new vector and fills it with {size} elements, each 27 // Constructs a new vector and fills it with {size} elements, each
27 // constructed via the default constructor. 28 // constructed via the default constructor.
28 ZoneVector(int size, Zone* zone) 29 ZoneVector(int size, Zone* zone)
29 : std::vector<T, zone_allocator<T> >(size, T(), zone_allocator<T>(zone)) { 30 : std::vector<T, zone_allocator<T> >(size, T(), zone_allocator<T>(zone)) {
30 } 31 }
31 32
32 // Constructs a new vector and fills it with {size} elements, each 33 // Constructs a new vector and fills it with {size} elements, each
33 // having the value {def}. 34 // having the value {def}.
34 ZoneVector(int size, T def, Zone* zone) 35 ZoneVector(int size, T def, Zone* zone)
35 : std::vector<T, zone_allocator<T> >(size, def, zone_allocator<T>(zone)) { 36 : std::vector<T, zone_allocator<T> >(size, def, zone_allocator<T>(zone)) {
36 } 37 }
37 }; 38 };
38 39
40
39 // A wrapper subclass std::deque to make it easy to construct one 41 // A wrapper subclass std::deque to make it easy to construct one
40 // that uses a zone allocator. 42 // that uses a zone allocator.
41 template <typename T> 43 template <typename T>
42 class ZoneDeque : public std::deque<T, zone_allocator<T> > { 44 class ZoneDeque : public std::deque<T, zone_allocator<T> > {
43 public: 45 public:
46 // Constructs an empty deque.
44 explicit ZoneDeque(Zone* zone) 47 explicit ZoneDeque(Zone* zone)
45 : std::deque<T, zone_allocator<T> >(zone_allocator<T>(zone)) {} 48 : std::deque<T, zone_allocator<T> >(zone_allocator<T>(zone)) {}
46 }; 49 };
47 50
51
48 // A wrapper subclass for std::queue to make it easy to construct one 52 // A wrapper subclass for std::queue to make it easy to construct one
49 // that uses a zone allocator. 53 // that uses a zone allocator.
50 template <typename T> 54 template <typename T>
51 class ZoneQueue : public std::queue<T, std::deque<T, zone_allocator<T> > > { 55 class ZoneQueue : public std::queue<T, ZoneDeque<T>> {
52 public: 56 public:
53 // Constructs an empty queue. 57 // Constructs an empty queue.
54 explicit ZoneQueue(Zone* zone) 58 explicit ZoneQueue(Zone* zone)
55 : std::queue<T, std::deque<T, zone_allocator<T> > >( 59 : std::queue<T, ZoneDeque<T>>(ZoneDeque<T>(zone)) {}
56 std::deque<T, zone_allocator<T> >(zone_allocator<T>(zone))) {}
57 }; 60 };
58 61
62
63 // A wrapper subclass for std::stack to make it easy to construct one that uses
64 // a zone allocator.
65 template <typename T>
66 class ZoneStack : public std::stack<T, ZoneDeque<T>> {
67 public:
68 // Constructs an empty stack.
69 explicit ZoneStack(Zone* zone)
70 : std::stack<T, ZoneDeque<T>>(ZoneDeque<T>(zone)) {}
71 };
72
73
59 // Typedefs to shorten commonly used vectors. 74 // Typedefs to shorten commonly used vectors.
60 typedef ZoneVector<bool> BoolVector; 75 typedef ZoneVector<bool> BoolVector;
61 typedef ZoneVector<int> IntVector; 76 typedef ZoneVector<int> IntVector;
62 } } // namespace v8::internal 77
78 } // namespace internal
79 } // namespace v8
63 80
64 #endif // V8_ZONE_CONTAINERS_H_ 81 #endif // V8_ZONE_CONTAINERS_H_
OLDNEW
« no previous file with comments | « src/compiler/pipeline.cc ('k') | test/cctest/compiler/test-changes-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698