v8  3.25.30(node0.11.13)
V8 is Google's open source JavaScript engine
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
data-flow.h
Go to the documentation of this file.
1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
4 // met:
5 //
6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided
11 // with the distribution.
12 // * Neither the name of Google Inc. nor the names of its
13 // contributors may be used to endorse or promote products derived
14 // from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 
28 #ifndef V8_DATAFLOW_H_
29 #define V8_DATAFLOW_H_
30 
31 #include "v8.h"
32 
33 #include "allocation.h"
34 #include "ast.h"
35 #include "compiler.h"
36 #include "zone-inl.h"
37 
38 namespace v8 {
39 namespace internal {
40 
41 class BitVector: public ZoneObject {
42  public:
43  // Iterator for the elements of this BitVector.
44  class Iterator BASE_EMBEDDED {
45  public:
46  explicit Iterator(BitVector* target)
47  : target_(target),
48  current_index_(0),
49  current_value_(target->data_[0]),
50  current_(-1) {
51  ASSERT(target->data_length_ > 0);
52  Advance();
53  }
54  ~Iterator() { }
55 
56  bool Done() const { return current_index_ >= target_->data_length_; }
57  void Advance();
58 
59  int Current() const {
60  ASSERT(!Done());
61  return current_;
62  }
63 
64  private:
65  uint32_t SkipZeroBytes(uint32_t val) {
66  while ((val & 0xFF) == 0) {
67  val >>= 8;
68  current_ += 8;
69  }
70  return val;
71  }
72  uint32_t SkipZeroBits(uint32_t val) {
73  while ((val & 0x1) == 0) {
74  val >>= 1;
75  current_++;
76  }
77  return val;
78  }
79 
80  BitVector* target_;
81  int current_index_;
82  uint32_t current_value_;
83  int current_;
84 
85  friend class BitVector;
86  };
87 
88  BitVector(int length, Zone* zone)
89  : length_(length),
90  data_length_(SizeFor(length)),
91  data_(zone->NewArray<uint32_t>(data_length_)) {
92  ASSERT(length > 0);
93  Clear();
94  }
95 
96  BitVector(const BitVector& other, Zone* zone)
97  : length_(other.length()),
98  data_length_(SizeFor(length_)),
99  data_(zone->NewArray<uint32_t>(data_length_)) {
100  CopyFrom(other);
101  }
102 
103  static int SizeFor(int length) {
104  return 1 + ((length - 1) / 32);
105  }
106 
108  if (this != &rhs) CopyFrom(rhs);
109  return *this;
110  }
111 
112  void CopyFrom(const BitVector& other) {
113  ASSERT(other.length() <= length());
114  for (int i = 0; i < other.data_length_; i++) {
115  data_[i] = other.data_[i];
116  }
117  for (int i = other.data_length_; i < data_length_; i++) {
118  data_[i] = 0;
119  }
120  }
121 
122  bool Contains(int i) const {
123  ASSERT(i >= 0 && i < length());
124  uint32_t block = data_[i / 32];
125  return (block & (1U << (i % 32))) != 0;
126  }
127 
128  void Add(int i) {
129  ASSERT(i >= 0 && i < length());
130  data_[i / 32] |= (1U << (i % 32));
131  }
132 
133  void Remove(int i) {
134  ASSERT(i >= 0 && i < length());
135  data_[i / 32] &= ~(1U << (i % 32));
136  }
137 
138  void Union(const BitVector& other) {
139  ASSERT(other.length() == length());
140  for (int i = 0; i < data_length_; i++) {
141  data_[i] |= other.data_[i];
142  }
143  }
144 
145  bool UnionIsChanged(const BitVector& other) {
146  ASSERT(other.length() == length());
147  bool changed = false;
148  for (int i = 0; i < data_length_; i++) {
149  uint32_t old_data = data_[i];
150  data_[i] |= other.data_[i];
151  if (data_[i] != old_data) changed = true;
152  }
153  return changed;
154  }
155 
156  void Intersect(const BitVector& other) {
157  ASSERT(other.length() == length());
158  for (int i = 0; i < data_length_; i++) {
159  data_[i] &= other.data_[i];
160  }
161  }
162 
163  void Subtract(const BitVector& other) {
164  ASSERT(other.length() == length());
165  for (int i = 0; i < data_length_; i++) {
166  data_[i] &= ~other.data_[i];
167  }
168  }
169 
170  void Clear() {
171  for (int i = 0; i < data_length_; i++) {
172  data_[i] = 0;
173  }
174  }
175 
176  bool IsEmpty() const {
177  for (int i = 0; i < data_length_; i++) {
178  if (data_[i] != 0) return false;
179  }
180  return true;
181  }
182 
183  bool Equals(const BitVector& other) {
184  for (int i = 0; i < data_length_; i++) {
185  if (data_[i] != other.data_[i]) return false;
186  }
187  return true;
188  }
189 
190  int length() const { return length_; }
191 
192 #ifdef DEBUG
193  void Print();
194 #endif
195 
196  private:
197  int length_;
198  int data_length_;
199  uint32_t* data_;
200 };
201 
202 class GrowableBitVector BASE_EMBEDDED {
203  public:
204  class Iterator BASE_EMBEDDED {
205  public:
206  Iterator(const GrowableBitVector* target, Zone* zone)
207  : it_(target->bits_ == NULL
208  ? new(zone) BitVector(1, zone)
209  : target->bits_) { }
210  bool Done() const { return it_.Done(); }
211  void Advance() { it_.Advance(); }
212  int Current() const { return it_.Current(); }
213  private:
214  BitVector::Iterator it_;
215  };
216 
217  GrowableBitVector() : bits_(NULL) { }
218  GrowableBitVector(int length, Zone* zone)
219  : bits_(new(zone) BitVector(length, zone)) { }
220 
221  bool Contains(int value) const {
222  if (!InBitsRange(value)) return false;
223  return bits_->Contains(value);
224  }
225 
226  void Add(int value, Zone* zone) {
227  EnsureCapacity(value, zone);
228  bits_->Add(value);
229  }
230 
231  void Union(const GrowableBitVector& other, Zone* zone) {
232  for (Iterator it(&other, zone); !it.Done(); it.Advance()) {
233  Add(it.Current(), zone);
234  }
235  }
236 
237  void Clear() { if (bits_ != NULL) bits_->Clear(); }
238 
239  private:
240  static const int kInitialLength = 1024;
241 
242  bool InBitsRange(int value) const {
243  return bits_ != NULL && bits_->length() > value;
244  }
245 
246  void EnsureCapacity(int value, Zone* zone) {
247  if (InBitsRange(value)) return;
248  int new_length = bits_ == NULL ? kInitialLength : bits_->length();
249  while (new_length <= value) new_length *= 2;
250  BitVector* new_bits = new(zone) BitVector(new_length, zone);
251  if (bits_ != NULL) new_bits->CopyFrom(*bits_);
252  bits_ = new_bits;
253  }
254 
255  BitVector* bits_;
256 };
257 
258 
259 } } // namespace v8::internal
260 
261 
262 #endif // V8_DATAFLOW_H_
enable upcoming ES6 features enable harmony block scoping enable harmony enable harmony proxies enable harmony generators enable harmony numeric enable harmony string enable harmony math functions harmony_scoping harmony_symbols harmony_collections harmony_iteration harmony_strings harmony_scoping harmony_maths tracks arrays with only smi values Optimize object Array DOM strings and string pretenure call new trace pretenuring decisions of HAllocate instructions track fields with only smi values track fields with heap values track_fields track_fields Enables optimizations which favor memory size over execution speed use string slices optimization filter maximum number of GVN fix point iterations use function inlining use allocation folding eliminate write barriers targeting allocations in optimized code maximum source size in bytes considered for a single inlining maximum cumulative number of AST nodes considered for inlining crankshaft harvests type feedback from stub cache trace check elimination phase hydrogen tracing filter NULL
Definition: flags.cc:269
GrowableBitVector(int length, Zone *zone)
Definition: data-flow.h:218
uint16_t current_
void Add(int value, Zone *zone)
Definition: data-flow.h:226
static int SizeFor(int length)
Definition: data-flow.h:103
void Intersect(const BitVector &other)
Definition: data-flow.h:156
#define ASSERT(condition)
Definition: checks.h:329
bool Contains(int i) const
Definition: data-flow.h:122
int length() const
Definition: data-flow.h:190
bool IsEmpty() const
Definition: data-flow.h:176
T * NewArray(size_t size)
Definition: allocation.h:83
bool UnionIsChanged(const BitVector &other)
Definition: data-flow.h:145
Iterator(const GrowableBitVector *target, Zone *zone)
Definition: data-flow.h:206
void CopyFrom(const BitVector &other)
Definition: data-flow.h:112
#define BASE_EMBEDDED
Definition: allocation.h:68
void Union(const BitVector &other)
Definition: data-flow.h:138
BitVector & operator=(const BitVector &rhs)
Definition: data-flow.h:107
void Union(const GrowableBitVector &other, Zone *zone)
Definition: data-flow.h:231
bool Equals(const BitVector &other)
Definition: data-flow.h:183
BitVector(const BitVector &other, Zone *zone)
Definition: data-flow.h:96
void Print(const v8::FunctionCallbackInfo< v8::Value > &args)
void Subtract(const BitVector &other)
Definition: data-flow.h:163
bool Contains(int value) const
Definition: data-flow.h:221
BitVector(int length, Zone *zone)
Definition: data-flow.h:88