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

Unified Diff: src/objects-inl.h

Issue 11184006: Eagerly follow transitions to existing maps while json parsing. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Inline Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
« src/objects.h ('K') | « src/objects.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects-inl.h
diff --git a/src/objects-inl.h b/src/objects-inl.h
index 7e0ba9f1000a7246277e82bf52ff2ae2e0be0668..c09bfc169358c5a13090c7048fec8e6d12eb76dc 100644
--- a/src/objects-inl.h
+++ b/src/objects-inl.h
@@ -1414,6 +1414,40 @@ MaybeObject* JSObject::ResetElements() {
}
+MaybeObject* JSObject::AddFastPropertyUsingMap(Map* map) {
+ int size =
danno 2012/10/17 13:54:23 As discussed, please convert this into something a
Toon Verwaest 2012/10/17 14:03:40 Done.
+ map->NumberOfOwnDescriptors() -
+ map->inobject_properties() +
+ map->unused_property_fields();
+ if (properties()->length() == size) {
+ set_map(map);
+ return this;
+ }
+ FixedArray* new_properties;
+ MaybeObject* maybe_properties = properties()->CopySize(size);
+ if (!maybe_properties->To(&new_properties)) return maybe_properties;
+ set_properties(new_properties);
+ set_map(map);
+ return new_properties;
+}
+
+
+bool JSObject::TryTransitionToField(String* key) {
danno 2012/10/17 13:54:23 This should only be called by handlified code, it
Toon Verwaest 2012/10/17 14:03:40 Done.
+ Map* own_map = map();
+ if (!own_map->HasTransitionArray()) return false;
+ TransitionArray* transitions = own_map->transitions();
+ int transition = transitions->Search(key);
+ if (transition == TransitionArray::kNotFound) return false;
+ PropertyDetails target_details = transitions->GetTargetDetails(transition);
+ if (target_details.type() != FIELD) return false;
+ if (target_details.attributes() != NONE) return false;
+ Handle<JSObject> self(this);
+ Handle<Map> target(transitions->GetTarget(transition));
+ JSObject::AddFastPropertyUsingMap(self, target);
+ return true;
+}
+
+
ACCESSORS(Oddball, to_string, String, kToStringOffset)
ACCESSORS(Oddball, to_number, Object, kToNumberOffset)
« src/objects.h ('K') | « src/objects.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698