]> git.sur5r.net Git - cc65/blobdiff - src/cc65/codeseg.c
More optimizations
[cc65] / src / cc65 / codeseg.c
index a82073aa4d5047fa1394a3a4e7583fcf8f22a206..325eee20f67558d14d682df3d9a156fce59d73ab 100644 (file)
@@ -63,7 +63,7 @@
 
 
 static void CS_MoveLabelsToEntry (CodeSeg* S, CodeEntry* E)
-/* Move all labels from the label pool to the given entry and remove them 
+/* Move all labels from the label pool to the given entry and remove them
  * from the pool.
  */
 {
@@ -545,7 +545,7 @@ void CS_DelEntry (CodeSeg* S, unsigned Index)
     FreeCodeEntry (E);
 }
 
-                  
+
 
 void CS_DelEntries (CodeSeg* S, unsigned Start, unsigned Count)
 /* Delete a range of code entries. This includes removing references to labels,
@@ -586,6 +586,22 @@ void CS_MoveEntries (CodeSeg* S, unsigned Start, unsigned Count, unsigned NewPos
 
 
 
+struct CodeEntry* CS_GetPrevEntry (CodeSeg* S, unsigned Index)
+/* Get the code entry preceeding the one with the index Index. If there is no
+ * preceeding code entry, return NULL.
+ */
+{
+    if (Index == 0) {
+       /* This is the first entry */
+       return 0;
+    } else {
+       /* Previous entry available */
+               return CollAtUnchecked (&S->Entries, Index-1);
+    }
+}
+
+
+
 struct CodeEntry* CS_GetNextEntry (CodeSeg* S, unsigned Index)
 /* Get the code entry following the one with the index Index. If there is no
  * following code entry, return NULL.
@@ -1000,4 +1016,230 @@ void CS_Output (const CodeSeg* S, FILE* F)
 
 
 
+void CS_FreeRegInfo (CodeSeg* S)
+/* Free register infos for all instructions */
+{
+    unsigned I;
+    for (I = 0; I < CS_GetEntryCount (S); ++I) {
+        CE_FreeRegInfo (CS_GetEntry(S, I));
+    }
+}
+
+
+
+void CS_GenRegInfo (CodeSeg* S)
+/* Generate register infos for all instructions */
+{
+    unsigned I;
+    RegContents Regs;
+    RegContents* CurrentRegs;
+    int WasJump;
+
+    /* Be sure to delete all register infos */
+    CS_FreeRegInfo (S);
+
+    /* On entry, the register contents are unknown */
+    RC_Invalidate (&Regs);
+    CurrentRegs = &Regs;
+
+    /* First pass. Walk over all insns an note just the changes from one
+     * insn to the next one.
+     */
+    WasJump = 0;
+    for (I = 0; I < CS_GetEntryCount (S); ++I) {
+
+       CodeEntry* P;
+
+       /* Get the next instruction */
+       CodeEntry* E = CollAtUnchecked (&S->Entries, I);
+
+       /* If the instruction has a label, we need some special handling */
+       unsigned LabelCount = CE_GetLabelCount (E);
+       if (LabelCount > 0) {
+
+           /* Loop over all entry points that jump here. If these entry
+            * points already have register info, check if all values are
+            * known and identical. If all values are identical, and the
+            * preceeding instruction was not an unconditional branch, check
+            * if the register value on exit of the preceeding instruction
+            * is also identical. If all these values are identical, the
+            * value of a register is known, otherwise it is unknown.
+            */
+           CodeLabel* Label = CE_GetLabel (E, 0);
+           unsigned Entry;
+           if (WasJump) {
+               /* Preceeding insn was an unconditional branch */
+               CodeEntry* J = CL_GetRef(Label, 0);
+               if (J->RI) {
+                   Regs = J->RI->Out2;
+               } else {
+                   RC_Invalidate (&Regs);
+               }
+               Entry = 1;
+           } else {
+               Regs = *CurrentRegs;
+               Entry = 0;
+           }
+
+           while (Entry < CL_GetRefCount (Label)) {
+               /* Get this entry */
+               CodeEntry* J = CL_GetRef (Label, Entry);
+               if (J->RI == 0) {
+                   /* No register info for this entry, bail out */
+                   RC_Invalidate (&Regs);
+                   break;
+               }
+               if (J->RI->Out2.RegA != Regs.RegA) {
+                   Regs.RegA = -1;
+               }
+               if (J->RI->Out2.RegX != Regs.RegX) {
+                   Regs.RegX = -1;
+               }
+               if (J->RI->Out2.RegY != Regs.RegY) {
+                   Regs.RegY = -1;
+               }
+               ++Entry;
+           }
+
+           /* Use this register info */
+           CurrentRegs = &Regs;
+
+       }
+
+       /* Generate register info for this instruction */
+        CE_GenRegInfo (E, CurrentRegs);
+
+       /* Remember for the next insn if this insn was an uncondition branch */
+       WasJump = (E->Info & OF_UBRA) != 0;
+
+       /* Output registers for this insn are input for the next */
+       CurrentRegs = &E->RI->Out;
+
+       /* If this insn is a branch on zero flag, we may have more info on
+        * register contents for one of both flow directions, but only if
+        * there is a previous instruction.
+        */
+       if ((E->Info & OF_ZBRA) != 0 && (P = CS_GetPrevEntry (S, I)) != 0) {
+
+           /* Get the branch condition */
+           bc_t BC = GetBranchCond (E->OPC);
+
+           /* Check the previous instruction */
+           switch (P->OPC) {
+
+               case OP65_ADC:
+               case OP65_AND:
+               case OP65_DEA:
+               case OP65_EOR:
+               case OP65_INA:
+               case OP65_LDA:
+               case OP65_ORA:
+               case OP65_PLA:
+               case OP65_SBC:
+                   /* A is zero in one execution flow direction */
+                   if (BC == BC_EQ) {
+                               E->RI->Out2.RegA = 0;
+                   } else {
+                       E->RI->Out.RegA = 0;
+                   }
+                   break;
+
+               case OP65_CMP:
+                   /* If this is an immidiate compare, the A register has
+                    * the value of the compare later.
+                    */
+                   if (CE_KnownImm (P)) {
+                       if (BC == BC_EQ) {
+                           E->RI->Out2.RegA = (unsigned char)P->Num;
+                       } else {
+                           E->RI->Out.RegA = (unsigned char)P->Num;
+                       }
+                   }
+                   break;
+
+               case OP65_CPX:
+                   /* If this is an immidiate compare, the X register has
+                    * the value of the compare later.
+                    */
+                   if (CE_KnownImm (P)) {
+                       if (BC == BC_EQ) {
+                           E->RI->Out2.RegX = (unsigned char)P->Num;
+                       } else {
+                           E->RI->Out.RegX = (unsigned char)P->Num;
+                       }
+                   }
+                   break;
+
+               case OP65_CPY:
+                   /* If this is an immidiate compare, the Y register has
+                    * the value of the compare later.
+                    */
+                   if (CE_KnownImm (P)) {
+                       if (BC == BC_EQ) {
+                           E->RI->Out2.RegY = (unsigned char)P->Num;
+                       } else {
+                           E->RI->Out.RegY = (unsigned char)P->Num;
+                       }
+                   }
+                   break;
+
+               case OP65_DEX:
+               case OP65_INX:
+               case OP65_LDX:
+               case OP65_PLX:
+                   /* X is zero in one execution flow direction */
+                   if (BC == BC_EQ) {
+                               E->RI->Out2.RegX = 0;
+                   } else {
+                       E->RI->Out.RegX = 0;
+                   }
+                   break;
+
+               case OP65_DEY:
+               case OP65_INY:
+               case OP65_LDY:
+               case OP65_PLY:
+                   /* X is zero in one execution flow direction */
+                   if (BC == BC_EQ) {
+                               E->RI->Out2.RegY = 0;
+                   } else {
+                       E->RI->Out.RegY = 0;
+                   }
+                   break;
+
+               case OP65_TAX:
+               case OP65_TXA:
+                   /* If the branch is a beq, both A and X are zero at the
+                    * branch target, otherwise they are zero at the next
+                    * insn.
+                    */
+                   if (BC == BC_EQ) {
+                       E->RI->Out2.RegA = E->RI->Out2.RegX = 0;
+                   } else {
+                       E->RI->Out.RegA = E->RI->Out.RegX = 0;
+                   }
+                   break;
+
+               case OP65_TAY:
+               case OP65_TYA:
+                   /* If the branch is a beq, both A and Y are zero at the
+                    * branch target, otherwise they are zero at the next
+                    * insn.
+                    */
+                   if (BC == BC_EQ) {
+                       E->RI->Out2.RegA = E->RI->Out2.RegY = 0;
+                   } else {
+                       E->RI->Out.RegA = E->RI->Out.RegY = 0;
+                   }
+                   break;
+
+               default:
+                   break;
+
+           }
+       }
+    }
+}
+
+