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

Unified Diff: runtime/vm/method_recognizer.h

Issue 497623003: Fix performance degradation in Havlak: prevent conflicting method recognizer kinds to be stored in … (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 4 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/object.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 39473)
+++ runtime/vm/method_recognizer.h (working copy)
@@ -16,7 +16,6 @@
V(::, identical, ObjectIdentical, 496869842) \
V(ClassID, getID, ClassIDgetID, 1322490980) \
V(Object, Object., ObjectConstructor, 1066669787) \
- V(_List, _List., ObjectArrayConstructor, 1595327584) \
V(_TypedList, _getInt8, ByteArrayBaseGetInt8, 1541411498) \
V(_TypedList, _getUint8, ByteArrayBaseGetUint8, 1032404349) \
V(_TypedList, _getInt16, ByteArrayBaseGetInt16, 381073990) \
@@ -37,12 +36,10 @@
V(_TypedList, _setFloat64, ByteArrayBaseSetFloat64, 972883980) \
V(_TypedList, _setFloat32x4, ByteArrayBaseSetFloat32x4, 950522310) \
V(_TypedList, _setInt32x4, ByteArrayBaseSetInt32x4, 1301138078) \
- V(_StringBase, [], StringBaseCharAt, 1512210677) \
V(_StringBase, _interpolate, StringBaseInterpolate, 1758627989) \
V(_IntegerImplementation, toDouble, IntegerToDouble, 1084977108) \
V(_IntegerImplementation, _leftShiftWithMask32, IntegerLeftShiftWithMask32, \
597111055) \
- V(_Double, .fromInteger, DoubleFromInteger, 999771940) \
V(_Double, truncateToDouble, DoubleTruncate, 2117801967) \
V(_Double, roundToDouble, DoubleRound, 2124216110) \
V(_Double, floorToDouble, DoubleFloor, 968600699) \
@@ -164,7 +161,7 @@
V(_Double, get:isNaN, Double_getIsNaN, 843050033) \
V(_Double, get:isNegative, Double_getIsNegative, 1637875580) \
V(_Double, _mulFromInteger, Double_mulFromInteger, 1594796483) \
- V(_Double, .fromInteger, Double_fromInteger, 999771940) \
+ V(_Double, .fromInteger, DoubleFromInteger, 999771940) \
V(_List, ., ObjectArrayAllocate, 1595327584) \
V(_List, get:length, ObjectArrayLength, 1181352729) \
V(_List, [], ObjectArrayGetIndexed, 795612476) \
@@ -184,7 +181,7 @@
V(_StringBase, get:isEmpty, StringBaseIsEmpty, 49873871) \
V(_StringBase, get:length, StringBaseLength, 784399628) \
V(_StringBase, codeUnitAt, StringBaseCodeUnitAt, 397735324) \
- V(_StringBase, [], StringBase_charAt, 1512210677) \
+ V(_StringBase, [], StringBaseCharAt, 1512210677) \
V(_OneByteString, get:hashCode, OneByteString_getHashCode, 1111837929) \
V(_OneByteString, _substringUncheckedNative, \
OneByteString_substringUnchecked, 1527498975) \
« no previous file with comments | « runtime/vm/intrinsifier_x64.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698