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

Unified Diff: runtime/vm/method_recognizer.h

Issue 876603003: VM: Refactor more intrinsics of GrowableList to use IR builder. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 11 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 | « runtime/vm/intrinsifier_x64.cc ('k') | runtime/vm/raw_object_snapshot.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/method_recognizer.h
===================================================================
--- runtime/vm/method_recognizer.h (revision 43193)
+++ runtime/vm/method_recognizer.h (working copy)
@@ -179,10 +179,6 @@
V(_Double, .fromInteger, DoubleFromInteger, 803258435) \
V(_List, []=, ObjectArraySetIndexed, 1768442583) \
V(_GrowableList, .withData, GrowableArray_Allocate, 536409567) \
- V(_GrowableList, [], GrowableArrayGetIndexed, 514434920) \
- V(_GrowableList, []=, GrowableArraySetIndexed, 1698264861) \
- V(_GrowableList, _setLength, GrowableArraySetLength, 1832199634) \
- V(_GrowableList, _setData, GrowableArraySetData, 1722254196) \
V(_GrowableList, add, GrowableArray_add, 422087403) \
V(_JSSyntaxRegExp, _ExecuteMatch, JSRegExp_ExecuteMatch, 1654250896) \
V(Object, ==, ObjectEquals, 1955975370) \
@@ -288,6 +284,10 @@
V(_ImmutableList, [], ImmutableArrayGetIndexed, 1585504028) \
V(_GrowableList, get:length, GrowableArrayLength, 778534898) \
V(_GrowableList, get:_capacity, GrowableArrayCapacity, 555169866) \
+ V(_GrowableList, _setData, GrowableArraySetData, 1722254196) \
+ V(_GrowableList, _setLength, GrowableArraySetLength, 1832199634) \
+ V(_GrowableList, [], GrowableArrayGetIndexed, 514434920) \
+ V(_GrowableList, []=, GrowableArraySetIndexed, 1698264861) \
V(_StringBase, get:length, StringBaseLength, 784429419) \
#define GRAPH_INTRINSICS_LIST(V) \
« no previous file with comments | « runtime/vm/intrinsifier_x64.cc ('k') | runtime/vm/raw_object_snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698