| 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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 | 444 |
| 445 | 445 |
| 446 Handle<Struct> Factory::NewStruct(InstanceType type) { | 446 Handle<Struct> Factory::NewStruct(InstanceType type) { |
| 447 CALL_HEAP_FUNCTION( | 447 CALL_HEAP_FUNCTION( |
| 448 isolate(), | 448 isolate(), |
| 449 isolate()->heap()->AllocateStruct(type), | 449 isolate()->heap()->AllocateStruct(type), |
| 450 Struct); | 450 Struct); |
| 451 } | 451 } |
| 452 | 452 |
| 453 | 453 |
| 454 Handle<AliasedArgumentsEntry> Factory::NewAliasedArgumentsEntry( |
| 455 int aliased_context_slot) { |
| 456 Handle<AliasedArgumentsEntry> entry = Handle<AliasedArgumentsEntry>::cast( |
| 457 NewStruct(ALIASED_ARGUMENTS_ENTRY_TYPE)); |
| 458 entry->set_aliased_context_slot(aliased_context_slot); |
| 459 return entry; |
| 460 } |
| 461 |
| 462 |
| 454 Handle<DeclaredAccessorDescriptor> Factory::NewDeclaredAccessorDescriptor() { | 463 Handle<DeclaredAccessorDescriptor> Factory::NewDeclaredAccessorDescriptor() { |
| 455 return Handle<DeclaredAccessorDescriptor>::cast( | 464 return Handle<DeclaredAccessorDescriptor>::cast( |
| 456 NewStruct(DECLARED_ACCESSOR_DESCRIPTOR_TYPE)); | 465 NewStruct(DECLARED_ACCESSOR_DESCRIPTOR_TYPE)); |
| 457 } | 466 } |
| 458 | 467 |
| 459 | 468 |
| 460 Handle<DeclaredAccessorInfo> Factory::NewDeclaredAccessorInfo() { | 469 Handle<DeclaredAccessorInfo> Factory::NewDeclaredAccessorInfo() { |
| 461 Handle<DeclaredAccessorInfo> info = | 470 Handle<DeclaredAccessorInfo> info = |
| 462 Handle<DeclaredAccessorInfo>::cast( | 471 Handle<DeclaredAccessorInfo>::cast( |
| 463 NewStruct(DECLARED_ACCESSOR_INFO_TYPE)); | 472 NewStruct(DECLARED_ACCESSOR_INFO_TYPE)); |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 | 628 |
| 620 | 629 |
| 621 Handle<Map> Factory::CopyMap(Handle<Map> src, | 630 Handle<Map> Factory::CopyMap(Handle<Map> src, |
| 622 int extra_inobject_properties) { | 631 int extra_inobject_properties) { |
| 623 Handle<Map> copy = CopyWithPreallocatedFieldDescriptors(src); | 632 Handle<Map> copy = CopyWithPreallocatedFieldDescriptors(src); |
| 624 // Check that we do not overflow the instance size when adding the | 633 // Check that we do not overflow the instance size when adding the |
| 625 // extra inobject properties. | 634 // extra inobject properties. |
| 626 int instance_size_delta = extra_inobject_properties * kPointerSize; | 635 int instance_size_delta = extra_inobject_properties * kPointerSize; |
| 627 int max_instance_size_delta = | 636 int max_instance_size_delta = |
| 628 JSObject::kMaxInstanceSize - copy->instance_size(); | 637 JSObject::kMaxInstanceSize - copy->instance_size(); |
| 629 if (instance_size_delta > max_instance_size_delta) { | 638 int max_extra_properties = max_instance_size_delta >> kPointerSizeLog2; |
| 639 if (extra_inobject_properties > max_extra_properties) { |
| 630 // If the instance size overflows, we allocate as many properties | 640 // If the instance size overflows, we allocate as many properties |
| 631 // as we can as inobject properties. | 641 // as we can as inobject properties. |
| 632 instance_size_delta = max_instance_size_delta; | 642 instance_size_delta = max_instance_size_delta; |
| 633 extra_inobject_properties = max_instance_size_delta >> kPointerSizeLog2; | 643 extra_inobject_properties = max_extra_properties; |
| 634 } | 644 } |
| 635 // Adjust the map with the extra inobject properties. | 645 // Adjust the map with the extra inobject properties. |
| 636 int inobject_properties = | 646 int inobject_properties = |
| 637 copy->inobject_properties() + extra_inobject_properties; | 647 copy->inobject_properties() + extra_inobject_properties; |
| 638 copy->set_inobject_properties(inobject_properties); | 648 copy->set_inobject_properties(inobject_properties); |
| 639 copy->set_unused_property_fields(inobject_properties); | 649 copy->set_unused_property_fields(inobject_properties); |
| 640 copy->set_instance_size(copy->instance_size() + instance_size_delta); | 650 copy->set_instance_size(copy->instance_size() + instance_size_delta); |
| 641 copy->set_visitor_id(StaticVisitorBase::GetVisitorId(*copy)); | 651 copy->set_visitor_id(StaticVisitorBase::GetVisitorId(*copy)); |
| 642 return copy; | 652 return copy; |
| 643 } | 653 } |
| (...skipping 1143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1787 return Handle<Object>::null(); | 1797 return Handle<Object>::null(); |
| 1788 } | 1798 } |
| 1789 | 1799 |
| 1790 | 1800 |
| 1791 Handle<Object> Factory::ToBoolean(bool value) { | 1801 Handle<Object> Factory::ToBoolean(bool value) { |
| 1792 return value ? true_value() : false_value(); | 1802 return value ? true_value() : false_value(); |
| 1793 } | 1803 } |
| 1794 | 1804 |
| 1795 | 1805 |
| 1796 } } // namespace v8::internal | 1806 } } // namespace v8::internal |
| OLD | NEW |