OLD | NEW |
---|---|
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
113 static Type* String() { return from_bitset(kString); } | 113 static Type* String() { return from_bitset(kString); } |
114 static Type* InternalizedString() { return from_bitset(kInternalizedString); } | 114 static Type* InternalizedString() { return from_bitset(kInternalizedString); } |
115 static Type* Symbol() { return from_bitset(kSymbol); } | 115 static Type* Symbol() { return from_bitset(kSymbol); } |
116 | 116 |
117 static Type* Receiver() { return from_bitset(kReceiver); } | 117 static Type* Receiver() { return from_bitset(kReceiver); } |
118 static Type* Object() { return from_bitset(kObject); } | 118 static Type* Object() { return from_bitset(kObject); } |
119 static Type* Undetectable() { return from_bitset(kUndetectable); } | 119 static Type* Undetectable() { return from_bitset(kUndetectable); } |
120 static Type* Array() { return from_bitset(kArray); } | 120 static Type* Array() { return from_bitset(kArray); } |
121 static Type* Function() { return from_bitset(kFunction); } | 121 static Type* Function() { return from_bitset(kFunction); } |
122 static Type* Proxy() { return from_bitset(kProxy); } | 122 static Type* Proxy() { return from_bitset(kProxy); } |
123 static Type* Internal() { return from_bitset(kInternal); } | |
123 | 124 |
124 static Type* Class(Handle<Map> map) { return from_handle(map); } | 125 static Type* Class(Handle<Map> map) { return from_handle(map); } |
125 static Type* Constant(Handle<HeapObject> value) { | 126 static Type* Constant(Handle<HeapObject> value) { |
126 return Constant(value, value->GetIsolate()); | 127 return Constant(value, value->GetIsolate()); |
127 } | 128 } |
128 static Type* Constant(Handle<v8::internal::Object> value, Isolate* isolate) { | 129 static Type* Constant(Handle<v8::internal::Object> value, Isolate* isolate) { |
129 return from_handle(isolate->factory()->NewBox(value)); | 130 return from_handle(isolate->factory()->NewBox(value)); |
130 } | 131 } |
131 | 132 |
132 static Type* Union(Handle<Type> type1, Handle<Type> type2); | 133 static Type* Union(Handle<Type> type1, Handle<Type> type2); |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
192 kOtherInteger = 1 << 4, | 193 kOtherInteger = 1 << 4, |
193 kDouble = 1 << 5, | 194 kDouble = 1 << 5, |
194 kSymbol = 1 << 6, | 195 kSymbol = 1 << 6, |
195 kInternalizedString = 1 << 7, | 196 kInternalizedString = 1 << 7, |
196 kOtherString = 1 << 8, | 197 kOtherString = 1 << 8, |
197 kUndetectable = 1 << 9, | 198 kUndetectable = 1 << 9, |
198 kArray = 1 << 10, | 199 kArray = 1 << 10, |
199 kFunction = 1 << 11, | 200 kFunction = 1 << 11, |
200 kOtherObject = 1 << 12, | 201 kOtherObject = 1 << 12, |
201 kProxy = 1 << 13, | 202 kProxy = 1 << 13, |
203 kInternal = 1 << 14, | |
202 | 204 |
203 kOddball = kBoolean | kNull | kUndefined, | 205 kOddball = kBoolean | kNull | kUndefined, |
204 kInteger32 = kInteger31 | kOtherInteger, | 206 kInteger32 = kInteger31 | kOtherInteger, |
205 kNumber = kInteger32 | kDouble, | 207 kNumber = kInteger32 | kDouble, |
206 kString = kInternalizedString | kOtherString, | 208 kString = kInternalizedString | kOtherString, |
207 kUniqueName = kSymbol | kInternalizedString, | 209 kUniqueName = kSymbol | kInternalizedString, |
208 kName = kSymbol | kString, | 210 kName = kSymbol | kString, |
209 kObject = kUndetectable | kArray | kFunction | kOtherObject, | 211 kObject = kUndetectable | kArray | kFunction | kOtherObject, |
210 kReceiver = kObject | kProxy, | 212 kReceiver = kObject | kProxy, |
211 kAllocated = kDouble | kName | kReceiver, | 213 kAllocated = kDouble | kName | kReceiver, |
212 kAny = kOddball | kNumber | kAllocated, | 214 kAny = kOddball | kNumber | kAllocated | kInternal, |
rossberg
2013/06/25 10:47:38
I can't yet make up my mind whether Internal shoul
| |
213 kDetectable = kAllocated - kUndetectable, | 215 kDetectable = kAllocated - kUndetectable, |
214 kNone = 0 | 216 kNone = 0 |
215 }; | 217 }; |
216 | 218 |
217 bool is_bitset() { return this->IsSmi(); } | 219 bool is_bitset() { return this->IsSmi(); } |
218 bool is_class() { return this->IsMap(); } | 220 bool is_class() { return this->IsMap(); } |
219 bool is_constant() { return this->IsBox(); } | 221 bool is_constant() { return this->IsBox(); } |
220 bool is_union() { return this->IsFixedArray(); } | 222 bool is_union() { return this->IsFixedArray(); } |
221 | 223 |
222 int as_bitset() { return Smi::cast(this)->value(); } | 224 int as_bitset() { return Smi::cast(this)->value(); } |
(...skipping 27 matching lines...) Expand all Loading... | |
250 int GlbBitset(); // greatest lower bound that's a bitset | 252 int GlbBitset(); // greatest lower bound that's a bitset |
251 bool InUnion(Handle<Unioned> unioned, int current_size); | 253 bool InUnion(Handle<Unioned> unioned, int current_size); |
252 int ExtendUnion(Handle<Unioned> unioned, int current_size); | 254 int ExtendUnion(Handle<Unioned> unioned, int current_size); |
253 int ExtendIntersection( | 255 int ExtendIntersection( |
254 Handle<Unioned> unioned, Handle<Type> type, int current_size); | 256 Handle<Unioned> unioned, Handle<Type> type, int current_size); |
255 }; | 257 }; |
256 | 258 |
257 } } // namespace v8::internal | 259 } } // namespace v8::internal |
258 | 260 |
259 #endif // V8_TYPES_H_ | 261 #endif // V8_TYPES_H_ |
OLD | NEW |