diff options
| author | phorcys <phorcys@126.com> | 2025-07-29 15:08:24 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-29 09:08:24 +0200 |
| commit | f43a221ffca63e96e33301148df240a91df0d3c2 (patch) | |
| tree | 90d7fd67d372a8056fd092585ec084bd9249d975 /src/include/hostext.h | |
| parent | 397399fd30cc8ebe2c45440a2afc8e7c6c0f80f4 (diff) | |
| download | box64-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/include/hostext.h')
| -rw-r--r-- | src/include/hostext.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/hostext.h b/src/include/hostext.h index 579e76ac..6c3b119e 100644 --- a/src/include/hostext.h +++ b/src/include/hostext.h @@ -41,6 +41,7 @@ typedef union cpu_ext_s { uint64_t lam_bh : 1; uint64_t lamcas : 1; uint64_t scq : 1; + uint64_t frecipe : 1; #endif }; uint64_t x; |