From d46536817c3fc18face876d920cab0eed4b3cfc0 Mon Sep 17 00:00:00 2001 From: pierre Date: Tue, 11 Sep 2018 08:00:54 +0000 Subject: [PATCH] Disable overflow for UDIVX ans SDIVX 64-bit instructions git-svn-id: trunk@39731 - --- compiler/sparcgen/ncpumat.pas | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/compiler/sparcgen/ncpumat.pas b/compiler/sparcgen/ncpumat.pas index e33a6e5c60..46d4dd682c 100644 --- a/compiler/sparcgen/ncpumat.pas +++ b/compiler/sparcgen/ncpumat.pas @@ -94,6 +94,7 @@ implementation resultreg : tregister; overflowlabel : tasmlabel; ai : taicpu; + no_overflow : boolean; begin secondpass(left); secondpass(right); @@ -140,6 +141,14 @@ implementation op := divops[true, is_signed(right.resultdef), cs_check_overflow in current_settings.localswitches]; + if op=A_NOP then + { current_asmdata.CurrAsmList.concat(tai_comment.create(strpnew('Wrong code generated here'))); } + begin + no_overflow:=true; + op:=divops[true,is_signed(right.resultdef),false]; + end + else + no_overflow:=false; if (divider<>NR_NO) then current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg_reg(op,numerator,divider,resultreg)) else @@ -147,12 +156,16 @@ implementation if (nodetype = modn) then begin - current_asmdata.getjumplabel(overflowlabel); - ai:=taicpu.op_cond_sym(A_Bxx,C_VS,overflowlabel); - ai.delayslot_annulled:=true; - current_asmdata.CurrAsmList.concat(ai); + if not no_overflow then + begin + current_asmdata.getjumplabel(overflowlabel); + ai:=taicpu.op_cond_sym(A_Bxx,C_VS,overflowlabel); + ai.delayslot_annulled:=true; + current_asmdata.CurrAsmList.concat(ai); + end; current_asmdata.CurrAsmList.concat(taicpu.op_reg(A_NOT,resultreg)); - cg.a_label(current_asmdata.CurrAsmList,overflowlabel); + if not no_overflow then + cg.a_label(current_asmdata.CurrAsmList,overflowlabel); if (divider<>NR_NO) then current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg_reg(A_MULX,resultreg,divider,resultreg)) else