mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-25 13:05:04 +00:00
[libc][RISCV] Add log, log2, log1p, log10 for RISC-V64 entrypoints.
Add log, log2, log1p, log10 RISCV64 entrypoints. Reviewed By: michaelrj, sivachandra Differential Revision: https://reviews.llvm.org/D151674
This commit is contained in:
parent
520362b28d
commit
e557b8a142
@ -286,9 +286,13 @@ set(TARGET_LIBM_ENTRYPOINTS
|
||||
libc.src.math.llround
|
||||
libc.src.math.llroundf
|
||||
libc.src.math.llroundl
|
||||
libc.src.math.log10
|
||||
libc.src.math.log10f
|
||||
libc.src.math.log1p
|
||||
libc.src.math.log1pf
|
||||
libc.src.math.log2
|
||||
libc.src.math.log2f
|
||||
libc.src.math.log
|
||||
libc.src.math.logf
|
||||
libc.src.math.logb
|
||||
libc.src.math.logbf
|
||||
|
@ -394,25 +394,25 @@ Higher Math Functions
|
||||
+------------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+
|
||||
| lgammal | | | | | | | | | | | | |
|
||||
+------------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+
|
||||
| log | |check| | |check| | | | |check| | | | |check| | | | | |
|
||||
| log | |check| | |check| | | |check| | |check| | | | |check| | | | | |
|
||||
+------------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+
|
||||
| logf | |check| | |check| | | |check| | |check| | | | |check| | | | | |
|
||||
+------------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+
|
||||
| logl | | | | | | | | | | | | |
|
||||
+------------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+
|
||||
| log10 | |check| | |check| | | | |check| | | | |check| | | | | |
|
||||
| log10 | |check| | |check| | | |check| | |check| | | | |check| | | | | |
|
||||
+------------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+
|
||||
| log10f | |check| | |check| | | |check| | |check| | | | |check| | | | | |
|
||||
+------------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+
|
||||
| log10l | | | | | | | | | | | | |
|
||||
+------------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+
|
||||
| log1p | |check| | |check| | | | |check| | | | |check| | | | | |
|
||||
| log1p | |check| | |check| | | |check| | |check| | | | |check| | | | | |
|
||||
+------------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+
|
||||
| log1pf | |check| | |check| | | |check| | |check| | | | |check| | | | | |
|
||||
+------------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+
|
||||
| log1pl | | | | | | | | | | | | |
|
||||
+------------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+
|
||||
| log2 | |check| | |check| | | | |check| | | | |check| | | | | |
|
||||
| log2 | |check| | |check| | | |check| | |check| | | | |check| | | | | |
|
||||
+------------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+
|
||||
| log2f | |check| | |check| | | |check| | |check| | | | |check| | | | | |
|
||||
+------------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+---------+
|
||||
|
Loading…
x
Reference in New Issue
Block a user