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

Unified Diff: runtime/vm/intrinsifier.h

Issue 23038010: Fix Function.end_token_pos() and implement MethodMirror.source getter (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
Index: runtime/vm/intrinsifier.h
diff --git a/runtime/vm/intrinsifier.h b/runtime/vm/intrinsifier.h
index 3f22ad0bd585cc90d4b2c52d803e0e6fc0247d2a..f7f1c93fcf8135559d51d6c0b34a1b08e9fd89db 100644
--- a/runtime/vm/intrinsifier.h
+++ b/runtime/vm/intrinsifier.h
@@ -30,10 +30,10 @@ namespace dart {
V(_Double, get:isNegative, Double_getIsNegative, 264643149) \
V(_Double, _mulFromInteger, Double_mulFromInteger, 930284178) \
V(_Double, .fromInteger, Double_fromInteger, 1488487599) \
- V(_ObjectArray, ., ObjectArray_Allocate, 712468799) \
- V(_ObjectArray, get:length, Array_getLength, 1441000484) \
- V(_ObjectArray, [], Array_getIndexed, 658292540) \
- V(_ObjectArray, []=, Array_setIndexed, 134661366) \
+ V(_ObjectArray, ., ObjectArray_Allocate, 1930677134) \
+ V(_ObjectArray, get:length, Array_getLength, 259323113) \
+ V(_ObjectArray, [], Array_getIndexed, 93386978) \
+ V(_ObjectArray, []=, Array_setIndexed, 1296046137) \
V(_GrowableObjectArray, .withData, GrowableArray_Allocate, 917195627) \
V(_GrowableObjectArray, get:length, GrowableArray_getLength, 767561362) \
V(_GrowableObjectArray, get:_capacity, GrowableArray_getCapacity, 874559046) \
@@ -42,18 +42,18 @@ namespace dart {
V(_GrowableObjectArray, _setLength, GrowableArray_setLength, 1016226171) \
V(_GrowableObjectArray, _setData, GrowableArray_setData, 1302055339) \
V(_GrowableObjectArray, add, GrowableArray_add, 1442410650) \
- V(_ImmutableArray, [], ImmutableArray_getIndexed, 1483706518) \
+ V(_ImmutableArray, [], ImmutableArray_getIndexed, 894753724) \
V(_ImmutableArray, get:length, ImmutableArray_getLength, 1430953867) \
V(Object, ==, Object_equal, 677817295) \
V(_StringBase, get:hashCode, String_getHashCode, 1654013013) \
V(_StringBase, get:isEmpty, String_getIsEmpty, 1588094430) \
- V(_StringBase, get:length, String_getLength, 1158042795) \
- V(_StringBase, codeUnitAt, String_codeUnitAt, 1452213966) \
+ V(_StringBase, get:length, String_getLength, 1483460481) \
+ V(_StringBase, codeUnitAt, String_codeUnitAt, 1958436584) \
V(_OneByteString, get:hashCode, OneByteString_getHashCode, 1350708273) \
V(_OneByteString, _substringUncheckedNative, \
- OneByteString_substringUnchecked, 1409543330) \
- V(_OneByteString, _setAt, OneByteString_setAt, 456985263) \
- V(_OneByteString, _allocate, OneByteString_allocate, 1842287414) \
+ OneByteString_substringUnchecked, 25652388) \
+ V(_OneByteString, _setAt, OneByteString_setAt, 1754827784) \
+ V(_OneByteString, _allocate, OneByteString_allocate, 1064009711) \
#define CORE_INTEGER_LIB_INTRINSIC_LIST(V) \
@@ -102,7 +102,7 @@ namespace dart {
#define TYPED_DATA_LIB_INTRINSIC_LIST(V) \
- V(_TypedList, get:length, TypedData_getLength, 117589485) \
+ V(_TypedList, get:length, TypedData_getLength, 26556746) \
V(_Int8Array, _new, TypedData_Int8Array_new, 1133705629) \
V(_Uint8Array, _new, TypedData_Uint8Array_new, 1643490889) \
V(_Uint8ClampedArray, _new, TypedData_Uint8ClampedArray_new, 1212601488) \

Powered by Google App Engine
This is Rietveld 408576698