]> git.sur5r.net Git - cc65/blobdiff - src/cc65/codeseg.c
More optimizations
[cc65] / src / cc65 / codeseg.c
index e06c508adcebfc8808ddeeb04be9086bc8c6496a..325eee20f67558d14d682df3d9a156fce59d73ab 100644 (file)
 
 
 
+static void CS_MoveLabelsToEntry (CodeSeg* S, CodeEntry* E)
+/* Move all labels from the label pool to the given entry and remove them
+ * from the pool.
+ */
+{
+    /* Transfer the labels if we have any */
+    unsigned I;
+    unsigned LabelCount = CollCount (&S->Labels);
+    for (I = 0; I < LabelCount; ++I) {
+
+       /* Get the label */
+       CodeLabel* L = CollAt (&S->Labels, I);
+
+       /* Attach it to the entry */
+       CE_AttachLabel (E, L);
+    }
+
+    /* Delete the transfered labels */
+    CollDeleteAll (&S->Labels);
+}
+
+
+
 static void CS_MoveLabelsToPool (CodeSeg* S, CodeEntry* E)
 /* Move the labels of the code entry E to the label pool of the code segment */
 {
     unsigned LabelCount = CE_GetLabelCount (E);
     while (LabelCount--) {
-       CodeLabel* L = CE_GetLabel (E, LabelCount);
+       CodeLabel* L = CE_GetLabel (E, LabelCount);
        L->Owner = 0;
        CollAppend (&S->Labels, L);
     }
@@ -406,19 +429,7 @@ void CS_AddEntry (CodeSeg* S, struct CodeEntry* E)
 /* Add an entry to the given code segment */
 {
     /* Transfer the labels if we have any */
-    unsigned I;
-    unsigned LabelCount = CollCount (&S->Labels);
-    for (I = 0; I < LabelCount; ++I) {
-
-       /* Get the label */
-       CodeLabel* L = CollAt (&S->Labels, I);
-
-       /* Attach it to the entry */
-       CE_AttachLabel (E, L);
-    }
-
-    /* Delete the transfered labels */
-    CollDeleteAll (&S->Labels);
+    CS_MoveLabelsToEntry (S, E);
 
     /* Add the entry to the list of code entries in this segment */
     CollAppend (&S->Entries, E);
@@ -551,6 +562,46 @@ void CS_DelEntries (CodeSeg* S, unsigned Start, unsigned Count)
 
 
 
+void CS_MoveEntries (CodeSeg* S, unsigned Start, unsigned Count, unsigned NewPos)
+/* Move a range of entries from one position to another. Start is the index
+ * of the first entry to move, Count is the number of entries and NewPos is
+ * the index of the target entry. The entry with the index Start will later
+ * have the index NewPos. All entries with indices NewPos and above are
+ * moved to higher indices. If the code block is moved to the end of the
+ * current code, and if pending labels exist, these labels will get attached
+ * to the first instruction of the moved block (the first one after the
+ * current code end)
+ */
+{
+    /* If NewPos is at the end of the code segment, move any labels from the
+     * label pool to the first instruction of the moved range.
+     */
+    if (NewPos == CS_GetEntryCount (S)) {
+       CS_MoveLabelsToEntry (S, CS_GetEntry (S, Start));
+    }
+
+    /* Move the code block to the destination */
+    CollMoveMultiple (&S->Entries, Start, Count, 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.
@@ -965,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;
+
+           }
+       }
+    }
+}
+
+