+ Xtensa: make use of ADDX*

git-svn-id: trunk@45001 -
This commit is contained in:
florian 2020-04-22 21:03:08 +00:00
parent 74abe87315
commit 483837ae5c
5 changed files with 97 additions and 1 deletions

1
.gitattributes vendored
View File

@ -1034,6 +1034,7 @@ compiler/xtensa/ncpuadd.pas svneol=native#text/pascal
compiler/xtensa/ncpucnv.pas svneol=native#text/pascal
compiler/xtensa/ncpuinl.pas svneol=native#text/pascal
compiler/xtensa/ncpumat.pas svneol=native#text/pascal
compiler/xtensa/ncpumem.pas svneol=native#text/pascal
compiler/xtensa/ncpuutil.pas svneol=native#text/pascal
compiler/xtensa/racpugas.pas svneol=native#text/pascal
compiler/xtensa/raxtensa.pas svneol=native#text/pascal

View File

@ -35,7 +35,7 @@ implementation
symcpu,
aasmdef
{$ifndef llvm}
,ncpuadd,ncpumat,ncpucnv,ncpuutil,ncpuinl//,ncpumem,ncpuset,ncpucon
,ncpuadd,ncpumat,ncpucnv,ncpuutil,ncpuinl,ncpumem//,ncpuset,ncpucon
{$else llvm}
llvmnode
{$endif llvm}

View File

@ -0,0 +1,89 @@
{
Copyright (c) 1998-2020 by Florian Klaempfl
Generate xtensa assembler for in memory related 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 ncpumem;
{$i fpcdefs.inc}
interface
uses
globtype,
cgbase,cpubase,
symtype,
nmem,ncgmem;
type
tcpuvecnode = class(tcgvecnode)
procedure update_reference_reg_mul(maybe_const_reg: tregister; regsize: tdef; l: aint);override;
end;
implementation
uses
cutils,verbose,
aasmdata,aasmcpu,
cgutils,cgobj,
symconst,symcpu;
{*****************************************************************************
TCPUVECNODE
*****************************************************************************}
procedure tcpuvecnode.update_reference_reg_mul(maybe_const_reg: tregister; regsize: tdef; l: aint);
var
hreg: tregister;
op: TAsmOp;
begin
if (l in [2,4,8]) and ((location.reference.base<>NR_NO) or (location.reference.index<>NR_NO)) then
begin
case l of
2 : op:=A_ADDX2;
4 : op:=A_ADDX4;
8 : op:=A_ADDX8;
else
Internalerror(2020042201);
end;
hreg:=cg.getaddressregister(current_asmdata.CurrAsmList);
if location.reference.base<>NR_NO then
begin
current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg_reg(op,hreg,maybe_const_reg,location.reference.base));
location.reference.base:=hreg;
end
else if location.reference.index<>NR_NO then
begin
current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg_reg(op,hreg,maybe_const_reg,location.reference.index));
location.reference.index:=hreg;
end
else
Internalerror(2020042202);
{ update alignment }
if (location.reference.alignment=0) then
internalerror(2020042203);
location.reference.alignment:=newalignment(location.reference.alignment,l);
end
else
inherited update_reference_reg_mul(maybe_const_reg,regsize,l);
end;
begin
cvecnode:=tcpuvecnode;
end.

View File

@ -2,6 +2,9 @@
'',
'abs',
'add',
'addx2',
'addx4',
'addx8',
'add.s',
'addi',
'addmi',

View File

@ -2,6 +2,9 @@
A_NONE,
A_ABS,
A_ADD,
A_ADDX2,
A_ADDX4,
A_ADDX8,
A_ADD_S,
A_ADDI,
A_ADDMI,