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

Unified Diff: src/transitions.h

Issue 1419173007: [turbofan] Add support for transitioning stores to double fields. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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
« no previous file with comments | « src/interface-descriptors.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/transitions.h
diff --git a/src/transitions.h b/src/transitions.h
index b979c97df3b13d6d562716fc5240e4441d80bd41..1fcd3860d0bdc552490d42d00a84e97d41dbf26b 100644
--- a/src/transitions.h
+++ b/src/transitions.h
@@ -41,6 +41,14 @@ class TransitionArray: public FixedArray {
static Map* SearchTransition(Map* map, PropertyKind kind, Name* name,
PropertyAttributes attributes);
+ static MaybeHandle<Map> SearchTransition(Handle<Map> map, PropertyKind kind,
+ Handle<Name> name,
+ PropertyAttributes attributes) {
+ if (Map* transition = SearchTransition(*map, kind, *name, attributes)) {
+ return handle(transition);
+ }
+ return MaybeHandle<Map>();
+ }
static Map* SearchSpecial(Map* map, Symbol* name);
« no previous file with comments | « src/interface-descriptors.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698