mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 22:07:56 +02:00
* inline sqrt since it is a mandatory instruction on PPC970 processors (and much faster than the generic routine)
git-svn-id: trunk@6286 -
This commit is contained in:
parent
a4a35ced37
commit
75e343e030
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -348,6 +348,7 @@ compiler/powerpc64/itcpugas.pas svneol=native#text/plain
|
||||
compiler/powerpc64/nppcadd.pas svneol=native#text/plain
|
||||
compiler/powerpc64/nppccal.pas svneol=native#text/plain
|
||||
compiler/powerpc64/nppccnv.pas svneol=native#text/plain
|
||||
compiler/powerpc64/nppcinl.pas -text
|
||||
compiler/powerpc64/nppcld.pas svneol=native#text/plain
|
||||
compiler/powerpc64/nppcmat.pas svneol=native#text/plain
|
||||
compiler/powerpc64/ppcins.dat -text
|
||||
|
@ -40,7 +40,7 @@ uses
|
||||
// nppcflw,
|
||||
// nppcmem,
|
||||
ngppcset,
|
||||
ngppcinl,
|
||||
ngppcinl, nppcinl,
|
||||
// nppcopt,
|
||||
nppcmat,
|
||||
nppccnv,
|
||||
|
79
compiler/powerpc64/nppcinl.pas
Normal file
79
compiler/powerpc64/nppcinl.pas
Normal file
@ -0,0 +1,79 @@
|
||||
{
|
||||
Copyright (c) 1998-2007 by Free Pascal development team
|
||||
|
||||
Generate PowerPC64 inline nodes
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
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. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
****************************************************************************
|
||||
}
|
||||
unit nppcinl;
|
||||
|
||||
{$i fpcdefs.inc}
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
node,ninl,ncginl,ngppcinl;
|
||||
|
||||
type
|
||||
tppc64inlinenode = class(tgppcinlinenode)
|
||||
function first_sqrt_real: tnode; override;
|
||||
procedure second_sqrt_real; override;
|
||||
end;
|
||||
|
||||
implementation
|
||||
|
||||
uses
|
||||
cutils,globals,verbose,
|
||||
aasmtai,aasmdata,aasmcpu,
|
||||
symconst,symdef,
|
||||
defutil,
|
||||
cgbase,pass_2,
|
||||
cpubase,ncgutil,
|
||||
cgutils,cgobj,rgobj;
|
||||
|
||||
|
||||
{*****************************************************************************
|
||||
tppc64inlinenode
|
||||
*****************************************************************************}
|
||||
function tppc64inlinenode.first_sqrt_real : tnode;
|
||||
begin
|
||||
expectloc:=LOC_FPUREGISTER;
|
||||
registersint:=left.registersint;
|
||||
registersfpu:=max(left.registersfpu,1);
|
||||
first_sqrt_real := nil;
|
||||
end;
|
||||
|
||||
procedure tppc64inlinenode.second_sqrt_real;
|
||||
begin
|
||||
location.loc:=LOC_FPUREGISTER;
|
||||
load_fpu_location;
|
||||
case left.location.size of
|
||||
OS_F32:
|
||||
current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg(A_FSQRTS,location.register,
|
||||
left.location.register));
|
||||
OS_F64:
|
||||
current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg(A_FSQRT,location.register,
|
||||
left.location.register));
|
||||
else
|
||||
inherited;
|
||||
end;
|
||||
end;
|
||||
|
||||
|
||||
begin
|
||||
cinlinenode:=tppc64inlinenode;
|
||||
end.
|
Loading…
Reference in New Issue
Block a user