OLD | NEW |
---|---|
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_TYPES_H_ | 5 #ifndef V8_TYPES_H_ |
6 #define V8_TYPES_H_ | 6 #define V8_TYPES_H_ |
7 | 7 |
8 #include "handles.h" | 8 #include "handles.h" |
9 | 9 |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 184 matching lines...) Loading... | |
195 // struct Config { | 195 // struct Config { |
196 // typedef TypeImpl<Config> Type; | 196 // typedef TypeImpl<Config> Type; |
197 // typedef Base; | 197 // typedef Base; |
198 // typedef Struct; | 198 // typedef Struct; |
199 // typedef Region; | 199 // typedef Region; |
200 // template<class> struct Handle { typedef type; } // No template typedefs... | 200 // template<class> struct Handle { typedef type; } // No template typedefs... |
201 // template<class T> static Handle<T>::type handle(T* t); // !is_bitset(t) | 201 // template<class T> static Handle<T>::type handle(T* t); // !is_bitset(t) |
202 // template<class T> static Handle<T>::type cast(Handle<Type>::type); | 202 // template<class T> static Handle<T>::type cast(Handle<Type>::type); |
203 // static bool is_bitset(Type*); | 203 // static bool is_bitset(Type*); |
204 // static bool is_class(Type*); | 204 // static bool is_class(Type*); |
205 // static bool is_constant(Type*); | |
206 // static bool is_struct(Type*, int tag); | 205 // static bool is_struct(Type*, int tag); |
207 // static int as_bitset(Type*); | 206 // static int as_bitset(Type*); |
208 // static i::Handle<i::Map> as_class(Type*); | 207 // static i::Handle<i::Map> as_class(Type*); |
209 // static i::Handle<i::Object> as_constant(Type*); | |
210 // static Handle<Struct>::type as_struct(Type*); | 208 // static Handle<Struct>::type as_struct(Type*); |
211 // static Type* from_bitset(int bitset); | 209 // static Type* from_bitset(int bitset); |
212 // static Handle<Type>::type from_bitset(int bitset, Region*); | 210 // static Handle<Type>::type from_bitset(int bitset, Region*); |
213 // static Handle<Type>::type from_class(i::Handle<Map>, int lub, Region*); | 211 // static Handle<Type>::type from_class(i::Handle<Map>, Region*); |
214 // static Handle<Type>::type from_constant(i::Handle<Object>, int, Region*); | |
215 // static Handle<Type>::type from_struct(Handle<Struct>::type, int tag); | 212 // static Handle<Type>::type from_struct(Handle<Struct>::type, int tag); |
216 // static Handle<Struct>::type struct_create(int tag, int length, Region*); | 213 // static Handle<Struct>::type struct_create(int tag, int length, Region*); |
217 // static void struct_shrink(Handle<Struct>::type, int length); | 214 // static void struct_shrink(Handle<Struct>::type, int length); |
218 // static int struct_tag(Handle<Struct>::type); | 215 // static int struct_tag(Handle<Struct>::type); |
219 // static int struct_length(Handle<Struct>::type); | 216 // static int struct_length(Handle<Struct>::type); |
220 // static Handle<Type>::type struct_get(Handle<Struct>::type, int); | 217 // static Handle<Type>::type struct_get(Handle<Struct>::type, int); |
221 // static void struct_set(Handle<Struct>::type, int, Handle<Type>::type); | 218 // static void struct_set(Handle<Struct>::type, int, Handle<Type>::type); |
222 // static int lub_bitset(Type*); | 219 // template<class O> |
220 // static i::Handle<O> struct_get_heap(Handle<Struct>::type, int); | |
221 // template<class O> | |
222 // static void struct_set_heap(Handle<Struct>::type, int, i::Handle<O>); | |
223 // } | 223 // } |
224 template<class Config> | 224 template<class Config> |
225 class TypeImpl : public Config::Base { | 225 class TypeImpl : public Config::Base { |
226 public: | 226 public: |
227 class BitsetType; // Internal | 227 class BitsetType; // Internal |
228 class StructuralType; // Internal | 228 class StructuralType; // Internal |
229 class UnionType; // Internal | 229 class UnionType; // Internal |
230 | 230 |
231 class ClassType; | 231 class ClassType; |
232 class ConstantType; | 232 class ConstantType; |
(...skipping 49 matching lines...) Loading... | |
282 static TypeHandle Union(TypeHandle type1, TypeHandle type2, Region* reg); | 282 static TypeHandle Union(TypeHandle type1, TypeHandle type2, Region* reg); |
283 static TypeHandle Intersect(TypeHandle type1, TypeHandle type2, Region* reg); | 283 static TypeHandle Intersect(TypeHandle type1, TypeHandle type2, Region* reg); |
284 | 284 |
285 static TypeHandle Of(i::Object* value, Region* region) { | 285 static TypeHandle Of(i::Object* value, Region* region) { |
286 return Config::from_bitset(BitsetType::Lub(value), region); | 286 return Config::from_bitset(BitsetType::Lub(value), region); |
287 } | 287 } |
288 static TypeHandle Of(i::Handle<i::Object> value, Region* region) { | 288 static TypeHandle Of(i::Handle<i::Object> value, Region* region) { |
289 return Of(*value, region); | 289 return Of(*value, region); |
290 } | 290 } |
291 | 291 |
292 bool IsInhabited() { | 292 bool IsInhabited() { return BitsetType::IsInhabited(this->BitsetLub()); } |
293 return !this->IsBitset() || BitsetType::IsInhabited(this->AsBitset()); | |
294 } | |
295 | 293 |
296 bool Is(TypeImpl* that) { return this == that || this->SlowIs(that); } | 294 bool Is(TypeImpl* that) { return this == that || this->SlowIs(that); } |
297 template<class TypeHandle> | 295 template<class TypeHandle> |
298 bool Is(TypeHandle that) { return this->Is(*that); } | 296 bool Is(TypeHandle that) { return this->Is(*that); } |
299 | 297 |
300 bool Maybe(TypeImpl* that); | 298 bool Maybe(TypeImpl* that); |
301 template<class TypeHandle> | 299 template<class TypeHandle> |
302 bool Maybe(TypeHandle that) { return this->Maybe(*that); } | 300 bool Maybe(TypeHandle that) { return this->Maybe(*that); } |
303 | 301 |
304 bool Equals(TypeImpl* that) { return this->Is(that) && that->Is(this); } | 302 bool Equals(TypeImpl* that) { return this->Is(that) && that->Is(this); } |
(...skipping 11 matching lines...) Loading... | |
316 return NowOf(*value, region); | 314 return NowOf(*value, region); |
317 } | 315 } |
318 bool NowIs(TypeImpl* that); | 316 bool NowIs(TypeImpl* that); |
319 template<class TypeHandle> | 317 template<class TypeHandle> |
320 bool NowIs(TypeHandle that) { return this->NowIs(*that); } | 318 bool NowIs(TypeHandle that) { return this->NowIs(*that); } |
321 inline bool NowContains(i::Object* val); | 319 inline bool NowContains(i::Object* val); |
322 bool NowContains(i::Handle<i::Object> val) { return this->NowContains(*val); } | 320 bool NowContains(i::Handle<i::Object> val) { return this->NowContains(*val); } |
323 | 321 |
324 bool NowStable(); | 322 bool NowStable(); |
325 | 323 |
326 bool IsClass() { return Config::is_class(this); } | 324 bool IsClass() { |
327 bool IsConstant() { return Config::is_constant(this); } | 325 return Config::is_class(this) |
328 bool IsArray() { return Config::is_struct(this, StructuralType::kArrayTag); } | 326 || Config::is_struct(this, StructuralType::kClassTag); |
327 } | |
328 bool IsConstant() { | |
329 return Config::is_struct(this, StructuralType::kConstantTag); | |
330 } | |
331 bool IsArray() { | |
332 return Config::is_struct(this, StructuralType::kArrayTag); | |
333 } | |
329 bool IsFunction() { | 334 bool IsFunction() { |
330 return Config::is_struct(this, StructuralType::kFunctionTag); | 335 return Config::is_struct(this, StructuralType::kFunctionTag); |
331 } | 336 } |
332 | 337 |
333 ClassType* AsClass() { return ClassType::cast(this); } | 338 ClassType* AsClass() { return ClassType::cast(this); } |
334 ConstantType* AsConstant() { return ConstantType::cast(this); } | 339 ConstantType* AsConstant() { return ConstantType::cast(this); } |
335 ArrayType* AsArray() { return ArrayType::cast(this); } | 340 ArrayType* AsArray() { return ArrayType::cast(this); } |
336 FunctionType* AsFunction() { return FunctionType::cast(this); } | 341 FunctionType* AsFunction() { return FunctionType::cast(this); } |
337 | 342 |
338 int NumClasses(); | 343 int NumClasses(); |
(...skipping 20 matching lines...) Loading... | |
359 void TypePrint(FILE* out, PrintDimension = BOTH_DIMS); | 364 void TypePrint(FILE* out, PrintDimension = BOTH_DIMS); |
360 | 365 |
361 protected: | 366 protected: |
362 template<class> friend class Iterator; | 367 template<class> friend class Iterator; |
363 template<class> friend class TypeImpl; | 368 template<class> friend class TypeImpl; |
364 | 369 |
365 template<class T> | 370 template<class T> |
366 static typename Config::template Handle<T>::type handle(T* type) { | 371 static typename Config::template Handle<T>::type handle(T* type) { |
367 return Config::handle(type); | 372 return Config::handle(type); |
368 } | 373 } |
374 TypeImpl* unhandle() { return this; } | |
Benedikt Meurer
2014/05/23 05:09:00
Nit: Can we come up with a better name? "unhandle"
| |
369 | 375 |
370 bool IsNone() { return this == None(); } | 376 bool IsNone() { return this == None(); } |
371 bool IsAny() { return this == Any(); } | 377 bool IsAny() { return this == Any(); } |
372 bool IsBitset() { return Config::is_bitset(this); } | 378 bool IsBitset() { return Config::is_bitset(this); } |
373 bool IsUnion() { return Config::is_struct(this, StructuralType::kUnionTag); } | 379 bool IsUnion() { return Config::is_struct(this, StructuralType::kUnionTag); } |
374 | 380 |
375 int AsBitset() { | 381 int AsBitset() { |
376 ASSERT(this->IsBitset()); | 382 ASSERT(this->IsBitset()); |
377 return static_cast<BitsetType*>(this)->Bitset(); | 383 return static_cast<BitsetType*>(this)->Bitset(); |
378 } | 384 } |
379 UnionType* AsUnion() { return UnionType::cast(this); } | 385 UnionType* AsUnion() { return UnionType::cast(this); } |
380 | 386 |
381 bool SlowIs(TypeImpl* that); | 387 bool SlowIs(TypeImpl* that); |
382 | 388 |
383 bool InUnion(UnionHandle unioned, int current_size); | 389 TypeHandle Narrow(int bitset, Region* region); |
390 int BoundBy(TypeImpl* that); | |
391 int IndexInUnion(int bound, UnionHandle unioned, int current_size); | |
384 static int ExtendUnion( | 392 static int ExtendUnion( |
385 UnionHandle unioned, TypeHandle t, int current_size); | 393 UnionHandle unioned, int current_size, TypeHandle t, |
386 static int ExtendIntersection( | 394 TypeHandle other, bool is_intersect, Region* region); |
387 UnionHandle unioned, TypeHandle t, TypeHandle other, int current_size); | |
388 | 395 |
389 int BitsetGlb() { return BitsetType::Glb(this); } | 396 int BitsetGlb() { return BitsetType::Glb(this); } |
390 int BitsetLub() { return BitsetType::Lub(this); } | 397 int BitsetLub() { return BitsetType::Lub(this); } |
398 int InherentBitsetLub() { return BitsetType::InherentLub(this); } | |
391 }; | 399 }; |
392 | 400 |
393 | 401 |
394 template<class Config> | 402 template<class Config> |
395 class TypeImpl<Config>::BitsetType : public TypeImpl<Config> { | 403 class TypeImpl<Config>::BitsetType : public TypeImpl<Config> { |
396 private: | 404 private: |
397 friend class TypeImpl<Config>; | 405 friend class TypeImpl<Config>; |
398 | 406 |
399 enum { | 407 enum { |
400 #define DECLARE_TYPE(type, value) k##type = (value), | 408 #define DECLARE_TYPE(type, value) k##type = (value), |
401 BITSET_TYPE_LIST(DECLARE_TYPE) | 409 BITSET_TYPE_LIST(DECLARE_TYPE) |
402 #undef DECLARE_TYPE | 410 #undef DECLARE_TYPE |
403 kUnusedEOL = 0 | 411 kUnusedEOL = 0 |
404 }; | 412 }; |
405 | 413 |
406 int Bitset() { return Config::as_bitset(this); } | 414 int Bitset() { return Config::as_bitset(this); } |
407 | 415 |
408 static BitsetType* New(int bitset) { | 416 static TypeImpl* New(int bitset) { |
409 return static_cast<BitsetType*>(Config::from_bitset(bitset)); | 417 return static_cast<BitsetType*>(Config::from_bitset(bitset)); |
410 } | 418 } |
411 static TypeHandle New(int bitset, Region* region) { | 419 static TypeHandle New(int bitset, Region* region) { |
412 return Config::from_bitset(bitset, region); | 420 return Config::from_bitset(bitset, region); |
413 } | 421 } |
414 | 422 |
415 static bool IsInhabited(int bitset) { | 423 static bool IsInhabited(int bitset) { |
416 return (bitset & kRepresentation) && (bitset & kSemantic); | 424 return (bitset & kRepresentation) && (bitset & kSemantic); |
417 } | 425 } |
418 | 426 |
419 static int Glb(TypeImpl* type); // greatest lower bound that's a bitset | 427 static int Glb(TypeImpl* type); // greatest lower bound that's a bitset |
420 static int Lub(TypeImpl* type); // least upper bound that's a bitset | 428 static int Lub(TypeImpl* type); // least upper bound that's a bitset |
421 static int Lub(i::Object* value); | 429 static int Lub(i::Object* value); |
422 static int Lub(i::Map* map); | 430 static int Lub(i::Map* map); |
431 static int InherentLub(TypeImpl* type); | |
423 | 432 |
424 static const char* Name(int bitset); | 433 static const char* Name(int bitset); |
425 static void BitsetTypePrint(FILE* out, int bitset); | 434 static void BitsetTypePrint(FILE* out, int bitset); |
426 }; | 435 }; |
427 | 436 |
428 | 437 |
429 // Internal | 438 // Internal |
430 // A structured type contains a tag and a variable number of type fields. | 439 // A structured type contains a tag and a variable number of type fields. |
431 template<class Config> | 440 template<class Config> |
432 class TypeImpl<Config>::StructuralType : public TypeImpl<Config> { | 441 class TypeImpl<Config>::StructuralType : public TypeImpl<Config> { |
433 protected: | 442 protected: |
434 template<class> friend class TypeImpl; | 443 template<class> friend class TypeImpl; |
435 friend struct ZoneTypeConfig; // For tags. | 444 friend struct ZoneTypeConfig; // For tags. |
436 friend struct HeapTypeConfig; | 445 friend struct HeapTypeConfig; |
437 | 446 |
438 enum Tag { | 447 enum Tag { |
439 kClassTag, | 448 kClassTag, |
440 kConstantTag, | 449 kConstantTag, |
441 kArrayTag, | 450 kArrayTag, |
442 kFunctionTag, | 451 kFunctionTag, |
443 kUnionTag | 452 kUnionTag |
444 }; | 453 }; |
445 | 454 |
446 int Length() { | 455 int Length() { |
447 return Config::struct_length(Config::as_struct(this)); | 456 return Config::struct_length(Config::as_struct(this)); |
448 } | 457 } |
449 TypeHandle Get(int i) { | 458 TypeHandle Get(int i) { |
459 ASSERT(0 <= i && i < this->Length()); | |
450 return Config::struct_get(Config::as_struct(this), i); | 460 return Config::struct_get(Config::as_struct(this), i); |
451 } | 461 } |
452 void Set(int i, TypeHandle type) { | 462 void Set(int i, TypeHandle type) { |
463 ASSERT(0 <= i && i < this->Length()); | |
453 Config::struct_set(Config::as_struct(this), i, type); | 464 Config::struct_set(Config::as_struct(this), i, type); |
454 } | 465 } |
455 void Shrink(int length) { | 466 void Shrink(int length) { |
467 ASSERT(2 <= length && length <= this->Length()); | |
456 Config::struct_shrink(Config::as_struct(this), length); | 468 Config::struct_shrink(Config::as_struct(this), length); |
457 } | 469 } |
470 template<class O> i::Handle<O> GetHeap(int i) { | |
471 ASSERT(0 <= i && i < this->Length()); | |
472 return Config::template struct_get_heap<O>(Config::as_struct(this), i); | |
473 } | |
474 template<class O> void SetHeap(int i, i::Handle<O> x) { | |
475 ASSERT(0 <= i && i < this->Length()); | |
476 Config::struct_set_heap(Config::as_struct(this), i, x); | |
477 } | |
458 | 478 |
459 static TypeHandle New(Tag tag, int length, Region* region) { | 479 static TypeHandle New(Tag tag, int length, Region* region) { |
480 ASSERT(1 <= length); | |
460 return Config::from_struct(Config::struct_create(tag, length, region)); | 481 return Config::from_struct(Config::struct_create(tag, length, region)); |
461 } | 482 } |
462 }; | 483 }; |
463 | 484 |
464 | 485 |
486 // Internal | |
487 // A union is a structured type with the following invariants: | |
488 // - its length is at least 2 | |
489 // - at most one field is a bitset, and it must go into index 0 | |
490 // - no field is a union | |
491 // - no field is a subtype of any other field | |
465 template<class Config> | 492 template<class Config> |
466 class TypeImpl<Config>::ClassType : public TypeImpl<Config> { | 493 class TypeImpl<Config>::UnionType : public StructuralType { |
467 public: | 494 public: |
468 i::Handle<i::Map> Map() { return Config::as_class(this); } | 495 static UnionHandle New(int length, Region* region) { |
496 return Config::template cast<UnionType>( | |
497 StructuralType::New(StructuralType::kUnionTag, length, region)); | |
498 } | |
499 | |
500 static UnionType* cast(TypeImpl* type) { | |
501 ASSERT(type->IsUnion()); | |
502 return static_cast<UnionType*>(type); | |
503 } | |
504 | |
505 bool Wellformed(); | |
506 }; | |
507 | |
508 | |
509 template<class Config> | |
510 class TypeImpl<Config>::ClassType : public StructuralType { | |
511 public: | |
512 TypeHandle Bound(Region* region) { | |
513 return Config::is_class(this) | |
514 ? BitsetType::New(BitsetType::Lub(*Config::as_class(this)), region) | |
515 : this->Get(0); | |
516 } | |
517 i::Handle<i::Map> Map() { | |
518 return Config::is_class(this) | |
519 ? Config::as_class(this) | |
520 : this->template GetHeap<i::Map>(1); | |
521 } | |
522 | |
523 static ClassHandle New( | |
524 i::Handle<i::Map> map, TypeHandle bound, Region* region) { | |
525 ClassHandle type = Config::template cast<ClassType>( | |
526 StructuralType::New(StructuralType::kClassTag, 2, region)); | |
527 type->Set(0, bound); | |
528 type->SetHeap(1, map); | |
529 return type; | |
530 } | |
469 | 531 |
470 static ClassHandle New(i::Handle<i::Map> map, Region* region) { | 532 static ClassHandle New(i::Handle<i::Map> map, Region* region) { |
471 return Config::template cast<ClassType>( | 533 ClassHandle type = |
472 Config::from_class(map, BitsetType::Lub(*map), region)); | 534 Config::template cast<ClassType>(Config::from_class(map, region)); |
535 if (type->IsClass()) { | |
536 return type; | |
537 } else { | |
538 TypeHandle bound = BitsetType::New(BitsetType::Lub(*map), region); | |
539 return New(map, bound, region); | |
540 } | |
473 } | 541 } |
474 | 542 |
475 static ClassType* cast(TypeImpl* type) { | 543 static ClassType* cast(TypeImpl* type) { |
476 ASSERT(type->IsClass()); | 544 ASSERT(type->IsClass()); |
477 return static_cast<ClassType*>(type); | 545 return static_cast<ClassType*>(type); |
478 } | 546 } |
479 }; | 547 }; |
480 | 548 |
481 | 549 |
482 template<class Config> | 550 template<class Config> |
483 class TypeImpl<Config>::ConstantType : public TypeImpl<Config> { | 551 class TypeImpl<Config>::ConstantType : public StructuralType { |
484 public: | 552 public: |
485 i::Handle<i::Object> Value() { return Config::as_constant(this); } | 553 TypeHandle Bound() { return this->Get(0); } |
554 i::Handle<i::Object> Value() { return this->template GetHeap<i::Object>(1); } | |
555 | |
556 static ConstantHandle New( | |
557 i::Handle<i::Object> value, TypeHandle bound, Region* region) { | |
558 ConstantHandle type = Config::template cast<ConstantType>( | |
559 StructuralType::New(StructuralType::kConstantTag, 2, region)); | |
560 type->Set(0, bound); | |
561 type->SetHeap(1, value); | |
562 return type; | |
563 } | |
486 | 564 |
487 static ConstantHandle New(i::Handle<i::Object> value, Region* region) { | 565 static ConstantHandle New(i::Handle<i::Object> value, Region* region) { |
488 return Config::template cast<ConstantType>( | 566 TypeHandle bound = BitsetType::New(BitsetType::Lub(*value), region); |
489 Config::from_constant(value, BitsetType::Lub(*value), region)); | 567 return New(value, bound, region); |
490 } | 568 } |
491 | 569 |
492 static ConstantType* cast(TypeImpl* type) { | 570 static ConstantType* cast(TypeImpl* type) { |
493 ASSERT(type->IsConstant()); | 571 ASSERT(type->IsConstant()); |
494 return static_cast<ConstantType*>(type); | 572 return static_cast<ConstantType*>(type); |
495 } | 573 } |
496 }; | 574 }; |
497 | 575 |
498 | 576 |
499 // Internal | |
500 // A union is a structured type with the following invariants: | |
501 // - its length is at least 2 | |
502 // - at most one field is a bitset, and it must go into index 0 | |
503 // - no field is a union | |
504 template<class Config> | |
505 class TypeImpl<Config>::UnionType : public StructuralType { | |
506 public: | |
507 static UnionHandle New(int length, Region* region) { | |
508 return Config::template cast<UnionType>( | |
509 StructuralType::New(StructuralType::kUnionTag, length, region)); | |
510 } | |
511 | |
512 static UnionType* cast(TypeImpl* type) { | |
513 ASSERT(type->IsUnion()); | |
514 return static_cast<UnionType*>(type); | |
515 } | |
516 }; | |
517 | |
518 | |
519 template<class Config> | 577 template<class Config> |
520 class TypeImpl<Config>::ArrayType : public StructuralType { | 578 class TypeImpl<Config>::ArrayType : public StructuralType { |
521 public: | 579 public: |
522 TypeHandle Element() { return this->Get(0); } | 580 TypeHandle Bound() { return this->Get(0); } |
581 TypeHandle Element() { return this->Get(1); } | |
582 | |
583 static ArrayHandle New(TypeHandle element, TypeHandle bound, Region* region) { | |
584 ArrayHandle type = Config::template cast<ArrayType>( | |
585 StructuralType::New(StructuralType::kArrayTag, 2, region)); | |
586 type->Set(0, bound); | |
587 type->Set(1, element); | |
588 return type; | |
589 } | |
523 | 590 |
524 static ArrayHandle New(TypeHandle element, Region* region) { | 591 static ArrayHandle New(TypeHandle element, Region* region) { |
525 ArrayHandle type = Config::template cast<ArrayType>( | 592 TypeHandle bound = BitsetType::New(BitsetType::kArray, region); |
526 StructuralType::New(StructuralType::kArrayTag, 1, region)); | 593 return New(element, bound, region); |
527 type->Set(0, element); | |
528 return type; | |
529 } | 594 } |
530 | 595 |
531 static ArrayType* cast(TypeImpl* type) { | 596 static ArrayType* cast(TypeImpl* type) { |
532 ASSERT(type->IsArray()); | 597 ASSERT(type->IsArray()); |
533 return static_cast<ArrayType*>(type); | 598 return static_cast<ArrayType*>(type); |
534 } | 599 } |
535 }; | 600 }; |
536 | 601 |
537 | 602 |
538 template<class Config> | 603 template<class Config> |
539 class TypeImpl<Config>::FunctionType : public StructuralType { | 604 class TypeImpl<Config>::FunctionType : public StructuralType { |
540 public: | 605 public: |
541 int Arity() { return this->Length() - 2; } | 606 int Arity() { return this->Length() - 3; } |
542 TypeHandle Result() { return this->Get(0); } | 607 TypeHandle Bound() { return this->Get(0); } |
543 TypeHandle Receiver() { return this->Get(1); } | 608 TypeHandle Result() { return this->Get(1); } |
544 TypeHandle Parameter(int i) { return this->Get(2 + i); } | 609 TypeHandle Receiver() { return this->Get(2); } |
610 TypeHandle Parameter(int i) { return this->Get(3 + i); } | |
545 | 611 |
546 void InitParameter(int i, TypeHandle type) { this->Set(2 + i, type); } | 612 void InitParameter(int i, TypeHandle type) { this->Set(3 + i, type); } |
613 | |
614 static FunctionHandle New( | |
615 TypeHandle result, TypeHandle receiver, TypeHandle bound, | |
616 int arity, Region* region) { | |
617 FunctionHandle type = Config::template cast<FunctionType>( | |
618 StructuralType::New(StructuralType::kFunctionTag, 3 + arity, region)); | |
619 type->Set(0, bound); | |
620 type->Set(1, result); | |
621 type->Set(2, receiver); | |
622 return type; | |
623 } | |
547 | 624 |
548 static FunctionHandle New( | 625 static FunctionHandle New( |
549 TypeHandle result, TypeHandle receiver, int arity, Region* region) { | 626 TypeHandle result, TypeHandle receiver, int arity, Region* region) { |
550 FunctionHandle type = Config::template cast<FunctionType>( | 627 TypeHandle bound = BitsetType::New(BitsetType::kFunction, region); |
551 StructuralType::New(StructuralType::kFunctionTag, 2 + arity, region)); | 628 return New(result, receiver, bound, arity, region); |
552 type->Set(0, result); | |
553 type->Set(1, receiver); | |
554 return type; | |
555 } | 629 } |
556 | 630 |
557 static FunctionType* cast(TypeImpl* type) { | 631 static FunctionType* cast(TypeImpl* type) { |
558 ASSERT(type->IsFunction()); | 632 ASSERT(type->IsFunction()); |
559 return static_cast<FunctionType*>(type); | 633 return static_cast<FunctionType*>(type); |
560 } | 634 } |
561 }; | 635 }; |
562 | 636 |
563 | 637 |
564 template<class Config> template<class T> | 638 template<class Config> template<class T> |
(...skipping 26 matching lines...) Loading... | |
591 class Base {}; | 665 class Base {}; |
592 typedef void* Struct; | 666 typedef void* Struct; |
593 typedef i::Zone Region; | 667 typedef i::Zone Region; |
594 template<class T> struct Handle { typedef T* type; }; | 668 template<class T> struct Handle { typedef T* type; }; |
595 | 669 |
596 template<class T> static inline T* handle(T* type); | 670 template<class T> static inline T* handle(T* type); |
597 template<class T> static inline T* cast(Type* type); | 671 template<class T> static inline T* cast(Type* type); |
598 | 672 |
599 static inline bool is_bitset(Type* type); | 673 static inline bool is_bitset(Type* type); |
600 static inline bool is_class(Type* type); | 674 static inline bool is_class(Type* type); |
601 static inline bool is_constant(Type* type); | |
602 static inline bool is_struct(Type* type, int tag); | 675 static inline bool is_struct(Type* type, int tag); |
603 | 676 |
604 static inline int as_bitset(Type* type); | 677 static inline int as_bitset(Type* type); |
678 static inline i::Handle<i::Map> as_class(Type* type); | |
605 static inline Struct* as_struct(Type* type); | 679 static inline Struct* as_struct(Type* type); |
606 static inline i::Handle<i::Map> as_class(Type* type); | |
607 static inline i::Handle<i::Object> as_constant(Type* type); | |
608 | 680 |
609 static inline Type* from_bitset(int bitset); | 681 static inline Type* from_bitset(int bitset); |
610 static inline Type* from_bitset(int bitset, Zone* zone); | 682 static inline Type* from_bitset(int bitset, Zone* zone); |
683 static inline Type* from_class(i::Handle<i::Map> map, Zone* zone); | |
611 static inline Type* from_struct(Struct* structured); | 684 static inline Type* from_struct(Struct* structured); |
612 static inline Type* from_class(i::Handle<i::Map> map, int lub, Zone* zone); | |
613 static inline Type* from_constant( | |
614 i::Handle<i::Object> value, int lub, Zone* zone); | |
615 | 685 |
616 static inline Struct* struct_create(int tag, int length, Zone* zone); | 686 static inline Struct* struct_create(int tag, int length, Zone* zone); |
617 static inline void struct_shrink(Struct* structured, int length); | 687 static inline void struct_shrink(Struct* structure, int length); |
618 static inline int struct_tag(Struct* structured); | 688 static inline int struct_tag(Struct* structure); |
619 static inline int struct_length(Struct* structured); | 689 static inline int struct_length(Struct* structure); |
620 static inline Type* struct_get(Struct* structured, int i); | 690 static inline Type* struct_get(Struct* structure, int i); |
621 static inline void struct_set(Struct* structured, int i, Type* type); | 691 static inline void struct_set(Struct* structure, int i, Type* type); |
622 | 692 template<class O> |
623 static inline int lub_bitset(Type* type); | 693 static inline i::Handle<O> struct_get_heap(Struct* structure, int i); |
694 template<class O> static inline void struct_set_heap( | |
695 Struct* structure, int i, i::Handle<O> x); | |
624 }; | 696 }; |
625 | 697 |
626 typedef TypeImpl<ZoneTypeConfig> Type; | 698 typedef TypeImpl<ZoneTypeConfig> Type; |
627 | 699 |
628 | 700 |
629 // Heap-allocated types are either smis for bitsets, maps for classes, boxes for | 701 // Heap-allocated types are either smis for bitsets, maps for classes, boxes for |
630 // constants, or fixed arrays for unions. | 702 // constants, or fixed arrays for unions. |
631 struct HeapTypeConfig { | 703 struct HeapTypeConfig { |
632 typedef TypeImpl<HeapTypeConfig> Type; | 704 typedef TypeImpl<HeapTypeConfig> Type; |
633 typedef i::Object Base; | 705 typedef i::Object Base; |
634 typedef i::FixedArray Struct; | 706 typedef i::FixedArray Struct; |
635 typedef i::Isolate Region; | 707 typedef i::Isolate Region; |
636 template<class T> struct Handle { typedef i::Handle<T> type; }; | 708 template<class T> struct Handle { typedef i::Handle<T> type; }; |
637 | 709 |
638 template<class T> static inline i::Handle<T> handle(T* type); | 710 template<class T> static inline i::Handle<T> handle(T* type); |
639 template<class T> static inline i::Handle<T> cast(i::Handle<Type> type); | 711 template<class T> static inline i::Handle<T> cast(i::Handle<Type> type); |
640 | 712 |
641 static inline bool is_bitset(Type* type); | 713 static inline bool is_bitset(Type* type); |
642 static inline bool is_class(Type* type); | 714 static inline bool is_class(Type* type); |
643 static inline bool is_constant(Type* type); | |
644 static inline bool is_struct(Type* type, int tag); | 715 static inline bool is_struct(Type* type, int tag); |
645 | 716 |
646 static inline int as_bitset(Type* type); | 717 static inline int as_bitset(Type* type); |
647 static inline i::Handle<i::Map> as_class(Type* type); | 718 static inline i::Handle<i::Map> as_class(Type* type); |
648 static inline i::Handle<i::Object> as_constant(Type* type); | |
649 static inline i::Handle<Struct> as_struct(Type* type); | 719 static inline i::Handle<Struct> as_struct(Type* type); |
650 | 720 |
651 static inline Type* from_bitset(int bitset); | 721 static inline Type* from_bitset(int bitset); |
652 static inline i::Handle<Type> from_bitset(int bitset, Isolate* isolate); | 722 static inline i::Handle<Type> from_bitset(int bitset, Isolate* isolate); |
653 static inline i::Handle<Type> from_class( | 723 static inline i::Handle<Type> from_class( |
654 i::Handle<i::Map> map, int lub, Isolate* isolate); | 724 i::Handle<i::Map> map, Isolate* isolate); |
655 static inline i::Handle<Type> from_constant( | 725 static inline i::Handle<Type> from_struct(i::Handle<Struct> structure); |
656 i::Handle<i::Object> value, int lub, Isolate* isolate); | |
657 static inline i::Handle<Type> from_struct(i::Handle<Struct> structured); | |
658 | 726 |
659 static inline i::Handle<Struct> struct_create( | 727 static inline i::Handle<Struct> struct_create( |
660 int tag, int length, Isolate* isolate); | 728 int tag, int length, Isolate* isolate); |
661 static inline void struct_shrink(i::Handle<Struct> structured, int length); | 729 static inline void struct_shrink(i::Handle<Struct> structure, int length); |
662 static inline int struct_tag(i::Handle<Struct> structured); | 730 static inline int struct_tag(i::Handle<Struct> structure); |
663 static inline int struct_length(i::Handle<Struct> structured); | 731 static inline int struct_length(i::Handle<Struct> structure); |
664 static inline i::Handle<Type> struct_get(i::Handle<Struct> structured, int i); | 732 static inline i::Handle<Type> struct_get(i::Handle<Struct> structure, int i); |
665 static inline void struct_set( | 733 static inline void struct_set( |
666 i::Handle<Struct> structured, int i, i::Handle<Type> type); | 734 i::Handle<Struct> structure, int i, i::Handle<Type> type); |
667 | 735 template<class O> |
668 static inline int lub_bitset(Type* type); | 736 static inline i::Handle<O> struct_get_heap( |
737 i::Handle<Struct> structure, int i); | |
738 template<class O> | |
739 static inline void struct_set_heap( | |
740 i::Handle<Struct> structure, int i, i::Handle<O> x); | |
669 }; | 741 }; |
670 | 742 |
671 typedef TypeImpl<HeapTypeConfig> HeapType; | 743 typedef TypeImpl<HeapTypeConfig> HeapType; |
672 | 744 |
673 | 745 |
674 // A simple struct to represent a pair of lower/upper type bounds. | 746 // A simple struct to represent a pair of lower/upper type bounds. |
675 template<class Config> | 747 template<class Config> |
676 struct BoundsImpl { | 748 struct BoundsImpl { |
677 typedef TypeImpl<Config> Type; | 749 typedef TypeImpl<Config> Type; |
678 typedef typename Type::TypeHandle TypeHandle; | 750 typedef typename Type::TypeHandle TypeHandle; |
(...skipping 44 matching lines...) Loading... | |
723 bool Narrows(BoundsImpl that) { | 795 bool Narrows(BoundsImpl that) { |
724 return that.lower->Is(this->lower) && this->upper->Is(that.upper); | 796 return that.lower->Is(this->lower) && this->upper->Is(that.upper); |
725 } | 797 } |
726 }; | 798 }; |
727 | 799 |
728 typedef BoundsImpl<ZoneTypeConfig> Bounds; | 800 typedef BoundsImpl<ZoneTypeConfig> Bounds; |
729 | 801 |
730 } } // namespace v8::internal | 802 } } // namespace v8::internal |
731 | 803 |
732 #endif // V8_TYPES_H_ | 804 #endif // V8_TYPES_H_ |
OLD | NEW |