Sfoglia il codice sorgente

+ allocate and free flags before and after the shl+rcl/shr+rcr/sar+rcr sequences

git-svn-id: trunk@35786 -
nickysn 8 anni fa
parent
commit
a1ad705646
1 ha cambiato i file con 12 aggiunte e 0 eliminazioni
  1. 12 0
      compiler/i386/cgcpu.pas

+ 12 - 0
compiler/i386/cgcpu.pas

@@ -764,18 +764,24 @@ unit cgcpu;
                     case op of
                       OP_SHR:
                         begin
+                          cg.a_reg_alloc(list,NR_DEFAULTFLAGS);
                           list.concat(taicpu.op_const_reg(A_SHR,S_L,value,reg.reghi));
                           list.concat(taicpu.op_const_reg(A_RCR,S_L,value,reg.reglo));
+                          cg.a_reg_dealloc(list,NR_DEFAULTFLAGS);
                         end;
                       OP_SHL:
                         begin
+                          cg.a_reg_alloc(list,NR_DEFAULTFLAGS);
                           list.concat(taicpu.op_const_reg(A_SHL,S_L,value,reg.reglo));
                           list.concat(taicpu.op_const_reg(A_RCL,S_L,value,reg.reghi));
+                          cg.a_reg_dealloc(list,NR_DEFAULTFLAGS);
                         end;
                       OP_SAR:
                         begin
+                          cg.a_reg_alloc(list,NR_DEFAULTFLAGS);
                           list.concat(taicpu.op_const_reg(A_SAR,S_L,value,reg.reghi));
                           list.concat(taicpu.op_const_reg(A_RCR,S_L,value,reg.reglo));
+                          cg.a_reg_dealloc(list,NR_DEFAULTFLAGS);
                         end;
                     end
                   else if value>31 then
@@ -866,23 +872,29 @@ unit cgcpu;
                     case op of
                       OP_SHR:
                         begin
+                          cg.a_reg_alloc(list,NR_DEFAULTFLAGS);
                           inc(tempref.offset,4);
                           list.concat(taicpu.op_const_ref(A_SHR,S_L,value,tempref));
                           dec(tempref.offset,4);
                           list.concat(taicpu.op_const_ref(A_RCR,S_L,value,tempref));
+                          cg.a_reg_dealloc(list,NR_DEFAULTFLAGS);
                         end;
                       OP_SHL:
                         begin
+                          cg.a_reg_alloc(list,NR_DEFAULTFLAGS);
                           list.concat(taicpu.op_const_ref(A_SHL,S_L,value,tempref));
                           inc(tempref.offset,4);
                           list.concat(taicpu.op_const_ref(A_RCL,S_L,value,tempref));
+                          cg.a_reg_dealloc(list,NR_DEFAULTFLAGS);
                         end;
                       OP_SAR:
                         begin
+                          cg.a_reg_alloc(list,NR_DEFAULTFLAGS);
                           inc(tempref.offset,4);
                           list.concat(taicpu.op_const_ref(A_SAR,S_L,value,tempref));
                           dec(tempref.offset,4);
                           list.concat(taicpu.op_const_ref(A_RCR,S_L,value,tempref));
+                          cg.a_reg_dealloc(list,NR_DEFAULTFLAGS);
                         end;
                     end
                   else