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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
190 // When compiling stub templates, the meta map is used as a place holder | 190 // When compiling stub templates, the meta map is used as a place holder |
191 // for the actual map with which the template is later instantiated. | 191 // for the actual map with which the template is later instantiated. |
192 // We treat it as a kind of type variable whose upper bound is Any. | 192 // We treat it as a kind of type variable whose upper bound is Any. |
193 // TODO(rossberg): for caching of CompareNilIC stubs to work correctly, | 193 // TODO(rossberg): for caching of CompareNilIC stubs to work correctly, |
194 // we must exclude Undetectable here. This makes no sense, really, | 194 // we must exclude Undetectable here. This makes no sense, really, |
195 // because it means that the template isn't actually parametric. | 195 // because it means that the template isn't actually parametric. |
196 // Also, it doesn't apply elsewhere. 8-( | 196 // Also, it doesn't apply elsewhere. 8-( |
197 // We ought to find a cleaner solution for compiling stubs parameterised | 197 // We ought to find a cleaner solution for compiling stubs parameterised |
198 // over type or class variables, esp ones with bounds... | 198 // over type or class variables, esp ones with bounds... |
199 return kDetectable; | 199 return kDetectable; |
200 case DECLARED_ACCESSOR_INFO_TYPE: | |
201 case EXECUTABLE_ACCESSOR_INFO_TYPE: | |
202 case ACCESSOR_PAIR_TYPE: | |
203 case JS_SET_TYPE: | |
rossberg
2013/06/25 10:47:38
JS_SET/MAP should actually go up to the other ordi
| |
204 case JS_MAP_TYPE: | |
205 return kInternal; | |
200 default: | 206 default: |
201 UNREACHABLE(); | 207 UNREACHABLE(); |
202 return kNone; | 208 return kNone; |
203 } | 209 } |
204 } | 210 } |
205 } | 211 } |
206 | 212 |
207 | 213 |
208 // Get the largest bitset subsumed by this type. | 214 // Get the largest bitset subsumed by this type. |
209 int Type::GlbBitset() { | 215 int Type::GlbBitset() { |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
462 } | 468 } |
463 | 469 |
464 | 470 |
465 Type* Type::Optional(Handle<Type> type) { | 471 Type* Type::Optional(Handle<Type> type) { |
466 return type->is_bitset() | 472 return type->is_bitset() |
467 ? from_bitset(type->as_bitset() | kUndefined) | 473 ? from_bitset(type->as_bitset() | kUndefined) |
468 : Union(type, Undefined()->handle_via_isolate_of(*type)); | 474 : Union(type, Undefined()->handle_via_isolate_of(*type)); |
469 } | 475 } |
470 | 476 |
471 } } // namespace v8::internal | 477 } } // namespace v8::internal |
OLD | NEW |