| Index: runtime/vm/method_recognizer.h
|
| ===================================================================
|
| --- runtime/vm/method_recognizer.h (revision 44828)
|
| +++ runtime/vm/method_recognizer.h (working copy)
|
| @@ -155,6 +155,8 @@
|
| #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, _rsh, Bigint_rsh, 1239668932) \
|
| V(_Bigint, _absAdd, Bigint_absAdd, 222437051) \
|
| V(_Bigint, _absSub, Bigint_absSub, 599465997) \
|
| V(_Bigint, _mulAdd, Bigint_mulAdd, 1696801459) \
|
| @@ -399,6 +401,8 @@
|
|
|
| // A list of core function that should never be inlined.
|
| #define INLINE_BLACK_LIST(V) \
|
| + V(_Bigint, _lsh, Bigint_lsh, 399808874) \
|
| + V(_Bigint, _rsh, Bigint_rsh, 1239668932) \
|
| V(_Bigint, _absAdd, Bigint_absAdd, 222437051) \
|
| V(_Bigint, _absSub, Bigint_absSub, 599465997) \
|
| V(_Bigint, _mulAdd, Bigint_mulAdd, 1696801459) \
|
|
|