about summary refs log tree commit diff stats
path: root/src/os/hostext_common.c
diff options
context:
space:
mode:
authorphorcys <phorcys@126.com>2025-07-29 15:08:24 +0800
committerGitHub <noreply@github.com>2025-07-29 09:08:24 +0200
commitf43a221ffca63e96e33301148df240a91df0d3c2 (patch)
tree90d7fd67d372a8056fd092585ec084bd9249d975 /src/os/hostext_common.c
parent397399fd30cc8ebe2c45440a2afc8e7c6c0f80f4 (diff)
downloadbox64-f43a221ffca63e96e33301148df240a91df0d3c2.tar.gz
box64-f43a221ffca63e96e33301148df240a91df0d3c2.zip
[LA64_DYNAREC] Add la64 avx float ops part 3. (#2845)
*  add cpuext.frecipe for LoongArch V1.1
  *  Fix VFRSQRTE in sse op  RSQRTPS/RSQRTSS
  *  Fix VFRECIPE in sse op  RCPPS/RCPSS
  *  V{MAX,MIN}{PD,PS,SD,SS}
  *  VRCPPS,VRCPSS
  *  VRSQRTPS,VRSQRTSS
  *  VSQRT{PD,PS,SD,SS}
Diffstat (limited to 'src/os/hostext_common.c')
-rw-r--r--src/os/hostext_common.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/os/hostext_common.c b/src/os/hostext_common.c
index 258e1af4..c167d2a7 100644
--- a/src/os/hostext_common.c
+++ b/src/os/hostext_common.c
@@ -39,6 +39,8 @@ void PrintHostCpuFeatures(void)
         printf_log_prefix(0, LOG_INFO, " LAMCAS");
     if (cpuext.scq)
         printf_log_prefix(0, LOG_INFO, " SCQ");
+    if (cpuext.frecipe)
+        printf_log_prefix(0, LOG_INFO, " FRECIP");
     printf_log_prefix(0, LOG_INFO, "\n");
 #elif defined(RV64)
     printf_log(LOG_INFO, "Dynarec for rv64g");