diff --git a/compiler/avr/agavrgas.pas b/compiler/avr/agavrgas.pas index d4df03db2a..428ccb4b99 100644 --- a/compiler/avr/agavrgas.pas +++ b/compiler/avr/agavrgas.pas @@ -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 diff --git a/compiler/avr/cgcpu.pas b/compiler/avr/cgcpu.pas index bb2cbc5a33..42245a0e93 100644 --- a/compiler/avr/cgcpu.pas +++ b/compiler/avr/cgcpu.pas @@ -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; diff --git a/compiler/avr/cpubase.pas b/compiler/avr/cpubase.pas index bc7837b692..74a9fa4c07 100644 --- a/compiler/avr/cpubase.pas +++ b/compiler/avr/cpubase.pas @@ -160,7 +160,7 @@ unit cpubase; Operands *****************************************************************************} - taddressmode = (AM_UNCHANGED,AM_POSTINCREMENT,AM_PREDRECEMENT); + taddressmode = (AM_UNCHANGED,AM_POSTINCREMENT,AM_PREDECREMENT); {***************************************************************************** Constants diff --git a/compiler/avr/raavr.pas b/compiler/avr/raavr.pas index 16b3d994b2..d0c4cbb4c4 100644 --- a/compiler/avr/raavr.pas +++ b/compiler/avr/raavr.pas @@ -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 diff --git a/compiler/avr/raavrgas.pas b/compiler/avr/raavrgas.pas index 48efcd3759..cfb7b6525b 100644 --- a/compiler/avr/raavrgas.pas +++ b/compiler/avr/raavrgas.pas @@ -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);