e76e30f39cd97ae71a17c880b6970b9eb28030d3
[fw/sdcc] / src / SDCCopt.c
1 /*-------------------------------------------------------------------------
2   SDCCopt.c - calls all the optimizations routines and does some of the
3               hackier transformations, these include translating iCodes
4               to function calls and replacing local variables with their
5               register equivalents etc. Also contains the driver routine
6               for dead code elimination
7
8              Written By -  Sandeep Dutta . sandeep.dutta@usa.net (1998)
9
10    This program is free software; you can redistribute it and/or modify it
11    under the terms of the GNU General Public License as published by the
12    Free Software Foundation; either version 2, or (at your option) any
13    later version.
14    
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19    
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23    
24    In other words, you are welcome to use, share and improve this program.
25    You are forbidden to forbid anyone else to use, share and improve
26    what you give them.   Help stamp out software-hoarding!  
27 -------------------------------------------------------------------------*/
28
29 #include "common.h"
30
31 /*-----------------------------------------------------------------*/
32 /* global variables */
33 int cseDefNum = 0;
34
35 char flowChanged = 0;
36
37
38 /*-----------------------------------------------------------------*/
39 /* printSymName - prints the symbol names                          */
40 /*-----------------------------------------------------------------*/
41 int 
42 printSymName (void *vsym)
43 {
44   symbol *sym = vsym;
45   fprintf (stdout, " %s ", sym->name);
46   return 0;
47 }
48
49 /*-----------------------------------------------------------------*/
50 /* cnvToFcall - does the actual conversion to function call        */
51 /*-----------------------------------------------------------------*/
52 static void 
53 cnvToFcall (iCode * ic, eBBlock * ebp)
54 {
55   iCode *ip;
56   iCode *newic;
57   operand *left;
58   operand *right;
59   symbol *func = NULL;
60   int lineno = ic->lineno;
61   int bytesPushed=0;
62
63   ip = ic->next;                /* insertion point */
64   /* remove it from the iCode */
65   remiCodeFromeBBlock (ebp, ic);
66
67   left = IC_LEFT (ic);
68   right = IC_RIGHT (ic);
69
70   switch (ic->op)
71     {
72     case '+':
73       func = __fsadd;
74       break;
75     case '-':
76       func = __fssub;
77       break;
78     case '/':
79       func = __fsdiv;
80       break;
81     case '*':
82       func = __fsmul;
83       break;
84     case EQ_OP:
85       func = __fseq;
86       break;
87     case NE_OP:
88       func = __fsneq;
89       break;
90     case '<':
91       func = __fslt;
92       break;
93     case '>':
94       func = __fsgt;
95       break;
96     case LE_OP:
97       func = __fslteq;
98       break;
99     case GE_OP:
100       func = __fsgteq;
101       break;
102     }
103
104   /* if float support routines NOT compiled as reentrant */
105   if (!options.float_rent)
106     {
107
108       /* first one */
109       if (IS_REGPARM (FUNC_ARGS(func->type)->etype))
110         {
111           newic = newiCode (SEND, IC_LEFT (ic), NULL);
112           newic->argreg = SPEC_ARGREG(FUNC_ARGS(func->type)->etype);
113         }
114       else
115         {
116           newic = newiCode ('=', NULL, IC_LEFT (ic));
117           IC_RESULT (newic) = operandFromValue (FUNC_ARGS(func->type));
118         }
119
120       addiCodeToeBBlock (ebp, newic, ip);
121       newic->lineno = lineno;
122
123       /* second one */
124       if (IS_REGPARM (FUNC_ARGS(func->type)->next->etype))
125         {
126           newic = newiCode (SEND, IC_RIGHT (ic), NULL);
127           newic->argreg = SPEC_ARGREG(FUNC_ARGS(func->type)->next->etype);
128         }
129       else
130         {
131           newic = newiCode ('=', NULL, IC_RIGHT (ic));
132           IC_RESULT (newic) = operandFromValue (FUNC_ARGS(func->type)->next);
133         }
134       addiCodeToeBBlock (ebp, newic, ip);
135       newic->lineno = lineno;
136
137     }
138   else
139     {
140
141       /* push right */
142       if (IS_REGPARM (FUNC_ARGS(func->type)->next->etype))
143         {
144           newic = newiCode (SEND, right, NULL);
145           newic->argreg = SPEC_ARGREG(FUNC_ARGS(func->type)->next->etype);
146         }
147       else
148         {
149           newic = newiCode (IPUSH, right, NULL);
150           newic->parmPush = 1;
151           //bytesPushed+=4;
152           bytesPushed += getSize(operandType(right));
153         }
154
155       addiCodeToeBBlock (ebp, newic, ip);
156       newic->lineno = lineno;
157
158       /* insert push left */
159       if (IS_REGPARM (FUNC_ARGS(func->type)->etype))
160         {
161           newic = newiCode (SEND, left, NULL);
162           newic->argreg = SPEC_ARGREG(FUNC_ARGS(func->type)->etype);
163         }
164       else
165         {
166           newic = newiCode (IPUSH, left, NULL);
167           newic->parmPush = 1;
168           //bytesPushed+=4;
169           bytesPushed += getSize(operandType(left));
170         }
171       addiCodeToeBBlock (ebp, newic, ip);
172       newic->lineno = lineno;
173     }
174   /* insert the call */
175   newic = newiCode (CALL, operandFromSymbol (func), NULL);
176   IC_RESULT (newic) = IC_RESULT (ic);
177   newic->lineno = lineno;
178   newic->parmBytes+=bytesPushed;
179   ebp->hasFcall = 1;
180   if (currFunc)
181     FUNC_HASFCALL (currFunc->type) = 1;
182     
183   if(TARGET_IS_PIC16) {
184         /* normally these functions aren't marked external, so we can use their
185          * _extern field to marked as already added to symbol table */
186
187         if(!SPEC_EXTR(func->etype)) {
188             memmap *seg = SPEC_OCLS(OP_SYMBOL(IC_LEFT(newic))->etype);
189                 
190                 SPEC_EXTR(func->etype) = 1;
191                 seg = SPEC_OCLS( func->etype );
192                 addSet(&seg->syms, func);
193         }
194   }
195
196   addiCodeToeBBlock (ebp, newic, ip);
197 }
198
199 /*-----------------------------------------------------------------*/
200 /* cnvToFloatCast - converts casts to floats to function calls     */
201 /*-----------------------------------------------------------------*/
202 static void 
203 cnvToFloatCast (iCode * ic, eBBlock * ebp)
204 {
205   iCode *ip, *newic;
206   symbol *func = NULL;
207   sym_link *type = operandType (IC_RIGHT (ic));
208   int linenno = ic->lineno;
209   int bwd, su;
210   int bytesPushed=0;
211
212   ip = ic->next;
213   /* remove it from the iCode */
214   remiCodeFromeBBlock (ebp, ic);
215   /* depending on the type */
216   for (bwd = 0; bwd < 3; bwd++)
217     {
218       for (su = 0; su < 2; su++)
219         {
220           if (compareType (type, __multypes[bwd][su]) == 1)
221             {
222               func = __conv[0][bwd][su];
223               goto found;
224             }
225         }
226     }
227   assert (0);
228 found:
229
230   /* if float support routines NOT compiled as reentrant */
231   if (!options.float_rent)
232     {
233       /* first one */
234         if (IS_REGPARM (FUNC_ARGS(func->type)->etype)) 
235             {
236                 newic = newiCode (SEND, IC_RIGHT (ic), NULL);
237                 newic->argreg = SPEC_ARGREG(FUNC_ARGS(func->type)->etype);
238             }
239       else
240         {
241           newic = newiCode ('=', NULL, IC_RIGHT (ic));
242           IC_RESULT (newic) = operandFromValue (FUNC_ARGS(func->type));
243         }
244       addiCodeToeBBlock (ebp, newic, ip);
245       newic->lineno = linenno;
246
247     }
248   else
249     {
250       /* push the left */
251         if (IS_REGPARM (FUNC_ARGS(func->type)->etype)) {
252             newic = newiCode (SEND, IC_RIGHT (ic), NULL);
253             newic->argreg = SPEC_ARGREG(FUNC_ARGS(func->type)->etype);
254         }
255       else
256         {
257           newic = newiCode (IPUSH, IC_RIGHT (ic), NULL);
258           newic->parmPush = 1;
259           bytesPushed += getSize(operandType(IC_RIGHT(ic)));
260         }
261       addiCodeToeBBlock (ebp, newic, ip);
262       newic->lineno = linenno;
263
264     }
265
266   /* make the call */
267   newic = newiCode (CALL, operandFromSymbol (func), NULL);
268   IC_RESULT (newic) = IC_RESULT (ic);
269   newic->parmBytes+=bytesPushed;
270   ebp->hasFcall = 1;
271   if (currFunc)
272     FUNC_HASFCALL (currFunc->type) = 1;
273
274   if(TARGET_IS_PIC16) {
275         /* normally these functions aren't marked external, so we can use their
276          * _extern field to marked as already added to symbol table */
277
278         if(!SPEC_EXTR(func->etype)) {
279             memmap *seg = SPEC_OCLS(OP_SYMBOL(IC_LEFT(newic))->etype);
280                 
281                 SPEC_EXTR(func->etype) = 1;
282                 seg = SPEC_OCLS( func->etype );
283                 addSet(&seg->syms, func);
284         }
285   }
286
287   addiCodeToeBBlock (ebp, newic, ip);
288   newic->lineno = linenno;
289 }
290
291 /*-----------------------------------------------------------------*/
292 /* cnvFromFloatCast - converts casts From floats to function calls */
293 /*-----------------------------------------------------------------*/
294 static void 
295 cnvFromFloatCast (iCode * ic, eBBlock * ebp)
296 {
297   iCode *ip, *newic;
298   symbol *func = NULL;
299   sym_link *type = operandType (IC_LEFT (ic));
300   int lineno = ic->lineno;
301   int bwd, su;
302   int bytesPushed=0;
303
304   ip = ic->next;
305   /* remove it from the iCode */
306   remiCodeFromeBBlock (ebp, ic);
307
308   /* depending on the type */
309   for (bwd = 0; bwd < 3; bwd++)
310     {
311       for (su = 0; su < 2; su++)
312         {
313           if (compareType (type, __multypes[bwd][su]) == 1)
314             {
315               func = __conv[1][bwd][su];
316               goto found;
317             }
318         }
319     }
320   assert (0);
321 found:
322
323   /* if float support routines NOT compiled as reentrant */
324   if (!options.float_rent)
325     {
326       /* first one */
327         if (IS_REGPARM (FUNC_ARGS(func->type)->etype)) {
328             newic = newiCode (SEND, IC_RIGHT (ic), NULL);
329             newic->argreg = SPEC_ARGREG(FUNC_ARGS(func->type)->etype);
330         }
331       else
332         {
333           newic = newiCode ('=', NULL, IC_RIGHT (ic));
334           IC_RESULT (newic) = operandFromValue (FUNC_ARGS(func->type));
335         }
336       addiCodeToeBBlock (ebp, newic, ip);
337       newic->lineno = lineno;
338
339     }
340   else
341     {
342
343       /* push the left */
344         if (IS_REGPARM (FUNC_ARGS(func->type)->etype)) {
345             newic = newiCode (SEND, IC_RIGHT (ic), NULL);
346             newic->argreg = SPEC_ARGREG(FUNC_ARGS(func->type)->etype);
347         }
348       else
349         {
350           newic = newiCode (IPUSH, IC_RIGHT (ic), NULL);
351           newic->parmPush = 1;
352           bytesPushed += getSize(operandType(IC_RIGHT(ic)));
353         }
354       addiCodeToeBBlock (ebp, newic, ip);
355       newic->lineno = lineno;
356
357     }
358
359   /* make the call */
360   newic = newiCode (CALL, operandFromSymbol (func), NULL);
361   IC_RESULT (newic) = IC_RESULT (ic);
362   newic->parmBytes+=bytesPushed;
363   ebp->hasFcall = 1;
364   if (currFunc)
365     FUNC_HASFCALL (currFunc->type) = 1;
366
367   if(TARGET_IS_PIC16) {
368         /* normally these functions aren't marked external, so we can use their
369          * _extern field to marked as already added to symbol table */
370
371         if(!SPEC_EXTR(func->etype)) {
372             memmap *seg = SPEC_OCLS(OP_SYMBOL(IC_LEFT(newic))->etype);
373                 
374                 SPEC_EXTR(func->etype) = 1;
375                 seg = SPEC_OCLS( func->etype );
376                 addSet(&seg->syms, func);
377         }
378   }
379
380   addiCodeToeBBlock (ebp, newic, ip);
381   newic->lineno = lineno;
382 }
383
384 extern operand *geniCodeRValue (operand *, bool);
385
386 /*-----------------------------------------------------------------*/
387 /* convilong - converts int or long mults or divs to fcalls        */
388 /*-----------------------------------------------------------------*/
389 static void 
390 convilong (iCode * ic, eBBlock * ebp, sym_link * type, int op)
391 {
392   symbol *func = NULL;
393   iCode *ip = ic->next;
394   iCode *newic;
395   int lineno = ic->lineno;
396   int bwd;
397   int su;
398   int bytesPushed=0;
399
400   // Easy special case which avoids function call: modulo by a literal power 
401   // of two can be replaced by a bitwise AND.
402   if (op == '%' && isOperandLiteral(IC_RIGHT(ic)))
403   {
404       unsigned litVal = (unsigned)(operandLitValue(IC_RIGHT(ic)));
405       
406       // See if literal value is a power of 2.
407       while (litVal && !(litVal & 1))
408       {
409           litVal >>= 1;
410       }
411       if (litVal)
412       {
413           // discard first high bit set.
414           litVal >>= 1;
415       }
416           
417       if (!litVal)
418       {
419           ic->op = BITWISEAND;
420           IC_RIGHT(ic) = operandFromLit(operandLitValue(IC_RIGHT(ic)) - 1);
421           return;
422       }
423   }
424     
425   remiCodeFromeBBlock (ebp, ic);    
426     
427     
428   /* depending on the type */
429   for (bwd = 0; bwd < 3; bwd++)
430     {
431       for (su = 0; su < 2; su++)
432         {
433           if (compareType (type, __multypes[bwd][su]) == 1)
434             {
435               if (op == '*')
436                 func = __muldiv[0][bwd][su];
437               else if (op == '/')
438                 func = __muldiv[1][bwd][su];
439               else if (op == '%')
440                 func = __muldiv[2][bwd][su];
441               else if (op == RRC)
442                 func = __rlrr[1][bwd][su];
443               else if (op == RLC)
444                 func = __rlrr[0][bwd][su];
445               else if (op == RIGHT_OP)
446                 func = __rlrr[1][bwd][su];
447               else if (op == LEFT_OP)
448                 func = __rlrr[0][bwd][su];
449               else
450                 assert (0);
451               goto found;
452             }
453         }
454     }
455   assert (0);
456 found:
457   /* if int & long support routines NOT compiled as reentrant */
458   if (!options.intlong_rent)
459     {
460       /* first one */
461         if (IS_REGPARM (FUNC_ARGS(func->type)->etype)) {
462             newic = newiCode (SEND, IC_LEFT (ic), NULL);
463             newic->argreg = SPEC_ARGREG(FUNC_ARGS(func->type)->etype);
464         }
465       else
466         {
467           newic = newiCode ('=', NULL, IC_LEFT (ic));
468           IC_RESULT (newic) = operandFromValue (FUNC_ARGS(func->type));
469         }
470       addiCodeToeBBlock (ebp, newic, ip);
471       newic->lineno = lineno;
472
473       /* second one */
474       if (IS_REGPARM (FUNC_ARGS(func->type)->next->etype)) {
475           newic = newiCode (SEND, IC_RIGHT (ic), NULL);
476           newic->argreg = SPEC_ARGREG(FUNC_ARGS(func->type)->next->etype);
477       }
478       else
479         {
480           newic = newiCode ('=', NULL, IC_RIGHT (ic));
481           IC_RESULT (newic) = operandFromValue (FUNC_ARGS(func->type)->next);
482         }
483       addiCodeToeBBlock (ebp, newic, ip);
484       newic->lineno = lineno;
485
486     }
487   else
488     {
489       /* compiled as reentrant then push */
490       /* push right */
491       if (IS_REGPARM (FUNC_ARGS(func->type)->next->etype))
492         {
493           newic = newiCode (SEND, IC_RIGHT (ic), NULL);
494           newic->argreg = SPEC_ARGREG(FUNC_ARGS(func->type)->next->etype);
495         }
496       else
497         {
498           newic = newiCode (IPUSH, IC_RIGHT (ic), NULL);
499           newic->parmPush = 1;
500
501           bytesPushed += getSize(operandType(IC_RIGHT(ic)));
502         }
503       addiCodeToeBBlock (ebp, newic, ip);
504       newic->lineno = lineno;
505
506       /* insert push left */
507       if (IS_REGPARM (FUNC_ARGS(func->type)->etype))
508         {
509           newic = newiCode (SEND, IC_LEFT (ic), NULL);
510           newic->argreg = SPEC_ARGREG(FUNC_ARGS(func->type)->etype);
511         }
512       else
513         {
514           newic = newiCode (IPUSH, IC_LEFT (ic), NULL);
515           newic->parmPush = 1;
516
517           bytesPushed += getSize(operandType(IC_LEFT(ic)));
518         }
519       addiCodeToeBBlock (ebp, newic, ip);
520       newic->lineno = lineno;
521
522     }
523
524   /* for the result */
525   newic = newiCode (CALL, operandFromSymbol (func), NULL);
526   IC_RESULT (newic) = IC_RESULT (ic);
527   newic->lineno = lineno;
528   newic->parmBytes+=bytesPushed; // to clear the stack after the call
529   ebp->hasFcall = 1;
530   if (currFunc)
531     FUNC_HASFCALL (currFunc->type) = 1;
532
533   if(TARGET_IS_PIC16) {
534         /* normally these functions aren't marked external, so we can use their
535          * _extern field to marked as already added to symbol table */
536
537         if(!SPEC_EXTR(func->etype)) {
538             memmap *seg = SPEC_OCLS(OP_SYMBOL(IC_LEFT(newic))->etype);
539                 
540                 SPEC_EXTR(func->etype) = 1;
541                 seg = SPEC_OCLS( func->etype );
542                 addSet(&seg->syms, func);
543         }
544   }
545
546   addiCodeToeBBlock (ebp, newic, ip);
547 }
548
549 /*-----------------------------------------------------------------*/
550 /* convertToFcall - converts some operations to fcalls             */
551 /*-----------------------------------------------------------------*/
552 static void 
553 convertToFcall (eBBlock ** ebbs, int count)
554 {
555   int i;
556
557   /* for all blocks do */
558   for (i = 0; i < count; i++)
559     {
560       iCode *ic;
561
562       /* for all instructions in the block do */
563       for (ic = ebbs[i]->sch; ic; ic = ic->next)
564         {
565
566           /* floating point operations are
567              converted to function calls */
568           if ((IS_CONDITIONAL (ic) ||
569                IS_ARITHMETIC_OP (ic)) &&
570               (IS_FLOAT (operandType (IC_RIGHT (ic)))))
571             {
572
573               cnvToFcall (ic, ebbs[i]);
574             }
575
576           /* casting is a little different */
577           if (ic->op == CAST)
578             {
579               if (IS_FLOAT (operandType (IC_RIGHT (ic))))
580                 cnvFromFloatCast (ic, ebbs[i]);
581               else if (IS_FLOAT (operandType (IC_LEFT (ic))))
582                 cnvToFloatCast (ic, ebbs[i]);
583             }
584
585           /* if long / int mult or divide or mod */
586           if (ic->op == '*' || ic->op == '/' || ic->op == '%')
587             {
588               sym_link *leftType = operandType (IC_LEFT (ic));
589
590               if (IS_INTEGRAL (leftType) && getSize (leftType) > port->support.muldiv)
591                 {
592                   sym_link *rightType = operandType (IC_RIGHT (ic));
593
594                   if (port->hasNativeMulFor != NULL &&
595                       port->hasNativeMulFor (ic, leftType, rightType))
596                     {
597                       /* Leave as native */
598                     }
599                   else
600                     {
601                       convilong (ic, ebbs[i], leftType, ic->op);
602                     }
603                 }
604             }
605           
606           if (ic->op == RRC || ic->op == RLC || ic->op == LEFT_OP || ic->op == RIGHT_OP)
607             {
608               sym_link *type = operandType (IC_LEFT (ic));
609
610               if (IS_INTEGRAL (type) && getSize (type) > port->support.shift && port->support.shift >= 0)
611                 {
612                   convilong (ic, ebbs[i], type, ic->op);
613                 }
614             }
615         }
616     }
617 }
618
619 /*-----------------------------------------------------------------*/
620 /* isLocalWithoutDef - return 1 if sym might be used without a     */
621 /*                     defining iCode                              */
622 /*-----------------------------------------------------------------*/
623 static int
624 isLocalWithoutDef (symbol * sym)
625 {
626   if (!IS_AUTO (sym))
627     return 0;
628   
629   if (IS_VOLATILE (sym->type))
630     return 0;
631   
632   if (sym->_isparm)
633     return 0;
634   
635   if (IS_AGGREGATE (sym->type))
636     return 0;
637   
638   if (sym->addrtaken)
639     return 0;
640   
641   return !sym->defs;
642 }
643
644 /*-----------------------------------------------------------------*/
645 /* replaceRegEqv - replace all local variables with their reqv     */
646 /*-----------------------------------------------------------------*/
647 static void 
648 replaceRegEqv (eBBlock ** ebbs, int count)
649 {
650   int i;
651
652   /* Update the symbols' def bitvector so we know if there is   */
653   /* a defining iCode or not. Only replace a local variable     */
654   /* with its register equivalent if there is a defining iCode; */
655   /* otherwise, the port's register allocater may choke.        */
656   cseAllBlocks (ebbs, count, TRUE);
657
658   for (i = 0; i < count; i++)
659     {
660
661       iCode *ic;
662
663       for (ic = ebbs[i]->sch; ic; ic = ic->next)
664         {
665
666           if (SKIP_IC2 (ic))
667             continue;
668
669           if (ic->op == IFX)
670             {
671               if (IC_COND (ic) &&
672                   IS_TRUE_SYMOP (IC_COND (ic)) &&
673                   isLocalWithoutDef (OP_SYMBOL (IC_COND (ic))))
674                 {
675                   werrorfl (ic->filename, ic->lineno,
676                           W_LOCAL_NOINIT,
677                           OP_SYMBOL (IC_COND (ic))->name);
678                   OP_REQV (IC_COND (ic)) = NULL;
679                   OP_SYMBOL (IC_COND (ic))->allocreq = 1;
680                 }
681               
682               if (IS_TRUE_SYMOP (IC_COND (ic)) &&
683                   OP_REQV (IC_COND (ic)))
684                 IC_COND (ic) = opFromOpWithDU (OP_REQV (IC_COND (ic)),
685                                              OP_SYMBOL (IC_COND (ic))->defs,
686                                             OP_SYMBOL (IC_COND (ic))->uses);
687
688               continue;
689             }
690
691           
692           if (ic->op == JUMPTABLE)
693             {
694               if (IC_JTCOND (ic) &&
695                   IS_TRUE_SYMOP (IC_JTCOND (ic)) &&
696                   isLocalWithoutDef (OP_SYMBOL (IC_JTCOND (ic))))
697                 {
698                   werrorfl (ic->filename, ic->lineno,
699                           W_LOCAL_NOINIT,
700                           OP_SYMBOL (IC_JTCOND (ic))->name);
701                   OP_REQV (IC_JTCOND (ic)) = NULL;
702                   OP_SYMBOL (IC_JTCOND (ic))->allocreq = 1;
703                 }
704               
705               if (IS_TRUE_SYMOP (IC_JTCOND (ic)) &&
706                   OP_REQV (IC_JTCOND (ic)))
707                 IC_JTCOND (ic) = opFromOpWithDU (OP_REQV (IC_JTCOND (ic)),
708                                            OP_SYMBOL (IC_JTCOND (ic))->defs,
709                                           OP_SYMBOL (IC_JTCOND (ic))->uses);
710               continue;
711             }
712
713           if (ic->op == RECEIVE)
714             {
715               if (OP_SYMBOL (IC_RESULT (ic))->addrtaken)
716                 OP_SYMBOL (IC_RESULT (ic))->isspilt = 1;
717             }
718
719           /* general case */
720           if (IC_RESULT (ic) &&
721               IS_TRUE_SYMOP (IC_RESULT (ic)) &&
722               OP_REQV (IC_RESULT (ic)))
723             {
724               if (POINTER_SET (ic))
725                 {
726                   IC_RESULT (ic) = opFromOpWithDU (OP_REQV (IC_RESULT (ic)),
727                                            OP_SYMBOL (IC_RESULT (ic))->defs,
728                                           OP_SYMBOL (IC_RESULT (ic))->uses);
729                   IC_RESULT (ic)->isaddr = 1;
730                 }
731               else
732                 IC_RESULT (ic) = opFromOpWithDU (OP_REQV (IC_RESULT (ic)),
733                                            OP_SYMBOL (IC_RESULT (ic))->defs,
734                                           OP_SYMBOL (IC_RESULT (ic))->uses);
735             }
736
737           if (IC_RIGHT (ic) &&
738               IS_TRUE_SYMOP (IC_RIGHT (ic)) &&
739               isLocalWithoutDef (OP_SYMBOL (IC_RIGHT (ic))))
740             {
741               werrorfl (ic->filename, ic->lineno,
742                         W_LOCAL_NOINIT,
743                         OP_SYMBOL (IC_RIGHT (ic))->name);
744               OP_REQV (IC_RIGHT (ic)) = NULL;
745               OP_SYMBOL (IC_RIGHT (ic))->allocreq = 1;
746             }
747           
748           if (IC_RIGHT (ic) &&
749               IS_TRUE_SYMOP (IC_RIGHT (ic)) &&
750               OP_REQV (IC_RIGHT (ic)))
751             {
752               IC_RIGHT (ic) = opFromOpWithDU (OP_REQV (IC_RIGHT (ic)),
753                                             OP_SYMBOL (IC_RIGHT (ic))->defs,
754                                            OP_SYMBOL (IC_RIGHT (ic))->uses);
755               IC_RIGHT (ic)->isaddr = 0;
756             }
757
758           if (IC_LEFT (ic) &&
759               IS_TRUE_SYMOP (IC_LEFT (ic)) &&
760               isLocalWithoutDef (OP_SYMBOL (IC_LEFT (ic))))
761             {
762               werrorfl (ic->filename, ic->lineno,
763                         W_LOCAL_NOINIT,
764                         OP_SYMBOL (IC_LEFT (ic))->name);
765               OP_REQV (IC_LEFT (ic)) = NULL;
766               OP_SYMBOL (IC_LEFT (ic))->allocreq = 1;
767             }
768             
769           if (IC_LEFT (ic) &&
770               IS_TRUE_SYMOP (IC_LEFT (ic)) &&
771               OP_REQV (IC_LEFT (ic)))
772             {
773               IC_LEFT (ic) = opFromOpWithDU (OP_REQV (IC_LEFT (ic)),
774                                              OP_SYMBOL (IC_LEFT (ic))->defs,
775                                              OP_SYMBOL (IC_LEFT (ic))->uses);
776               IC_LEFT (ic)->isaddr = 0;
777             }
778         }
779     }
780 }
781
782 /*-----------------------------------------------------------------*/
783 /* findReqv - search for a register equivalent                     */
784 /*-----------------------------------------------------------------*/
785 operand *
786 findReqv (symbol * prereqv, eBBlock ** ebbs, int count)
787 {
788   int i;
789   iCode * ic;
790   
791   /* for all blocks do */
792   for (i=0; i<count; i++)
793     {
794       /* for all instructions in the block do */
795       for (ic = ebbs[i]->sch; ic; ic = ic->next)
796         {
797           if (ic->op == IFX)
798             {
799               if (IS_ITEMP (IC_COND (ic))
800                   && OP_SYMBOL (IC_COND (ic))->prereqv == prereqv)
801                 return IC_COND (ic);
802             }
803           else if (ic->op == JUMPTABLE)
804             {
805               if (IS_ITEMP (IC_JTCOND (ic))
806                   && OP_SYMBOL (IC_JTCOND (ic))->prereqv == prereqv)
807                 return IC_JTCOND (ic);
808             }
809           else
810             {
811               if (IS_ITEMP (IC_LEFT (ic))
812                   && OP_SYMBOL (IC_LEFT (ic))->prereqv == prereqv)
813                 return IC_LEFT (ic);
814               if (IS_ITEMP (IC_RIGHT (ic))
815                   && OP_SYMBOL (IC_RIGHT (ic))->prereqv == prereqv)
816                 return IC_RIGHT (ic);
817               if (IS_ITEMP (IC_RESULT (ic))
818                   && OP_SYMBOL (IC_RESULT (ic))->prereqv == prereqv)
819                 return IC_RESULT (ic);
820             }
821         }
822     }
823   
824   return NULL;
825 }
826
827 /*-----------------------------------------------------------------*/
828 /* killDeadCode - eliminates dead assignments                      */
829 /*-----------------------------------------------------------------*/
830 int 
831 killDeadCode (eBBlock ** ebbs, int count)
832 {
833   int change = 1;
834   int gchange = 0;
835   int i = 0;
836
837
838   /* basic algorithm :-                                          */
839   /* first the exclusion rules :-                                */
840   /*  1. if result is a global or volatile then skip             */
841   /*  2. if assignment and result is a temp & isaddr  then skip  */
842   /*     since this means array & pointer access, will be taken  */
843   /*     care of by alias analysis.                              */
844   /*  3. if the result is used in the remainder of the block skip */
845   /*  4. if this definition does not reach the end of the block  */
846   /*     i.e. the result is not present in the outExprs then KILL */
847   /*  5. if it reaches the end of block & is used by some success */
848   /*     or then skip                                            */
849   /*     else            KILL                                    */
850   /* this whole process is carried on iteratively till no change */
851   while (1)
852     {
853
854       change = 0;
855       /* for all blocks do */
856       for (i = 0; i < count; i++)
857         {
858           iCode *ic;
859
860           /* for all instructions in the block do */
861           for (ic = ebbs[i]->sch; ic; ic = ic->next)
862             {
863               int kill, j;
864               kill = 0;
865
866               if (SKIP_IC (ic) ||
867                   ic->op == IFX ||
868                   ic->op == RETURN ||
869                   ic->op == DUMMY_READ_VOLATILE ||
870                   ic->op == CRITICAL ||
871                   ic->op == ENDCRITICAL)
872                 continue;
873
874               /* Since both IFX & JUMPTABLE (in SKIP_IC) have been tested for */
875               /* it is now safe to assume IC_LEFT, IC_RIGHT, & IC_RESULT are  */
876               /* valid. */
877
878               /* if the result is volatile then continue */
879               if (IC_RESULT (ic) && isOperandVolatile (IC_RESULT (ic), FALSE))
880                 continue;
881
882               /* if the result is a temp & isaddr then skip */
883               if (IC_RESULT (ic) && POINTER_SET (ic))
884                 continue;
885               
886               if (POINTER_GET (ic) && IS_VOLATILE (operandType (IC_LEFT (ic))->next))
887                 continue;
888
889               /* if the result is used in the remainder of the */
890               /* block then skip */
891               if (usedInRemaining (IC_RESULT (ic), ic->next))
892                 continue;
893
894               /* does this definition reach the end of the block 
895                  or the usage is zero then we can kill */
896               if (!bitVectBitValue (ebbs[i]->outDefs, ic->key))
897                 kill = 1;       /* if not we can kill it */
898               else
899                 {
900                   /* if this is a global variable or function parameter */
901                   /* we cannot kill anyway             */
902                   if (isOperandGlobal (IC_RESULT (ic)) ||
903                       (OP_SYMBOL (IC_RESULT (ic))->_isparm &&
904                        !OP_SYMBOL (IC_RESULT (ic))->ismyparm))
905                     continue;
906
907                   /* if we are sure there are no usages */
908                   if (bitVectIsZero (OP_USES (IC_RESULT (ic))))
909                     {
910                       kill = 1;
911                       goto kill;
912                     }
913
914                   /* reset visited flag */
915                   for (j = 0; j < count; ebbs[j++]->visited = 0);
916
917                   /* find out if this definition is alive */
918                   if (applyToSet (ebbs[i]->succList,
919                                   isDefAlive,
920                                   ic))
921                     continue;
922
923                   kill = 1;
924                 }
925
926             kill:
927               /* kill this one if required */
928               if (kill)
929                 {
930                   bool volLeft = IS_SYMOP (IC_LEFT (ic))
931                                  && isOperandVolatile (IC_LEFT (ic), FALSE);
932                   bool volRight = IS_SYMOP (IC_RIGHT (ic)) 
933                                   && isOperandVolatile (IC_RIGHT (ic), FALSE);
934
935                   /* a dead address-of operation should die, even if volatile */
936                   if (ic->op == ADDRESS_OF)
937                     volLeft = FALSE;
938
939                   if (ic->next && ic->seqPoint == ic->next->seqPoint
940                       && (ic->next->op == '+' || ic->next->op == '-'))
941                     {
942                       if (isOperandEqual (IC_LEFT(ic), IC_LEFT(ic->next))
943                           || isOperandEqual (IC_LEFT(ic), IC_RIGHT(ic->next)))
944                         volLeft = FALSE;
945                       if (isOperandEqual (IC_RIGHT(ic), IC_LEFT(ic->next))
946                           || isOperandEqual (IC_RIGHT(ic), IC_RIGHT(ic->next)))
947                         volRight = FALSE;
948                     }
949                   
950                   change = 1;
951                   gchange++;
952                   
953                   /* now delete from defUseSet */
954                   deleteItemIf (&ebbs[i]->outExprs, ifDiCodeIsX, ic);
955                   bitVectUnSetBit (ebbs[i]->outDefs, ic->key);
956
957                   /* and defset of the block */
958                   bitVectUnSetBit (ebbs[i]->defSet, ic->key);
959
960                   /* If this is the last of a register equivalent, */
961                   /* look for a successor register equivalent. */
962                   bitVectUnSetBit (OP_DEFS (IC_RESULT (ic)), ic->key);
963                   if (IS_ITEMP (IC_RESULT (ic))
964                       && OP_SYMBOL (IC_RESULT (ic))->isreqv
965                       && bitVectIsZero (OP_DEFS (IC_RESULT (ic))))
966                     {
967                       symbol * resultsym = OP_SYMBOL (IC_RESULT (ic));
968                       symbol * prereqv = resultsym->prereqv;
969                       
970                       if (OP_SYMBOL (prereqv->reqv) == resultsym)
971                         {
972                           operand * newreqv;
973
974                           IC_RESULT (ic) = NULL;
975                           newreqv = findReqv (prereqv, ebbs, count);
976                           if (newreqv)
977                             {
978                               prereqv->reqv = newreqv;
979                             }
980                         }
981                     }
982
983                   /* delete the result */
984                   IC_RESULT (ic) = NULL;
985                   
986                   if (volLeft || volRight)
987                     {
988                       /* something is volatile, so keep the iCode */
989                       /* and change the operator instead */
990                       ic->op = DUMMY_READ_VOLATILE;
991
992                       /* keep only the volatile operands */      
993                       if (!volLeft)
994                         IC_LEFT (ic) = NULL;
995                       if (!volRight)
996                         IC_RIGHT (ic) = NULL;
997                     }
998                   else
999                     {
1000                       /* nothing is volatile, eliminate the iCode */
1001                       remiCodeFromeBBlock (ebbs[i], ic);
1002
1003                       /* for the left & right remove the usage */
1004                       if (IS_SYMOP (IC_LEFT (ic)))
1005                         bitVectUnSetBit (OP_USES (IC_LEFT (ic)), ic->key);
1006
1007                       if (IS_SYMOP (IC_RIGHT (ic)))
1008                         bitVectUnSetBit (OP_USES (IC_RIGHT (ic)), ic->key);
1009                     }
1010                 }
1011
1012             }                   /* end of all instructions */
1013
1014           if (!ebbs[i]->sch && !ebbs[i]->noPath)
1015             disconBBlock (ebbs[i], ebbs, count);
1016
1017         }                       /* end of for all blocks */
1018
1019       if (!change)
1020         break;
1021     }                           /* end of while(1) */
1022
1023   return gchange;
1024 }
1025
1026 /*-----------------------------------------------------------------*/
1027 /* printCyclomatic - prints the cyclomatic information             */
1028 /*-----------------------------------------------------------------*/
1029 static void 
1030 printCyclomatic (eBBlock ** ebbs, int count)
1031 {
1032   int nEdges = elementsInSet (graphEdges);
1033   int i, nNodes = 0;
1034
1035   for (i = 0; i < count; i++)
1036     nNodes += (!ebbs[i]->noPath);
1037
1038   /* print the information */
1039   werror (I_CYCLOMATIC, currFunc->name, nEdges, nNodes, nEdges - nNodes + 2);
1040 }
1041
1042 /*-----------------------------------------------------------------*/
1043 /* discardDeadParamReceives - remove any RECEIVE opcodes which     */
1044 /* refer to dead variables.                                        */
1045 /*-----------------------------------------------------------------*/
1046 static void 
1047 discardDeadParamReceives (eBBlock ** ebbs, int count)
1048 {
1049   int i;
1050   iCode *ic;
1051   iCode dummyIcode;
1052
1053   for (i = 0; i < count; i++)
1054     {
1055       for (ic = ebbs[i]->sch; ic; ic = ic->next)
1056         {
1057           if (ic->op == RECEIVE)
1058             {
1059               if (IC_RESULT (ic) && OP_SYMBOL (IC_RESULT (ic))
1060                   && !OP_SYMBOL (IC_RESULT (ic))->used)
1061                 {
1062 #if 0
1063                   fprintf (stderr, "discarding dead receive for %s\n",
1064                            OP_SYMBOL (IC_RESULT (ic))->name);
1065 #endif
1066                   dummyIcode.next = ic->next;
1067                   remiCodeFromeBBlock (ebbs[i], ic);
1068                   ic = &dummyIcode;
1069                 }
1070             }
1071         }
1072     }
1073 }
1074
1075 /*-----------------------------------------------------------------*/
1076 /* optimizeCastCast - remove unneeded intermediate casts.          */
1077 /* Integer promotion may cast (un)signed char to int and then      */
1078 /* recast the int to (un)signed long. If the signedness of the     */
1079 /* char and long are the same, the cast can be safely performed in */
1080 /* a single step.                                                  */
1081 /*-----------------------------------------------------------------*/
1082 static void 
1083 optimizeCastCast (eBBlock ** ebbs, int count)
1084 {
1085   int i;
1086   iCode *ic;
1087   iCode *uic;
1088   sym_link * type1;
1089   sym_link * type2;
1090   sym_link * type3;
1091   symbol * sym;
1092
1093   for (i = 0; i < count; i++)
1094     {
1095       for (ic = ebbs[i]->sch; ic; ic = ic->next)
1096         {
1097           
1098           if (ic->op == CAST && IC_RESULT (ic) && IS_ITEMP (IC_RESULT (ic)))
1099             {
1100               type1 = operandType (IC_RIGHT (ic));
1101               type2 = operandType (IC_RESULT (ic));
1102
1103               /* Look only for a cast from an integer type to an */
1104               /* integer type that has no loss of bits */
1105               if (!IS_INTEGRAL (type1) || !IS_INTEGRAL (type2))
1106                 continue;
1107               if (getSize (type2) < getSize (type1))
1108                 continue;
1109               
1110               /* There must be only one use of this first result */
1111               if (bitVectnBitsOn (OP_USES (IC_RESULT (ic))) != 1)
1112                 continue;
1113               
1114               /* This use must be a second cast */
1115               uic = hTabItemWithKey (iCodehTab,
1116                         bitVectFirstBit (OP_USES (IC_RESULT (ic))));
1117               if (!uic || uic->op != CAST)
1118                 continue;
1119   
1120               /* It must be a cast to another integer type that */
1121               /* has no loss of bits */
1122               type3 = operandType (IC_RESULT (uic));
1123               if (!IS_INTEGRAL (type3))
1124                  continue;
1125               if (getSize (type3) < getSize (type2))
1126                  continue;
1127               
1128               /* The signedness between the first and last types */
1129               /* must match */
1130               if (SPEC_USIGN (type3) != SPEC_USIGN (type1))
1131                  continue;
1132
1133               /* Change the first cast to a simple assignment and */
1134               /* let the second cast do all the work */
1135               ic->op = '=';
1136               IC_LEFT (ic) = NULL;
1137               sym = OP_SYMBOL (IC_RESULT (ic));
1138               sym->type = copyLinkChain (type1);
1139               sym->etype = getSpec (sym->type);
1140             }
1141         }
1142     }
1143 }
1144
1145 /*-----------------------------------------------------------------*/
1146 /* eBBlockFromiCode - creates extended basic blocks from iCode     */
1147 /*                    will return an array of eBBlock pointers     */
1148 /*-----------------------------------------------------------------*/
1149 eBBlock **
1150 eBBlockFromiCode (iCode * ic)
1151 {
1152   eBBlock **ebbs = NULL;
1153   int count = 0;
1154   int saveCount = 0;
1155   int change = 1;
1156   int lchange = 0;
1157   int kchange = 0;
1158   hTab *loops;
1159
1160   /* if nothing passed then return nothing */
1161   if (!ic)
1162     return NULL;
1163
1164   count = 0;
1165   eBBNum = 0;
1166
1167   /* optimize the chain for labels & gotos 
1168      this will eliminate redundant labels and
1169      will change jump to jumps by jumps */
1170   ic = iCodeLabelOptimize (ic);
1171
1172   /* break it down into basic blocks */
1173   ebbs = iCodeBreakDown (ic, &count);
1174   saveCount = count;
1175
1176   /* hash the iCode keys so that we can quickly index */
1177   /* them in the rest of the optimization steps */
1178   setToNull ((void *) &iCodehTab);
1179   iCodehTab = newHashTable (iCodeKey);
1180   hashiCodeKeys (ebbs, count);
1181   
1182   /* compute the control flow */
1183   computeControlFlow (ebbs, count, 0);
1184
1185   /* dumpraw if asked for */
1186   if (options.dump_raw)
1187     dumpEbbsToFileExt (DUMP_RAW0, ebbs, count);
1188
1189   /* replace the local variables with their
1190      register equivalents : the liveRange computation
1191      along with the register allocation will determine
1192      if it finally stays in the registers */
1193   replaceRegEqv (ebbs, count);
1194
1195   /* create loop regions */
1196   loops = createLoopRegions (ebbs, count);
1197
1198   /* dumpraw if asked for */
1199   if (options.dump_raw)
1200     dumpEbbsToFileExt (DUMP_RAW1, ebbs, count);
1201
1202   optimizeCastCast (ebbs, saveCount);
1203     
1204   /* do common subexpression elimination for each block */
1205   change = cseAllBlocks (ebbs, saveCount, FALSE);
1206
1207   /* dumpraw if asked for */
1208   if (options.dump_raw)
1209     dumpEbbsToFileExt (DUMP_CSE, ebbs, count);
1210
1211   /* compute the data flow */
1212   computeDataFlow (ebbs, saveCount);
1213
1214   /* dumpraw if asked for */
1215   if (options.dump_raw)
1216     dumpEbbsToFileExt (DUMP_DFLOW, ebbs, count);
1217
1218   /* global common subexpression elimination  */
1219   if (optimize.global_cse)
1220     {
1221       change += cseAllBlocks (ebbs, saveCount, FALSE);
1222       if (options.dump_gcse)
1223         dumpEbbsToFileExt (DUMP_GCSE, ebbs, saveCount);
1224     }
1225   else
1226     {
1227       // compute the dataflow only
1228       assert(cseAllBlocks (ebbs, saveCount, TRUE)==0);
1229     }
1230   /* kill dead code */
1231   kchange = killDeadCode (ebbs, saveCount);
1232
1233   if (options.dump_kill)
1234     dumpEbbsToFileExt (DUMP_DEADCODE, ebbs, count);
1235
1236   /* do loop optimizations */
1237   change += (lchange = loopOptimizations (loops, ebbs, count));
1238   if (options.dump_loop)
1239     dumpEbbsToFileExt (DUMP_LOOP, ebbs, count);
1240
1241   /* recompute the data flow and apply global cse again 
1242      if loops optimizations or dead code caused a change:
1243      loops will brings out of the loop which then may be
1244      available for use in the later blocks: dead code
1245      elimination could potentially disconnect some blocks
1246      conditional flow may be efected so we need to apply
1247      subexpression once more */
1248   if (lchange || kchange)
1249     {
1250       computeDataFlow (ebbs, saveCount);
1251       change += cseAllBlocks (ebbs, saveCount, FALSE);
1252       if (options.dump_loop)
1253         dumpEbbsToFileExt (DUMP_LOOPG, ebbs, count);
1254
1255       /* if loop optimizations caused a change then do
1256          dead code elimination once more : this will
1257          get rid of the extra assignments to the induction
1258          variables created during loop optimizations */
1259       killDeadCode (ebbs, saveCount);
1260
1261       if (options.dump_loop)
1262         dumpEbbsToFileExt (DUMP_LOOPD, ebbs, count);
1263
1264     }
1265
1266   /* sort it back by block number */
1267   qsort (ebbs, saveCount, sizeof (eBBlock *), bbNumCompare);
1268
1269   if (!options.lessPedantic) {
1270     // this is a good place to check missing return values
1271     if (currFunc) {
1272       // the user is on his own with naked functions...
1273       if (!IS_VOID(currFunc->etype)
1274        && !FUNC_ISNAKED(currFunc->type)) {
1275         eBBlock *bp;
1276         // make sure all predecessors of the last block end in a return
1277         for (bp=setFirstItem(ebbs[saveCount-1]->predList); 
1278              bp; 
1279              bp=setNextItem(ebbs[saveCount-1]->predList)) {
1280           if (bp->ech->op != RETURN) {
1281             werrorfl (bp->ech->filename, bp->ech->lineno,
1282                       W_VOID_FUNC, currFunc->name);
1283           }
1284         }
1285       }
1286     }
1287   }
1288
1289   /* if cyclomatic info requested then print it */
1290   if (options.cyclomatic)
1291     printCyclomatic (ebbs, saveCount);
1292
1293   /* convert operations with support routines
1294      written in C to function calls : Iam doing
1295      this at this point since I want all the
1296      operations to be as they are for optimzations */
1297   convertToFcall (ebbs, count);
1298
1299   /* compute the live ranges */
1300   computeLiveRanges (ebbs, count);
1301
1302   if (options.dump_range)
1303     dumpEbbsToFileExt (DUMP_RANGE, ebbs, count);
1304
1305   /* Now that we have the live ranges, discard parameter
1306    * receives for unused parameters.
1307    */
1308   discardDeadParamReceives (ebbs, count);
1309
1310   /* allocate registers & generate code */
1311   port->assignRegisters (ebbs, count);
1312
1313   /* throw away blocks */
1314   setToNull ((void *) &graphEdges);
1315   ebbs = NULL;
1316   
1317   return NULL;
1318 }
1319
1320
1321 /* (add-hook 'c-mode-hook (lambda () (setq c-basic-offset 4))) */