Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: src/objects.cc

Issue 23883007: Handlify JSObject::AddProperty method. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments by Toon Verwaest. Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/objects.h ('k') | src/stub-cache.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1882 matching lines...) Expand 10 before | Expand all | Expand 10 after
1893 set_properties(values); 1893 set_properties(values);
1894 } 1894 }
1895 1895
1896 set_map(new_map); 1896 set_map(new_map);
1897 1897
1898 FastPropertyAtPut(field_index, storage); 1898 FastPropertyAtPut(field_index, storage);
1899 return value; 1899 return value;
1900 } 1900 }
1901 1901
1902 1902
1903 void JSObject::AddFastProperty(Handle<JSObject> object,
1904 Handle<Name> name,
1905 Handle<Object> value,
1906 PropertyAttributes attributes,
1907 StoreFromKeyed store_mode,
1908 ValueType value_type,
1909 TransitionFlag flag) {
1910 CALL_HEAP_FUNCTION_VOID(
1911 object->GetIsolate(),
1912 object->AddFastProperty(
1913 *name, *value, attributes, store_mode, value_type, flag));
1914 }
1915
1916
1903 MaybeObject* JSObject::AddFastProperty(Name* name, 1917 MaybeObject* JSObject::AddFastProperty(Name* name,
1904 Object* value, 1918 Object* value,
1905 PropertyAttributes attributes, 1919 PropertyAttributes attributes,
1906 StoreFromKeyed store_mode, 1920 StoreFromKeyed store_mode,
1907 ValueType value_type, 1921 ValueType value_type,
1908 TransitionFlag flag) { 1922 TransitionFlag flag) {
1909 ASSERT(!IsJSGlobalProxy()); 1923 ASSERT(!IsJSGlobalProxy());
1910 ASSERT(DescriptorArray::kNotFound == 1924 ASSERT(DescriptorArray::kNotFound ==
1911 map()->instance_descriptors()->Search( 1925 map()->instance_descriptors()->Search(
1912 name, map()->NumberOfOwnDescriptors())); 1926 name, map()->NumberOfOwnDescriptors()));
(...skipping 25 matching lines...) Expand all
1938 int unused_property_fields = map()->unused_property_fields() - 1; 1952 int unused_property_fields = map()->unused_property_fields() - 1;
1939 if (unused_property_fields < 0) { 1953 if (unused_property_fields < 0) {
1940 unused_property_fields += kFieldsAdded; 1954 unused_property_fields += kFieldsAdded;
1941 } 1955 }
1942 new_map->set_unused_property_fields(unused_property_fields); 1956 new_map->set_unused_property_fields(unused_property_fields);
1943 1957
1944 return AddFastPropertyUsingMap(new_map, name, value, index, representation); 1958 return AddFastPropertyUsingMap(new_map, name, value, index, representation);
1945 } 1959 }
1946 1960
1947 1961
1962 void JSObject::AddConstantProperty(Handle<JSObject> object,
1963 Handle<Name> name,
1964 Handle<Object> constant,
1965 PropertyAttributes attributes,
1966 TransitionFlag flag) {
1967 CALL_HEAP_FUNCTION_VOID(
1968 object->GetIsolate(),
1969 object->AddConstantProperty(*name, *constant, attributes, flag));
1970 }
1971
1972
1948 MaybeObject* JSObject::AddConstantProperty( 1973 MaybeObject* JSObject::AddConstantProperty(
1949 Name* name, 1974 Name* name,
1950 Object* constant, 1975 Object* constant,
1951 PropertyAttributes attributes, 1976 PropertyAttributes attributes,
1952 TransitionFlag initial_flag) { 1977 TransitionFlag initial_flag) {
1953 // Allocate new instance descriptors with (name, constant) added 1978 // Allocate new instance descriptors with (name, constant) added
1954 ConstantDescriptor d(name, constant, attributes); 1979 ConstantDescriptor d(name, constant, attributes);
1955 1980
1956 TransitionFlag flag = 1981 TransitionFlag flag =
1957 // Do not add transitions to global objects. 1982 // Do not add transitions to global objects.
1958 (IsGlobalObject() || 1983 (IsGlobalObject() ||
1959 // Don't add transitions to special properties with non-trivial 1984 // Don't add transitions to special properties with non-trivial
1960 // attributes. 1985 // attributes.
1961 attributes != NONE) 1986 attributes != NONE)
1962 ? OMIT_TRANSITION 1987 ? OMIT_TRANSITION
1963 : initial_flag; 1988 : initial_flag;
1964 1989
1965 Map* new_map; 1990 Map* new_map;
1966 MaybeObject* maybe_new_map = map()->CopyAddDescriptor(&d, flag); 1991 MaybeObject* maybe_new_map = map()->CopyAddDescriptor(&d, flag);
1967 if (!maybe_new_map->To(&new_map)) return maybe_new_map; 1992 if (!maybe_new_map->To(&new_map)) return maybe_new_map;
1968 1993
1969 set_map(new_map); 1994 set_map(new_map);
1970 return constant; 1995 return constant;
1971 } 1996 }
1972 1997
1973 1998
1974 // Add property in slow mode 1999 void JSObject::AddSlowProperty(Handle<JSObject> object,
2000 Handle<Name> name,
2001 Handle<Object> value,
2002 PropertyAttributes attributes) {
2003 CALL_HEAP_FUNCTION_VOID(object->GetIsolate(),
2004 object->AddSlowProperty(*name, *value, attributes));
2005 }
2006
2007
1975 MaybeObject* JSObject::AddSlowProperty(Name* name, 2008 MaybeObject* JSObject::AddSlowProperty(Name* name,
1976 Object* value, 2009 Object* value,
1977 PropertyAttributes attributes) { 2010 PropertyAttributes attributes) {
1978 ASSERT(!HasFastProperties()); 2011 ASSERT(!HasFastProperties());
1979 NameDictionary* dict = property_dictionary(); 2012 NameDictionary* dict = property_dictionary();
1980 Object* store_value = value; 2013 Object* store_value = value;
1981 if (IsGlobalObject()) { 2014 if (IsGlobalObject()) {
1982 // In case name is an orphaned property reuse the cell. 2015 // In case name is an orphaned property reuse the cell.
1983 int entry = dict->FindEntry(name); 2016 int entry = dict->FindEntry(name);
1984 if (entry != NameDictionary::kNotFound) { 2017 if (entry != NameDictionary::kNotFound) {
(...skipping 21 matching lines...) Expand all
2006 PropertyDetails details = PropertyDetails(attributes, NORMAL, 0); 2039 PropertyDetails details = PropertyDetails(attributes, NORMAL, 0);
2007 Object* result; 2040 Object* result;
2008 { MaybeObject* maybe_result = dict->Add(name, store_value, details); 2041 { MaybeObject* maybe_result = dict->Add(name, store_value, details);
2009 if (!maybe_result->ToObject(&result)) return maybe_result; 2042 if (!maybe_result->ToObject(&result)) return maybe_result;
2010 } 2043 }
2011 if (dict != result) set_properties(NameDictionary::cast(result)); 2044 if (dict != result) set_properties(NameDictionary::cast(result));
2012 return value; 2045 return value;
2013 } 2046 }
2014 2047
2015 2048
2016 MaybeObject* JSObject::AddProperty(Name* name, 2049 Handle<Object> JSObject::AddProperty(Handle<JSObject> object,
2017 Object* value, 2050 Handle<Name> name,
2018 PropertyAttributes attributes, 2051 Handle<Object> value,
2019 StrictModeFlag strict_mode, 2052 PropertyAttributes attributes,
2020 JSReceiver::StoreFromKeyed store_mode, 2053 StrictModeFlag strict_mode,
2021 ExtensibilityCheck extensibility_check, 2054 JSReceiver::StoreFromKeyed store_mode,
2022 ValueType value_type, 2055 ExtensibilityCheck extensibility_check,
2023 StoreMode mode, 2056 ValueType value_type,
2024 TransitionFlag transition_flag) { 2057 StoreMode mode,
2025 ASSERT(!IsJSGlobalProxy()); 2058 TransitionFlag transition_flag) {
2026 Map* map_of_this = map(); 2059 ASSERT(!object->IsJSGlobalProxy());
2027 Heap* heap = GetHeap(); 2060 Isolate* isolate = object->GetIsolate();
2028 Isolate* isolate = heap->isolate();
2029 MaybeObject* result;
2030 if (extensibility_check == PERFORM_EXTENSIBILITY_CHECK && 2061 if (extensibility_check == PERFORM_EXTENSIBILITY_CHECK &&
2031 !map_of_this->is_extensible()) { 2062 !object->map()->is_extensible()) {
2032 if (strict_mode == kNonStrictMode) { 2063 if (strict_mode == kNonStrictMode) {
2033 return value; 2064 return value;
2034 } else { 2065 } else {
2035 Handle<Object> args[1] = {Handle<Name>(name)}; 2066 Handle<Object> args[1] = { name };
2036 return isolate->Throw( 2067 Handle<Object> error = isolate->factory()->NewTypeError(
2037 *isolate->factory()->NewTypeError("object_not_extensible", 2068 "object_not_extensible", HandleVector(args, ARRAY_SIZE(args)));
2038 HandleVector(args, 1))); 2069 isolate->Throw(*error);
2070 return Handle<Object>();
2039 } 2071 }
2040 } 2072 }
2041 2073
2042 if (HasFastProperties()) { 2074 if (object->HasFastProperties()) {
2043 // Ensure the descriptor array does not get too big. 2075 // Ensure the descriptor array does not get too big.
2044 if (map_of_this->NumberOfOwnDescriptors() < 2076 if (object->map()->NumberOfOwnDescriptors() <
2045 DescriptorArray::kMaxNumberOfDescriptors) { 2077 DescriptorArray::kMaxNumberOfDescriptors) {
2046 // TODO(verwaest): Support other constants. 2078 // TODO(verwaest): Support other constants.
2047 // if (mode == ALLOW_AS_CONSTANT && 2079 // if (mode == ALLOW_AS_CONSTANT &&
2048 // !value->IsTheHole() && 2080 // !value->IsTheHole() &&
2049 // !value->IsConsString()) { 2081 // !value->IsConsString()) {
2050 if (value->IsJSFunction()) { 2082 if (value->IsJSFunction()) {
2051 result = AddConstantProperty(name, value, attributes, transition_flag); 2083 AddConstantProperty(object, name, value, attributes, transition_flag);
2052 } else { 2084 } else {
2053 result = AddFastProperty( 2085 AddFastProperty(object, name, value, attributes, store_mode,
2054 name, value, attributes, store_mode, value_type, transition_flag); 2086 value_type, transition_flag);
2055 } 2087 }
2056 } else { 2088 } else {
2057 // Normalize the object to prevent very large instance descriptors. 2089 // Normalize the object to prevent very large instance descriptors.
2058 // This eliminates unwanted N^2 allocation and lookup behavior. 2090 // This eliminates unwanted N^2 allocation and lookup behavior.
2059 Object* obj; 2091 NormalizeProperties(object, CLEAR_INOBJECT_PROPERTIES, 0);
2060 MaybeObject* maybe = NormalizeProperties(CLEAR_INOBJECT_PROPERTIES, 0); 2092 AddSlowProperty(object, name, value, attributes);
2061 if (!maybe->To(&obj)) return maybe;
2062 result = AddSlowProperty(name, value, attributes);
2063 } 2093 }
2064 } else { 2094 } else {
2065 result = AddSlowProperty(name, value, attributes); 2095 AddSlowProperty(object, name, value, attributes);
2066 } 2096 }
2067 2097
2068 Handle<Object> hresult; 2098 if (FLAG_harmony_observation && object->map()->is_observed()) {
2069 if (!result->ToHandle(&hresult, isolate)) return result; 2099 Handle<Object> old_value = isolate->factory()->the_hole_value();
2070 2100 EnqueueChangeRecord(object, "new", name, old_value);
2071 if (FLAG_harmony_observation && map()->is_observed()) {
2072 EnqueueChangeRecord(handle(this, isolate),
2073 "new",
2074 handle(name, isolate),
2075 handle(heap->the_hole_value(), isolate));
2076 } 2101 }
2077 2102
2078 return *hresult; 2103 return value;
2079 } 2104 }
2080 2105
2081 2106
2082 void JSObject::EnqueueChangeRecord(Handle<JSObject> object, 2107 void JSObject::EnqueueChangeRecord(Handle<JSObject> object,
2083 const char* type_str, 2108 const char* type_str,
2084 Handle<Name> name, 2109 Handle<Name> name,
2085 Handle<Object> old_value) { 2110 Handle<Object> old_value) {
2086 Isolate* isolate = object->GetIsolate(); 2111 Isolate* isolate = object->GetIsolate();
2087 HandleScope scope(isolate); 2112 HandleScope scope(isolate);
2088 Handle<String> type = isolate->factory()->InternalizeUtf8String(type_str); 2113 Handle<String> type = isolate->factory()->InternalizeUtf8String(type_str);
(...skipping 19 matching lines...) Expand all
2108 isolate->observers_deliver_changes(), 2133 isolate->observers_deliver_changes(),
2109 isolate->factory()->undefined_value(), 2134 isolate->factory()->undefined_value(),
2110 0, 2135 0,
2111 NULL, 2136 NULL,
2112 &threw); 2137 &threw);
2113 ASSERT(!threw); 2138 ASSERT(!threw);
2114 isolate->set_observer_delivery_pending(false); 2139 isolate->set_observer_delivery_pending(false);
2115 } 2140 }
2116 2141
2117 2142
2118 MaybeObject* JSObject::SetPropertyPostInterceptor( 2143 Handle<Object> JSObject::SetPropertyPostInterceptor(
2119 Name* name, 2144 Handle<JSObject> object,
2120 Object* value, 2145 Handle<Name> name,
2146 Handle<Object> value,
2121 PropertyAttributes attributes, 2147 PropertyAttributes attributes,
2122 StrictModeFlag strict_mode, 2148 StrictModeFlag strict_mode) {
2123 StoreMode mode) {
2124 // Check local property, ignore interceptor. 2149 // Check local property, ignore interceptor.
2125 LookupResult result(GetIsolate()); 2150 LookupResult result(object->GetIsolate());
2126 LocalLookupRealNamedProperty(name, &result); 2151 object->LocalLookupRealNamedProperty(*name, &result);
2127 if (!result.IsFound()) map()->LookupTransition(this, name, &result); 2152 if (!result.IsFound()) {
2153 object->map()->LookupTransition(*object, *name, &result);
2154 }
2128 if (result.IsFound()) { 2155 if (result.IsFound()) {
2129 // An existing property or a map transition was found. Use set property to 2156 // An existing property or a map transition was found. Use set property to
2130 // handle all these cases. 2157 // handle all these cases.
2131 return SetProperty(&result, name, value, attributes, strict_mode); 2158 CALL_HEAP_FUNCTION(object->GetIsolate(),
2159 object->SetProperty(
2160 &result, *name, *value, attributes, strict_mode),
2161 Object);
2132 } 2162 }
2133 bool done = false; 2163 bool done = false;
2134 MaybeObject* result_object = 2164 Handle<Object> result_object = SetPropertyViaPrototypes(
2135 SetPropertyViaPrototypes(name, value, attributes, strict_mode, &done); 2165 object, name, value, attributes, strict_mode, &done);
2136 if (done) return result_object; 2166 if (done) return result_object;
2137 // Add a new real property. 2167 // Add a new real property.
2138 return AddProperty(name, value, attributes, strict_mode, 2168 return AddProperty(object, name, value, attributes, strict_mode);
2139 MAY_BE_STORE_FROM_KEYED, PERFORM_EXTENSIBILITY_CHECK,
2140 OPTIMAL_REPRESENTATION, mode);
2141 } 2169 }
2142 2170
2143 2171
2144 MaybeObject* JSObject::ReplaceSlowProperty(Name* name, 2172 MaybeObject* JSObject::ReplaceSlowProperty(Name* name,
2145 Object* value, 2173 Object* value,
2146 PropertyAttributes attributes) { 2174 PropertyAttributes attributes) {
2147 NameDictionary* dictionary = property_dictionary(); 2175 NameDictionary* dictionary = property_dictionary();
2148 int old_index = dictionary->FindEntry(name); 2176 int old_index = dictionary->FindEntry(name);
2149 int new_enumeration_index = 0; // 0 means "Use the next available index." 2177 int new_enumeration_index = 0; // 0 means "Use the next available index."
2150 if (old_index != -1) { 2178 if (old_index != -1) {
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
2696 int valid = updated->NumberOfOwnDescriptors(); 2724 int valid = updated->NumberOfOwnDescriptors();
2697 if (!updated_descriptors->IsMoreGeneralThan( 2725 if (!updated_descriptors->IsMoreGeneralThan(
2698 verbatim, valid, descriptors, old_descriptors)) { 2726 verbatim, valid, descriptors, old_descriptors)) {
2699 return NULL; 2727 return NULL;
2700 } 2728 }
2701 2729
2702 return updated; 2730 return updated;
2703 } 2731 }
2704 2732
2705 2733
2706 MaybeObject* JSObject::SetPropertyWithInterceptor( 2734 Handle<Object> JSObject::SetPropertyWithInterceptor(
2707 Name* name, 2735 Handle<JSObject> object,
2708 Object* value, 2736 Handle<Name> name,
2737 Handle<Object> value,
2709 PropertyAttributes attributes, 2738 PropertyAttributes attributes,
2710 StrictModeFlag strict_mode) { 2739 StrictModeFlag strict_mode) {
2711 // TODO(rossberg): Support symbols in the API. 2740 // TODO(rossberg): Support symbols in the API.
2712 if (name->IsSymbol()) return value; 2741 if (name->IsSymbol()) return value;
2713 Isolate* isolate = GetIsolate(); 2742 Isolate* isolate = object->GetIsolate();
2714 HandleScope scope(isolate); 2743 Handle<String> name_string = Handle<String>::cast(name);
2715 Handle<JSObject> this_handle(this); 2744 Handle<InterceptorInfo> interceptor(object->GetNamedInterceptor());
2716 Handle<String> name_handle(String::cast(name));
2717 Handle<Object> value_handle(value, isolate);
2718 Handle<InterceptorInfo> interceptor(GetNamedInterceptor());
2719 if (!interceptor->setter()->IsUndefined()) { 2745 if (!interceptor->setter()->IsUndefined()) {
2720 LOG(isolate, ApiNamedPropertyAccess("interceptor-named-set", this, name)); 2746 LOG(isolate,
2721 PropertyCallbackArguments args(isolate, interceptor->data(), this, this); 2747 ApiNamedPropertyAccess("interceptor-named-set", *object, *name));
2748 PropertyCallbackArguments args(
2749 isolate, interceptor->data(), *object, *object);
2722 v8::NamedPropertySetterCallback setter = 2750 v8::NamedPropertySetterCallback setter =
2723 v8::ToCData<v8::NamedPropertySetterCallback>(interceptor->setter()); 2751 v8::ToCData<v8::NamedPropertySetterCallback>(interceptor->setter());
2724 Handle<Object> value_unhole(value->IsTheHole() ? 2752 Handle<Object> value_unhole = value->IsTheHole()
2725 isolate->heap()->undefined_value() : 2753 ? Handle<Object>(isolate->factory()->undefined_value()) : value;
2726 value,
2727 isolate);
2728 v8::Handle<v8::Value> result = args.Call(setter, 2754 v8::Handle<v8::Value> result = args.Call(setter,
2729 v8::Utils::ToLocal(name_handle), 2755 v8::Utils::ToLocal(name_string),
2730 v8::Utils::ToLocal(value_unhole)); 2756 v8::Utils::ToLocal(value_unhole));
2731 RETURN_IF_SCHEDULED_EXCEPTION(isolate); 2757 RETURN_HANDLE_IF_SCHEDULED_EXCEPTION(isolate, Object);
2732 if (!result.IsEmpty()) return *value_handle; 2758 if (!result.IsEmpty()) return value;
2733 } 2759 }
2734 MaybeObject* raw_result = 2760 Handle<Object> result =
2735 this_handle->SetPropertyPostInterceptor(*name_handle, 2761 SetPropertyPostInterceptor(object, name, value, attributes, strict_mode);
2736 *value_handle, 2762 RETURN_HANDLE_IF_SCHEDULED_EXCEPTION(isolate, Object);
2737 attributes, 2763 return result;
2738 strict_mode);
2739 RETURN_IF_SCHEDULED_EXCEPTION(isolate);
2740 return raw_result;
2741 } 2764 }
2742 2765
2743 2766
2744 Handle<Object> JSReceiver::SetProperty(Handle<JSReceiver> object, 2767 Handle<Object> JSReceiver::SetProperty(Handle<JSReceiver> object,
2745 Handle<Name> key, 2768 Handle<Name> key,
2746 Handle<Object> value, 2769 Handle<Object> value,
2747 PropertyAttributes attributes, 2770 PropertyAttributes attributes,
2748 StrictModeFlag strict_mode) { 2771 StrictModeFlag strict_mode) {
2749 CALL_HEAP_FUNCTION(object->GetIsolate(), 2772 CALL_HEAP_FUNCTION(object->GetIsolate(),
2750 object->SetProperty(*key, *value, attributes, strict_mode), 2773 object->SetProperty(*key, *value, attributes, strict_mode),
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
2923 value, 2946 value,
2924 JSObject::cast(pt), 2947 JSObject::cast(pt),
2925 strict_mode); 2948 strict_mode);
2926 } 2949 }
2927 } 2950 }
2928 } 2951 }
2929 *found = false; 2952 *found = false;
2930 return heap->the_hole_value(); 2953 return heap->the_hole_value();
2931 } 2954 }
2932 2955
2933 MaybeObject* JSObject::SetPropertyViaPrototypes( 2956 Handle<Object> JSObject::SetPropertyViaPrototypes(Handle<JSObject> object,
2934 Name* name, 2957 Handle<Name> name,
2935 Object* value, 2958 Handle<Object> value,
2936 PropertyAttributes attributes, 2959 PropertyAttributes attributes,
2937 StrictModeFlag strict_mode, 2960 StrictModeFlag strict_mode,
2938 bool* done) { 2961 bool* done) {
2939 Heap* heap = GetHeap(); 2962 Isolate* isolate = object->GetIsolate();
2940 Isolate* isolate = heap->isolate();
2941 2963
2942 *done = false; 2964 *done = false;
2943 // We could not find a local property so let's check whether there is an 2965 // We could not find a local property so let's check whether there is an
2944 // accessor that wants to handle the property, or whether the property is 2966 // accessor that wants to handle the property, or whether the property is
2945 // read-only on the prototype chain. 2967 // read-only on the prototype chain.
2946 LookupResult result(isolate); 2968 LookupResult result(isolate);
2947 LookupRealNamedPropertyInPrototypes(name, &result); 2969 object->LookupRealNamedPropertyInPrototypes(*name, &result);
2948 if (result.IsFound()) { 2970 if (result.IsFound()) {
2949 switch (result.type()) { 2971 switch (result.type()) {
2950 case NORMAL: 2972 case NORMAL:
2951 case FIELD: 2973 case FIELD:
2952 case CONSTANT: 2974 case CONSTANT:
2953 *done = result.IsReadOnly(); 2975 *done = result.IsReadOnly();
2954 break; 2976 break;
2955 case INTERCEPTOR: { 2977 case INTERCEPTOR: {
2956 PropertyAttributes attr = 2978 PropertyAttributes attr =
2957 result.holder()->GetPropertyAttributeWithInterceptor( 2979 result.holder()->GetPropertyAttributeWithInterceptor(
2958 this, name, true); 2980 *object, *name, true);
2959 *done = !!(attr & READ_ONLY); 2981 *done = !!(attr & READ_ONLY);
2960 break; 2982 break;
2961 } 2983 }
2962 case CALLBACKS: { 2984 case CALLBACKS: {
2963 if (!FLAG_es5_readonly && result.IsReadOnly()) break; 2985 if (!FLAG_es5_readonly && result.IsReadOnly()) break;
2964 *done = true; 2986 *done = true;
2965 return SetPropertyWithCallback(result.GetCallbackObject(), 2987 CALL_HEAP_FUNCTION(isolate,
2966 name, value, result.holder(), strict_mode); 2988 object->SetPropertyWithCallback(
2989 result.GetCallbackObject(),
2990 *name, *value, result.holder(), strict_mode),
2991 Object);
2967 } 2992 }
2968 case HANDLER: { 2993 case HANDLER: {
2969 return result.proxy()->SetPropertyViaPrototypesWithHandler( 2994 CALL_HEAP_FUNCTION(isolate,
2970 this, name, value, attributes, strict_mode, done); 2995 result.proxy()->SetPropertyViaPrototypesWithHandler(
2996 *object, *name, *value, attributes, strict_mode,
2997 done),
2998 Object);
2971 } 2999 }
2972 case TRANSITION: 3000 case TRANSITION:
2973 case NONEXISTENT: 3001 case NONEXISTENT:
2974 UNREACHABLE(); 3002 UNREACHABLE();
2975 break; 3003 break;
2976 } 3004 }
2977 } 3005 }
2978 3006
2979 // If we get here with *done true, we have encountered a read-only property. 3007 // If we get here with *done true, we have encountered a read-only property.
2980 if (!FLAG_es5_readonly) *done = false; 3008 if (!FLAG_es5_readonly) *done = false;
2981 if (*done) { 3009 if (*done) {
2982 if (strict_mode == kNonStrictMode) return value; 3010 if (strict_mode == kNonStrictMode) return value;
2983 Handle<Object> args[] = { Handle<Object>(name, isolate), 3011 Handle<Object> args[] = { name, object };
2984 Handle<Object>(this, isolate)}; 3012 Handle<Object> error = isolate->factory()->NewTypeError(
2985 return isolate->Throw(*isolate->factory()->NewTypeError( 3013 "strict_read_only_property", HandleVector(args, ARRAY_SIZE(args)));
2986 "strict_read_only_property", HandleVector(args, ARRAY_SIZE(args)))); 3014 isolate->Throw(*error);
3015 return Handle<Object>();
2987 } 3016 }
2988 return heap->the_hole_value(); 3017 return isolate->factory()->the_hole_value();
2989 } 3018 }
2990 3019
2991 3020
2992 void Map::EnsureDescriptorSlack(Handle<Map> map, int slack) { 3021 void Map::EnsureDescriptorSlack(Handle<Map> map, int slack) {
2993 Handle<DescriptorArray> descriptors(map->instance_descriptors()); 3022 Handle<DescriptorArray> descriptors(map->instance_descriptors());
2994 if (slack <= descriptors->NumberOfSlackDescriptors()) return; 3023 if (slack <= descriptors->NumberOfSlackDescriptors()) return;
2995 int number_of_descriptors = descriptors->number_of_descriptors(); 3024 int number_of_descriptors = descriptors->number_of_descriptors();
2996 Isolate* isolate = map->GetIsolate(); 3025 Isolate* isolate = map->GetIsolate();
2997 Handle<DescriptorArray> new_descriptors = 3026 Handle<DescriptorArray> new_descriptors =
2998 isolate->factory()->NewDescriptorArray(number_of_descriptors, slack); 3027 isolate->factory()->NewDescriptorArray(number_of_descriptors, slack);
(...skipping 767 matching lines...) Expand 10 before | Expand all | Expand 10 after
3766 Map* transition_map = lookup->GetTransitionTarget(); 3795 Map* transition_map = lookup->GetTransitionTarget();
3767 int descriptor = transition_map->LastAdded(); 3796 int descriptor = transition_map->LastAdded();
3768 3797
3769 DescriptorArray* descriptors = transition_map->instance_descriptors(); 3798 DescriptorArray* descriptors = transition_map->instance_descriptors();
3770 PropertyDetails details = descriptors->GetDetails(descriptor); 3799 PropertyDetails details = descriptors->GetDetails(descriptor);
3771 3800
3772 if (details.type() == CALLBACKS || attributes != details.attributes()) { 3801 if (details.type() == CALLBACKS || attributes != details.attributes()) {
3773 // AddProperty will either normalize the object, or create a new fast copy 3802 // AddProperty will either normalize the object, or create a new fast copy
3774 // of the map. If we get a fast copy of the map, all field representations 3803 // of the map. If we get a fast copy of the map, all field representations
3775 // will be tagged since the transition is omitted. 3804 // will be tagged since the transition is omitted.
3776 return lookup->holder()->AddProperty( 3805 Handle<JSObject> holder(lookup->holder());
3777 *name, *value, attributes, kNonStrictMode, 3806 Handle<Object> result = JSObject::AddProperty(
3807 holder, name, value, attributes, kNonStrictMode,
3778 JSReceiver::CERTAINLY_NOT_STORE_FROM_KEYED, 3808 JSReceiver::CERTAINLY_NOT_STORE_FROM_KEYED,
3779 JSReceiver::OMIT_EXTENSIBILITY_CHECK, 3809 JSReceiver::OMIT_EXTENSIBILITY_CHECK,
3780 JSObject::FORCE_TAGGED, FORCE_FIELD, OMIT_TRANSITION); 3810 JSObject::FORCE_TAGGED, FORCE_FIELD, OMIT_TRANSITION);
3811 RETURN_IF_EMPTY_HANDLE(holder->GetIsolate(), result);
3812 return *result;
3781 } 3813 }
3782 3814
3783 // Keep the target CONSTANT if the same value is stored. 3815 // Keep the target CONSTANT if the same value is stored.
3784 // TODO(verwaest): Also support keeping the placeholder 3816 // TODO(verwaest): Also support keeping the placeholder
3785 // (value->IsUninitialized) as constant. 3817 // (value->IsUninitialized) as constant.
3786 if (details.type() == CONSTANT && 3818 if (details.type() == CONSTANT &&
3787 descriptors->GetValue(descriptor) == *value) { 3819 descriptors->GetValue(descriptor) == *value) {
3788 lookup->holder()->set_map(transition_map); 3820 lookup->holder()->set_map(transition_map);
3789 return *value; 3821 return *value;
3790 } 3822 }
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
3940 3972
3941 // From this point on everything needs to be handlified, because 3973 // From this point on everything needs to be handlified, because
3942 // SetPropertyViaPrototypes might call back into JavaScript. 3974 // SetPropertyViaPrototypes might call back into JavaScript.
3943 HandleScope scope(isolate); 3975 HandleScope scope(isolate);
3944 Handle<JSObject> self(this); 3976 Handle<JSObject> self(this);
3945 Handle<Name> name(name_raw); 3977 Handle<Name> name(name_raw);
3946 Handle<Object> value(value_raw, isolate); 3978 Handle<Object> value(value_raw, isolate);
3947 3979
3948 if (!lookup->IsProperty() && !self->IsJSContextExtensionObject()) { 3980 if (!lookup->IsProperty() && !self->IsJSContextExtensionObject()) {
3949 bool done = false; 3981 bool done = false;
3950 MaybeObject* result_object = self->SetPropertyViaPrototypes( 3982 Handle<Object> result_object = SetPropertyViaPrototypes(
3951 *name, *value, attributes, strict_mode, &done); 3983 self, name, value, attributes, strict_mode, &done);
3952 if (done) return result_object; 3984 RETURN_IF_EMPTY_HANDLE(isolate, result_object);
3985 if (done) return *result_object;
3953 } 3986 }
3954 3987
3955 if (!lookup->IsFound()) { 3988 if (!lookup->IsFound()) {
3956 // Neither properties nor transitions found. 3989 // Neither properties nor transitions found.
3957 return self->AddProperty( 3990 Handle<Object> result_object = AddProperty(
3958 *name, *value, attributes, strict_mode, store_mode); 3991 self, name, value, attributes, strict_mode, store_mode);
3992 RETURN_IF_EMPTY_HANDLE(isolate, result_object);
3993 return *result_object;
3959 } 3994 }
3960 3995
3961 if (lookup->IsProperty() && lookup->IsReadOnly()) { 3996 if (lookup->IsProperty() && lookup->IsReadOnly()) {
3962 if (strict_mode == kStrictMode) { 3997 if (strict_mode == kStrictMode) {
3963 Handle<Object> args[] = { name, self }; 3998 Handle<Object> args[] = { name, self };
3964 return isolate->Throw(*isolate->factory()->NewTypeError( 3999 return isolate->Throw(*isolate->factory()->NewTypeError(
3965 "strict_read_only_property", HandleVector(args, ARRAY_SIZE(args)))); 4000 "strict_read_only_property", HandleVector(args, ARRAY_SIZE(args))));
3966 } else { 4001 } else {
3967 return *value; 4002 return *value;
3968 } 4003 }
(...skipping 18 matching lines...) Expand all
3987 case CONSTANT: 4022 case CONSTANT:
3988 // Only replace the constant if necessary. 4023 // Only replace the constant if necessary.
3989 if (*value == lookup->GetConstant()) return *value; 4024 if (*value == lookup->GetConstant()) return *value;
3990 result = SetPropertyToField(lookup, name, value); 4025 result = SetPropertyToField(lookup, name, value);
3991 break; 4026 break;
3992 case CALLBACKS: { 4027 case CALLBACKS: {
3993 Object* callback_object = lookup->GetCallbackObject(); 4028 Object* callback_object = lookup->GetCallbackObject();
3994 return self->SetPropertyWithCallback( 4029 return self->SetPropertyWithCallback(
3995 callback_object, *name, *value, lookup->holder(), strict_mode); 4030 callback_object, *name, *value, lookup->holder(), strict_mode);
3996 } 4031 }
3997 case INTERCEPTOR: 4032 case INTERCEPTOR: {
3998 result = lookup->holder()->SetPropertyWithInterceptor( 4033 Handle<JSObject> holder(lookup->holder());
3999 *name, *value, attributes, strict_mode); 4034 Handle<Object> hresult = SetPropertyWithInterceptor(
4035 holder, name, value, attributes, strict_mode);
4036 RETURN_IF_EMPTY_HANDLE(isolate, hresult);
4037 result = *hresult;
4000 break; 4038 break;
4039 }
4001 case TRANSITION: { 4040 case TRANSITION: {
4002 result = SetPropertyUsingTransition(lookup, name, value, attributes); 4041 result = SetPropertyUsingTransition(lookup, name, value, attributes);
4003 break; 4042 break;
4004 } 4043 }
4005 case HANDLER: 4044 case HANDLER:
4006 case NONEXISTENT: 4045 case NONEXISTENT:
4007 UNREACHABLE(); 4046 UNREACHABLE();
4008 } 4047 }
4009 4048
4010 Handle<Object> hresult; 4049 Handle<Object> hresult;
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
4113 value_type, 4152 value_type,
4114 mode, 4153 mode,
4115 extensibility_check); 4154 extensibility_check);
4116 } 4155 }
4117 4156
4118 if (lookup.IsFound() && 4157 if (lookup.IsFound() &&
4119 (lookup.type() == INTERCEPTOR || lookup.type() == CALLBACKS)) { 4158 (lookup.type() == INTERCEPTOR || lookup.type() == CALLBACKS)) {
4120 LocalLookupRealNamedProperty(name_raw, &lookup); 4159 LocalLookupRealNamedProperty(name_raw, &lookup);
4121 } 4160 }
4122 4161
4123 // Check for accessor in prototype chain removed here in clone.
4124 if (!lookup.IsFound()) {
4125 // Neither properties nor transitions found.
4126 return AddProperty(
4127 name_raw, value_raw, attributes, kNonStrictMode,
4128 MAY_BE_STORE_FROM_KEYED, extensibility_check, value_type, mode);
4129 }
4130
4131 // From this point on everything needs to be handlified. 4162 // From this point on everything needs to be handlified.
4132 HandleScope scope(isolate); 4163 HandleScope scope(isolate);
4133 Handle<JSObject> self(this); 4164 Handle<JSObject> self(this);
4134 Handle<Name> name(name_raw); 4165 Handle<Name> name(name_raw);
4135 Handle<Object> value(value_raw, isolate); 4166 Handle<Object> value(value_raw, isolate);
4136 4167
4137 Handle<Object> old_value(isolate->heap()->the_hole_value(), isolate); 4168 // Check for accessor in prototype chain removed here in clone.
4169 if (!lookup.IsFound()) {
4170 // Neither properties nor transitions found.
4171 Handle<Object> result = AddProperty(
4172 self, name, value, attributes, kNonStrictMode,
4173 MAY_BE_STORE_FROM_KEYED, extensibility_check, value_type, mode);
4174 RETURN_IF_EMPTY_HANDLE(isolate, result);
4175 return *result;
4176 }
4177
4178 Handle<Object> old_value = isolate->factory()->the_hole_value();
4138 PropertyAttributes old_attributes = ABSENT; 4179 PropertyAttributes old_attributes = ABSENT;
4139 bool is_observed = FLAG_harmony_observation && self->map()->is_observed(); 4180 bool is_observed = FLAG_harmony_observation && self->map()->is_observed();
4140 if (is_observed && lookup.IsProperty()) { 4181 if (is_observed && lookup.IsProperty()) {
4141 if (lookup.IsDataProperty()) old_value = 4182 if (lookup.IsDataProperty()) old_value =
4142 Object::GetProperty(self, name); 4183 Object::GetProperty(self, name);
4143 old_attributes = lookup.GetAttributes(); 4184 old_attributes = lookup.GetAttributes();
4144 } 4185 }
4145 4186
4146 // Check of IsReadOnly removed from here in clone. 4187 // Check of IsReadOnly removed from here in clone.
4147 MaybeObject* result = *value; 4188 MaybeObject* result = *value;
(...skipping 11929 matching lines...) Expand 10 before | Expand all | Expand 10 after
16077 #define ERROR_MESSAGES_TEXTS(C, T) T, 16118 #define ERROR_MESSAGES_TEXTS(C, T) T,
16078 static const char* error_messages_[] = { 16119 static const char* error_messages_[] = {
16079 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS) 16120 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS)
16080 }; 16121 };
16081 #undef ERROR_MESSAGES_TEXTS 16122 #undef ERROR_MESSAGES_TEXTS
16082 return error_messages_[reason]; 16123 return error_messages_[reason];
16083 } 16124 }
16084 16125
16085 16126
16086 } } // namespace v8::internal 16127 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/objects.h ('k') | src/stub-cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698