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

Unified Diff: runtime/vm/method_recognizer.h

Issue 1058523003: Move zero-ing code out of shift intrinsic (not needed if destination is new). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 9 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/lib/bigint.dart ('k') | no next file » | 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 44834)
+++ runtime/vm/method_recognizer.h (working copy)
@@ -155,7 +155,7 @@
#define CORE_LIB_INTRINSIC_LIST(V) \
V(_Smi, ~, Smi_bitNegate, 134149043) \
V(_Smi, get:bitLength, Smi_bitLength, 869986288) \
- V(_Bigint, _lsh, Bigint_lsh, 399808874) \
+ V(_Bigint, _lsh, Bigint_lsh, 1318834243) \
V(_Bigint, _rsh, Bigint_rsh, 1239668932) \
V(_Bigint, _absAdd, Bigint_absAdd, 222437051) \
V(_Bigint, _absSub, Bigint_absSub, 599465997) \
@@ -401,7 +401,7 @@
// A list of core function that should never be inlined.
#define INLINE_BLACK_LIST(V) \
- V(_Bigint, _lsh, Bigint_lsh, 399808874) \
+ V(_Bigint, _lsh, Bigint_lsh, 1318834243) \
V(_Bigint, _rsh, Bigint_rsh, 1239668932) \
V(_Bigint, _absAdd, Bigint_absAdd, 222437051) \
V(_Bigint, _absSub, Bigint_absSub, 599465997) \
« no previous file with comments | « runtime/lib/bigint.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698