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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
295 } | 295 } |
296 | 296 |
297 return false; | 297 return false; |
298 } | 298 } |
299 | 299 |
300 | 300 |
301 bool Type::InUnion(Handle<Unioned> unioned, int current_size) { | 301 bool Type::InUnion(Handle<Unioned> unioned, int current_size) { |
302 ASSERT(!this->is_union()); | 302 ASSERT(!this->is_union()); |
303 for (int i = 0; i < current_size; ++i) { | 303 for (int i = 0; i < current_size; ++i) { |
304 Handle<Type> type = union_get(unioned, i); | 304 Handle<Type> type = union_get(unioned, i); |
305 if (type->is_bitset() ? this->Is(type) : this == *type) return true; | 305 if (type->is_bitset()) return this->Is(type); |
rossberg
2013/06/19 09:45:15
This whole piece of code should probably be simpli
| |
306 if (this == *type) return true; | |
307 if (type->is_constant()) { | |
308 if (this->is_constant() && *type->as_constant() == *this->as_constant()) { | |
309 return true; | |
310 } | |
311 } | |
306 } | 312 } |
307 return false; | 313 return false; |
308 } | 314 } |
309 | 315 |
310 // Get non-bitsets from this which are not subsumed by that, store at unioned, | 316 // Get non-bitsets from this which are not subsumed by that, store at unioned, |
311 // starting at index. Returns updated index. | 317 // starting at index. Returns updated index. |
312 int Type::ExtendUnion(Handle<Unioned> result, int current_size) { | 318 int Type::ExtendUnion(Handle<Unioned> result, int current_size) { |
313 int old_size = current_size; | 319 int old_size = current_size; |
314 if (this->is_class() || this->is_constant()) { | 320 if (this->is_class() || this->is_constant()) { |
315 if (!this->InUnion(result, old_size)) result->set(current_size++, this); | 321 if (!this->InUnion(result, old_size)) result->set(current_size++, this); |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
374 } | 380 } |
375 | 381 |
376 | 382 |
377 Type* Type::Optional(Handle<Type> type) { | 383 Type* Type::Optional(Handle<Type> type) { |
378 return type->is_bitset() | 384 return type->is_bitset() |
379 ? from_bitset(type->as_bitset() | kUndefined) | 385 ? from_bitset(type->as_bitset() | kUndefined) |
380 : Union(type, Undefined()->handle_via_isolate_of(*type)); | 386 : Union(type, Undefined()->handle_via_isolate_of(*type)); |
381 } | 387 } |
382 | 388 |
383 } } // namespace v8::internal | 389 } } // namespace v8::internal |
OLD | NEW |