mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 15:47:54 +02:00

+ Added postfix parsing in tattreader.GetToken - Removed all postfixed versions of OpCodes from the instruction list + Added all missing OpCodes from Xtensa ISA * Changed branch OpCode to A_B, similar to ARM + Added missing branch condition flags BCI and BSI * Updated existing compiler code that referred to the old postfixed instructions + Added prefix and postfix handling in TxtensaInstrWriter.WriteInstruction * Updated TCPUAddNode.second_addfloat to specify .S postfix * Updated tcpuunaryminusnode.second_float to specify .S postfix + Implemented prefix and postfix identification in txtensaattreader.is_asmopcode * Adapted branch condition extraction to respect postfixes * Changed itcpugas to call findreg_by_name_table from raatt.pas (same as issue #0037121, difficult to test these changes without including a fix for the register name search problem) git-svn-id: trunk@45672 -
60 lines
1.6 KiB
ObjectPascal
60 lines
1.6 KiB
ObjectPascal
{
|
|
Copyright (c) 1998-2003 by Carl Eric Codere and Peter Vreman
|
|
|
|
Handles the common Xtensa assembler reader routines
|
|
|
|
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 raxtensa;
|
|
|
|
{$i fpcdefs.inc}
|
|
|
|
interface
|
|
|
|
uses
|
|
cpubase,
|
|
aasmtai,aasmdata,
|
|
rautils;
|
|
|
|
type
|
|
TXtensaOperand=class(TOperand)
|
|
end;
|
|
|
|
{ TXtensaInstruction }
|
|
|
|
TXtensaInstruction=class(TInstruction)
|
|
oppostfix : toppostfix;
|
|
opIsPrefixed : boolean;
|
|
function ConcatInstruction(p:TAsmList) : tai;override;
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
aasmcpu;
|
|
|
|
{ TXtensaInstruction }
|
|
|
|
function TXtensaInstruction.ConcatInstruction(p:TAsmList) : tai;
|
|
begin
|
|
result:=inherited ConcatInstruction(p);
|
|
(result as taicpu).oppostfix:=oppostfix;
|
|
(result as taicpu).opIsPrefixed:=opIsPrefixed;
|
|
end;
|
|
|
|
end.
|