fixed bug # 470722
[fw/sdcc] / src / SDCCcse.c
1 /*-------------------------------------------------------------------------
2   SDCCcse.c - source file for Common Subexpressions and other utility
3
4              Written By -  Sandeep Dutta . sandeep.dutta@usa.net (1998)
5
6    This program is free software; you can redistribute it and/or modify it
7    under the terms of the GNU General Public License as published by the
8    Free Software Foundation; either version 2, or (at your option) any
9    later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20    In other words, you are welcome to use, share and improve this program.
21    You are forbidden to forbid anyone else to use, share and improve
22    what you give them.   Help stamp out software-hoarding!
23 -------------------------------------------------------------------------*/
24
25 #include "common.h"
26 #include "newalloc.h"
27
28 /*-----------------------------------------------------------------*/
29 /* newCseDef - new cseDef                                          */
30 /*-----------------------------------------------------------------*/
31 cseDef *
32 newCseDef (operand * sym, iCode * ic)
33 {
34   cseDef *cdp;
35
36   assert (sym);
37   cdp = Safe_alloc (sizeof (cseDef));
38
39   cdp->sym = sym;
40   cdp->diCode = ic;
41   cdp->key = sym->key;
42
43   return cdp;
44 }
45
46
47
48 /*-----------------------------------------------------------------*/
49 /* int isCseDefEqual - two definitions are equal                   */
50 /*-----------------------------------------------------------------*/
51 int 
52 isCseDefEqual (void *vsrc, void *vdest)
53 {
54   cseDef *src = vsrc;
55   cseDef *dest = vdest;
56
57   if (src == dest)
58     return 1;
59
60   return (src->key == dest->key &&
61           src->diCode == dest->diCode);
62
63 }
64
65 /*-----------------------------------------------------------------*/
66 /* pcseDef - in the cseDef                                         */
67 /*-----------------------------------------------------------------*/
68 int 
69 pcseDef (void *item, va_list ap)
70 {
71   cseDef *cdp = item;
72   iCodeTable *icTab;
73
74   (void) ap;
75
76   if (!cdp->sym)
77     fprintf (stdout, "**null op**");
78   printOperand (cdp->sym, stdout);
79   icTab = getTableEntry (cdp->diCode->op);
80   icTab->iCodePrint (stdout, cdp->diCode, icTab->printName);
81   return 1;
82 }
83
84 /*-----------------------------------------------------------------*/
85 /* replaceAllSymBySym - replaces all operands by operand in an     */
86 /*                      instruction chain                          */
87 /*-----------------------------------------------------------------*/
88 void 
89 replaceAllSymBySym (iCode * ic, operand * from, operand * to, bitVect ** ndpset)
90 {
91   iCode *lic;
92
93   for (lic = ic; lic; lic = lic->next)
94     {
95       int siaddr;
96
97       /* do the special cases first */
98       if (lic->op == IFX)
99         {
100           if (IS_SYMOP (to) &&
101               IC_COND (lic)->key == from->key)
102             {
103
104               bitVectUnSetBit (OP_USES (from), lic->key);
105               OP_USES (to) = bitVectSetBit (OP_USES (to), lic->key);
106               siaddr = IC_COND (lic)->isaddr;
107               IC_COND (lic) = operandFromOperand (to);
108               IC_COND (lic)->isaddr = siaddr;
109
110             }
111           continue;
112         }
113
114       if (lic->op == JUMPTABLE)
115         {
116           if (IS_SYMOP (to) &&
117               IC_JTCOND (lic)->key == from->key)
118             {
119
120               bitVectUnSetBit (OP_USES (from), lic->key);
121               OP_USES (to) = bitVectSetBit (OP_USES (to), lic->key);
122               siaddr = IC_COND (lic)->isaddr;
123               IC_JTCOND (lic) = operandFromOperand (to);
124               IC_JTCOND (lic)->isaddr = siaddr;
125
126             }
127           continue;
128         }
129
130       if (IC_RESULT (lic) && IC_RESULT (lic)->key == from->key)
131         {
132           /* maintain du chains */
133           if (POINTER_SET (lic))
134             {
135               bitVectUnSetBit (OP_USES (from), lic->key);
136               OP_USES (to) = bitVectSetBit (OP_USES (to), lic->key);
137
138               /* also check if the "from" was in the non-dominating
139                  pointer sets and replace it with "to" in the bitVector */
140               if (bitVectBitValue (*ndpset, from->key))
141                 {
142                   bitVectUnSetBit (*ndpset, from->key);
143                   bitVectSetBit (*ndpset, to->key);
144                 }
145
146             }
147           else
148             {
149               bitVectUnSetBit (OP_DEFS (from), lic->key);
150               OP_DEFS (to) = bitVectSetBit (OP_DEFS (to), lic->key);
151             }
152           siaddr = IC_RESULT (lic)->isaddr;
153           IC_RESULT (lic) = operandFromOperand (to);
154           IC_RESULT (lic)->isaddr = siaddr;
155         }
156
157       if (IS_SYMOP (to) &&
158           IC_RIGHT (lic) && IC_RIGHT (lic)->key == from->key)
159         {
160           bitVectUnSetBit (OP_USES (from), lic->key);
161           OP_USES (to) = bitVectSetBit (OP_USES (to), lic->key);
162           siaddr = IC_RIGHT (lic)->isaddr;
163           IC_RIGHT (lic) = operandFromOperand (to);
164           IC_RIGHT (lic)->isaddr = siaddr;
165         }
166
167       if (IS_SYMOP (to) &&
168           IC_LEFT (lic) && IC_LEFT (lic)->key == from->key)
169         {
170           bitVectUnSetBit (OP_USES (from), lic->key);
171           OP_USES (to) = bitVectSetBit (OP_USES (to), lic->key);
172           siaddr = IC_LEFT (lic)->isaddr;
173           IC_LEFT (lic) = operandFromOperand (to);
174           IC_LEFT (lic)->isaddr = siaddr;
175         }
176     }
177 }
178
179 /*-----------------------------------------------------------------*/
180 /* iCodeKeyIs - if the icode keys match then return 1              */
181 /*-----------------------------------------------------------------*/
182 DEFSETFUNC (iCodeKeyIs)
183 {
184   cseDef *cdp = item;
185   V_ARG (int, key);
186
187   if (cdp->diCode->key == key)
188     return 1;
189   else
190     return 0;
191 }
192
193 /*-----------------------------------------------------------------*/
194 /* removeFromInExprs - removes an icode from inexpressions         */
195 /*-----------------------------------------------------------------*/
196 DEFSETFUNC (removeFromInExprs)
197 {
198   eBBlock *ebp = item;
199   V_ARG (iCode *, ic);
200   V_ARG (operand *, from);
201   V_ARG (operand *, to);
202   V_ARG (eBBlock *, cbp);
203
204   if (ebp->visited)
205     return 0;
206
207   ebp->visited = 1;
208   deleteItemIf (&ebp->inExprs, iCodeKeyIs, ic->key);
209   if (ebp != cbp && !bitVectBitValue (cbp->domVect, ebp->bbnum))
210     replaceAllSymBySym (ebp->sch, from, to, &ebp->ndompset);
211
212   applyToSet (ebp->succList, removeFromInExprs, ic, from, to, cbp);
213   return 0;
214 }
215
216 /*-----------------------------------------------------------------*/
217 /* isGlobalInNearSpace - return TRUE if valriable is a globalin data */
218 /*-----------------------------------------------------------------*/
219 static bool 
220 isGlobalInNearSpace (operand * op)
221 {
222   sym_link *type = getSpec (operandType (op));
223   /* this is 8051 specific: optimization
224      suggested by Jean-Louis VERN, with 8051s we have no
225      advantage of putting variables in near space into
226      registers */
227   if (isOperandGlobal (op) && !IN_FARSPACE (SPEC_OCLS (type)) &&
228       IN_DIRSPACE (SPEC_OCLS (type)))
229     return TRUE;
230   else
231     return FALSE;
232 }
233
234 /*-----------------------------------------------------------------*/
235 /* findCheaperOp - cseBBlock support routine, will check to see if */
236 /*              we have a operand previously defined               */
237 /*-----------------------------------------------------------------*/
238 DEFSETFUNC (findCheaperOp)
239 {
240   cseDef *cdp = item;
241   V_ARG (operand *, cop);
242   V_ARG (operand **, opp);
243
244   /* if we have already found it */
245   if (*opp)
246     return 1;
247
248   /* not found it yet check if this is the one */
249   /* and this is not the defining one          */
250   if (cop->key == cdp->key)
251     {
252
253       /* do a special check this will help in */
254       /* constant propagation & dead code elim */
255       /* for assignments only                 */
256       if (cdp->diCode->op == '=') {
257         /* if the result is volatile then return result */
258         if (IS_OP_VOLATILE (IC_RESULT (cdp->diCode)))
259           *opp = IC_RESULT (cdp->diCode);
260         else 
261           /* if this is a straight assignment and
262              left is a temp then prefer the temporary to the
263              true symbol */
264           if (!POINTER_SET (cdp->diCode) &&
265               IS_ITEMP (IC_RESULT (cdp->diCode)) &&
266               IS_TRUE_SYMOP (IC_RIGHT (cdp->diCode)))
267             *opp = IC_RESULT (cdp->diCode);
268           else {
269             /* if straight assignement && and both
270                are temps then prefer the one that
271                will not need extra space to spil, also
272                take into consideration if right side
273                an induction variable
274             */
275             if (!POINTER_SET (cdp->diCode) &&
276                 IS_ITEMP (IC_RESULT (cdp->diCode)) &&
277                 IS_ITEMP (IC_RIGHT (cdp->diCode)) &&
278                 !OP_SYMBOL (IC_RIGHT (cdp->diCode))->isind &&
279                 ((!SPIL_LOC (IC_RIGHT (cdp->diCode)) &&
280                   SPIL_LOC (IC_RESULT (cdp->diCode))) ||
281                  (SPIL_LOC (IC_RESULT (cdp->diCode)) &&
282                   SPIL_LOC (IC_RESULT (cdp->diCode)) ==
283                   SPIL_LOC (IC_RIGHT (cdp->diCode)))))
284               *opp = IC_RESULT (cdp->diCode);
285             else
286               *opp = IC_RIGHT (cdp->diCode);
287           }
288       }
289       else
290         *opp = IC_RESULT (cdp->diCode);
291     }
292
293   /* if this is an assign to a temp. then check
294      if the right side is this then return this */
295   if (IS_TRUE_SYMOP (cop) &&
296       cdp->diCode->op == '=' &&
297       !POINTER_SET (cdp->diCode) &&
298       cop->key == IC_RIGHT (cdp->diCode)->key &&
299       !isGlobalInNearSpace (IC_RIGHT (cdp->diCode)) &&
300       IS_ITEMP (IC_RESULT (cdp->diCode)))
301     *opp = IC_RESULT (cdp->diCode);
302
303   if ((*opp) && 
304       (SPEC_USIGN(operandType (cop))==SPEC_USIGN(operandType (*opp))) &&
305       (SPEC_LONG(operandType (cop))==SPEC_LONG(operandType (*opp))))
306     {
307
308       if ((isGlobalInNearSpace (cop) &&
309            !isOperandLiteral (*opp)) ||
310           isOperandVolatile (*opp, FALSE)
311         )
312         {
313           *opp = NULL;
314           return 0;
315         }
316
317       if (cop->key == (*opp)->key)
318         {
319           *opp = NULL;
320           return 0;
321         }
322
323       if ((*opp)->isaddr != cop->isaddr && IS_ITEMP (cop))
324         {
325           *opp = operandFromOperand (*opp);
326           (*opp)->isaddr = cop->isaddr;
327         }
328
329       return 1;
330
331     }
332   *opp=NULL;
333   return 0;
334 }
335
336 /*-----------------------------------------------------------------*/
337 /* findPointerSet - finds the right side of a pointer set op       */
338 /*-----------------------------------------------------------------*/
339 DEFSETFUNC (findPointerSet)
340 {
341   cseDef *cdp = item;
342   V_ARG (operand *, op);
343   V_ARG (operand **, opp);
344   V_ARG (operand *, rop);
345
346   if (POINTER_SET (cdp->diCode) &&
347       IC_RESULT (cdp->diCode)->key == op->key &&
348       !isOperandVolatile (IC_RESULT (cdp->diCode), TRUE) &&
349       !isOperandVolatile (IC_RIGHT (cdp->diCode), TRUE) &&
350       getSize (operandType (IC_RIGHT (cdp->diCode))) ==
351       getSize (operandType (rop)))
352     {
353       *opp = IC_RIGHT (cdp->diCode);
354       return 1;
355     }
356
357   return 0;
358 }
359
360 /*-----------------------------------------------------------------*/
361 /* findPrevIc - cseBBlock support function will return the iCode   */
362 /*              which matches the current one                      */
363 /*-----------------------------------------------------------------*/
364 DEFSETFUNC (findPrevIc)
365 {
366   cseDef *cdp = item;
367   V_ARG (iCode *, ic);
368   V_ARG (iCode **, icp);
369
370   /* if already found */
371   if (*icp)
372     return 1;
373
374   /* if the iCodes are the same */
375   if (isiCodeEqual (ic, cdp->diCode) &&
376       isOperandEqual (cdp->sym, IC_RESULT (cdp->diCode)))
377     {
378       *icp = cdp->diCode;
379       return 1;
380     }
381
382   /* if iCodes are not the same */
383   /* see the operands maybe interchanged */
384   if (ic->op == cdp->diCode->op &&
385       (ic->op == '+' || ic->op == '*') &&
386       isOperandEqual (IC_LEFT (ic), IC_RIGHT (cdp->diCode)) &&
387       isOperandEqual (IC_RIGHT (ic), IC_LEFT (cdp->diCode)))
388     {
389       *icp = cdp->diCode;
390       return 1;
391     }
392
393   return 0;
394 }
395
396 /*-----------------------------------------------------------------*/
397 /* ifDefGlobal - if definition is global                           */
398 /*-----------------------------------------------------------------*/
399 DEFSETFUNC (ifDefGlobal)
400 {
401   cseDef *cdp = item;
402
403   return (isOperandGlobal (cdp->sym));
404 }
405
406 /*-----------------------------------------------------------------*/
407 /* ifAnyGetPointer - if get pointer icode                          */
408 /*-----------------------------------------------------------------*/
409 DEFSETFUNC (ifAnyGetPointer)
410 {
411   cseDef *cdp = item;
412
413   if (cdp->diCode && POINTER_GET (cdp->diCode))
414     return 1;
415   return 0;
416 }
417
418 /*-----------------------------------------------------------------*/
419 /* ifOperandsHave - if any of the operand are the same as this     */
420 /*-----------------------------------------------------------------*/
421 DEFSETFUNC (ifOperandsHave)
422 {
423   cseDef *cdp = item;
424   V_ARG (operand *, op);
425
426
427   if (IC_LEFT (cdp->diCode) &&
428       IS_SYMOP (IC_LEFT (cdp->diCode)) &&
429       IC_LEFT (cdp->diCode)->key == op->key)
430     return 1;
431
432   if (IC_RIGHT (cdp->diCode) &&
433       IS_SYMOP (IC_RIGHT (cdp->diCode)) &&
434       IC_RIGHT (cdp->diCode)->key == op->key)
435     return 1;
436
437   /* or if any of the operands are volatile */
438   if (IC_LEFT (cdp->diCode) &&
439       IS_OP_VOLATILE (IC_LEFT (cdp->diCode)))
440     return 1;
441
442   if (IC_RIGHT (cdp->diCode) &&
443       IS_OP_VOLATILE (IC_RIGHT (cdp->diCode)))
444     return 1;
445
446
447   if (IC_RESULT (cdp->diCode) &&
448       IS_OP_VOLATILE (IC_RESULT (cdp->diCode)))
449     return 1;
450
451   return 0;
452 }
453
454 /*-----------------------------------------------------------------*/
455 /* ifDefSymIs - if a definition is found in the set                */
456 /*-----------------------------------------------------------------*/
457 int 
458 ifDefSymIs (set * cseSet, operand * sym)
459 {
460   cseDef *loop;
461   set *sl;
462
463   if (!sym || !IS_SYMOP (sym))
464     return 0;
465   for (sl = cseSet; sl; sl = sl->next)
466     {
467       loop = sl->item;
468       if (loop->sym->key == sym->key)
469         return 1;
470     }
471   return 0;
472 }
473
474
475 /*-----------------------------------------------------------------*/
476 /* ifDefSymIsX - will return 1 if the symbols match                */
477 /*-----------------------------------------------------------------*/
478 DEFSETFUNC (ifDefSymIsX)
479 {
480   cseDef *cdp = item;
481   V_ARG (operand *, op);
482
483   if (op && cdp->sym)
484     return cdp->sym->key == op->key;
485   else
486     return (isOperandEqual (cdp->sym, op));
487
488 }
489
490
491 /*-----------------------------------------------------------------*/
492 /* ifDiCodeIs - returns truw if diCode is same                     */
493 /*-----------------------------------------------------------------*/
494 int 
495 ifDiCodeIs (set * cseSet, iCode * ic)
496 {
497   cseDef *loop;
498   set *sl;
499
500   if (!ic)
501     return 0;
502
503   for (sl = cseSet; sl; sl = sl->next)
504     {
505       loop = sl->item;
506       if (loop->diCode == ic)
507         return 1;
508     }
509   return 0;
510
511 }
512
513 /*-----------------------------------------------------------------*/
514 /* ifPointerGet - returns true if the icode is pointer get sym     */
515 /*-----------------------------------------------------------------*/
516 DEFSETFUNC (ifPointerGet)
517 {
518   cseDef *cdp = item;
519   V_ARG (operand *, op);
520   iCode *dic = cdp->diCode;
521   operand *left = IC_LEFT (cdp->diCode);
522
523   if (POINTER_GET (dic) && left->key == op->key)
524     return 1;
525
526   return 0;
527 }
528
529 /*-----------------------------------------------------------------*/
530 /* ifPointerSet - returns true if the icode is pointer set sym     */
531 /*-----------------------------------------------------------------*/
532 DEFSETFUNC (ifPointerSet)
533 {
534   cseDef *cdp = item;
535   V_ARG (operand *, op);
536
537   if (POINTER_SET (cdp->diCode) &&
538       IC_RESULT (cdp->diCode)->key == op->key)
539     return 1;
540
541   return 0;
542 }
543
544 /*-----------------------------------------------------------------*/
545 /* ifDiCodeIsX - will return 1 if the symbols match                 */
546 /*-----------------------------------------------------------------*/
547 DEFSETFUNC (ifDiCodeIsX)
548 {
549   cseDef *cdp = item;
550   V_ARG (iCode *, ic);
551
552   return cdp->diCode == ic;
553
554 }
555
556 /*-----------------------------------------------------------------*/
557 /* algebraicOpts - does some algebraic optimizations               */
558 /*-----------------------------------------------------------------*/
559 void 
560 algebraicOpts (iCode * ic)
561 {
562   /* we don't deal with the following iCodes
563      here */
564   if (ic->op == IFX ||
565       ic->op == IPUSH ||
566       ic->op == IPOP ||
567       ic->op == CALL ||
568       ic->op == PCALL ||
569       ic->op == RETURN ||
570       POINTER_GET (ic))
571     return;
572
573   /* if both operands present & ! IFX */
574   /* then if they are both literal we */
575   /* perform the operation right now  */
576   if (IC_RESULT (ic) &&
577       IC_RIGHT (ic) &&
578       IC_LEFT (ic) &&
579       IS_OP_LITERAL (IC_LEFT (ic)) &&
580       IS_OP_LITERAL (IC_RIGHT (ic)))
581     {
582
583       IC_RIGHT (ic) = operandOperation (IC_LEFT (ic),
584                                         IC_RIGHT (ic),
585                                         ic->op,
586                                         operandType (IC_RESULT (ic)));
587       ic->op = '=';
588       IC_LEFT (ic) = NULL;
589       SET_RESULT_RIGHT (ic);
590       return;
591
592     }
593   /* if not ifx & only one operand present */
594   if (IC_RESULT (ic) &&
595       IC_LEFT (ic) &&
596       IS_OP_LITERAL (IC_LEFT (ic)) &&
597       !IC_RIGHT (ic))
598     {
599
600       IC_RIGHT (ic) = operandOperation (IC_LEFT (ic),
601                                         IC_RIGHT (ic),
602                                         ic->op,
603                                         operandType (IC_RESULT (ic)));
604       ic->op = '=';
605       IC_LEFT (ic) = NULL;
606       SET_RESULT_RIGHT (ic);
607       return;
608     }
609
610
611   /* a special case : or in short a kludgy solution will think
612      about a better solution over a glass of wine someday */
613   if (ic->op == GET_VALUE_AT_ADDRESS)
614     {
615
616       if (IS_ITEMP (IC_RESULT (ic)) &&
617           IS_TRUE_SYMOP (IC_LEFT (ic)))
618         {
619
620           ic->op = '=';
621           IC_RIGHT (ic) = operandFromOperand (IC_LEFT (ic));
622           IC_RIGHT (ic)->isaddr = 0;
623           IC_LEFT (ic) = NULL;
624           IC_RESULT (ic) = operandFromOperand (IC_RESULT (ic));
625           IC_RESULT (ic)->isaddr = 0;
626           setOperandType (IC_RESULT (ic), operandType (IC_RIGHT (ic)));
627           return;
628         }
629
630       if (IS_ITEMP (IC_LEFT (ic)) &&
631           IS_ITEMP (IC_RESULT (ic)) &&
632 /*      !OP_SYMBOL(IC_RESULT(ic))->isreqv && */
633 /*      !OP_SYMBOL(IC_LEFT(ic))->isreqv && */
634           !IC_LEFT (ic)->isaddr)
635         {
636           ic->op = '=';
637           IC_RIGHT (ic) = operandFromOperand (IC_LEFT (ic));
638           IC_RIGHT (ic)->isaddr = 0;
639           IC_RESULT (ic) = operandFromOperand (IC_RESULT (ic));
640           IC_RESULT (ic)->isaddr = 0;
641           IC_LEFT (ic) = NULL;
642           return;
643         }
644
645     }
646
647
648   /* depending on the operation */
649   switch (ic->op)
650     {
651     case '+':
652       /* if adding the same thing change to left shift by 1 */
653       if (IC_LEFT (ic)->key == IC_RIGHT (ic)->key &&
654           !IS_FLOAT (operandType (IC_RESULT (ic))))
655         {
656           ic->op = LEFT_OP;
657           IC_RIGHT (ic) = operandFromLit (1);
658           return;
659         }
660       /* if addition then check if one of them is a zero */
661       /* if yes turn it  into assignmnt */
662       if (IS_OP_LITERAL (IC_LEFT (ic)) &&
663           operandLitValue (IC_LEFT (ic)) == 0.0)
664         {
665
666           ic->op = '=';
667           IC_LEFT (ic) = NULL;
668           SET_ISADDR (IC_RESULT (ic), 0);
669           SET_ISADDR (IC_RIGHT (ic), 0);
670           return;
671         }
672       if (IS_OP_LITERAL (IC_RIGHT (ic)) &&
673           operandLitValue (IC_RIGHT (ic)) == 0.0)
674         {
675
676           ic->op = '=';
677           IC_RIGHT (ic) = IC_LEFT (ic);
678           IC_LEFT (ic) = 0;
679           SET_ISADDR (IC_RIGHT (ic), 0);
680           SET_ISADDR (IC_RESULT (ic), 0);
681           return;
682         }
683       break;
684     case '-':
685       /* if subtracting the the same thing then zero     */
686       if (IC_LEFT (ic)->key == IC_RIGHT (ic)->key)
687         {
688           ic->op = '=';
689           IC_RIGHT (ic) = operandFromLit (0);
690           IC_LEFT (ic) = NULL;
691           IC_RESULT (ic) = operandFromOperand (IC_RESULT (ic));
692           IC_RESULT (ic)->isaddr = 0;
693           return;
694         }
695
696       /* if subtraction then check if one of the operand */
697       /* is zero then depending on which operand change  */
698       /* to assignment or unary minus                    */
699       if (IS_OP_LITERAL (IC_RIGHT (ic)) &&
700           operandLitValue (IC_RIGHT (ic)) == 0.0)
701         {
702           /* right size zero change to assignment */
703           ic->op = '=';
704           IC_RIGHT (ic) = IC_LEFT (ic);
705           IC_LEFT (ic) = NULL;
706           SET_ISADDR (IC_RIGHT (ic), 0);
707           SET_ISADDR (IC_RESULT (ic), 0);
708           return;
709         }
710       if (IS_OP_LITERAL (IC_LEFT (ic)) &&
711           operandLitValue (IC_LEFT (ic)) == 0.0)
712         {
713           /* left zero turn into an unary minus */
714           ic->op = UNARYMINUS;
715           IC_LEFT (ic) = IC_RIGHT (ic);
716           IC_RIGHT (ic) = NULL;
717           return;
718         }
719       break;
720       /* if multiplication then check if either of */
721       /* them is zero then the result is zero      */
722       /* if either of them is one then result is   */
723       /* the other one                             */
724     case '*':
725       if (IS_OP_LITERAL (IC_LEFT (ic)))
726         {
727
728           if (operandLitValue (IC_LEFT (ic)) == 0.0)
729             {
730               ic->op = '=';
731               IC_RIGHT (ic) = IC_LEFT (ic);
732               IC_LEFT (ic) = NULL;
733               SET_RESULT_RIGHT (ic);
734               return;
735             }
736           if (operandLitValue (IC_LEFT (ic)) == 1.0)
737             {
738               ic->op = '=';
739               IC_LEFT (ic) = NULL;
740               SET_RESULT_RIGHT (ic);
741               return;
742             }
743         }
744
745       if (IS_OP_LITERAL (IC_RIGHT (ic)))
746         {
747
748           if (operandLitValue (IC_RIGHT (ic)) == 0.0)
749             {
750               ic->op = '=';
751               IC_LEFT (ic) = NULL;
752               SET_RESULT_RIGHT (ic);
753               return;
754             }
755
756           if (operandLitValue (IC_RIGHT (ic)) == 1.0)
757             {
758               ic->op = '=';
759               IC_RIGHT (ic) = IC_LEFT (ic);
760               IC_LEFT (ic) = NULL;
761               SET_RESULT_RIGHT (ic);
762               return;
763             }
764         }
765       break;
766     case '/':
767       /* if division by self then 1 */
768       if (IC_LEFT (ic)->key == IC_RIGHT (ic)->key)
769         {
770           ic->op = '=';
771           IC_RIGHT (ic) = operandFromLit (1);
772           IC_LEFT (ic) = NULL;
773           IC_RESULT (ic) = operandFromOperand (IC_RESULT (ic));
774           IC_RESULT (ic)->isaddr = 0;
775         }
776       /* if this is a division then check if right */
777       /* is one then change it to an assignment    */
778       if (IS_OP_LITERAL (IC_RIGHT (ic)) &&
779           operandLitValue (IC_RIGHT (ic)) == 1.0)
780         {
781
782           ic->op = '=';
783           IC_RIGHT (ic) = IC_LEFT (ic);
784           IC_LEFT (ic) = NULL;
785           SET_RESULT_RIGHT (ic);
786           return;
787         }
788       break;
789       /* if both are the same for an comparison operators */
790     case EQ_OP:
791     case LE_OP:
792     case GE_OP:
793       if (isOperandEqual (IC_LEFT (ic), IC_RIGHT (ic)))
794         {
795           ic->op = '=';
796           IC_RIGHT (ic) = operandFromLit (1);
797           IC_LEFT (ic) = NULL;
798           SET_RESULT_RIGHT (ic);
799         }
800       break;
801     case NE_OP:
802     case '>':
803     case '<':
804       if (isOperandEqual (IC_LEFT (ic), IC_RIGHT (ic)))
805         {
806           ic->op = '=';
807           IC_RIGHT (ic) = operandFromLit (0);
808           IC_LEFT (ic) = NULL;
809           SET_RESULT_RIGHT (ic);
810         }
811       break;
812     case CAST:
813             {
814                     sym_link *otype = operandType(IC_RIGHT(ic));
815                     sym_link *ctype = operandType(IC_LEFT(ic));
816                     /* if this is a cast of a literal value */
817                     if (IS_OP_LITERAL (IC_RIGHT (ic)) &&
818                         !(IS_GENPTR(ctype) && (IS_PTR(otype) && !IS_GENPTR(otype)))) {
819                             ic->op = '=';
820                             IC_RIGHT (ic) =
821                                     operandFromValue (valCastLiteral (operandType (IC_LEFT (ic)),
822                                                                       operandLitValue (IC_RIGHT (ic))));
823                             IC_LEFT (ic) = NULL;
824                             SET_ISADDR (IC_RESULT (ic), 0);
825                     }
826                     /* if casting to the same */
827                     if (compareType (operandType (IC_RESULT (ic)),
828                                      operandType (IC_RIGHT (ic))) == 1) {
829                             ic->op = '=';
830                             IC_LEFT (ic) = NULL;
831                             SET_ISADDR (IC_RESULT (ic), 0);
832                     }
833             }
834             break;
835     case '!':
836       if (IS_OP_LITERAL (IC_LEFT (ic)))
837         {
838           ic->op = '=';
839           IC_RIGHT (ic) =
840             (operandLitValue (IC_LEFT (ic)) == 0 ?
841              operandFromLit (1) : operandFromLit (0));
842           IC_LEFT (ic) = NULL;
843           SET_ISADDR (IC_RESULT (ic), 0);
844         }
845     }
846
847   return;
848 }
849 #define OTHERS_PARM(s) (s->_isparm && !s->ismyparm)
850 /*-----------------------------------------------------------------*/
851 /* updateSpillLocation - keeps track of register spill location    */
852 /*-----------------------------------------------------------------*/
853 void 
854 updateSpillLocation (iCode * ic, int induction)
855 {
856
857         sym_link *setype;
858
859         if (POINTER_SET (ic))
860                 return;
861
862         if (ic->nosupdate)
863                 return;
864
865         /* for the form true_symbol := iTempNN */
866         if (ASSIGN_ITEMP_TO_SYM (ic) && 
867             !SPIL_LOC (IC_RIGHT (ic))) {
868
869                 setype = getSpec (operandType (IC_RESULT (ic)));
870
871                 if (!OP_SYMBOL(IC_RIGHT (ic))->noSpilLoc &&
872                     !IS_VOLATILE (setype) &&
873                     !IN_FARSPACE (SPEC_OCLS (setype)) &&
874                     !OTHERS_PARM (OP_SYMBOL (IC_RESULT (ic))))
875
876                         SPIL_LOC (IC_RIGHT (ic)) =
877                                 IC_RESULT (ic)->operand.symOperand;
878         }
879
880         if (ASSIGN_ITEMP_TO_ITEMP (ic)) {
881           
882                 if (!SPIL_LOC (IC_RIGHT (ic)) &&
883                     !bitVectBitsInCommon (OP_DEFS (IC_RIGHT (ic)), OP_USES (IC_RESULT (ic))) &&
884                     OP_SYMBOL (IC_RESULT (ic))->isreqv) {
885
886                         setype = getSpec (operandType (IC_RESULT (ic)));
887               
888                         if (!OP_SYMBOL(IC_RIGHT (ic))->noSpilLoc &&
889                             !IS_VOLATILE (setype) &&
890                             !IN_FARSPACE (SPEC_OCLS (setype)) &&
891                             !OTHERS_PARM (OP_SYMBOL (IC_RESULT (ic))))
892
893                                 SPIL_LOC (IC_RIGHT (ic)) =
894                                         SPIL_LOC (IC_RESULT (ic));
895                 }
896                 /* special case for inductions */
897                 if (induction && 
898                     OP_SYMBOL(IC_RIGHT(ic))->isreqv && 
899                     !OP_SYMBOL(IC_RESULT (ic))->noSpilLoc &&
900                     !SPIL_LOC(IC_RESULT(ic))) {
901                         SPIL_LOC (IC_RESULT (ic)) = SPIL_LOC (IC_RIGHT (ic));
902                 }
903         }
904 }
905 /*-----------------------------------------------------------------*/
906 /* setUsesDef - sets the uses def bitvector for a given operand    */
907 /*-----------------------------------------------------------------*/
908 void 
909 setUsesDefs (operand * op, bitVect * bdefs,
910              bitVect * idefs, bitVect ** oud)
911 {
912   /* compute the definitions alive at this point */
913   bitVect *adefs = bitVectUnion (bdefs, idefs);
914
915   /* of these definitions find the ones that are */
916   /* for this operand */
917   adefs = bitVectIntersect (adefs, OP_DEFS (op));
918
919   /* these are the definitions that this operand can use */
920   op->usesDefs = adefs;
921
922   /* the out defs is an union */
923   *oud = bitVectUnion (*oud, adefs);
924 }
925
926 /*-----------------------------------------------------------------*/
927 /* unsetDefsAndUses - clear this operation for the operands        */
928 /*-----------------------------------------------------------------*/
929 void 
930 unsetDefsAndUses (iCode * ic)
931 {
932   if (ic->op == JUMPTABLE)
933     return;
934
935   /* take away this definition from the def chain of the */
936   /* result & take away from use set of the operands */
937   if (ic->op != IFX)
938     {
939       /* turn off def set */
940       if (IS_SYMOP (IC_RESULT (ic)))
941         {
942           if (!POINTER_SET (ic))
943             bitVectUnSetBit (OP_DEFS (IC_RESULT (ic)), ic->key);
944           else
945             bitVectUnSetBit (OP_USES (IC_RESULT (ic)), ic->key);
946         }
947       /* turn off the useSet for the operands */
948       if (IS_SYMOP (IC_LEFT (ic)))
949         bitVectUnSetBit (OP_USES (IC_LEFT (ic)), ic->key);
950
951       if (IS_SYMOP (IC_RIGHT (ic)))
952         bitVectUnSetBit (OP_USES (IC_RIGHT (ic)), ic->key);
953     }
954   else
955     /* must be ifx turn off the use */ if (IS_SYMOP (IC_COND (ic)))
956     bitVectUnSetBit (OP_USES (IC_COND (ic)), ic->key);
957 }
958
959 /*-----------------------------------------------------------------*/
960 /* ifxOptimize - changes ifx conditions if it can                  */
961 /*-----------------------------------------------------------------*/
962 void 
963 ifxOptimize (iCode * ic, set * cseSet,
964              int computeOnly,
965              eBBlock * ebb, int *change,
966              eBBlock ** ebbs, int count)
967 {
968   operand *pdop;
969   symbol *label;
970
971   /* if the condition can be replaced */
972   if (!computeOnly)
973     {
974       pdop = NULL;
975       applyToSetFTrue (cseSet, findCheaperOp, IC_COND (ic), &pdop);
976       if (pdop)
977         {
978           IC_COND (ic) = pdop;
979           (*change)++;
980         }
981     }
982
983   /* if the conditional is a literal then */
984   if (IS_OP_LITERAL (IC_COND (ic)))
985     {
986
987       if ((operandLitValue (IC_COND (ic)) != 0.0) && IC_TRUE (ic))
988         {
989
990           /* change to a goto */
991           ic->op = GOTO;
992           IC_LABEL (ic) = IC_TRUE (ic);
993           (*change)++;
994
995         }
996       else
997         {
998
999           if (!operandLitValue (IC_COND (ic)) && IC_FALSE (ic))
1000             {
1001               ic->op = GOTO;
1002               IC_LABEL (ic) = IC_FALSE (ic);
1003               (*change)++;
1004
1005             }
1006           else
1007             {
1008               /* then kill this if condition */
1009               remiCodeFromeBBlock (ebb, ic);
1010             }
1011         }
1012
1013       /* now we need to recompute the control flow */
1014       /* since the control flow has changed        */
1015       /* this is very expensive but it does not happen */
1016       /* too often, if it does happen then the user pays */
1017       /* the price */
1018       computeControlFlow (ebbs, count, 1);
1019       if (!options.lessPedantic) {
1020         werror (W_CONTROL_FLOW, ic->filename, ic->lineno);
1021       }
1022       return;
1023     }
1024
1025   /* if there is only one successor and that successor
1026      is the same one we are conditionally going to then
1027      we can remove this conditional statement */
1028   label = (IC_TRUE (ic) ? IC_TRUE (ic) : IC_FALSE (ic));
1029   if (elementsInSet (ebb->succList) == 1 &&
1030       isinSet (ebb->succList, eBBWithEntryLabel (ebbs, label, count)))
1031     {
1032
1033       remiCodeFromeBBlock (ebb, ic);
1034       computeControlFlow (ebbs, count, 1);
1035       if (!options.lessPedantic) {
1036         werror (W_CONTROL_FLOW, ic->filename, ic->lineno);
1037       }
1038       return;
1039     }
1040
1041
1042   /* if it remains an IFX the update the use Set */
1043   OP_USES (IC_COND (ic)) = bitVectSetBit (OP_USES (IC_COND (ic)), ic->key);
1044   setUsesDefs (IC_COND (ic), ebb->defSet, ebb->outDefs, &ebb->usesDefs);
1045   return;
1046 }
1047
1048 /*-----------------------------------------------------------------*/
1049 /* diCodeForSym - finds the definiting instruction for a symbol    */
1050 /*-----------------------------------------------------------------*/
1051 DEFSETFUNC (diCodeForSym)
1052 {
1053   cseDef *cdp = item;
1054   V_ARG (operand *, sym);
1055   V_ARG (iCode **, dic);
1056
1057   /* if already found */
1058   if (*dic)
1059     return 0;
1060
1061   /* if not if this is the defining iCode */
1062   if (sym->key == cdp->key)
1063     {
1064       *dic = cdp->diCode;
1065       return 1;
1066     }
1067
1068   return 0;
1069 }
1070
1071 /*-----------------------------------------------------------------*/
1072 /* constFold - does some constant folding                          */
1073 /*-----------------------------------------------------------------*/
1074 int 
1075 constFold (iCode * ic, set * cseSet)
1076 {
1077   iCode *dic = NULL;
1078   iCode *ldic = NULL;
1079   /* this routine will change
1080      a = b + 10;
1081      c = a + 10;
1082      to
1083      c = b + 20; */
1084
1085   /* deal with only + & - */
1086   if (ic->op != '+' &&
1087       ic->op != '-')
1088     return 0;
1089
1090   /* this check is a hueristic to prevent live ranges
1091      from becoming too long */
1092   if (IS_PTR (operandType (IC_RESULT (ic))))
1093     return 0;
1094
1095   /* check if operation with a literal */
1096   if (!IS_OP_LITERAL (IC_RIGHT (ic)))
1097     return 0;
1098
1099   /* check if we can find a definition for the
1100      right hand side */
1101   if (!(applyToSet (cseSet, diCodeForSym, IC_LEFT (ic), &dic)))
1102     return 0;
1103
1104   /* check that this is also a +/-  */
1105   if (dic->op != '+' && dic->op != '-')
1106     return 0;
1107
1108   /* with a literal */
1109   if (!IS_OP_LITERAL (IC_RIGHT (dic)))
1110     return 0;
1111
1112   /* find the definition of the left operand
1113      of dic.then check if this defined with a
1114      get_pointer return 0 if the pointer size is
1115      less than 2 (MCS51 specific) */
1116   if (!(applyToSet (cseSet, diCodeForSym, IC_LEFT (dic), &ldic)))
1117     return 0;
1118
1119   if (POINTER_GET (ldic) && getSize (operandType (IC_LEFT (ldic))) <= 1)
1120     return 0;
1121
1122   /* it is if the operations are the same */
1123   /* the literal parts need to be added  */
1124   IC_LEFT (ic) = operandFromOperand (IC_LEFT (dic));
1125   if (ic->op == dic->op)
1126     IC_RIGHT (ic) = operandFromLit (operandLitValue (IC_RIGHT (ic)) +
1127                                     operandLitValue (IC_RIGHT (dic)));
1128   else
1129     IC_RIGHT (ic) = operandFromLit (operandLitValue (IC_RIGHT (ic)) -
1130                                     operandLitValue (IC_RIGHT (dic)));
1131
1132   if (IS_ITEMP (IC_RESULT (ic)))
1133     {
1134       SPIL_LOC (IC_RESULT (ic)) = NULL;
1135       OP_SYMBOL(IC_RESULT (ic))->noSpilLoc = 1;
1136     }
1137
1138
1139   return 1;
1140 }
1141
1142 /*-----------------------------------------------------------------*/
1143 /* deleteGetPointers - called when a pointer is passed as parm     */
1144 /* will delete from cseSet all get pointers computed from this     */
1145 /* pointer. A simple ifOperandsHave is not good enough here        */
1146 /*-----------------------------------------------------------------*/
1147 static void 
1148 deleteGetPointers (set ** cseSet, set ** pss, operand * op, eBBlock * ebb)
1149 {
1150   set *compItems = NULL;
1151   cseDef *cdp;
1152   operand *cop;
1153
1154   /* easy return */
1155   if (!*cseSet && !*pss)
1156     return;
1157
1158   /* first find all items computed from this operand .
1159      This done fairly simply go thru the list and find
1160      those that are computed by arthimetic with this
1161      op */
1162   for (cdp = setFirstItem (*cseSet); cdp; cdp = setNextItem (*cseSet))
1163     {
1164       if (IS_ARITHMETIC_OP (cdp->diCode))
1165         {
1166           if (isOperandEqual (IC_LEFT (cdp->diCode), op) ||
1167               isOperandEqual (IC_RIGHT (cdp->diCode), op))
1168             {
1169               /* save it in our list of items */
1170               addSet (&compItems, IC_RESULT (cdp->diCode));
1171             }
1172           /* also check for those computed from our computed
1173              list . This will take care of situations like
1174              iTemp1 = iTemp0 + 8;
1175              iTemp2 = iTemp1 + 8; */
1176           if (isinSetWith (compItems, (void*)IC_LEFT (cdp->diCode), 
1177                            (insetwithFunc)isOperandEqual) ||
1178               isinSetWith (compItems, (void*)IC_RIGHT (cdp->diCode), 
1179                            (insetwithFunc)isOperandEqual))
1180             {
1181               addSet (&compItems, IC_RESULT (cdp->diCode));
1182             }
1183         }
1184     }
1185
1186   /* now delete all pointer gets with this op */
1187   deleteItemIf (cseSet, ifPointerGet, op);
1188   deleteItemIf (pss, ifPointerSet, op);
1189
1190   /* set the bit vector used by dataFlow computation later */
1191   ebb->ptrsSet = bitVectSetBit (ebb->ptrsSet, op->key);
1192   /* now for the computed items */
1193   for (cop = setFirstItem (compItems); cop; cop = setNextItem (compItems))
1194     {
1195       ebb->ptrsSet = bitVectSetBit (ebb->ptrsSet, cop->key);
1196       deleteItemIf (cseSet, ifPointerGet, cop);
1197       deleteItemIf (pss, ifPointerSet, cop);
1198     }
1199 }
1200
1201 /*-----------------------------------------------------------------*/
1202 /* delGetPointerSucc - delete get pointer from inExprs of succ with */
1203 /*                     dfnum > supplied                            */
1204 /*-----------------------------------------------------------------*/
1205 DEFSETFUNC (delGetPointerSucc)
1206 {
1207   eBBlock *ebp = item;
1208   V_ARG (operand *, op);
1209   V_ARG (int, dfnum);
1210
1211   if (ebp->visited)
1212     return 0;
1213
1214   ebp->visited = 1;
1215   if (ebp->dfnum > dfnum)
1216     {
1217       deleteItemIf (&ebp->inExprs, ifPointerGet, op);
1218     }
1219
1220   return applyToSet (ebp->succList, delGetPointerSucc, op, dfnum);
1221 }
1222
1223 /*-----------------------------------------------------------------*/
1224 /* fixUpTypes - KLUGE HACK fixup a lowering problem                */
1225 /*-----------------------------------------------------------------*/
1226 static void 
1227 fixUpTypes (iCode * ic)
1228 {
1229   sym_link *t1 = operandType (IC_LEFT (ic)), *t2;
1230
1231   /* if (TARGET_IS_DS390) */
1232   if (options.model == MODEL_FLAT24)
1233     {
1234       /* hack-o-matic! */
1235       return;
1236     }
1237
1238   /* for pointer_gets if the types of result & left r the
1239      same then change it type of result to next */
1240   if (IS_PTR (t1) &&
1241       compareType (t2 = operandType (IC_RESULT (ic)), t1) == 1)
1242     {
1243       setOperandType (IC_RESULT (ic), t2->next);
1244     }
1245 }
1246
1247 /*-----------------------------------------------------------------*/
1248 /* cseBBlock - common subexpression elimination for basic blocks   */
1249 /*             this is the hackiest kludgiest routine in the whole */
1250 /*             system. also the most important, since almost all   */
1251 /*             data flow related information is computed by it     */
1252 /*-----------------------------------------------------------------*/
1253 int 
1254 cseBBlock (eBBlock * ebb, int computeOnly,
1255            eBBlock ** ebbs, int count)
1256 {
1257   set *cseSet;
1258   iCode *ic;
1259   int change = 0;
1260   int i;
1261   set *ptrSetSet = NULL;
1262
1263   /* if this block is not reachable */
1264   if (ebb->noPath)
1265     return change;
1266
1267   /* set of common subexpressions */
1268   cseSet = setFromSet (ebb->inExprs);
1269
1270   /* these will be computed by this routine */
1271   setToNull ((void **) &ebb->outDefs);
1272   setToNull ((void **) &ebb->defSet);
1273   setToNull ((void **) &ebb->usesDefs);
1274   setToNull ((void **) &ebb->ptrsSet);
1275   setToNull ((void **) &ebb->addrOf);
1276   setToNull ((void **) &ebb->ldefs);
1277
1278   ebb->outDefs = bitVectCopy (ebb->inDefs);
1279   bitVectDefault = iCodeKey;
1280   ebb->defSet = newBitVect (iCodeKey);
1281   ebb->usesDefs = newBitVect (iCodeKey);
1282
1283   /* for all the instructions in this block do */
1284   for (ic = ebb->sch; ic; ic = ic->next)
1285     {
1286
1287       iCode *pdic;
1288       operand *pdop;
1289       iCode *defic;
1290
1291       if (SKIP_IC2 (ic))
1292         continue;
1293
1294       /* if this is an assignment from true symbol
1295          to a temp then do pointer post inc/dec optimzation */
1296       if (ic->op == '=' && !POINTER_SET (ic) &&
1297           IS_PTR (operandType (IC_RESULT (ic))))
1298         {
1299           ptrPostIncDecOpt (ic);
1300         }
1301
1302       /* clear the def & use chains for the operands involved */
1303       /* in this operation . since it can change due to opts  */
1304       unsetDefsAndUses (ic);
1305
1306       if (ic->op == PCALL || ic->op == CALL || ic->op == RECEIVE)
1307         {
1308           /* add to defSet of the symbol */
1309           OP_DEFS (IC_RESULT (ic)) =
1310             bitVectSetBit (OP_DEFS (IC_RESULT (ic)), ic->key);
1311           /* add to the definition set of this block */
1312           ebb->defSet = bitVectSetBit (ebb->defSet, ic->key);
1313           ebb->ldefs = bitVectSetBit (ebb->ldefs, ic->key);
1314           ebb->outDefs = bitVectCplAnd (ebb->outDefs, OP_DEFS (IC_RESULT (ic)));
1315           setUsesDefs (IC_RESULT (ic), ebb->defSet, ebb->outDefs, &ebb->usesDefs);
1316           /* delete global variables from the cseSet
1317              since they can be modified by the function call */
1318           deleteItemIf (&cseSet, ifDefGlobal);
1319           /* delete all getpointer iCodes from cseSet, this should
1320              be done only for global arrays & pointers but at this
1321              point we don't know if globals, so to be safe do all */
1322           deleteItemIf (&cseSet, ifAnyGetPointer);
1323         }
1324
1325       /* for pcall & ipush we need to add to the useSet */
1326       if ((ic->op == PCALL ||
1327            ic->op == IPUSH ||
1328            ic->op == IPOP ||
1329            ic->op == SEND) &&
1330           IS_SYMOP (IC_LEFT (ic)))
1331         {
1332
1333           /* check if they can be replaced */
1334           if (!computeOnly)
1335             {
1336               pdop = NULL;
1337               applyToSetFTrue (cseSet, findCheaperOp, IC_LEFT (ic), &pdop);
1338               if (pdop)
1339                 IC_LEFT (ic) = pdop;
1340             }
1341           /* the lookup could have changed it */
1342           if (IS_SYMOP (IC_LEFT (ic)))
1343             {
1344               OP_USES (IC_LEFT (ic)) =
1345                 bitVectSetBit (OP_USES (IC_LEFT (ic)), ic->key);
1346               setUsesDefs (IC_LEFT (ic), ebb->defSet,
1347                            ebb->outDefs, &ebb->usesDefs);
1348             }
1349
1350
1351           /* if we a sending a pointer as a parameter
1352              then kill all cse since the pointed to item
1353              might be changed in the function being called */
1354           if ((ic->op == IPUSH || ic->op == SEND) &&
1355               IS_PTR (operandType (IC_LEFT (ic))))
1356             {
1357               deleteGetPointers (&cseSet, &ptrSetSet, IC_LEFT (ic), ebb);
1358               ebb->ptrsSet = bitVectSetBit (ebb->ptrsSet, IC_LEFT (ic)->key);
1359               for (i = 0; i < count; ebbs[i++]->visited = 0);
1360               applyToSet (ebb->succList, delGetPointerSucc,
1361                           IC_LEFT (ic), ebb->dfnum);
1362             }
1363           continue;
1364         }
1365
1366       /* if jumptable then mark the usage */
1367       if (ic->op == JUMPTABLE)
1368         {
1369           OP_USES (IC_JTCOND (ic)) =
1370             bitVectSetBit (OP_USES (IC_JTCOND (ic)), ic->key);
1371           setUsesDefs (IC_JTCOND (ic), ebb->defSet,
1372                        ebb->outDefs, &ebb->usesDefs);
1373           continue;
1374         }
1375
1376       if (SKIP_IC (ic))
1377         continue;
1378
1379       /* do some algebraic optimizations if possible */
1380       algebraicOpts (ic);
1381       while (constFold (ic, cseSet));
1382
1383       /* small klugde */
1384       if (POINTER_GET (ic) && !IS_PTR (operandType (IC_LEFT (ic))))
1385         {
1386           setOperandType (IC_LEFT (ic),
1387                           aggrToPtr (operandType (IC_LEFT (ic)), FALSE));
1388           fixUpTypes (ic);
1389
1390         }
1391       if (POINTER_SET (ic) && !IS_PTR (operandType (IC_RESULT (ic))))
1392         {
1393           setOperandType (IC_RESULT (ic),
1394                           aggrToPtr (operandType (IC_RESULT (ic)), FALSE));
1395         }
1396
1397       /* if this is a condition statment then */
1398       /* check if the condition can be replaced */
1399       if (ic->op == IFX)
1400         {
1401           ifxOptimize (ic, cseSet, computeOnly,
1402                        ebb, &change,
1403                        ebbs, count);
1404           continue;
1405         }
1406
1407       /* if the assignment & result is a temp */
1408       /* see if we can replace it             */
1409       if (ic->op == '=')
1410         {
1411
1412           /* update the spill location for this */
1413           updateSpillLocation (ic,0);
1414
1415           if (POINTER_SET (ic) &&
1416               !(IS_BITFIELD (OP_SYMBOL (IC_RESULT (ic))->etype)))
1417             {
1418               pdop = NULL;
1419               applyToSetFTrue (cseSet, findCheaperOp, IC_RESULT (ic), &pdop);
1420               if (pdop && IS_ITEMP (pdop) && !computeOnly)
1421                 IC_RESULT (ic) = pdop;
1422             }
1423         }
1424
1425       /* do the operand lookup i.e. for both the */
1426       /* right & left operand : check the cseSet */
1427       /* to see if they have been replaced if yes */
1428       /* then replace them with those from cseSet */
1429       /* left operand */
1430       /* and left is a symbol  */
1431       if (IS_SYMOP (IC_LEFT (ic)) &&
1432           !computeOnly && ic->op != ADDRESS_OF)
1433         {
1434
1435           pdop = NULL;
1436           applyToSetFTrue (cseSet, findCheaperOp, IC_LEFT (ic), &pdop);
1437           if (pdop)
1438             {
1439               if (POINTER_GET (ic))
1440                 {
1441                   if (IS_ITEMP (pdop) || IS_OP_LITERAL (pdop))
1442                     {
1443                       IC_LEFT (ic) = pdop;
1444                       change = 1;
1445                     }
1446                   /* check if there is a pointer set
1447                      for the same pointer visible if yes
1448                      then change this into an assignment */
1449                   pdop = NULL;
1450                   if (applyToSetFTrue (cseSet, findPointerSet, IC_LEFT (ic), &pdop, IC_RESULT (ic)) &&
1451                       !bitVectBitValue (ebb->ptrsSet, pdop->key))
1452                     {
1453                       ic->op = '=';
1454                       IC_LEFT (ic) = NULL;
1455                       IC_RIGHT (ic) = pdop;
1456                       SET_ISADDR (IC_RESULT (ic), 0);
1457                     }
1458
1459                 }
1460               else
1461                 {
1462                   IC_LEFT (ic) = pdop;
1463                   change = 1;
1464                 }
1465             }
1466         }
1467
1468       /*right operand */
1469       if (IS_SYMOP (IC_RIGHT (ic)) && !computeOnly)
1470         {
1471
1472           pdop = NULL;
1473           applyToSetFTrue (cseSet, findCheaperOp, IC_RIGHT (ic), &pdop);
1474           if (pdop)
1475             {
1476
1477               IC_RIGHT (ic) = pdop;
1478               change = 1;
1479             }
1480         }
1481
1482       /* if left or right changed then do algebraic */
1483       if (change)
1484         {
1485           algebraicOpts (ic);
1486           while (constFold (ic, cseSet));
1487         }
1488
1489       /* if after all this it becomes a assignment to self
1490          then delete it and continue */
1491       if (ASSIGNMENT_TO_SELF (ic))
1492         {
1493           remiCodeFromeBBlock (ebb, ic);
1494           continue;
1495         }
1496
1497       /* now we will check to see if the entire */
1498       /* operation has been performed before    */
1499       /* and is available                       */
1500       /* don't do assignments they will be killed */
1501       /* by dead code elimination if required  do */
1502       /* it only if result is a temporary         */
1503       pdic = NULL;
1504       if (!(POINTER_GET (ic) &&
1505             (IS_BITFIELD (OP_SYMBOL (IC_RESULT (ic))->etype) ||
1506              isOperandVolatile (IC_LEFT (ic), TRUE) ||
1507              bitVectBitValue (ebb->ndompset, IC_LEFT (ic)->key))) &&
1508           !ASSIGNMENT (ic) &&
1509           IS_ITEMP (IC_RESULT (ic)) &&
1510           !computeOnly)
1511         {
1512           applyToSet (cseSet, findPrevIc, ic, &pdic);
1513           if (pdic && compareType (operandType (IC_RESULT (pdic)),
1514                                  operandType (IC_RESULT (ic))) != 1)
1515             pdic = NULL;
1516
1517           // TODO: this must go, a weak fix for bug #467035
1518           if (pdic && (pdic->level > ic->level)) {
1519             // pdic was inside an inner loop
1520             pdic = NULL;
1521           }
1522           
1523         }
1524
1525       /* if found then eliminate this and add to */
1526       /* to cseSet an element containing result */
1527       /* of this with previous opcode           */
1528       if (pdic)
1529         {
1530           if (IS_ITEMP (IC_RESULT (ic)))
1531             {
1532               
1533               /* replace in the remaining of this block */
1534               replaceAllSymBySym (ic->next, IC_RESULT (ic), IC_RESULT (pdic), &ebb->ndompset);
1535               /* remove this iCode from inexpressions of all
1536                  its successors, it cannot be in the in expressions
1537                  of any of the predecessors */
1538               for (i = 0; i < count; ebbs[i++]->visited = 0);
1539               applyToSet (ebb->succList, removeFromInExprs, ic, IC_RESULT (ic),
1540                           IC_RESULT (pdic), ebb);
1541
1542               /* if this was moved from another block */
1543               /* then replace in those blocks too     */
1544               if (ic->movedFrom)
1545                 {
1546                   eBBlock *owner;
1547                   for (owner = setFirstItem (ic->movedFrom); owner;
1548                        owner = setNextItem (ic->movedFrom))
1549                     replaceAllSymBySym (owner->sch, IC_RESULT (ic), IC_RESULT (pdic), &owner->ndompset);
1550                 }
1551               pdic->movedFrom = unionSets (pdic->movedFrom, ic->movedFrom, THROW_NONE);
1552             }
1553           else
1554             addSetHead (&cseSet, newCseDef (IC_RESULT (ic), pdic));
1555
1556           if (!computeOnly)
1557             /* eliminate this */
1558             remiCodeFromeBBlock (ebb, ic);
1559
1560           defic = pdic;
1561           change++;
1562
1563           if (IS_ITEMP (IC_RESULT (ic)))
1564             continue;
1565
1566         }
1567       else
1568         {
1569
1570           /* just add this as a previous expression except in */
1571           /* case of a pointer access in which case this is a */
1572           /* usage not a definition                           */
1573           if (!(POINTER_SET (ic)) && IC_RESULT (ic))
1574             {
1575               deleteItemIf (&cseSet, ifDefSymIsX, IC_RESULT (ic));
1576               addSetHead (&cseSet, newCseDef (IC_RESULT (ic), ic));
1577             }
1578           defic = ic;
1579
1580         }
1581
1582       /* if assignment to a parameter which is not
1583          mine and type is a pointer then delete
1584          pointerGets to take care of aliasing */
1585       if (ASSIGNMENT (ic) &&
1586           OTHERS_PARM (OP_SYMBOL (IC_RESULT (ic))) &&
1587           IS_PTR (operandType (IC_RESULT (ic))))
1588         {
1589           deleteGetPointers (&cseSet, &ptrSetSet, IC_RIGHT (ic), ebb);
1590           for (i = 0; i < count; ebbs[i++]->visited = 0);
1591           applyToSet (ebb->succList, delGetPointerSucc, IC_RIGHT (ic), ebb->dfnum);
1592           ebb->ptrsSet = bitVectSetBit (ebb->ptrsSet, IC_RIGHT (ic)->key);
1593         }
1594
1595       /* if this is a pointerget then see if we can replace
1596          this with a previously assigned pointer value */
1597       if (POINTER_GET (ic) &&
1598           !(IS_BITFIELD (OP_SYMBOL (IC_RESULT (ic))->etype) ||
1599             isOperandVolatile (IC_LEFT (ic), TRUE)))
1600         {
1601           pdop = NULL;
1602           applyToSet (ptrSetSet, findPointerSet, IC_LEFT (ic), &pdop, IC_RESULT (ic));
1603           /* if we find it then locally replace all
1604              references to the result with what we assigned */
1605           if (pdop)
1606             {
1607               replaceAllSymBySym (ic->next, IC_RESULT (ic), pdop, &ebb->ndompset);
1608             }
1609         }
1610
1611       /* delete from the cseSet anything that has */
1612       /* operands matching the result of this     */
1613       /* except in case of pointer access         */
1614       if (!(POINTER_SET (ic)) && IC_RESULT (ic))
1615         {
1616           deleteItemIf (&cseSet, ifOperandsHave, IC_RESULT (ic));
1617           /* delete any previous definitions */
1618           ebb->defSet = bitVectCplAnd (ebb->defSet, OP_DEFS (IC_RESULT (ic)));
1619
1620         }
1621
1622       /* add the left & right to the defUse set */
1623       if (IC_LEFT (ic) && IS_SYMOP (IC_LEFT (ic)))
1624         {
1625           OP_USES (IC_LEFT (ic)) =
1626             bitVectSetBit (OP_USES (IC_LEFT (ic)), ic->key);
1627           setUsesDefs (IC_LEFT (ic), ebb->defSet, ebb->outDefs, &ebb->usesDefs);
1628
1629         }
1630
1631       if (IC_RIGHT (ic) && IS_SYMOP (IC_RIGHT (ic)))
1632         {
1633           OP_USES (IC_RIGHT (ic)) =
1634             bitVectSetBit (OP_USES (IC_RIGHT (ic)), ic->key);
1635           setUsesDefs (IC_RIGHT (ic), ebb->defSet, ebb->outDefs, &ebb->usesDefs);
1636
1637         }
1638
1639       /* for the result it is special case, put the result */
1640       /* in the defuseSet if it a pointer or array access  */
1641       if (POINTER_SET (defic))
1642         {
1643           OP_USES (IC_RESULT (ic)) =
1644             bitVectSetBit (OP_USES (IC_RESULT (ic)), ic->key);
1645           setUsesDefs (IC_RESULT (ic), ebb->defSet, ebb->outDefs, &ebb->usesDefs);
1646           deleteItemIf (&cseSet, ifPointerGet, IC_RESULT (ic));
1647           ebb->ptrsSet = bitVectSetBit (ebb->ptrsSet, IC_RESULT (ic)->key);
1648           /* delete from inexpressions of all successors which
1649              have dfNum > than this block */
1650           for (i = 0; i < count; ebbs[i++]->visited = 0);
1651           applyToSet (ebb->succList, delGetPointerSucc, IC_RESULT (ic), ebb->dfnum);
1652
1653           /* delete from cseSet all other pointer sets
1654              for this operand */
1655           deleteItemIf (&ptrSetSet, ifPointerSet, IC_RESULT (ic));
1656           /* add to the local pointerset set */
1657           addSetHead (&ptrSetSet, newCseDef (IC_RESULT (ic), ic));
1658         }
1659       else
1660         /* add the result to defintion set */ if (IC_RESULT (ic))
1661         {
1662           OP_DEFS (IC_RESULT (ic)) =
1663             bitVectSetBit (OP_DEFS (IC_RESULT (ic)), ic->key);
1664           ebb->defSet = bitVectSetBit (ebb->defSet, ic->key);
1665           ebb->outDefs = bitVectCplAnd (ebb->outDefs, OP_DEFS (IC_RESULT (ic)));
1666           ebb->ldefs = bitVectSetBit (ebb->ldefs, ic->key);
1667         }
1668
1669
1670       /* if this is an addressof instruction then */
1671       /* put the symbol in the address of list &  */
1672       /* delete it from the cseSet                */
1673       if (defic->op == ADDRESS_OF)
1674         {
1675           addSetHead (&ebb->addrOf, IC_LEFT (ic));
1676           deleteItemIf (&cseSet, ifDefSymIsX, IC_LEFT (ic));
1677         }
1678     }
1679
1680   setToNull ((void **) &ebb->outExprs);
1681   ebb->outExprs = cseSet;
1682   ebb->outDefs = bitVectUnion (ebb->outDefs, ebb->defSet);
1683   ebb->ptrsSet = bitVectUnion (ebb->ptrsSet, ebb->inPtrsSet);
1684   return change;
1685 }
1686
1687 /*-----------------------------------------------------------------*/
1688 /* cseAllBlocks - will sequentially go thru & do cse for all blocks */
1689 /*-----------------------------------------------------------------*/
1690 int 
1691 cseAllBlocks (eBBlock ** ebbs, int count)
1692 {
1693   int i;
1694   int change = 0;
1695
1696   /* if optimization turned off */
1697
1698   for (i = 0; i < count; i++)
1699     change += cseBBlock (ebbs[i], FALSE, ebbs, count);
1700
1701   return change;
1702 }