mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:24:24 +02:00
+ Aarch64: UMul64x64_128 assembler implementation
This commit is contained in:
parent
28c14ff345
commit
ddd846ede4
@ -582,3 +582,10 @@ asm
|
||||
rev x0, x0
|
||||
end;
|
||||
|
||||
{$define FPC_SYSTEM_HAS_UMUL64X64_128}
|
||||
function UMul64x64_128(a,b: uint64; out rHi: uint64): uint64; assembler; nostackframe;
|
||||
asm
|
||||
umulh x3,x0,x1
|
||||
mul x0,x0,x1
|
||||
str x3,[x2]
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user