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

Unified Diff: runtime/vm/method_recognizer.h

Issue 705063003: Suppress inlining of complex Bigint intrinsics. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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 | « no previous file | runtime/vm/method_recognizer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/method_recognizer.h
diff --git a/runtime/vm/method_recognizer.h b/runtime/vm/method_recognizer.h
index 0c4a9ec8169cf179964d20a80617ae5bb7e358e3..0379a71cc9d4c1b4653fb2b1ce60ba40db44a078 100644
--- a/runtime/vm/method_recognizer.h
+++ b/runtime/vm/method_recognizer.h
@@ -378,6 +378,14 @@ namespace dart {
V(_Bigint, get:_digits, Bigint_getDigits, 1408062672) \
V(_Bigint, set:_digits, Bigint_setDigits, 1135754410) \
+// A list of core function that should never be inlined.
+#define INLINE_BLACK_LIST(V) \
+ V(_Bigint, _absAdd, Bigint_absAdd, 233965936) \
+ V(_Bigint, _absSub, Bigint_absSub, 1401148862) \
+ V(_Bigint, _mulAdd, Bigint_mulAdd, 1283124653) \
+ V(_Bigint, _sqrAdd, Bigint_sqrAdd, 1665155090) \
+ V(_Bigint, _estQuotientDigit, Bigint_estQuotientDigit, 643982609) \
+
regis 2014/11/06 17:25:19 V(_Montgomery, _mulMod, Montgomery_mulMod, 1491270
// A list of core functions that internally dispatch based on received id.
#define POLYMORPHIC_TARGET_LIST(V) \
V(_StringBase, [], StringBaseCharAt, 1512210677) \
« no previous file with comments | « no previous file | runtime/vm/method_recognizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698