mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 19:48:01 +02:00
+ RiscV: UMul64x64_128 assembler implementation
+ test
This commit is contained in:
parent
ff2492edf5
commit
28c14ff345
@ -296,3 +296,12 @@ asm
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
{$endif CPURV_HAS_ZBB}
|
{$endif CPURV_HAS_ZBB}
|
||||||
|
|
||||||
|
|
||||||
|
{$define FPC_SYSTEM_HAS_UMUL64X64_128}
|
||||||
|
function UMul64x64_128(a,b: uint64; out rHi: uint64): uint64; assembler; nostackframe;
|
||||||
|
asm
|
||||||
|
mulhu a3,a0,a1
|
||||||
|
mul a0,a0,a1
|
||||||
|
sd a3,(a2)
|
||||||
|
end;
|
||||||
|
21
tests/test/units/system/tumul64x64_128.pp
Normal file
21
tests/test/units/system/tumul64x64_128.pp
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
var
|
||||||
|
s1,s2,dl,dh: qword;
|
||||||
|
begin
|
||||||
|
s1:=1;
|
||||||
|
s2:=1;
|
||||||
|
dl:=UMul64x64_128(s1,s2,dh);
|
||||||
|
if (dl<>1) or (dh<>0) then
|
||||||
|
halt(1);
|
||||||
|
|
||||||
|
s1:=$4000000000000001;
|
||||||
|
s2:=$4000000000000001;
|
||||||
|
dl:=UMul64x64_128(s1,s2,dh);
|
||||||
|
if (dl<>qword($8000000000000001)) or (dh<>$1000000000000000) then
|
||||||
|
halt(2);
|
||||||
|
|
||||||
|
s1:=qword($ffffffffffffffff);
|
||||||
|
s2:=qword($ffffffffffffffff);
|
||||||
|
dl:=UMul64x64_128(s1,s2,dh);
|
||||||
|
if (dl<>$0000000000000001) or (dh<>qword($FFFFFFFFFFFFFFFE)) then
|
||||||
|
halt(3);
|
||||||
|
end.
|
Loading…
Reference in New Issue
Block a user