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

Unified Diff: runtime/vm/intrinsifier.h

Issue 14012005: Implement rethrow statement (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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/intermediate_language.h ('k') | runtime/vm/object.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intrinsifier.h
===================================================================
--- runtime/vm/intrinsifier.h (revision 21305)
+++ runtime/vm/intrinsifier.h (working copy)
@@ -17,47 +17,47 @@
// build and run to get the correct fingerprint from the mismatch error.
#define CORE_LIB_INTRINSIC_LIST(V) \
V(_IntegerImplementation, _addFromInteger, Integer_addFromInteger, 726019207)\
- V(_IntegerImplementation, +, Integer_add, 25837296) \
+ V(_IntegerImplementation, +, Integer_add, 1768648592) \
V(_IntegerImplementation, _subFromInteger, Integer_subFromInteger, 726019207)\
- V(_IntegerImplementation, -, Integer_sub, 1697139934) \
+ V(_IntegerImplementation, -, Integer_sub, 1292467582) \
V(_IntegerImplementation, _mulFromInteger, Integer_mulFromInteger, 726019207)\
- V(_IntegerImplementation, *, Integer_mul, 110370751) \
- V(_IntegerImplementation, %, Integer_modulo, 108639519) \
- V(_IntegerImplementation, ~/, Integer_truncDivide, 1187354250) \
- V(_IntegerImplementation, unary-, Integer_negate, 675709702) \
+ V(_IntegerImplementation, *, Integer_mul, 1853182047) \
+ V(_IntegerImplementation, %, Integer_modulo, 1211518976) \
+ V(_IntegerImplementation, ~/, Integer_truncDivide, 142750059) \
+ V(_IntegerImplementation, unary-, Integer_negate, 676633254) \
V(_IntegerImplementation, _bitAndFromInteger, \
Integer_bitAndFromInteger, 726019207) \
- V(_IntegerImplementation, &, Integer_bitAnd, 759019505) \
+ V(_IntegerImplementation, &, Integer_bitAnd, 354347153) \
V(_IntegerImplementation, _bitOrFromInteger, \
Integer_bitOrFromInteger, 726019207) \
- V(_IntegerImplementation, |, Integer_bitOr, 1280367298) \
+ V(_IntegerImplementation, |, Integer_bitOr, 875694946) \
V(_IntegerImplementation, _bitXorFromInteger, \
Integer_bitXorFromInteger, 726019207) \
- V(_IntegerImplementation, ^, Integer_bitXor, 686827811) \
+ V(_IntegerImplementation, ^, Integer_bitXor, 282155459) \
V(_IntegerImplementation, \
_greaterThanFromInteger, \
Integer_greaterThanFromInt, 79222670) \
- V(_IntegerImplementation, >, Integer_greaterThan, 866987265) \
- V(_IntegerImplementation, ==, Integer_equal, 408178104) \
+ V(_IntegerImplementation, >, Integer_greaterThan, 462314913) \
+ V(_IntegerImplementation, ==, Integer_equal, 1424765465) \
V(_IntegerImplementation, _equalToInteger, Integer_equalToInteger, 79222670) \
- V(_IntegerImplementation, <, Integer_lessThan, 1423914919) \
- V(_IntegerImplementation, <=, Integer_lessEqualThan, 890963352) \
- V(_IntegerImplementation, >=, Integer_greaterEqualThan, 890993143) \
- V(_IntegerImplementation, <<, Integer_shl, 1600590181) \
- V(_IntegerImplementation, >>, Integer_sar, 237416447) \
+ V(_IntegerImplementation, <, Integer_lessThan, 1424838471) \
+ V(_IntegerImplementation, <=, Integer_lessEqualThan, 949016155) \
+ V(_IntegerImplementation, >=, Integer_greaterEqualThan, 949045946) \
+ V(_IntegerImplementation, <<, Integer_shl, 1195917829) \
+ V(_IntegerImplementation, >>, Integer_sar, 1980227743) \
V(_Smi, ~, Smi_bitNegate, 882629793) \
- V(_Double, >, Double_greaterThan, 498448864) \
- V(_Double, >=, Double_greaterEqualThan, 1126476149) \
- V(_Double, <, Double_lessThan, 1595327781) \
- V(_Double, <=, Double_lessEqualThan, 1126446358) \
- V(_Double, ==, Double_equal, 48480576) \
- V(_Double, +, Double_add, 407090160) \
- V(_Double, -, Double_sub, 1801868246) \
- V(_Double, *, Double_mul, 984784342) \
- V(_Double, /, Double_div, 1399344917) \
+ V(_Double, >, Double_greaterThan, 301935359) \
+ V(_Double, >=, Double_greaterEqualThan, 1184528952) \
+ V(_Double, <, Double_lessThan, 1596251333) \
+ V(_Double, <=, Double_lessEqualThan, 1184499161) \
+ V(_Double, ==, Double_equal, 1706047712) \
+ V(_Double, +, Double_add, 210576655) \
+ V(_Double, -, Double_sub, 1605354741) \
+ V(_Double, *, Double_mul, 788270837) \
+ V(_Double, /, Double_div, 1202831412) \
V(_Double, get:isNaN, Double_getIsNaN, 54462366) \
V(_Double, get:isNegative, Double_getIsNegative, 54462366) \
- V(_Double, _mulFromInteger, Double_mulFromInteger, 353781714) \
+ V(_Double, _mulFromInteger, Double_mulFromInteger, 704314034) \
V(_Double, .fromInteger, Double_fromInteger, 842078193) \
V(_Double, toInt, Double_toInt, 362666636) \
V(_ObjectArray, ., ObjectArray_Allocate, 97987288) \
@@ -71,12 +71,12 @@
V(_GrowableObjectArray, []=, GrowableArray_setIndexed, 1048007636) \
V(_GrowableObjectArray, _setLength, GrowableArray_setLength, 796709584) \
V(_GrowableObjectArray, _setData, GrowableArray_setData, 629110947) \
- V(_GrowableObjectArray, add, GrowableArray_add, 2139340847) \
+ V(_GrowableObjectArray, add, GrowableArray_add, 1904852879) \
V(_ImmutableArray, [], ImmutableArray_getIndexed, 486821199) \
V(_ImmutableArray, get:length, ImmutableArray_getLength, 433698233) \
- V(Object, ==, Object_equal, 2126867222) \
+ V(Object, ==, Object_equal, 2126897013) \
V(_StringBase, get:hashCode, String_getHashCode, 320803993) \
- V(_StringBase, get:isEmpty, String_getIsEmpty, 110632481) \
+ V(_StringBase, get:isEmpty, String_getIsEmpty, 1026765313) \
V(_StringBase, get:length, String_getLength, 320803993) \
V(_StringBase, codeUnitAt, String_codeUnitAt, 984449525) \
V(_OneByteString, get:hashCode, OneByteString_getHashCode, 682660413) \
@@ -104,18 +104,18 @@
V(_Float32Array, _new, TypedData_Float32Array_new, 1053133615) \
V(_Float64Array, _new, TypedData_Float64Array_new, 936673303) \
V(_Float32x4Array, _new, TypedData_Float32x4Array_new, 212088644) \
- V(_Int8Array, ., TypedData_Int8Array_factory, 632939448) \
- V(_Uint8Array, ., TypedData_Uint8Array_factory, 1942390430) \
- V(_Uint8ClampedArray, ., TypedData_Uint8ClampedArray_factory, 1447100174) \
- V(_Int16Array, ., TypedData_Int16Array_factory, 1997238698) \
- V(_Uint16Array, ., TypedData_Uint16Array_factory, 672422545) \
- V(_Int32Array, ., TypedData_Int32Array_factory, 504367176) \
- V(_Uint32Array, ., TypedData_Uint32Array_factory, 31896861) \
- V(_Int64Array, ., TypedData_Int64Array_factory, 702290418) \
- V(_Uint64Array, ., TypedData_Uint64Array_factory, 59820857) \
- V(_Float32Array, ., TypedData_Float32Array_factory, 1040427868) \
- V(_Float64Array, ., TypedData_Float64Array_factory, 969149770) \
- V(_Float32x4Array, ., TypedData_Float32x4Array_factory, 175242544) \
+ V(_Int8Array, ., TypedData_Int8Array_factory, 156009974) \
+ V(_Uint8Array, ., TypedData_Uint8Array_factory, 1465460956) \
+ V(_Uint8ClampedArray, ., TypedData_Uint8ClampedArray_factory, 970170700) \
+ V(_Int16Array, ., TypedData_Int16Array_factory, 1520309224) \
+ V(_Uint16Array, ., TypedData_Uint16Array_factory, 195493071) \
+ V(_Int32Array, ., TypedData_Int32Array_factory, 27437702) \
+ V(_Uint32Array, ., TypedData_Uint32Array_factory, 1702451035) \
+ V(_Int64Array, ., TypedData_Int64Array_factory, 225360944) \
+ V(_Uint64Array, ., TypedData_Uint64Array_factory, 1730375031) \
+ V(_Float32Array, ., TypedData_Float32Array_factory, 563498394) \
+ V(_Float64Array, ., TypedData_Float64Array_factory, 492220296) \
+ V(_Float32x4Array, ., TypedData_Float32x4Array_factory, 1845796718) \
// TODO(srdjan): Implement _FixedSizeArrayIterator, get:current and
// _FixedSizeArrayIterator, moveNext.
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | runtime/vm/object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698