+ initial files for intrinsics support on AArch64

This commit is contained in:
florian 2021-11-21 21:11:23 +01:00
parent b733e21fd1
commit b0459a19f4
3 changed files with 56 additions and 0 deletions

16
rtl/aarch64/cpuinnr.inc Normal file
View 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
View 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
View 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.