From 97cacfbfec895763f55c4af054351a2d40edd91c Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Fri, 20 Nov 2020 09:47:59 -0800 Subject: [PATCH] Add more runtime intrinsic symbols to the export checker script (#22641) --- testing/symbols/verify_exported.dart | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/testing/symbols/verify_exported.dart b/testing/symbols/verify_exported.dart index 0a26a3cf4..e349a0503 100644 --- a/testing/symbols/verify_exported.dart +++ b/testing/symbols/verify_exported.dart @@ -121,6 +121,9 @@ int _checkAndroid(String outPath, String nmPath, Iterable builds) { '__aeabi_cdcmpeq': 'T', '__aeabi_cdcmple': 'T', '__aeabi_cdrcmple': 'T', + '__aeabi_cfcmpeq': 'T', + '__aeabi_cfcmple': 'T', + '__aeabi_cfrcmple': 'T', '__aeabi_d2lz': 'T', '__aeabi_d2uiz': 'T', '__aeabi_d2ulz': 'T', @@ -135,7 +138,14 @@ int _checkAndroid(String outPath, String nmPath, Iterable builds) { '__aeabi_drsub': 'T', '__aeabi_dsub': 'T', '__aeabi_f2d': 'T', + '__aeabi_f2lz': 'T', + '__aeabi_f2ulz': 'T', '__aeabi_fadd': 'T', + '__aeabi_fcmpeq': 'T', + '__aeabi_fcmpge': 'T', + '__aeabi_fcmpgt': 'T', + '__aeabi_fcmple': 'T', + '__aeabi_fcmplt': 'T', '__aeabi_frsub': 'T', '__aeabi_fsub': 'T', '__aeabi_i2d': 'T', @@ -156,13 +166,17 @@ int _checkAndroid(String outPath, String nmPath, Iterable builds) { '__ashldi3': 'T', '__ashrdi3': 'T', '__cmpdf2': 'T', + '__cmpsf2': 'T', '__divdf3': 'T', '__divdi3': 'T', '__eqdf2': 'T', + '__eqsf2': 'T', '__extendsfdf2': 'T', '__fixdfdi': 'T', + '__fixsfdi': 'T', '__fixunsdfdi': 'T', '__fixunsdfsi': 'T', + '__fixunssfdi': 'T', '__floatdidf': 'T', '__floatdisf': 'T', '__floatsidf': 'T', @@ -172,14 +186,19 @@ int _checkAndroid(String outPath, String nmPath, Iterable builds) { '__floatunsidf': 'T', '__floatunsisf': 'T', '__gedf2': 'T', + '__gesf2': 'T', '__gnu_ldivmod_helper': 'T', '__gnu_uldivmod_helper': 'T', '__gtdf2': 'T', + '__gtsf2': 'T', '__ledf2': 'T', + '__lesf2': 'T', '__lshrdi3': 'T', '__ltdf2': 'T', + '__ltsf2': 'T', '__muldf3': 'T', '__nedf2': 'T', + '__nesf2': 'T', '__subdf3': 'T', '__subsf3': 'T', '__udivdi3': 'T', -- GitLab