mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 10:07:54 +02:00
* sparc64: fix int to bool type conversions for 64 bit ints
git-svn-id: trunk@36762 -
This commit is contained in:
parent
d4e6824862
commit
eaa33f416c
@ -61,7 +61,7 @@ implementation
|
||||
cgbase,cgutils,pass_1,pass_2,
|
||||
ncon,ncal,procinfo,
|
||||
ncgutil,
|
||||
cpubase,aasmcpu,
|
||||
cpuinfo,cpubase,aasmcpu,
|
||||
tgobj,cgobj,
|
||||
hlcgobj;
|
||||
|
||||
@ -298,11 +298,30 @@ implementation
|
||||
cg.a_load_reg_reg(current_asmdata.CurrAsmList,opsize,opsize,left.location.register,hreg2);
|
||||
end;
|
||||
hreg1:=cg.getintregister(current_asmdata.CurrAsmList,opsize);
|
||||
current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg_reg(A_SUBCC,NR_G0,hreg2,NR_G0));
|
||||
if is_pasbool(resultdef) then
|
||||
current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg_reg(A_ADDX,NR_G0,NR_G0,hreg1))
|
||||
{$ifdef cpu64bitalu}
|
||||
{ there are no ADDC/SUBC instructions working on xcc, i.e. the 64 bit flags }
|
||||
if left.location.size in [OS_64,OS_S64] then
|
||||
begin
|
||||
if current_settings.cputype in [cpu_SPARC_V9] then
|
||||
begin
|
||||
current_asmdata.CurrAsmList.Concat(taicpu.op_reg_const_reg(A_MOVRZ,hreg2,0,hreg1));
|
||||
if is_pasbool(resultdef) then
|
||||
current_asmdata.CurrAsmList.Concat(taicpu.op_reg_const_reg(A_MOVRNZ,hreg2,1,hreg1))
|
||||
else
|
||||
current_asmdata.CurrAsmList.Concat(taicpu.op_reg_const_reg(A_MOVRNZ,hreg2,-1,hreg1));
|
||||
end
|
||||
else
|
||||
Internalerror(2017072101);
|
||||
end
|
||||
else
|
||||
current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg_reg(A_SUBX,NR_G0,NR_G0,hreg1));
|
||||
{$endif cpu64bitalu}
|
||||
begin
|
||||
current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg_reg(A_SUBCC,NR_G0,hreg2,NR_G0));
|
||||
if is_pasbool(resultdef) then
|
||||
current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg_reg(A_ADDX,NR_G0,NR_G0,hreg1))
|
||||
else
|
||||
current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg_reg(A_SUBX,NR_G0,NR_G0,hreg1));
|
||||
end;
|
||||
end;
|
||||
LOC_FLAGS :
|
||||
begin
|
||||
@ -330,20 +349,20 @@ implementation
|
||||
internalerror(10062);
|
||||
end;
|
||||
{$ifndef cpu64bitalu}
|
||||
if (location.size in [OS_64,OS_S64]) then
|
||||
begin
|
||||
location.register64.reglo:=hreg1;
|
||||
location.register64.reghi:=cg.getintregister(current_asmdata.CurrAsmList,OS_32);
|
||||
if (is_cbool(resultdef)) then
|
||||
{ reglo is either 0 or -1 -> reghi has to become the same }
|
||||
cg.a_load_reg_reg(current_asmdata.CurrAsmList,OS_32,OS_32,location.register64.reglo,location.register64.reghi)
|
||||
else
|
||||
{ unsigned }
|
||||
cg.a_load_const_reg(current_asmdata.CurrAsmList,OS_32,0,location.register64.reghi);
|
||||
end
|
||||
else
|
||||
if (location.size in [OS_64,OS_S64]) then
|
||||
begin
|
||||
location.register64.reglo:=hreg1;
|
||||
location.register64.reghi:=cg.getintregister(current_asmdata.CurrAsmList,OS_32);
|
||||
if (is_cbool(resultdef)) then
|
||||
{ reglo is either 0 or -1 -> reghi has to become the same }
|
||||
cg.a_load_reg_reg(current_asmdata.CurrAsmList,OS_32,OS_32,location.register64.reglo,location.register64.reghi)
|
||||
else
|
||||
{ unsigned }
|
||||
cg.a_load_const_reg(current_asmdata.CurrAsmList,OS_32,0,location.register64.reghi);
|
||||
end
|
||||
else
|
||||
{$endif not cpu64bitalu}
|
||||
location.register:=hreg1;
|
||||
location.register:=hreg1;
|
||||
end;
|
||||
|
||||
|
||||
|
@ -61,7 +61,7 @@ A_clr,A_clrb,A_clrh,
|
||||
A_cmp,
|
||||
A_dec,A_deccc,
|
||||
A_inc,A_inccc,
|
||||
A_MOV,A_MOVcc,
|
||||
A_MOV,A_MOVcc,A_MOVRZ,A_MOVRLEZ,A_MOVRLZ,A_MOVRNZ,A_MOVRGZ,A_MOVRGEZ,
|
||||
A_NEG,
|
||||
A_not,
|
||||
A_set,
|
||||
|
@ -59,7 +59,7 @@
|
||||
'cmp',
|
||||
'dec','deccc',
|
||||
'inc','inccc',
|
||||
'mov','mov',
|
||||
'mov','mov','movrz','movrlez','movrlz','movrnz','movrgz','movrgez',
|
||||
'neg',
|
||||
'not',
|
||||
'set',
|
||||
|
Loading…
Reference in New Issue
Block a user