Chromium Code Reviews| Index: runtime/vm/method_recognizer.h |
| =================================================================== |
| --- runtime/vm/method_recognizer.h (revision 44750) |
| +++ 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) \ |
|
srdjan
2015/03/27 22:29:54
You may want to add this only after you have imple
regis
2015/03/27 22:41:47
OK, I will wait until the first intrinsic is imple
|
| V(_Bigint, _absAdd, Bigint_absAdd, 222437051) \ |
| V(_Bigint, _absSub, Bigint_absSub, 599465997) \ |
| V(_Bigint, _mulAdd, Bigint_mulAdd, 1696801459) \ |