mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-07 21:50:14 +02:00
nested ifdefs converted to series of elseif + some other ifdefs cleaned up
git-svn-id: branches/i8086@23740 -
This commit is contained in:
parent
ded6b87acc
commit
981f0a5c6c
@ -1813,21 +1813,22 @@ unit cgx86;
|
||||
procedure Tcgx86.g_concatcopy(list:TAsmList;const source,dest:Treference;len:tcgint);
|
||||
|
||||
const
|
||||
{$ifdef cpu64bitalu}
|
||||
{$if defined(cpu64bitalu)}
|
||||
REGCX=NR_RCX;
|
||||
REGSI=NR_RSI;
|
||||
REGDI=NR_RDI;
|
||||
{$else cpu64bitalu}
|
||||
{$ifdef cpu32bitalu}
|
||||
copy_len_sizes = [1, 2, 4, 8];
|
||||
{$elseif defined(cpu32bitalu)}
|
||||
REGCX=NR_ECX;
|
||||
REGSI=NR_ESI;
|
||||
REGDI=NR_EDI;
|
||||
{$else cpu32bitalu}
|
||||
copy_len_sizes = [1, 2, 4];
|
||||
{$elseif defined(cpu16bitalu)}
|
||||
REGCX=NR_CX;
|
||||
REGSI=NR_SI;
|
||||
REGDI=NR_DI;
|
||||
{$endif cpu32bitalu}
|
||||
{$endif cpu64bitalu}
|
||||
copy_len_sizes = [1, 2];
|
||||
{$endif}
|
||||
|
||||
type copymode=(copy_move,copy_mmx,copy_string);
|
||||
|
||||
@ -1851,7 +1852,7 @@ unit cgx86;
|
||||
cm:=copy_string;
|
||||
if (cs_opt_size in current_settings.optimizerswitches) and
|
||||
not((len<=16) and (cm=copy_mmx)) and
|
||||
not(len in [1,2{$ifndef i8086},4{$endif i8086}{$ifdef x86_64},8{$endif x86_64}]) then
|
||||
not(len in copy_len_sizes) then
|
||||
cm:=copy_string;
|
||||
if (source.segment<>NR_NO) or
|
||||
(dest.segment<>NR_NO) then
|
||||
@ -1875,13 +1876,13 @@ unit cgx86;
|
||||
copysize:=2;
|
||||
cgsize:=OS_16;
|
||||
end
|
||||
{$ifndef cpu16bitalu}
|
||||
{$if defined(cpu32bitalu) or defined(cpu64bitalu)}
|
||||
else if len<8 then
|
||||
begin
|
||||
copysize:=4;
|
||||
cgsize:=OS_32;
|
||||
end
|
||||
{$endif}
|
||||
{$endif cpu32bitalu or cpu64bitalu}
|
||||
{$ifdef cpu64bitalu}
|
||||
else if len<16 then
|
||||
begin
|
||||
@ -1967,12 +1968,9 @@ unit cgx86;
|
||||
end;
|
||||
|
||||
getcpuregister(list,REGCX);
|
||||
{$ifdef i8086}
|
||||
{$if defined(i8086) or defined(i386)}
|
||||
list.concat(Taicpu.op_none(A_CLD,S_NO));
|
||||
{$endif i8086}
|
||||
{$ifdef i386}
|
||||
list.concat(Taicpu.op_none(A_CLD,S_NO));
|
||||
{$endif i386}
|
||||
{$endif i8086 or i386}
|
||||
if (cs_opt_size in current_settings.optimizerswitches) and
|
||||
(len>sizeof(aint)+(sizeof(aint) div 2)) then
|
||||
begin
|
||||
@ -1991,15 +1989,13 @@ unit cgx86;
|
||||
end;
|
||||
if helpsize>0 then
|
||||
begin
|
||||
{$ifdef cpu64bitalu}
|
||||
{$if defined(cpu64bitalu)}
|
||||
list.concat(Taicpu.op_none(A_MOVSQ,S_NO))
|
||||
{$else}
|
||||
{$ifdef cpu32bitalu}
|
||||
{$elseif defined(cpu32bitalu)}
|
||||
list.concat(Taicpu.op_none(A_MOVSD,S_NO));
|
||||
{$else}
|
||||
{$elseif defined(cpu16bitalu)}
|
||||
list.concat(Taicpu.op_none(A_MOVSW,S_NO));
|
||||
{$endif}
|
||||
{$endif cpu64bitalu}
|
||||
{$endif}
|
||||
end;
|
||||
if len>=4 then
|
||||
begin
|
||||
|
@ -145,21 +145,19 @@ uses
|
||||
{$endif x86_64}
|
||||
|
||||
{ The subregister that specifies the entire register and an address }
|
||||
{$ifdef x86_64}
|
||||
{$if defined(x86_64)}
|
||||
{ Hammer }
|
||||
R_SUBWHOLE = R_SUBQ;
|
||||
R_SUBADDR = R_SUBQ;
|
||||
{$else x86_64}
|
||||
{$ifdef i386}
|
||||
{$elseif defined(i386)}
|
||||
{ i386 }
|
||||
R_SUBWHOLE = R_SUBD;
|
||||
R_SUBADDR = R_SUBD;
|
||||
{$else i386}
|
||||
{$elseif defined(i8086)}
|
||||
{ i8086 }
|
||||
R_SUBWHOLE = R_SUBW;
|
||||
R_SUBADDR = R_SUBW;
|
||||
{$endif i386}
|
||||
{$endif x86_64}
|
||||
{$endif}
|
||||
|
||||
{ Available Registers }
|
||||
{$ifdef x86_64}
|
||||
|
Loading…
Reference in New Issue
Block a user