mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 05:58:02 +02:00
* patch by Christo Crause, resolves #38961, fixes the following formatting and spelling problems in the AVR compiler files:
- Change spelling of AM_PREDRECEMENT to AM_PREDECREMENT - Fix multiline comment style to use {} - Fix indenting of code in method tcgavr.g_concatcopy git-svn-id: trunk@49474 -
This commit is contained in:
parent
9d6ceda532
commit
aec49340a3
@ -96,7 +96,7 @@ unit agavrgas;
|
||||
internalerror(2011021707)
|
||||
else if base<>NR_NO then
|
||||
begin
|
||||
if addressmode=AM_PREDRECEMENT then
|
||||
if addressmode=AM_PREDECREMENT then
|
||||
s:='-';
|
||||
|
||||
case base of
|
||||
|
@ -1374,12 +1374,11 @@ unit cgcpu;
|
||||
end;
|
||||
if not conv_done then
|
||||
begin
|
||||
// CC
|
||||
// Write to 16 bit ioreg, first high byte then low byte
|
||||
// sequence required for 16 bit timer registers
|
||||
// See e.g. atmega328p manual para 15.3 Accessing 16 bit registers
|
||||
// Avrxmega3: write low byte first then high byte
|
||||
// See e.g. megaAVR-0 family data sheet 7.5.6 Accessing 16-bit registers
|
||||
{ Write to 16 bit ioreg, first high byte then low byte
|
||||
sequence required for 16 bit timer registers
|
||||
See e.g. atmega328p manual para 15.3 Accessing 16 bit registers
|
||||
Avrxmega3: write low byte first then high byte
|
||||
See e.g. megaAVR-0 family data sheet 7.5.6 Accessing 16-bit registers }
|
||||
if (current_settings.cputype <> cpu_avrxmega3) and
|
||||
(fromsize in [OS_16, OS_S16]) and QuickRef and addr_is_io_register(href.offset) then
|
||||
begin
|
||||
@ -2608,22 +2607,21 @@ unit cgcpu;
|
||||
dstref:=dest;
|
||||
end;
|
||||
|
||||
// CC
|
||||
// If dest is an ioreg and size = 16 bit then
|
||||
// write high byte first, then low byte
|
||||
// but not for avrxmega3
|
||||
if (len = 2) and DestQuickRef and (current_settings.cputype <> cpu_avrxmega3) and
|
||||
addr_is_io_register(dest.offset) then
|
||||
begin
|
||||
// If src is also a 16 bit ioreg then read low byte then high byte
|
||||
if SrcQuickRef and addr_is_io_register(srcref.offset) then
|
||||
begin
|
||||
// First read source into temp registers
|
||||
tmpreg:=getintregister(list, OS_16);
|
||||
list.concat(taicpu.op_reg_ref(GetLoad(srcref),tmpreg,srcref));
|
||||
inc(srcref.offset);
|
||||
tmpreg2:=GetNextReg(tmpreg);
|
||||
list.concat(taicpu.op_reg_ref(GetLoad(srcref),tmpreg2,srcref));
|
||||
{ If dest is an ioreg and size = 16 bit then
|
||||
write high byte first, then low byte
|
||||
but not for avrxmega3 }
|
||||
if (len = 2) and DestQuickRef and (current_settings.cputype <> cpu_avrxmega3) and
|
||||
addr_is_io_register(dest.offset) then
|
||||
begin
|
||||
// If src is also a 16 bit ioreg then read low byte then high byte
|
||||
if SrcQuickRef and addr_is_io_register(srcref.offset) then
|
||||
begin
|
||||
// First read source into temp registers
|
||||
tmpreg:=getintregister(list, OS_16);
|
||||
list.concat(taicpu.op_reg_ref(GetLoad(srcref),tmpreg,srcref));
|
||||
inc(srcref.offset);
|
||||
tmpreg2:=GetNextReg(tmpreg);
|
||||
list.concat(taicpu.op_reg_ref(GetLoad(srcref),tmpreg2,srcref));
|
||||
|
||||
// then move temp registers to dest in reverse order
|
||||
inc(dstref.offset);
|
||||
@ -2637,7 +2635,7 @@ unit cgcpu;
|
||||
predecrement version of LD with pre-incremented pointer }
|
||||
if current_settings.cputype = cpu_avrtiny then
|
||||
begin
|
||||
srcref.addressmode:=AM_PREDRECEMENT;
|
||||
srcref.addressmode:=AM_PREDECREMENT;
|
||||
list.concat(taicpu.op_reg_const(A_SUBI,srcref.base,-2));
|
||||
list.concat(taicpu.op_reg_const(A_SBCI,GetNextReg(srcref.base),$FF));
|
||||
end
|
||||
@ -2658,7 +2656,7 @@ unit cgcpu;
|
||||
if not(SrcQuickRef) and (current_settings.cputype <> cpu_avrtiny) then
|
||||
srcref.addressmode:=AM_POSTINCREMENT
|
||||
else if current_settings.cputype = cpu_avrtiny then
|
||||
srcref.addressmode:=AM_PREDRECEMENT
|
||||
srcref.addressmode:=AM_PREDECREMENT
|
||||
else
|
||||
srcref.addressmode:=AM_UNCHANGED;
|
||||
|
||||
@ -2695,17 +2693,18 @@ unit cgcpu;
|
||||
if DestQuickRef then
|
||||
inc(dstref.offset);
|
||||
end;
|
||||
if not(SrcQuickRef) then
|
||||
begin
|
||||
ungetcpuregister(list,srcref.base);
|
||||
ungetcpuregister(list,TRegister(ord(srcref.base)+1));
|
||||
end;
|
||||
if not(DestQuickRef) then
|
||||
begin
|
||||
ungetcpuregister(list,dstref.base);
|
||||
ungetcpuregister(list,TRegister(ord(dstref.base)+1));
|
||||
end;
|
||||
end;
|
||||
|
||||
if not(SrcQuickRef) then
|
||||
begin
|
||||
ungetcpuregister(list,srcref.base);
|
||||
ungetcpuregister(list,TRegister(ord(srcref.base)+1));
|
||||
end;
|
||||
if not(DestQuickRef) then
|
||||
begin
|
||||
ungetcpuregister(list,dstref.base);
|
||||
ungetcpuregister(list,TRegister(ord(dstref.base)+1));
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
||||
|
||||
|
@ -160,7 +160,7 @@ unit cpubase;
|
||||
Operands
|
||||
*****************************************************************************}
|
||||
|
||||
taddressmode = (AM_UNCHANGED,AM_POSTINCREMENT,AM_PREDRECEMENT);
|
||||
taddressmode = (AM_UNCHANGED,AM_POSTINCREMENT,AM_PREDECREMENT);
|
||||
|
||||
{*****************************************************************************
|
||||
Constants
|
||||
|
@ -164,13 +164,13 @@ unit raavr;
|
||||
// Perhaps handle separately with a check on sub-architecture? Range check only important if smaller instruction code selected on larger arch
|
||||
(numOperands: (1 shl 2); Operands: ((typ: top_reg; rt: rt_all), (typ: top_const; max: 65535; min: 0))),
|
||||
// A_LD
|
||||
(numOperands: (1 shl 2); Operands: ((typ: top_reg; rt: rt_all), (typ: top_reg; rt: rt_XYZ; am: [AM_UNCHANGED, AM_POSTINCREMENT, AM_PREDRECEMENT]))),
|
||||
(numOperands: (1 shl 2); Operands: ((typ: top_reg; rt: rt_all), (typ: top_reg; rt: rt_XYZ; am: [AM_UNCHANGED, AM_POSTINCREMENT, AM_PREDECREMENT]))),
|
||||
// A_LDD
|
||||
(numOperands: (1 shl 2); Operands: ((typ: top_reg; rt: rt_all), (typ: top_reg; rt: rt_YZ; am: [AM_UNCHANGED]; minconst: 0; maxconst: 63))),
|
||||
// A_STS TODO: See LDS above
|
||||
(numOperands: (1 shl 2); Operands: ((typ: top_const; max: 65535; min: 0), (typ: top_reg; rt: rt_all))),
|
||||
// A_ST
|
||||
(numOperands: (1 shl 2); Operands: ((typ: top_reg; rt: rt_XYZ; am: [AM_UNCHANGED, AM_POSTINCREMENT, AM_PREDRECEMENT]), (typ: top_reg; rt: rt_all))),
|
||||
(numOperands: (1 shl 2); Operands: ((typ: top_reg; rt: rt_XYZ; am: [AM_UNCHANGED, AM_POSTINCREMENT, AM_PREDECREMENT]), (typ: top_reg; rt: rt_all))),
|
||||
// A_STD
|
||||
(numOperands: (1 shl 2); Operands: ((typ: top_reg; rt: rt_YZ; am: [AM_UNCHANGED]; minconst: 0; maxconst: 63), (typ: top_reg; rt: rt_all))),
|
||||
// A_LPM
|
||||
@ -348,7 +348,7 @@ unit raavr;
|
||||
|
||||
if not (err) and not(AM_UNCHANGED in AVRInstrConstraint[opcode].Operands[i].am) and
|
||||
((AM_POSTINCREMENT in AVRInstrConstraint[opcode].Operands[i].am) or
|
||||
(AM_PREDRECEMENT in AVRInstrConstraint[opcode].Operands[i].am)) then
|
||||
(AM_PREDECREMENT in AVRInstrConstraint[opcode].Operands[i].am)) then
|
||||
err := not opregasref;
|
||||
|
||||
if not(err) and opregasref then
|
||||
|
@ -349,7 +349,7 @@ Unit raavrgas;
|
||||
begin
|
||||
{ Special handling of predecrement addressing }
|
||||
oper.InitRef;
|
||||
oper.opr.ref.addressmode:=AM_PREDRECEMENT;
|
||||
oper.opr.ref.addressmode:=AM_PREDECREMENT;
|
||||
|
||||
consume(AS_MINUS);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user