mirror of
https://github.com/cc65/cc65.git
synced 2025-02-04 13:32:54 +00:00
Added another optimization step.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4391 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
7687489a08
commit
c437afd62b
@ -1375,7 +1375,8 @@ static OptFunc DOptStoreLoad = { OptStoreLoad, "OptStoreLoad", 0, 0,
|
||||
static OptFunc DOptSub1 = { OptSub1, "OptSub1", 100, 0, 0, 0, 0, 0 };
|
||||
static OptFunc DOptSub2 = { OptSub2, "OptSub2", 100, 0, 0, 0, 0, 0 };
|
||||
static OptFunc DOptSub3 = { OptSub3, "OptSub3", 100, 0, 0, 0, 0, 0 };
|
||||
static OptFunc DOptTest1 = { OptTest1, "OptTest1", 100, 0, 0, 0, 0, 0 };
|
||||
static OptFunc DOptTest1 = { OptTest1, "OptTest1", 65, 0, 0, 0, 0, 0 };
|
||||
static OptFunc DOptTest2 = { OptTest2, "OptTest2", 50, 0, 0, 0, 0, 0 };
|
||||
static OptFunc DOptTransfers1 = { OptTransfers1, "OptTransfers1", 0, 0, 0, 0, 0, 0 };
|
||||
static OptFunc DOptTransfers2 = { OptTransfers2, "OptTransfers2", 60, 0, 0, 0, 0, 0 };
|
||||
static OptFunc DOptTransfers3 = { OptTransfers3, "OptTransfers3", 65, 0, 0, 0, 0, 0 };
|
||||
@ -1467,6 +1468,7 @@ static OptFunc* OptFuncs[] = {
|
||||
&DOptSub2,
|
||||
&DOptSub3,
|
||||
&DOptTest1,
|
||||
&DOptTest2,
|
||||
&DOptTransfers1,
|
||||
&DOptTransfers2,
|
||||
&DOptTransfers3,
|
||||
@ -1865,10 +1867,11 @@ static unsigned RunOptGroup5 (CodeSeg* S)
|
||||
{
|
||||
unsigned Changes = 0;
|
||||
|
||||
/* Repeat some of the steps here */
|
||||
Changes += RunOptFunc (S, &DOptPush1, 1);
|
||||
Changes += RunOptFunc (S, &DOptPush2, 1);
|
||||
/* Repeat some of the other optimizations now */
|
||||
Changes += RunOptFunc (S, &DOptUnusedLoads, 1);
|
||||
Changes += RunOptFunc (S, &DOptTest2, 1);
|
||||
Changes += RunOptFunc (S, &DOptTransfers2, 1);
|
||||
|
||||
/* Return the number of changes */
|
||||
|
@ -6,10 +6,10 @@
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* (C) 2001 Ullrich von Bassewitz */
|
||||
/* Wacholderweg 14 */
|
||||
/* D-70597 Stuttgart */
|
||||
/* EMail: uz@cc65.org */
|
||||
/* (C) 2001-2009, Ullrich von Bassewitz */
|
||||
/* Roemerstrasse 52 */
|
||||
/* D-70794 Filderstadt */
|
||||
/* EMail: uz@cc65.org */
|
||||
/* */
|
||||
/* */
|
||||
/* This software is provided 'as-is', without any expressed or implied */
|
||||
@ -94,15 +94,15 @@ unsigned OptTest1 (CodeSeg* S)
|
||||
/* Check if X is zero */
|
||||
if (L[0]->RI->In.RegX == 0) {
|
||||
|
||||
/* Insert the compare */
|
||||
CodeEntry* N = NewCodeEntry (OP65_CMP, AM65_IMM, "$00", 0, L[0]->LI);
|
||||
CS_InsertEntry (S, N, I+2);
|
||||
/* Insert the compare */
|
||||
CodeEntry* N = NewCodeEntry (OP65_CMP, AM65_IMM, "$00", 0, L[0]->LI);
|
||||
CS_InsertEntry (S, N, I+2);
|
||||
|
||||
/* Remove the two other insns */
|
||||
CS_DelEntry (S, I+1);
|
||||
CS_DelEntry (S, I);
|
||||
/* Remove the two other insns */
|
||||
CS_DelEntry (S, I+1);
|
||||
CS_DelEntry (S, I);
|
||||
|
||||
/* We had changes */
|
||||
/* We had changes */
|
||||
++Changes;
|
||||
|
||||
/* Check if A is zero */
|
||||
@ -135,3 +135,48 @@ unsigned OptTest1 (CodeSeg* S)
|
||||
|
||||
|
||||
|
||||
unsigned OptTest2 (CodeSeg* S)
|
||||
/* Search for an inc/dec operation followed by a load and a conditional
|
||||
* branch based on the flags from the load. Remove the load if the insn
|
||||
* isn't used later.
|
||||
*/
|
||||
{
|
||||
unsigned Changes = 0;
|
||||
|
||||
/* Walk over the entries */
|
||||
unsigned I = 0;
|
||||
while (I < CS_GetEntryCount (S)) {
|
||||
|
||||
CodeEntry* L[3];
|
||||
|
||||
/* Get next entry */
|
||||
L[0] = CS_GetEntry (S, I);
|
||||
|
||||
/* Check if it's the sequence we're searching for */
|
||||
if ((L[0]->OPC == OP65_INC || L[0]->OPC == OP65_DEC) &&
|
||||
CS_GetEntries (S, L+1, I+1, 2) &&
|
||||
!CE_HasLabel (L[1]) &&
|
||||
(L[1]->Info & OF_LOAD) != 0 &&
|
||||
(L[2]->Info & OF_FBRA) != 0 &&
|
||||
L[1]->AM == L[0]->AM &&
|
||||
strcmp (L[0]->Arg, L[1]->Arg) == 0 &&
|
||||
(GetRegInfo (S, I+2, L[1]->Chg) & L[1]->Chg) == 0) {
|
||||
|
||||
printf ("Deleting\n");
|
||||
|
||||
/* Remove the load */
|
||||
CS_DelEntry (S, I+1);
|
||||
++Changes;
|
||||
}
|
||||
|
||||
/* Next entry */
|
||||
++I;
|
||||
|
||||
}
|
||||
|
||||
/* Return the number of changes made */
|
||||
return Changes;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -6,10 +6,10 @@
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* (C) 2001 Ullrich von Bassewitz */
|
||||
/* Wacholderweg 14 */
|
||||
/* D-70597 Stuttgart */
|
||||
/* EMail: uz@cc65.org */
|
||||
/* (C) 2001-2009, Ullrich von Bassewitz */
|
||||
/* Roemerstrasse 52 */
|
||||
/* D-70794 Filderstadt */
|
||||
/* EMail: uz@cc65.org */
|
||||
/* */
|
||||
/* */
|
||||
/* This software is provided 'as-is', without any expressed or implied */
|
||||
@ -70,6 +70,12 @@ unsigned OptTest1 (CodeSeg* S);
|
||||
*
|
||||
*/
|
||||
|
||||
unsigned OptTest2 (CodeSeg* S);
|
||||
/* Search for an inc/dec operation followed by a load and a conditional
|
||||
* branch based on the flags from the load. Remove the load if the insn
|
||||
* isn't used later.
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* End of copttest.h */
|
||||
|
Loading…
x
Reference in New Issue
Block a user