OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 3559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3570 int index = Smi::cast(args[1])->value(); | 3570 int index = Smi::cast(args[1])->value(); |
3571 Handle<Object> result = GetCharAt(str, index); | 3571 Handle<Object> result = GetCharAt(str, index); |
3572 return *result; | 3572 return *result; |
3573 } | 3573 } |
3574 | 3574 |
3575 // Fall back to GetObjectProperty. | 3575 // Fall back to GetObjectProperty. |
3576 return Runtime::GetObjectProperty(args.at<Object>(0), | 3576 return Runtime::GetObjectProperty(args.at<Object>(0), |
3577 args.at<Object>(1)); | 3577 args.at<Object>(1)); |
3578 } | 3578 } |
3579 | 3579 |
3580 | 3580 // Implements part of 8.12.9 DefineOwnProperty. |
| 3581 // There are 3 cases that lead here: |
| 3582 // Step 4b - define a new accessor property. |
| 3583 // Steps 9c & 12 - replace an existing data property with an accessor property. |
| 3584 // Step 12 - update an existing accessor property with an accessor or generic |
| 3585 // descriptor. |
3581 static MaybeObject* Runtime_DefineOrRedefineAccessorProperty(Arguments args) { | 3586 static MaybeObject* Runtime_DefineOrRedefineAccessorProperty(Arguments args) { |
3582 ASSERT(args.length() == 5); | 3587 ASSERT(args.length() == 5); |
3583 HandleScope scope; | 3588 HandleScope scope; |
3584 CONVERT_ARG_CHECKED(JSObject, obj, 0); | 3589 CONVERT_ARG_CHECKED(JSObject, obj, 0); |
3585 CONVERT_CHECKED(String, name, args[1]); | 3590 CONVERT_CHECKED(String, name, args[1]); |
3586 CONVERT_CHECKED(Smi, flag_setter, args[2]); | 3591 CONVERT_CHECKED(Smi, flag_setter, args[2]); |
3587 Object* fun = args[3]; | 3592 Object* fun = args[3]; |
3588 RUNTIME_ASSERT(fun->IsJSFunction() || fun->IsUndefined()); | 3593 RUNTIME_ASSERT(fun->IsJSFunction() || fun->IsUndefined()); |
3589 CONVERT_CHECKED(Smi, flag_attr, args[4]); | 3594 CONVERT_CHECKED(Smi, flag_attr, args[4]); |
3590 int unchecked = flag_attr->value(); | 3595 int unchecked = flag_attr->value(); |
(...skipping 11 matching lines...) Expand all Loading... |
3602 || result.type() == CONSTANT_FUNCTION)) { | 3607 || result.type() == CONSTANT_FUNCTION)) { |
3603 Object* ok; | 3608 Object* ok; |
3604 { MaybeObject* maybe_ok = | 3609 { MaybeObject* maybe_ok = |
3605 obj->DeleteProperty(name, JSObject::NORMAL_DELETION); | 3610 obj->DeleteProperty(name, JSObject::NORMAL_DELETION); |
3606 if (!maybe_ok->ToObject(&ok)) return maybe_ok; | 3611 if (!maybe_ok->ToObject(&ok)) return maybe_ok; |
3607 } | 3612 } |
3608 } | 3613 } |
3609 return obj->DefineAccessor(name, flag_setter->value() == 0, fun, attr); | 3614 return obj->DefineAccessor(name, flag_setter->value() == 0, fun, attr); |
3610 } | 3615 } |
3611 | 3616 |
| 3617 // Implements part of 8.12.9 DefineOwnProperty. |
| 3618 // There are 3 cases that lead here: |
| 3619 // Step 4a - define a new data property. |
| 3620 // Steps 9b & 12 - replace an existing accessor property with a data property. |
| 3621 // Step 12 - update an existing data property with a data or generic |
| 3622 // descriptor. |
3612 static MaybeObject* Runtime_DefineOrRedefineDataProperty(Arguments args) { | 3623 static MaybeObject* Runtime_DefineOrRedefineDataProperty(Arguments args) { |
3613 ASSERT(args.length() == 4); | 3624 ASSERT(args.length() == 4); |
3614 HandleScope scope; | 3625 HandleScope scope; |
3615 CONVERT_ARG_CHECKED(JSObject, js_object, 0); | 3626 CONVERT_ARG_CHECKED(JSObject, js_object, 0); |
3616 CONVERT_ARG_CHECKED(String, name, 1); | 3627 CONVERT_ARG_CHECKED(String, name, 1); |
3617 Handle<Object> obj_value = args.at<Object>(2); | 3628 Handle<Object> obj_value = args.at<Object>(2); |
3618 | 3629 |
3619 CONVERT_CHECKED(Smi, flag, args[3]); | 3630 CONVERT_CHECKED(Smi, flag, args[3]); |
3620 int unchecked = flag->value(); | 3631 int unchecked = flag->value(); |
3621 RUNTIME_ASSERT((unchecked & ~(READ_ONLY | DONT_ENUM | DONT_DELETE)) == 0); | 3632 RUNTIME_ASSERT((unchecked & ~(READ_ONLY | DONT_ENUM | DONT_DELETE)) == 0); |
3622 | 3633 |
3623 PropertyAttributes attr = static_cast<PropertyAttributes>(unchecked); | 3634 PropertyAttributes attr = static_cast<PropertyAttributes>(unchecked); |
3624 | 3635 |
3625 // Check if this is an element. | 3636 // Check if this is an element. |
3626 uint32_t index; | 3637 uint32_t index; |
3627 bool is_element = name->AsArrayIndex(&index); | 3638 bool is_element = name->AsArrayIndex(&index); |
3628 | 3639 |
3629 // Special case for elements if any of the flags are true. | 3640 // Special case for elements if any of the flags are true. |
3630 // If elements are in fast case we always implicitly assume that: | 3641 // If elements are in fast case we always implicitly assume that: |
3631 // DONT_DELETE: false, DONT_ENUM: false, READ_ONLY: false. | 3642 // DONT_DELETE: false, DONT_ENUM: false, READ_ONLY: false. |
3632 if (((unchecked & (DONT_DELETE | DONT_ENUM | READ_ONLY)) != 0) && | 3643 if (((unchecked & (DONT_DELETE | DONT_ENUM | READ_ONLY)) != 0) && |
3633 is_element) { | 3644 is_element) { |
3634 // Normalize the elements to enable attributes on the property. | 3645 // Normalize the elements to enable attributes on the property. |
3635 NormalizeElements(js_object); | 3646 if (!js_object->IsJSGlobalProxy()) { |
| 3647 NormalizeElements(js_object); |
| 3648 } |
3636 Handle<NumberDictionary> dictionary(js_object->element_dictionary()); | 3649 Handle<NumberDictionary> dictionary(js_object->element_dictionary()); |
3637 // Make sure that we never go back to fast case. | 3650 // Make sure that we never go back to fast case. |
3638 dictionary->set_requires_slow_elements(); | 3651 dictionary->set_requires_slow_elements(); |
3639 PropertyDetails details = PropertyDetails(attr, NORMAL); | 3652 PropertyDetails details = PropertyDetails(attr, NORMAL); |
3640 NumberDictionarySet(dictionary, index, obj_value, details); | 3653 NumberDictionarySet(dictionary, index, obj_value, details); |
3641 } | 3654 } |
3642 | 3655 |
3643 LookupResult result; | 3656 LookupResult result; |
3644 js_object->LookupRealNamedProperty(*name, &result); | 3657 js_object->LookupRealNamedProperty(*name, &result); |
3645 | 3658 |
3646 // Take special care when attributes are different and there is already | 3659 // Take special care when attributes are different and there is already |
3647 // a property. For simplicity we normalize the property which enables us | 3660 // a property. For simplicity we normalize the property which enables us |
3648 // to not worry about changing the instance_descriptor and creating a new | 3661 // to not worry about changing the instance_descriptor and creating a new |
3649 // map. The current version of SetObjectProperty does not handle attributes | 3662 // map. The current version of SetObjectProperty does not handle attributes |
3650 // correctly in the case where a property is a field and is reset with | 3663 // correctly in the case where a property is a field and is reset with |
3651 // new attributes. | 3664 // new attributes. |
3652 if (result.IsProperty() && | 3665 if (result.IsProperty() && |
3653 (attr != result.GetAttributes() || result.type() == CALLBACKS)) { | 3666 (attr != result.GetAttributes() || result.type() == CALLBACKS)) { |
3654 // New attributes - normalize to avoid writing to instance descriptor | 3667 // New attributes - normalize to avoid writing to instance descriptor |
3655 NormalizeProperties(js_object, CLEAR_INOBJECT_PROPERTIES, 0); | 3668 if (!js_object->IsJSGlobalProxy()) { |
| 3669 NormalizeProperties(js_object, CLEAR_INOBJECT_PROPERTIES, 0); |
| 3670 } |
3656 // Use IgnoreAttributes version since a readonly property may be | 3671 // Use IgnoreAttributes version since a readonly property may be |
3657 // overridden and SetProperty does not allow this. | 3672 // overridden and SetProperty does not allow this. |
3658 return js_object->SetLocalPropertyIgnoreAttributes(*name, | 3673 return js_object->SetLocalPropertyIgnoreAttributes(*name, |
3659 *obj_value, | 3674 *obj_value, |
3660 attr); | 3675 attr); |
3661 } | 3676 } |
3662 | 3677 |
3663 return Runtime::SetObjectProperty(js_object, name, obj_value, attr); | 3678 return Runtime::SetObjectProperty(js_object, name, obj_value, attr); |
3664 } | 3679 } |
3665 | 3680 |
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4241 } | 4256 } |
4242 return *object; | 4257 return *object; |
4243 } | 4258 } |
4244 | 4259 |
4245 | 4260 |
4246 static MaybeObject* Runtime_ToSlowProperties(Arguments args) { | 4261 static MaybeObject* Runtime_ToSlowProperties(Arguments args) { |
4247 HandleScope scope; | 4262 HandleScope scope; |
4248 | 4263 |
4249 ASSERT(args.length() == 1); | 4264 ASSERT(args.length() == 1); |
4250 Handle<Object> object = args.at<Object>(0); | 4265 Handle<Object> object = args.at<Object>(0); |
4251 if (object->IsJSObject()) { | 4266 if (object->IsJSObject() && !object->IsJSGlobalProxy()) { |
4252 Handle<JSObject> js_object = Handle<JSObject>::cast(object); | 4267 Handle<JSObject> js_object = Handle<JSObject>::cast(object); |
4253 NormalizeProperties(js_object, CLEAR_INOBJECT_PROPERTIES, 0); | 4268 NormalizeProperties(js_object, CLEAR_INOBJECT_PROPERTIES, 0); |
4254 } | 4269 } |
4255 return *object; | 4270 return *object; |
4256 } | 4271 } |
4257 | 4272 |
4258 | 4273 |
4259 static MaybeObject* Runtime_ToBool(Arguments args) { | 4274 static MaybeObject* Runtime_ToBool(Arguments args) { |
4260 NoHandleAllocation ha; | 4275 NoHandleAllocation ha; |
4261 ASSERT(args.length() == 1); | 4276 ASSERT(args.length() == 1); |
(...skipping 6728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10990 } else { | 11005 } else { |
10991 // Handle last resort GC and make sure to allow future allocations | 11006 // Handle last resort GC and make sure to allow future allocations |
10992 // to grow the heap without causing GCs (if possible). | 11007 // to grow the heap without causing GCs (if possible). |
10993 Counters::gc_last_resort_from_js.Increment(); | 11008 Counters::gc_last_resort_from_js.Increment(); |
10994 Heap::CollectAllGarbage(false); | 11009 Heap::CollectAllGarbage(false); |
10995 } | 11010 } |
10996 } | 11011 } |
10997 | 11012 |
10998 | 11013 |
10999 } } // namespace v8::internal | 11014 } } // namespace v8::internal |
OLD | NEW |