blob: d69d6c7a52472cbf628cee176d89572821916bbe [file] [log] [blame]
fschneider@chromium.orgfb144a02011-05-04 12:43:48 +00001// Copyright 2011 the V8 project authors. All rights reserved.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002// 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
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000031#include "v8.h"
32
lrn@chromium.org1c092762011-05-09 09:42:16 +000033#include "allocation.h"
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000034#include "ast.h"
ager@chromium.org5c838252010-02-19 08:53:10 +000035#include "compiler.h"
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000036#include "zone-inl.h"
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000037
38namespace v8 {
39namespace internal {
40
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000041class BitVector: public ZoneObject {
42 public:
kasperl@chromium.orga5551262010-12-07 12:49:48 +000043 // 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() { }
ricow@chromium.org65fae842010-08-25 15:26:24 +000055
kasperl@chromium.orga5551262010-12-07 12:49:48 +000056 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 explicit BitVector(int length)
89 : length_(length),
90 data_length_(SizeFor(length)),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000091 data_(ZONE->NewArray<uint32_t>(data_length_)) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +000092 ASSERT(length > 0);
93 Clear();
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000094 }
95
96 BitVector(const BitVector& other)
97 : length_(other.length()),
98 data_length_(SizeFor(length_)),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000099 data_(ZONE->NewArray<uint32_t>(data_length_)) {
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000100 CopyFrom(other);
101 }
102
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000103 static int SizeFor(int length) {
104 return 1 + ((length - 1) / 32);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000105 }
106
107 BitVector& operator=(const BitVector& rhs) {
108 if (this != &rhs) CopyFrom(rhs);
109 return *this;
110 }
111
112 void CopyFrom(const BitVector& other) {
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000113 ASSERT(other.length() <= length());
114 for (int i = 0; i < other.data_length_; i++) {
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000115 data_[i] = other.data_[i];
116 }
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000117 for (int i = other.data_length_; i < data_length_; i++) {
118 data_[i] = 0;
119 }
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000120 }
121
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000122 bool Contains(int i) const {
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000123 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
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000145 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
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000156 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
vegorov@chromium.orgf8372902010-03-15 10:26:20 +0000163 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
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000170 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
vegorov@chromium.orgf8372902010-03-15 10:26:20 +0000183 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
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000190 int length() const { return length_; }
191
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000192#ifdef DEBUG
193 void Print();
194#endif
195
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000196 private:
197 int length_;
198 int data_length_;
199 uint32_t* data_;
200};
201
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000202} } // namespace v8::internal
203
ager@chromium.org5c838252010-02-19 08:53:10 +0000204
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000205#endif // V8_DATAFLOW_H_