mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-20 02:34:04 +01:00
+ initial files for intrinsics support on AArch64
This commit is contained in:
parent
b733e21fd1
commit
b0459a19f4
16
rtl/aarch64/cpuinnr.inc
Normal file
16
rtl/aarch64/cpuinnr.inc
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
Defines CPU intrinsic indicies for AArch64
|
||||
|
||||
This file is part of the Free Pascal run time library.
|
||||
Copyright (c) 2021 by the Free Pascal development team.
|
||||
|
||||
See the file COPYING.FPC, included in this distribution,
|
||||
for details about the copyright.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
**********************************************************************}
|
||||
|
||||
fpc_in_aarch64_fcadd = fpc_in_cpu_first+0;
|
||||
14
rtl/aarch64/cpuprocs.inc
Normal file
14
rtl/aarch64/cpuprocs.inc
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
Defines CPU intrinsics for AArch64
|
||||
|
||||
This file is part of the Free Pascal run time library.
|
||||
Copyright (c) 2021 by the Free Pascal development team.
|
||||
|
||||
See the file COPYING.FPC, included in this distribution,
|
||||
for details about the copyright.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
**********************************************************************}
|
||||
26
rtl/aarch64/intrinsics.pp
Normal file
26
rtl/aarch64/intrinsics.pp
Normal file
@ -0,0 +1,26 @@
|
||||
{
|
||||
Provides CPU intrinsics for AArch64
|
||||
|
||||
This file is part of the Free Pascal run time library.
|
||||
Copyright (c) 2021 by the Free Pascal development team.
|
||||
|
||||
See the file COPYING.FPC, included in this distribution,
|
||||
for details about the copyright.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
**********************************************************************}
|
||||
unit intrinsics;
|
||||
|
||||
interface
|
||||
|
||||
const
|
||||
{$i cpuinnr.inc}
|
||||
|
||||
{$i cpuprocs.inc}
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
Loading…
Reference in New Issue
Block a user