make cpp2 -> bin/sdcpp
[fw/sdcc] / src / ds390 / ralloc.c
1 /*------------------------------------------------------------------------
2
3   SDCCralloc.c - source file for register allocation. (8051) specific
4
5                 Written By -  Sandeep Dutta . sandeep.dutta@usa.net (1998)
6
7    This program is free software; you can redistribute it and/or modify it
8    under the terms of the GNU General Public License as published by the
9    Free Software Foundation; either version 2, or (at your option) any
10    later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20    
21    In other words, you are welcome to use, share and improve this program.
22    You are forbidden to forbid anyone else to use, share and improve
23    what you give them.   Help stamp out software-hoarding!  
24 -------------------------------------------------------------------------*/
25
26 #include "common.h"
27 #include "ralloc.h"
28 #include "gen.h"
29
30 /*-----------------------------------------------------------------*/
31 /* At this point we start getting processor specific although      */
32 /* some routines are non-processor specific & can be reused when   */
33 /* targetting other processors. The decision for this will have    */
34 /* to be made on a routine by routine basis                        */
35 /* routines used to pack registers are most definitely not reusable */
36 /* since the pack the registers depending strictly on the MCU      */
37 /*-----------------------------------------------------------------*/
38
39 /* Global data */
40 static struct
41   {
42     bitVect *spiltSet;
43     set *stackSpil;
44     bitVect *regAssigned;
45     short blockSpil;
46     int slocNum;
47     bitVect *funcrUsed;         /* registers used in a function */
48     int stackExtend;
49     int dataExtend;
50   }
51 _G;
52
53 /* Shared with gen.c */
54 int ds390_ptrRegReq;            /* one byte pointer register required */
55
56 /* 8051 registers */
57 regs regs390[] =
58 {
59
60   {REG_GPR, R2_IDX, REG_GPR, "r2", "ar2", "0", 2, 1},
61   {REG_GPR, R3_IDX, REG_GPR, "r3", "ar3", "0", 3, 1},
62   {REG_GPR, R4_IDX, REG_GPR, "r4", "ar4", "0", 4, 1},
63   {REG_GPR, R5_IDX, REG_GPR, "r5", "ar5", "0", 5, 1},
64   {REG_GPR, R6_IDX, REG_GPR, "r6", "ar6", "0", 6, 1},
65   {REG_GPR, R7_IDX, REG_GPR, "r7", "ar7", "0", 7, 1},
66   {REG_PTR, R0_IDX, REG_PTR, "r0", "ar0", "0", 0, 1},
67   {REG_PTR, R1_IDX, REG_PTR, "r1", "ar1", "0", 1, 1},
68   {REG_GPR, X8_IDX, REG_GPR, "x8", "x8", "xreg", 0, 1},
69   {REG_GPR, X9_IDX, REG_GPR, "x9", "x9", "xreg", 1, 1},
70   {REG_GPR, X10_IDX, REG_GPR, "x10", "x10", "xreg", 2, 1},
71   {REG_GPR, X11_IDX, REG_GPR, "x11", "x11", "xreg", 3, 1},
72   {REG_GPR, X12_IDX, REG_GPR, "x12", "x12", "xreg", 4, 1},
73   {REG_CND, CND_IDX, REG_CND, "C", "C", "xreg", 0, 1},
74 };
75 int ds390_nRegs = 13;
76 static void spillThis (symbol *);
77
78 /*-----------------------------------------------------------------*/
79 /* allocReg - allocates register of given type                     */
80 /*-----------------------------------------------------------------*/
81 static regs *
82 allocReg (short type)
83 {
84   int i;
85
86   for (i = 0; i < ds390_nRegs; i++)
87     {
88
89       /* if type is given as 0 then any
90          free register will do */
91       if (!type &&
92           regs390[i].isFree)
93         {
94           regs390[i].isFree = 0;
95           if (currFunc)
96             currFunc->regsUsed =
97               bitVectSetBit (currFunc->regsUsed, i);
98           return &regs390[i];
99         }
100       /* other wise look for specific type
101          of register */
102       if (regs390[i].isFree &&
103           regs390[i].type == type)
104         {
105           regs390[i].isFree = 0;
106           if (currFunc)
107             currFunc->regsUsed =
108               bitVectSetBit (currFunc->regsUsed, i);
109           return &regs390[i];
110         }
111     }
112   return NULL;
113 }
114
115 /*-----------------------------------------------------------------*/
116 /* ds390_regWithIdx - returns pointer to register wit index number       */
117 /*-----------------------------------------------------------------*/
118 regs *
119 ds390_regWithIdx (int idx)
120 {
121   int i;
122
123   for (i = 0; i < ds390_nRegs; i++)
124     if (regs390[i].rIdx == idx)
125       return &regs390[i];
126
127   werror (E_INTERNAL_ERROR, __FILE__, __LINE__,
128           "regWithIdx not found");
129   exit (1);
130 }
131
132 /*-----------------------------------------------------------------*/
133 /* freeReg - frees a register                                      */
134 /*-----------------------------------------------------------------*/
135 static void
136 freeReg (regs * reg)
137 {
138   reg->isFree = 1;
139 }
140
141
142 /*-----------------------------------------------------------------*/
143 /* nFreeRegs - returns number of free registers                    */
144 /*-----------------------------------------------------------------*/
145 static int
146 nFreeRegs (int type)
147 {
148   int i;
149   int nfr = 0;
150
151   for (i = 0; i < ds390_nRegs; i++)
152     if (regs390[i].isFree && regs390[i].type == type)
153       nfr++;
154   return nfr;
155 }
156
157 /*-----------------------------------------------------------------*/
158 /* nfreeRegsType - free registers with type                         */
159 /*-----------------------------------------------------------------*/
160 static int
161 nfreeRegsType (int type)
162 {
163   int nfr;
164   if (type == REG_PTR)
165     {
166       if ((nfr = nFreeRegs (type)) == 0)
167         return nFreeRegs (REG_GPR);
168     }
169
170   return nFreeRegs (type);
171 }
172
173
174 /*-----------------------------------------------------------------*/
175 /* allDefsOutOfRange - all definitions are out of a range          */
176 /*-----------------------------------------------------------------*/
177 static bool
178 allDefsOutOfRange (bitVect * defs, int fseq, int toseq)
179 {
180   int i;
181
182   if (!defs)
183     return TRUE;
184
185   for (i = 0; i < defs->size; i++)
186     {
187       iCode *ic;
188
189       if (bitVectBitValue (defs, i) &&
190           (ic = hTabItemWithKey (iCodehTab, i)) &&
191           (ic->seq >= fseq && ic->seq <= toseq))
192
193         return FALSE;
194
195     }
196
197   return TRUE;
198 }
199
200 /*-----------------------------------------------------------------*/
201 /* computeSpillable - given a point find the spillable live ranges */
202 /*-----------------------------------------------------------------*/
203 static bitVect *
204 computeSpillable (iCode * ic)
205 {
206   bitVect *spillable;
207
208   /* spillable live ranges are those that are live at this 
209      point . the following categories need to be subtracted
210      from this set. 
211      a) - those that are already spilt
212      b) - if being used by this one
213      c) - defined by this one */
214
215   spillable = bitVectCopy (ic->rlive);
216   spillable =
217     bitVectCplAnd (spillable, _G.spiltSet);     /* those already spilt */
218   spillable =
219     bitVectCplAnd (spillable, ic->uses);        /* used in this one */
220   bitVectUnSetBit (spillable, ic->defKey);
221   spillable = bitVectIntersect (spillable, _G.regAssigned);
222   return spillable;
223
224 }
225
226 /*-----------------------------------------------------------------*/
227 /* noSpilLoc - return true if a variable has no spil location      */
228 /*-----------------------------------------------------------------*/
229 static int
230 noSpilLoc (symbol * sym, eBBlock * ebp, iCode * ic)
231 {
232   return (sym->usl.spillLoc ? 0 : 1);
233 }
234
235 /*-----------------------------------------------------------------*/
236 /* hasSpilLoc - will return 1 if the symbol has spil location      */
237 /*-----------------------------------------------------------------*/
238 static int
239 hasSpilLoc (symbol * sym, eBBlock * ebp, iCode * ic)
240 {
241   return (sym->usl.spillLoc ? 1 : 0);
242 }
243
244 /*-----------------------------------------------------------------*/
245 /* directSpilLoc - will return 1 if the splilocation is in direct  */
246 /*-----------------------------------------------------------------*/
247 static int
248 directSpilLoc (symbol * sym, eBBlock * ebp, iCode * ic)
249 {
250   if (sym->usl.spillLoc &&
251       (IN_DIRSPACE (SPEC_OCLS (sym->usl.spillLoc->etype))))
252     return 1;
253   else
254     return 0;
255 }
256
257 /*-----------------------------------------------------------------*/
258 /* hasSpilLocnoUptr - will return 1 if the symbol has spil location */
259 /*                    but is not used as a pointer                 */
260 /*-----------------------------------------------------------------*/
261 static int
262 hasSpilLocnoUptr (symbol * sym, eBBlock * ebp, iCode * ic)
263 {
264   return ((sym->usl.spillLoc && !sym->uptr) ? 1 : 0);
265 }
266
267 /*-----------------------------------------------------------------*/
268 /* rematable - will return 1 if the remat flag is set              */
269 /*-----------------------------------------------------------------*/
270 static int
271 rematable (symbol * sym, eBBlock * ebp, iCode * ic)
272 {
273   return sym->remat;
274 }
275
276 /*-----------------------------------------------------------------*/
277 /* notUsedInBlock - not used in this block                         */
278 /*-----------------------------------------------------------------*/
279 static int
280 notUsedInBlock (symbol * sym, eBBlock * ebp, iCode * ic)
281 {
282   return (!bitVectBitsInCommon (sym->defs, ebp->usesDefs) &&
283           allDefsOutOfRange (sym->defs, ebp->fSeq, ebp->lSeq));
284 /*     return (!bitVectBitsInCommon(sym->defs,ebp->usesDefs)); */
285 }
286
287 /*-----------------------------------------------------------------*/
288 /* notUsedInRemaining - not used or defined in remain of the block */
289 /*-----------------------------------------------------------------*/
290 static int
291 notUsedInRemaining (symbol * sym, eBBlock * ebp, iCode * ic)
292 {
293   return ((usedInRemaining (operandFromSymbol (sym), ic) ? 0 : 1) &&
294           allDefsOutOfRange (sym->defs, ebp->fSeq, ebp->lSeq));
295 }
296
297 /*-----------------------------------------------------------------*/
298 /* allLRs - return true for all                                    */
299 /*-----------------------------------------------------------------*/
300 static int
301 allLRs (symbol * sym, eBBlock * ebp, iCode * ic)
302 {
303   return 1;
304 }
305
306 /*-----------------------------------------------------------------*/
307 /* liveRangesWith - applies function to a given set of live range  */
308 /*-----------------------------------------------------------------*/
309 static set *
310 liveRangesWith (bitVect * lrs, int (func) (symbol *, eBBlock *, iCode *),
311                 eBBlock * ebp, iCode * ic)
312 {
313   set *rset = NULL;
314   int i;
315
316   if (!lrs || !lrs->size)
317     return NULL;
318
319   for (i = 1; i < lrs->size; i++)
320     {
321       symbol *sym;
322       if (!bitVectBitValue (lrs, i))
323         continue;
324
325       /* if we don't find it in the live range 
326          hash table we are in serious trouble */
327       if (!(sym = hTabItemWithKey (liveRanges, i)))
328         {
329           werror (E_INTERNAL_ERROR, __FILE__, __LINE__,
330                   "liveRangesWith could not find liveRange");
331           exit (1);
332         }
333
334       if (func (sym, ebp, ic) && bitVectBitValue (_G.regAssigned, sym->key))
335         addSetHead (&rset, sym);
336     }
337
338   return rset;
339 }
340
341
342 /*-----------------------------------------------------------------*/
343 /* leastUsedLR - given a set determines which is the least used    */
344 /*-----------------------------------------------------------------*/
345 static symbol *
346 leastUsedLR (set * sset)
347 {
348   symbol *sym = NULL, *lsym = NULL;
349
350   sym = lsym = setFirstItem (sset);
351
352   if (!lsym)
353     return NULL;
354
355   for (; lsym; lsym = setNextItem (sset))
356     {
357
358       /* if usage is the same then prefer
359          the spill the smaller of the two */
360       if (lsym->used == sym->used)
361         if (getSize (lsym->type) < getSize (sym->type))
362           sym = lsym;
363
364       /* if less usage */
365       if (lsym->used < sym->used)
366         sym = lsym;
367
368     }
369
370   setToNull ((void **) &sset);
371   sym->blockSpil = 0;
372   return sym;
373 }
374
375 /*-----------------------------------------------------------------*/
376 /* noOverLap - will iterate through the list looking for over lap  */
377 /*-----------------------------------------------------------------*/
378 static int
379 noOverLap (set * itmpStack, symbol * fsym)
380 {
381   symbol *sym;
382
383   for (sym = setFirstItem (itmpStack); sym;
384        sym = setNextItem (itmpStack))
385     {
386             // if sym starts before (or on) our end point
387             // and ends after (or on) our start point, 
388             // it is an overlap.
389             if (sym->liveFrom <= fsym->liveTo &&
390                 sym->liveTo   >= fsym->liveFrom)
391             {
392                 return 0;
393             }
394     }
395   return 1;
396 }
397
398 /*-----------------------------------------------------------------*/
399 /* isFree - will return 1 if the a free spil location is found     */
400 /*-----------------------------------------------------------------*/
401 static
402 DEFSETFUNC (isFree)
403 {
404   symbol *sym = item;
405   V_ARG (symbol **, sloc);
406   V_ARG (symbol *, fsym);
407
408   /* if already found */
409   if (*sloc)
410     return 0;
411
412   /* if it is free && and the itmp assigned to
413      this does not have any overlapping live ranges
414      with the one currently being assigned and
415      the size can be accomodated  */
416   if (sym->isFree &&
417       noOverLap (sym->usl.itmpStack, fsym) &&
418       getSize (sym->type) >= getSize (fsym->type))
419     {
420       *sloc = sym;
421       return 1;
422     }
423
424   return 0;
425 }
426
427 /*-----------------------------------------------------------------*/
428 /* spillLRWithPtrReg :- will spil those live ranges which use PTR  */
429 /*-----------------------------------------------------------------*/
430 static void
431 spillLRWithPtrReg (symbol * forSym)
432 {
433   symbol *lrsym;
434   regs *r0, *r1;
435   int k;
436
437   if (!_G.regAssigned ||
438       bitVectIsZero (_G.regAssigned))
439     return;
440
441   r0 = ds390_regWithIdx (R0_IDX);
442   r1 = ds390_regWithIdx (R1_IDX);
443
444   /* for all live ranges */
445   for (lrsym = hTabFirstItem (liveRanges, &k); lrsym;
446        lrsym = hTabNextItem (liveRanges, &k))
447     {
448       int j;
449
450       /* if no registers assigned to it or
451          spilt */
452       /* if it does not overlap with this then 
453          not need to spill it */
454
455       if (lrsym->isspilt || !lrsym->nRegs ||
456           (lrsym->liveTo < forSym->liveFrom))
457         continue;
458
459       /* go thru the registers : if it is either
460          r0 or r1 then spil it */
461       for (j = 0; j < lrsym->nRegs; j++)
462         if (lrsym->regs[j] == r0 ||
463             lrsym->regs[j] == r1)
464           {
465             spillThis (lrsym);
466             break;
467           }
468     }
469
470 }
471
472 /*-----------------------------------------------------------------*/
473 /* createStackSpil - create a location on the stack to spil        */
474 /*-----------------------------------------------------------------*/
475 static symbol *
476 createStackSpil (symbol * sym)
477 {
478   symbol *sloc = NULL;
479   int useXstack, model, noOverlay;
480
481   char slocBuffer[30];
482
483   /* first go try and find a free one that is already 
484      existing on the stack */
485   if (applyToSet (_G.stackSpil, isFree, &sloc, sym))
486     {
487       /* found a free one : just update & return */
488       sym->usl.spillLoc = sloc;
489       sym->stackSpil = 1;
490       sloc->isFree = 0;
491       addSetHead (&sloc->usl.itmpStack, sym);
492       return sym;
493     }
494
495   /* could not then have to create one , this is the hard part
496      we need to allocate this on the stack : this is really a
497      hack!! but cannot think of anything better at this time */
498
499   if (sprintf (slocBuffer, "sloc%d", _G.slocNum++) >= sizeof (slocBuffer))
500     {
501       fprintf (stderr, "***Internal error: slocBuffer overflowed: %s:%d\n",
502                __FILE__, __LINE__);
503       exit (1);
504     }
505
506   sloc = newiTemp (slocBuffer);
507
508   /* set the type to the spilling symbol */
509   sloc->type = copyLinkChain (sym->type);
510   sloc->etype = getSpec (sloc->type);
511   SPEC_SCLS (sloc->etype) = options.model ? S_XDATA : S_DATA;
512   SPEC_EXTR (sloc->etype) = 0;
513
514   /* we don't allow it to be allocated`
515      onto the external stack since : so we
516      temporarily turn it off ; we also
517      turn off memory model to prevent
518      the spil from going to the external storage
519      and turn off overlaying 
520    */
521
522   useXstack = options.useXstack;
523   model = options.model;
524   noOverlay = options.noOverlay;
525   options.noOverlay = 1;
526
527   /* options.model = options.useXstack = 0; */
528
529   allocLocal (sloc);
530
531   options.useXstack = useXstack;
532   options.model = model;
533   options.noOverlay = noOverlay;
534   sloc->isref = 1;              /* to prevent compiler warning */
535
536   /* if it is on the stack then update the stack */
537   if (IN_STACK (sloc->etype))
538     {
539       currFunc->stack += getSize (sloc->type);
540       _G.stackExtend += getSize (sloc->type);
541     }
542   else
543     _G.dataExtend += getSize (sloc->type);
544
545   /* add it to the _G.stackSpil set */
546   addSetHead (&_G.stackSpil, sloc);
547   sym->usl.spillLoc = sloc;
548   sym->stackSpil = 1;
549
550   /* add it to the set of itempStack set 
551      of the spill location */
552   addSetHead (&sloc->usl.itmpStack, sym);
553   return sym;
554 }
555
556 /*-----------------------------------------------------------------*/
557 /* isSpiltOnStack - returns true if the spil location is on stack  */
558 /*-----------------------------------------------------------------*/
559 static bool
560 isSpiltOnStack (symbol * sym)
561 {
562   sym_link *etype;
563
564   if (!sym)
565     return FALSE;
566
567   if (!sym->isspilt)
568     return FALSE;
569
570 /*     if (sym->_G.stackSpil) */
571 /*      return TRUE; */
572
573   if (!sym->usl.spillLoc)
574     return FALSE;
575
576   etype = getSpec (sym->usl.spillLoc->type);
577   if (IN_STACK (etype))
578     return TRUE;
579
580   return FALSE;
581 }
582
583 /*-----------------------------------------------------------------*/
584 /* spillThis - spils a specific operand                            */
585 /*-----------------------------------------------------------------*/
586 static void
587 spillThis (symbol * sym)
588 {
589   int i;
590   /* if this is rematerializable or has a spillLocation
591      we are okay, else we need to create a spillLocation
592      for it */
593   if (!(sym->remat || sym->usl.spillLoc))
594     createStackSpil (sym);
595
596
597   /* mark it has spilt & put it in the spilt set */
598   sym->isspilt = 1;
599   _G.spiltSet = bitVectSetBit (_G.spiltSet, sym->key);
600
601   bitVectUnSetBit (_G.regAssigned, sym->key);
602
603   for (i = 0; i < sym->nRegs; i++)
604
605     if (sym->regs[i])
606       {
607         freeReg (sym->regs[i]);
608         sym->regs[i] = NULL;
609       }
610
611   /* if spilt on stack then free up r0 & r1 
612      if they could have been assigned to some
613      LIVE ranges */
614   if (!ds390_ptrRegReq && isSpiltOnStack (sym))
615     {
616       ds390_ptrRegReq++;
617       spillLRWithPtrReg (sym);
618     }
619
620   if (sym->usl.spillLoc && !sym->remat)
621     sym->usl.spillLoc->allocreq = 1;
622   return;
623 }
624
625 /*-----------------------------------------------------------------*/
626 /* selectSpil - select a iTemp to spil : rather a simple procedure */
627 /*-----------------------------------------------------------------*/
628 static symbol *
629 selectSpil (iCode * ic, eBBlock * ebp, symbol * forSym)
630 {
631   bitVect *lrcs = NULL;
632   set *selectS;
633   symbol *sym;
634
635   /* get the spillable live ranges */
636   lrcs = computeSpillable (ic);
637
638   /* get all live ranges that are rematerizable */
639   if ((selectS = liveRangesWith (lrcs, rematable, ebp, ic)))
640     {
641
642       /* return the least used of these */
643       return leastUsedLR (selectS);
644     }
645
646   /* get live ranges with spillLocations in direct space */
647   if ((selectS = liveRangesWith (lrcs, directSpilLoc, ebp, ic)))
648     {
649       sym = leastUsedLR (selectS);
650       strcpy (sym->rname, (sym->usl.spillLoc->rname[0] ?
651                            sym->usl.spillLoc->rname :
652                            sym->usl.spillLoc->name));
653       sym->spildir = 1;
654       /* mark it as allocation required */
655       sym->usl.spillLoc->allocreq = 1;
656       return sym;
657     }
658
659   /* if the symbol is local to the block then */
660   if (forSym->liveTo < ebp->lSeq)
661     {
662
663       /* check if there are any live ranges allocated
664          to registers that are not used in this block */
665       if (!_G.blockSpil && (selectS = liveRangesWith (lrcs, notUsedInBlock, ebp, ic)))
666         {
667           sym = leastUsedLR (selectS);
668           /* if this is not rematerializable */
669           if (!sym->remat)
670             {
671               _G.blockSpil++;
672               sym->blockSpil = 1;
673             }
674           return sym;
675         }
676
677       /* check if there are any live ranges that not
678          used in the remainder of the block */
679       if (!_G.blockSpil && (selectS = liveRangesWith (lrcs, notUsedInRemaining, ebp, ic)))
680         {
681           sym = leastUsedLR (selectS);
682           if (sym != forSym)
683             {
684               if (!sym->remat)
685                 {
686                   sym->remainSpil = 1;
687                   _G.blockSpil++;
688                 }
689               return sym;
690             }
691         }
692     }
693
694   /* find live ranges with spillocation && not used as pointers */
695   if ((selectS = liveRangesWith (lrcs, hasSpilLocnoUptr, ebp, ic)))
696     {
697
698       sym = leastUsedLR (selectS);
699       /* mark this as allocation required */
700       sym->usl.spillLoc->allocreq = 1;
701       return sym;
702     }
703
704   /* find live ranges with spillocation */
705   if ((selectS = liveRangesWith (lrcs, hasSpilLoc, ebp, ic)))
706     {
707
708       sym = leastUsedLR (selectS);
709       sym->usl.spillLoc->allocreq = 1;
710       return sym;
711     }
712
713   /* couldn't find then we need to create a spil
714      location on the stack , for which one? the least
715      used ofcourse */
716   if ((selectS = liveRangesWith (lrcs, noSpilLoc, ebp, ic)))
717     {
718
719       /* return a created spil location */
720       sym = createStackSpil (leastUsedLR (selectS));
721       sym->usl.spillLoc->allocreq = 1;
722       return sym;
723     }
724
725   /* this is an extreme situation we will spill
726      this one : happens very rarely but it does happen */
727   spillThis (forSym);
728   return forSym;
729
730 }
731
732 /*-----------------------------------------------------------------*/
733 /* spilSomething - spil some variable & mark registers as free     */
734 /*-----------------------------------------------------------------*/
735 static bool
736 spilSomething (iCode * ic, eBBlock * ebp, symbol * forSym)
737 {
738   symbol *ssym;
739   int i;
740
741   /* get something we can spil */
742   ssym = selectSpil (ic, ebp, forSym);
743
744   /* mark it as spilt */
745   ssym->isspilt = 1;
746   _G.spiltSet = bitVectSetBit (_G.spiltSet, ssym->key);
747
748   /* mark it as not register assigned &
749      take it away from the set */
750   bitVectUnSetBit (_G.regAssigned, ssym->key);
751
752   /* mark the registers as free */
753   for (i = 0; i < ssym->nRegs; i++)
754     if (ssym->regs[i])
755       freeReg (ssym->regs[i]);
756
757   /* if spilt on stack then free up r0 & r1 
758      if they could have been assigned to as gprs */
759   if (!ds390_ptrRegReq && isSpiltOnStack (ssym))
760     {
761       ds390_ptrRegReq++;
762       spillLRWithPtrReg (ssym);
763     }
764
765   /* if this was a block level spil then insert push & pop 
766      at the start & end of block respectively */
767   if (ssym->blockSpil)
768     {
769       iCode *nic = newiCode (IPUSH, operandFromSymbol (ssym), NULL);
770       /* add push to the start of the block */
771       addiCodeToeBBlock (ebp, nic, (ebp->sch->op == LABEL ?
772                                     ebp->sch->next : ebp->sch));
773       nic = newiCode (IPOP, operandFromSymbol (ssym), NULL);
774       /* add pop to the end of the block */
775       addiCodeToeBBlock (ebp, nic, NULL);
776     }
777
778   /* if spilt because not used in the remainder of the
779      block then add a push before this instruction and
780      a pop at the end of the block */
781   if (ssym->remainSpil)
782     {
783
784       iCode *nic = newiCode (IPUSH, operandFromSymbol (ssym), NULL);
785       /* add push just before this instruction */
786       addiCodeToeBBlock (ebp, nic, ic);
787
788       nic = newiCode (IPOP, operandFromSymbol (ssym), NULL);
789       /* add pop to the end of the block */
790       addiCodeToeBBlock (ebp, nic, NULL);
791     }
792
793   if (ssym == forSym)
794     return FALSE;
795   else
796     return TRUE;
797 }
798
799 /*-----------------------------------------------------------------*/
800 /* getRegPtr - will try for PTR if not a GPR type if not spil      */
801 /*-----------------------------------------------------------------*/
802 static regs *
803 getRegPtr (iCode * ic, eBBlock * ebp, symbol * sym)
804 {
805   regs *reg;
806
807 tryAgain:
808   /* try for a ptr type */
809   if ((reg = allocReg (REG_PTR)))
810     return reg;
811
812   /* try for gpr type */
813   if ((reg = allocReg (REG_GPR)))
814     return reg;
815
816   /* we have to spil */
817   if (!spilSomething (ic, ebp, sym))
818     return NULL;
819
820   /* this looks like an infinite loop but 
821      in really selectSpil will abort  */
822   goto tryAgain;
823 }
824
825 /*-----------------------------------------------------------------*/
826 /* getRegGpr - will try for GPR if not spil                        */
827 /*-----------------------------------------------------------------*/
828 static regs *
829 getRegGpr (iCode * ic, eBBlock * ebp, symbol * sym)
830 {
831   regs *reg;
832
833 tryAgain:
834   /* try for gpr type */
835   if ((reg = allocReg (REG_GPR)))
836     return reg;
837
838   if (!ds390_ptrRegReq)
839     if ((reg = allocReg (REG_PTR)))
840       return reg;
841
842   /* we have to spil */
843   if (!spilSomething (ic, ebp, sym))
844     return NULL;
845
846   /* this looks like an infinite loop but 
847      in really selectSpil will abort  */
848   goto tryAgain;
849 }
850
851 /*-----------------------------------------------------------------*/
852 /* symHasReg - symbol has a given register                         */
853 /*-----------------------------------------------------------------*/
854 static bool
855 symHasReg (symbol * sym, regs * reg)
856 {
857   int i;
858
859   for (i = 0; i < sym->nRegs; i++)
860     if (sym->regs[i] == reg)
861       return TRUE;
862
863   return FALSE;
864 }
865
866 /*-----------------------------------------------------------------*/
867 /* deassignLRs - check the live to and if they have registers & are */
868 /*               not spilt then free up the registers              */
869 /*-----------------------------------------------------------------*/
870 static void
871 deassignLRs (iCode * ic, eBBlock * ebp)
872 {
873   symbol *sym;
874   int k;
875   symbol *result;
876
877   for (sym = hTabFirstItem (liveRanges, &k); sym;
878        sym = hTabNextItem (liveRanges, &k))
879     {
880
881       symbol *psym = NULL;
882       /* if it does not end here */
883       if (sym->liveTo > ic->seq)
884         continue;
885
886       /* if it was spilt on stack then we can 
887          mark the stack spil location as free */
888       if (sym->isspilt)
889         {
890           if (sym->stackSpil)
891             {
892               sym->usl.spillLoc->isFree = 1;
893               sym->stackSpil = 0;
894             }
895           continue;
896         }
897
898       if (!bitVectBitValue (_G.regAssigned, sym->key))
899         continue;
900
901       /* special case check if this is an IFX &
902          the privious one was a pop and the 
903          previous one was not spilt then keep track
904          of the symbol */
905       if (ic->op == IFX && ic->prev &&
906           ic->prev->op == IPOP &&
907           !ic->prev->parmPush &&
908           !OP_SYMBOL (IC_LEFT (ic->prev))->isspilt)
909         psym = OP_SYMBOL (IC_LEFT (ic->prev));
910
911       if (sym->nRegs)
912         {
913           int i = 0;
914
915           bitVectUnSetBit (_G.regAssigned, sym->key);
916
917           /* if the result of this one needs registers
918              and does not have it then assign it right
919              away */
920           if (IC_RESULT (ic) &&
921               !(SKIP_IC2 (ic) ||        /* not a special icode */
922                 ic->op == JUMPTABLE ||
923                 ic->op == IFX ||
924                 ic->op == IPUSH ||
925                 ic->op == IPOP ||
926                 ic->op == RETURN ||
927                 POINTER_SET (ic)) &&
928               (result = OP_SYMBOL (IC_RESULT (ic))) &&  /* has a result */
929               result->liveTo > ic->seq &&       /* and will live beyond this */
930               result->liveTo <= ebp->lSeq &&    /* does not go beyond this block */
931               result->regType == sym->regType &&        /* same register types */
932               result->nRegs &&  /* which needs registers */
933               !result->isspilt &&       /* and does not already have them */
934               !result->remat &&
935               !bitVectBitValue (_G.regAssigned, result->key) &&
936           /* the number of free regs + number of regs in this LR
937              can accomodate the what result Needs */
938               ((nfreeRegsType (result->regType) +
939                 sym->nRegs) >= result->nRegs)
940             )
941             {
942
943               for (i = 0; i < result->nRegs; i++)
944                 if (i < sym->nRegs)
945                   result->regs[i] = sym->regs[i];
946                 else
947                   result->regs[i] = getRegGpr (ic, ebp, result);
948
949               _G.regAssigned = bitVectSetBit (_G.regAssigned, result->key);
950
951             }
952
953           /* free the remaining */
954           for (; i < sym->nRegs; i++)
955             {
956               if (psym)
957                 {
958                   if (!symHasReg (psym, sym->regs[i]))
959                     freeReg (sym->regs[i]);
960                 }
961               else
962                 freeReg (sym->regs[i]);
963             }
964         }
965     }
966 }
967
968
969 /*-----------------------------------------------------------------*/
970 /* reassignLR - reassign this to registers                         */
971 /*-----------------------------------------------------------------*/
972 static void
973 reassignLR (operand * op)
974 {
975   symbol *sym = OP_SYMBOL (op);
976   int i;
977
978   /* not spilt any more */
979   sym->isspilt = sym->blockSpil = sym->remainSpil = 0;
980   bitVectUnSetBit (_G.spiltSet, sym->key);
981
982   _G.regAssigned = bitVectSetBit (_G.regAssigned, sym->key);
983
984   _G.blockSpil--;
985
986   for (i = 0; i < sym->nRegs; i++)
987     sym->regs[i]->isFree = 0;
988 }
989
990 /*-----------------------------------------------------------------*/
991 /* willCauseSpill - determines if allocating will cause a spill    */
992 /*-----------------------------------------------------------------*/
993 static int
994 willCauseSpill (int nr, int rt)
995 {
996   /* first check if there are any avlb registers
997      of te type required */
998   if (rt == REG_PTR)
999     {
1000       /* special case for pointer type 
1001          if pointer type not avlb then 
1002          check for type gpr */
1003       if (nFreeRegs (rt) >= nr)
1004         return 0;
1005       if (nFreeRegs (REG_GPR) >= nr)
1006         return 0;
1007     }
1008   else
1009     {
1010       if (ds390_ptrRegReq)
1011         {
1012           if (nFreeRegs (rt) >= nr)
1013             return 0;
1014         }
1015       else
1016         {
1017           if (nFreeRegs (REG_PTR) +
1018               nFreeRegs (REG_GPR) >= nr)
1019             return 0;
1020         }
1021     }
1022
1023   /* it will cause a spil */
1024   return 1;
1025 }
1026
1027 /*-----------------------------------------------------------------*/
1028 /* positionRegs - the allocator can allocate same registers to res- */
1029 /* ult and operand, if this happens make sure they are in the same */
1030 /* position as the operand otherwise chaos results                 */
1031 /*-----------------------------------------------------------------*/
1032 static void
1033 positionRegs (symbol * result, symbol * opsym, int lineno)
1034 {
1035   int count = min (result->nRegs, opsym->nRegs);
1036   int i, j = 0, shared = 0;
1037
1038   /* if the result has been spilt then cannot share */
1039   if (opsym->isspilt)
1040     return;
1041 again:
1042   shared = 0;
1043   /* first make sure that they actually share */
1044   for (i = 0; i < count; i++)
1045     {
1046       for (j = 0; j < count; j++)
1047         {
1048           if (result->regs[i] == opsym->regs[j] && i != j)
1049             {
1050               shared = 1;
1051               goto xchgPositions;
1052             }
1053         }
1054     }
1055 xchgPositions:
1056   if (shared)
1057     {
1058       regs *tmp = result->regs[i];
1059       result->regs[i] = result->regs[j];
1060       result->regs[j] = tmp;
1061       goto again;
1062     }
1063 }
1064
1065 /*-----------------------------------------------------------------*/
1066 /* serialRegAssign - serially allocate registers to the variables  */
1067 /*-----------------------------------------------------------------*/
1068 static void
1069 serialRegAssign (eBBlock ** ebbs, int count)
1070 {
1071   int i;
1072
1073   /* for all blocks */
1074   for (i = 0; i < count; i++)
1075     {
1076
1077       iCode *ic;
1078
1079       if (ebbs[i]->noPath &&
1080           (ebbs[i]->entryLabel != entryLabel &&
1081            ebbs[i]->entryLabel != returnLabel))
1082         continue;
1083
1084       /* of all instructions do */
1085       for (ic = ebbs[i]->sch; ic; ic = ic->next)
1086         {
1087
1088           /* if this is an ipop that means some live
1089              range will have to be assigned again */
1090           if (ic->op == IPOP)
1091             reassignLR (IC_LEFT (ic));
1092
1093           /* if result is present && is a true symbol */
1094           if (IC_RESULT (ic) && ic->op != IFX &&
1095               IS_TRUE_SYMOP (IC_RESULT (ic)))
1096             OP_SYMBOL (IC_RESULT (ic))->allocreq = 1;
1097
1098           /* take away registers from live
1099              ranges that end at this instruction */
1100           deassignLRs (ic, ebbs[i]);
1101
1102           /* some don't need registers */
1103           if (SKIP_IC2 (ic) ||
1104               ic->op == JUMPTABLE ||
1105               ic->op == IFX ||
1106               ic->op == IPUSH ||
1107               ic->op == IPOP ||
1108               (IC_RESULT (ic) && POINTER_SET (ic)))
1109             continue;
1110
1111           /* now we need to allocate registers
1112              only for the result */
1113           if (IC_RESULT (ic))
1114             {
1115               symbol *sym = OP_SYMBOL (IC_RESULT (ic));
1116               bitVect *spillable;
1117               int willCS;
1118               int j;
1119               int ptrRegSet = 0;
1120
1121               /* if it does not need or is spilt 
1122                  or is already assigned to registers
1123                  or will not live beyond this instructions */
1124               if (!sym->nRegs ||
1125                   sym->isspilt ||
1126                   bitVectBitValue (_G.regAssigned, sym->key) ||
1127                   sym->liveTo <= ic->seq)
1128                 continue;
1129
1130               /* if some liverange has been spilt at the block level
1131                  and this one live beyond this block then spil this
1132                  to be safe */
1133               if (_G.blockSpil && sym->liveTo > ebbs[i]->lSeq)
1134                 {
1135                   spillThis (sym);
1136                   continue;
1137                 }
1138               /* if trying to allocate this will cause
1139                  a spill and there is nothing to spill 
1140                  or this one is rematerializable then
1141                  spill this one */
1142               willCS = willCauseSpill (sym->nRegs, sym->regType);
1143               spillable = computeSpillable (ic);
1144               if (sym->remat ||
1145                   (willCS && bitVectIsZero (spillable)))
1146                 {
1147
1148                   spillThis (sym);
1149                   continue;
1150
1151                 }
1152
1153               /* if it has a spillocation & is used less than
1154                  all other live ranges then spill this */
1155                 if (willCS) {
1156                     if (sym->usl.spillLoc) {
1157                         symbol *leastUsed = leastUsedLR (liveRangesWith (spillable,
1158                                                                          allLRs, ebbs[i], ic));
1159                         if (leastUsed && leastUsed->used > sym->used) {
1160                             spillThis (sym);
1161                             continue;
1162                         }
1163                     } else {
1164                         /* if none of the liveRanges have a spillLocation then better
1165                            to spill this one than anything else already assigned to registers */
1166                         if (liveRangesWith(spillable,noSpilLoc,ebbs[i],ic)) {
1167                             spillThis (sym);
1168                             continue;
1169                         }
1170                     }
1171                 }
1172
1173               /* if we need ptr regs for the right side
1174                  then mark it */
1175               if (POINTER_GET (ic) && IS_SYMOP (IC_LEFT (ic))
1176                   && getSize (OP_SYMBOL (IC_LEFT (ic))->type)
1177                   <= (unsigned) PTRSIZE)
1178                 {
1179                   ds390_ptrRegReq++;
1180                   ptrRegSet = 1;
1181                 }
1182               /* else we assign registers to it */
1183               _G.regAssigned = bitVectSetBit (_G.regAssigned, sym->key);
1184
1185               for (j = 0; j < sym->nRegs; j++)
1186                 {
1187                   if (sym->regType == REG_PTR)
1188                     sym->regs[j] = getRegPtr (ic, ebbs[i], sym);
1189                   else
1190                     sym->regs[j] = getRegGpr (ic, ebbs[i], sym);
1191
1192                   /* if the allocation falied which means
1193                      this was spilt then break */
1194                   if (!sym->regs[j])
1195                     break;
1196                 }
1197               /* if it shares registers with operands make sure
1198                  that they are in the same position */
1199               if (IC_LEFT (ic) && IS_SYMOP (IC_LEFT (ic)) &&
1200                   OP_SYMBOL (IC_LEFT (ic))->nRegs && ic->op != '=')
1201                 positionRegs (OP_SYMBOL (IC_RESULT (ic)),
1202                               OP_SYMBOL (IC_LEFT (ic)), ic->lineno);
1203               /* do the same for the right operand */
1204               if (IC_RIGHT (ic) && IS_SYMOP (IC_RIGHT (ic)) &&
1205                   OP_SYMBOL (IC_RIGHT (ic))->nRegs)
1206                 positionRegs (OP_SYMBOL (IC_RESULT (ic)),
1207                               OP_SYMBOL (IC_RIGHT (ic)), ic->lineno);
1208
1209               if (ptrRegSet)
1210                 {
1211                   ds390_ptrRegReq--;
1212                   ptrRegSet = 0;
1213                 }
1214
1215             }
1216         }
1217     }
1218 }
1219
1220 /*-----------------------------------------------------------------*/
1221 /* rUmaskForOp :- returns register mask for an operand             */
1222 /*-----------------------------------------------------------------*/
1223 static bitVect *
1224 rUmaskForOp (operand * op)
1225 {
1226   bitVect *rumask;
1227   symbol *sym;
1228   int j;
1229
1230   /* only temporaries are assigned registers */
1231   if (!IS_ITEMP (op))
1232     return NULL;
1233
1234   sym = OP_SYMBOL (op);
1235
1236   /* if spilt or no registers assigned to it
1237      then nothing */
1238   if (sym->isspilt || !sym->nRegs)
1239     return NULL;
1240
1241   rumask = newBitVect (ds390_nRegs);
1242
1243   for (j = 0; j < sym->nRegs; j++)
1244     {
1245       rumask = bitVectSetBit (rumask,
1246                               sym->regs[j]->rIdx);
1247     }
1248
1249   return rumask;
1250 }
1251
1252 /*-----------------------------------------------------------------*/
1253 /* regsUsedIniCode :- returns bit vector of registers used in iCode */
1254 /*-----------------------------------------------------------------*/
1255 static bitVect *
1256 regsUsedIniCode (iCode * ic)
1257 {
1258   bitVect *rmask = newBitVect (ds390_nRegs);
1259
1260   /* do the special cases first */
1261   if (ic->op == IFX)
1262     {
1263       rmask = bitVectUnion (rmask,
1264                             rUmaskForOp (IC_COND (ic)));
1265       goto ret;
1266     }
1267
1268   /* for the jumptable */
1269   if (ic->op == JUMPTABLE)
1270     {
1271       rmask = bitVectUnion (rmask,
1272                             rUmaskForOp (IC_JTCOND (ic)));
1273
1274       goto ret;
1275     }
1276
1277   /* of all other cases */
1278   if (IC_LEFT (ic))
1279     rmask = bitVectUnion (rmask,
1280                           rUmaskForOp (IC_LEFT (ic)));
1281
1282
1283   if (IC_RIGHT (ic))
1284     rmask = bitVectUnion (rmask,
1285                           rUmaskForOp (IC_RIGHT (ic)));
1286
1287   if (IC_RESULT (ic))
1288     rmask = bitVectUnion (rmask,
1289                           rUmaskForOp (IC_RESULT (ic)));
1290
1291 ret:
1292   return rmask;
1293 }
1294
1295 /*-----------------------------------------------------------------*/
1296 /* createRegMask - for each instruction will determine the regsUsed */
1297 /*-----------------------------------------------------------------*/
1298 static void
1299 createRegMask (eBBlock ** ebbs, int count)
1300 {
1301   int i;
1302
1303   /* for all blocks */
1304   for (i = 0; i < count; i++)
1305     {
1306       iCode *ic;
1307
1308       if (ebbs[i]->noPath &&
1309           (ebbs[i]->entryLabel != entryLabel &&
1310            ebbs[i]->entryLabel != returnLabel))
1311         continue;
1312
1313       /* for all instructions */
1314       for (ic = ebbs[i]->sch; ic; ic = ic->next)
1315         {
1316
1317           int j;
1318
1319           if (SKIP_IC2 (ic) || !ic->rlive)
1320             continue;
1321
1322           /* first mark the registers used in this
1323              instruction */
1324           ic->rUsed = regsUsedIniCode (ic);
1325           _G.funcrUsed = bitVectUnion (_G.funcrUsed, ic->rUsed);
1326
1327           /* now create the register mask for those 
1328              registers that are in use : this is a
1329              super set of ic->rUsed */
1330           ic->rMask = newBitVect (ds390_nRegs + 1);
1331
1332           /* for all live Ranges alive at this point */
1333           for (j = 1; j < ic->rlive->size; j++)
1334             {
1335               symbol *sym;
1336               int k;
1337
1338               /* if not alive then continue */
1339               if (!bitVectBitValue (ic->rlive, j))
1340                 continue;
1341
1342               /* find the live range we are interested in */
1343               if (!(sym = hTabItemWithKey (liveRanges, j)))
1344                 {
1345                   werror (E_INTERNAL_ERROR, __FILE__, __LINE__,
1346                           "createRegMask cannot find live range");
1347                   exit (0);
1348                 }
1349
1350               /* if no register assigned to it */
1351               if (!sym->nRegs || sym->isspilt)
1352                 continue;
1353
1354               /* for all the registers allocated to it */
1355               for (k = 0; k < sym->nRegs; k++)
1356                 if (sym->regs[k])
1357                   ic->rMask =
1358                     bitVectSetBit (ic->rMask, sym->regs[k]->rIdx);
1359             }
1360         }
1361     }
1362 }
1363
1364 /*-----------------------------------------------------------------*/
1365 /* rematStr - returns the rematerialized string for a remat var    */
1366 /*-----------------------------------------------------------------*/
1367 static char *
1368 rematStr (symbol * sym)
1369 {
1370   char *s = buffer;
1371   iCode *ic = sym->rematiCode;
1372
1373   while (1)
1374     {
1375
1376       /* if plus or minus print the right hand side */
1377       if (ic->op == '+' || ic->op == '-')
1378         {
1379           sprintf (s, "0x%04x %c ", (int) operandLitValue (IC_RIGHT (ic)),
1380                    ic->op);
1381           s += strlen (s);
1382           ic = OP_SYMBOL (IC_LEFT (ic))->rematiCode;
1383           continue;
1384         }
1385
1386       /* we reached the end */
1387       sprintf (s, "%s", OP_SYMBOL (IC_LEFT (ic))->rname);
1388       break;
1389     }
1390
1391   return buffer;
1392 }
1393
1394 /*-----------------------------------------------------------------*/
1395 /* regTypeNum - computes the type & number of registers required   */
1396 /*-----------------------------------------------------------------*/
1397 static void
1398 regTypeNum ()
1399 {
1400   symbol *sym;
1401   int k;
1402   iCode *ic;
1403
1404   /* for each live range do */
1405   for (sym = hTabFirstItem (liveRanges, &k); sym;
1406        sym = hTabNextItem (liveRanges, &k))
1407     {
1408
1409       /* if used zero times then no registers needed */
1410       if ((sym->liveTo - sym->liveFrom) == 0)
1411         continue;
1412
1413
1414       /* if the live range is a temporary */
1415       if (sym->isitmp)
1416         {
1417
1418           /* if the type is marked as a conditional */
1419           if (sym->regType == REG_CND)
1420             continue;
1421
1422           /* if used in return only then we don't 
1423              need registers */
1424           if (sym->ruonly || sym->accuse)
1425             {
1426               if (IS_AGGREGATE (sym->type) || sym->isptr)
1427                 sym->type = aggrToPtr (sym->type, FALSE);
1428               continue;
1429             }
1430
1431           /* if the symbol has only one definition &
1432              that definition is a get_pointer and the
1433              pointer we are getting is rematerializable and
1434              in "data" space */
1435
1436           if (bitVectnBitsOn (sym->defs) == 1 &&
1437               (ic = hTabItemWithKey (iCodehTab,
1438                                      bitVectFirstBit (sym->defs))) &&
1439               POINTER_GET (ic) &&
1440               !IS_BITVAR (sym->etype))
1441             {
1442
1443
1444               /* if remat in data space */
1445               if (OP_SYMBOL (IC_LEFT (ic))->remat &&
1446               // sym->type &&
1447                   DCL_TYPE (aggrToPtr (sym->type, FALSE)) == POINTER)
1448                 {
1449
1450                   /* create a psuedo symbol & force a spil */
1451                   symbol *psym = newSymbol (rematStr (OP_SYMBOL (IC_LEFT (ic))), 1);
1452                   psym->type = sym->type;
1453                   psym->etype = sym->etype;
1454                   strcpy (psym->rname, psym->name);
1455                   sym->isspilt = 1;
1456                   sym->usl.spillLoc = psym;
1457                   continue;
1458                 }
1459
1460               /* if in data space or idata space then try to
1461                  allocate pointer register */
1462
1463             }
1464
1465           /* if not then we require registers */
1466           sym->nRegs = ((IS_AGGREGATE (sym->type) || sym->isptr) ?
1467                         getSize (sym->type = aggrToPtr (sym->type, FALSE)) :
1468                         getSize (sym->type));
1469
1470           if (sym->nRegs > 4)
1471             {
1472               fprintf (stderr, "allocated more than 4 or 0 registers for type ");
1473               printTypeChain (sym->type, stderr);
1474               fprintf (stderr, "\n");
1475             }
1476
1477           /* determine the type of register required */
1478           if (sym->nRegs == 1 &&
1479               IS_PTR (sym->type) &&
1480               sym->uptr)
1481             sym->regType = REG_PTR;
1482           else
1483             sym->regType = REG_GPR;
1484
1485         }
1486       else
1487         /* for the first run we don't provide */
1488         /* registers for true symbols we will */
1489         /* see how things go                  */
1490         sym->nRegs = 0;
1491     }
1492
1493 }
1494
1495 /*-----------------------------------------------------------------*/
1496 /* freeAllRegs - mark all registers as free                        */
1497 /*-----------------------------------------------------------------*/
1498 static void
1499 freeAllRegs ()
1500 {
1501   int i;
1502
1503   for (i = 0; i < ds390_nRegs; i++)
1504     regs390[i].isFree = 1;
1505 }
1506
1507 /*-----------------------------------------------------------------*/
1508 /* deallocStackSpil - this will set the stack pointer back         */
1509 /*-----------------------------------------------------------------*/
1510 static
1511 DEFSETFUNC (deallocStackSpil)
1512 {
1513   symbol *sym = item;
1514
1515   deallocLocal (sym);
1516   return 0;
1517 }
1518
1519 /*-----------------------------------------------------------------*/
1520 /* farSpacePackable - returns the packable icode for far variables */
1521 /*-----------------------------------------------------------------*/
1522 static iCode *
1523 farSpacePackable (iCode * ic)
1524 {
1525   iCode *dic;
1526
1527   /* go thru till we find a definition for the
1528      symbol on the right */
1529   for (dic = ic->prev; dic; dic = dic->prev)
1530     {
1531
1532       /* if the definition is a call then no */
1533       if ((dic->op == CALL || dic->op == PCALL) &&
1534           IC_RESULT (dic)->key == IC_RIGHT (ic)->key)
1535         {
1536           return NULL;
1537         }
1538
1539       /* if shift by unknown amount then not */
1540       if ((dic->op == LEFT_OP || dic->op == RIGHT_OP) &&
1541           IC_RESULT (dic)->key == IC_RIGHT (ic)->key)
1542         return NULL;
1543
1544       /* if pointer get and size > 1 */
1545       if (POINTER_GET (dic) &&
1546           getSize (aggrToPtr (operandType (IC_LEFT (dic)), FALSE)) > 1)
1547         return NULL;
1548
1549       if (POINTER_SET (dic) &&
1550           getSize (aggrToPtr (operandType (IC_RESULT (dic)), FALSE)) > 1)
1551         return NULL;
1552
1553       /* if any three is a true symbol in far space */
1554       if (IC_RESULT (dic) &&
1555           IS_TRUE_SYMOP (IC_RESULT (dic)) &&
1556           isOperandInFarSpace (IC_RESULT (dic)))
1557         return NULL;
1558
1559       if (IC_RIGHT (dic) &&
1560           IS_TRUE_SYMOP (IC_RIGHT (dic)) &&
1561           isOperandInFarSpace (IC_RIGHT (dic)) &&
1562           !isOperandEqual (IC_RIGHT (dic), IC_RESULT (ic)))
1563         return NULL;
1564
1565       if (IC_LEFT (dic) &&
1566           IS_TRUE_SYMOP (IC_LEFT (dic)) &&
1567           isOperandInFarSpace (IC_LEFT (dic)) &&
1568           !isOperandEqual (IC_LEFT (dic), IC_RESULT (ic)))
1569         return NULL;
1570
1571       if (isOperandEqual (IC_RIGHT (ic), IC_RESULT (dic)))
1572         {
1573           if ((dic->op == LEFT_OP ||
1574                dic->op == RIGHT_OP ||
1575                dic->op == '-') &&
1576               IS_OP_LITERAL (IC_RIGHT (dic)))
1577             return NULL;
1578           else
1579             return dic;
1580         }
1581     }
1582
1583   return NULL;
1584 }
1585
1586 /*-----------------------------------------------------------------*/
1587 /* packRegsForAssign - register reduction for assignment           */
1588 /*-----------------------------------------------------------------*/
1589 static int
1590 packRegsForAssign (iCode * ic, eBBlock * ebp)
1591 {
1592   iCode *dic, *sic;
1593
1594   if (!IS_ITEMP (IC_RIGHT (ic)) ||
1595       OP_SYMBOL (IC_RIGHT (ic))->isind ||
1596       OP_LIVETO (IC_RIGHT (ic)) > ic->seq)
1597     {
1598       return 0;
1599     }
1600
1601   /* if the true symbol is defined in far space or on stack
1602      then we should not since this will increase register pressure */
1603 #if 0
1604   if (isOperandInFarSpace (IC_RESULT (ic)))
1605     {
1606       if ((dic = farSpacePackable (ic)))
1607         goto pack;
1608       else
1609         return 0;
1610     }
1611 #else
1612   if (isOperandInFarSpace(IC_RESULT(ic)) && !farSpacePackable(ic)) {
1613     return 0;
1614   }
1615 #endif
1616
1617   /* find the definition of iTempNN scanning backwards if we find a 
1618      a use of the true symbol in before we find the definition then 
1619      we cannot */
1620   for (dic = ic->prev; dic; dic = dic->prev)
1621     {
1622       /* if there is a function call then don't pack it */
1623       if ((dic->op == CALL || dic->op == PCALL))
1624         {
1625           dic = NULL;
1626           break;
1627         }
1628
1629       if (SKIP_IC2 (dic))
1630         continue;
1631
1632       if (IS_TRUE_SYMOP (IC_RESULT (dic)) &&
1633           IS_OP_VOLATILE (IC_RESULT (dic)))
1634         {
1635           dic = NULL;
1636           break;
1637         }
1638
1639       if (IS_SYMOP (IC_RESULT (dic)) &&
1640           IC_RESULT (dic)->key == IC_RIGHT (ic)->key)
1641         {
1642           if (POINTER_SET (dic))
1643             dic = NULL;
1644
1645           break;
1646         }
1647
1648       if (IS_SYMOP (IC_RIGHT (dic)) &&
1649           (IC_RIGHT (dic)->key == IC_RESULT (ic)->key ||
1650            IC_RIGHT (dic)->key == IC_RIGHT (ic)->key))
1651         {
1652           dic = NULL;
1653           break;
1654         }
1655
1656       if (IS_SYMOP (IC_LEFT (dic)) &&
1657           (IC_LEFT (dic)->key == IC_RESULT (ic)->key ||
1658            IC_LEFT (dic)->key == IC_RIGHT (ic)->key))
1659         {
1660           dic = NULL;
1661           break;
1662         }
1663
1664       if (POINTER_SET (dic) &&
1665           IC_RESULT (dic)->key == IC_RESULT (ic)->key)
1666         {
1667           dic = NULL;
1668           break;
1669         }
1670     }
1671
1672   if (!dic)
1673     return 0;                   /* did not find */
1674
1675   /* if the result is on stack or iaccess then it must be
1676      the same atleast one of the operands */
1677   if (OP_SYMBOL (IC_RESULT (ic))->onStack ||
1678       OP_SYMBOL (IC_RESULT (ic))->iaccess)
1679     {
1680
1681       /* the operation has only one symbol
1682          operator then we can pack */
1683       if ((IC_LEFT (dic) && !IS_SYMOP (IC_LEFT (dic))) ||
1684           (IC_RIGHT (dic) && !IS_SYMOP (IC_RIGHT (dic))))
1685         goto pack;
1686
1687       if (!((IC_LEFT (dic) &&
1688              IC_RESULT (ic)->key == IC_LEFT (dic)->key) ||
1689             (IC_RIGHT (dic) &&
1690              IC_RESULT (ic)->key == IC_RIGHT (dic)->key)))
1691         return 0;
1692     }
1693 pack:
1694   /* found the definition */
1695   /* replace the result with the result of */
1696   /* this assignment and remove this assignment */
1697   IC_RESULT (dic) = IC_RESULT (ic);
1698
1699   if (IS_ITEMP (IC_RESULT (dic)) && OP_SYMBOL (IC_RESULT (dic))->liveFrom > dic->seq)
1700     {
1701       OP_SYMBOL (IC_RESULT (dic))->liveFrom = dic->seq;
1702     }
1703   /* delete from liverange table also 
1704      delete from all the points inbetween and the new
1705      one */
1706   for (sic = dic; sic != ic; sic = sic->next)
1707     {
1708       bitVectUnSetBit (sic->rlive, IC_RESULT (ic)->key);
1709       if (IS_ITEMP (IC_RESULT (dic)))
1710         bitVectSetBit (sic->rlive, IC_RESULT (dic)->key);
1711     }
1712
1713   remiCodeFromeBBlock (ebp, ic);
1714   hTabDeleteItem (&iCodehTab, ic->key, ic, DELETE_ITEM, NULL);
1715   OP_DEFS (IC_RESULT (dic)) = bitVectSetBit (OP_DEFS (IC_RESULT (dic)), dic->key);
1716   return 1;
1717
1718 }
1719
1720 /*-----------------------------------------------------------------*/
1721 /* findAssignToSym : scanning backwards looks for first assig found */
1722 /*-----------------------------------------------------------------*/
1723 static iCode *
1724 findAssignToSym (operand * op, iCode * ic)
1725 {
1726   iCode *dic;
1727
1728   for (dic = ic->prev; dic; dic = dic->prev)
1729     {
1730
1731       /* if definition by assignment */
1732       if (dic->op == '=' &&
1733           !POINTER_SET (dic) &&
1734           IC_RESULT (dic)->key == op->key
1735 /*          &&  IS_TRUE_SYMOP(IC_RIGHT(dic)) */
1736         )
1737         {
1738
1739           /* we are interested only if defined in far space */
1740           /* or in stack space in case of + & - */
1741
1742           /* if assigned to a non-symbol then return
1743              true */
1744           if (!IS_SYMOP (IC_RIGHT (dic)))
1745             break;
1746
1747           /* if the symbol is in far space then
1748              we should not */
1749           if (isOperandInFarSpace (IC_RIGHT (dic)))
1750             return NULL;
1751
1752           /* for + & - operations make sure that
1753              if it is on the stack it is the same
1754              as one of the three operands */
1755           if ((ic->op == '+' || ic->op == '-') &&
1756               OP_SYMBOL (IC_RIGHT (dic))->onStack)
1757             {
1758
1759               if (IC_RESULT (ic)->key != IC_RIGHT (dic)->key &&
1760                   IC_LEFT (ic)->key != IC_RIGHT (dic)->key &&
1761                   IC_RIGHT (ic)->key != IC_RIGHT (dic)->key)
1762                 return NULL;
1763             }
1764
1765           break;
1766
1767         }
1768
1769       /* if we find an usage then we cannot delete it */
1770       if (IC_LEFT (dic) && IC_LEFT (dic)->key == op->key)
1771         return NULL;
1772
1773       if (IC_RIGHT (dic) && IC_RIGHT (dic)->key == op->key)
1774         return NULL;
1775
1776       if (POINTER_SET (dic) && IC_RESULT (dic)->key == op->key)
1777         return NULL;
1778     }
1779
1780   /* now make sure that the right side of dic
1781      is not defined between ic & dic */
1782   if (dic)
1783     {
1784       iCode *sic = dic->next;
1785
1786       for (; sic != ic; sic = sic->next)
1787         if (IC_RESULT (sic) &&
1788             IC_RESULT (sic)->key == IC_RIGHT (dic)->key)
1789           return NULL;
1790     }
1791
1792   return dic;
1793
1794
1795 }
1796
1797 /*-----------------------------------------------------------------*/
1798 /* packRegsForSupport :- reduce some registers for support calls   */
1799 /*-----------------------------------------------------------------*/
1800 static int
1801 packRegsForSupport (iCode * ic, eBBlock * ebp)
1802 {
1803   int change = 0;
1804   /* for the left & right operand :- look to see if the
1805      left was assigned a true symbol in far space in that
1806      case replace them */
1807   if (IS_ITEMP (IC_LEFT (ic)) &&
1808       OP_SYMBOL (IC_LEFT (ic))->liveTo <= ic->seq)
1809     {
1810       iCode *dic = findAssignToSym (IC_LEFT (ic), ic);
1811       iCode *sic;
1812
1813       if (!dic)
1814         goto right;
1815
1816       /* found it we need to remove it from the
1817          block */
1818       for (sic = dic; sic != ic; sic = sic->next)
1819         bitVectUnSetBit (sic->rlive, IC_LEFT (ic)->key);
1820
1821       IC_LEFT (ic)->operand.symOperand =
1822         IC_RIGHT (dic)->operand.symOperand;
1823       IC_LEFT (ic)->key = IC_RIGHT (dic)->operand.symOperand->key;
1824       remiCodeFromeBBlock (ebp, dic);
1825       hTabDeleteItem (&iCodehTab, dic->key, dic, DELETE_ITEM, NULL);
1826       change++;
1827     }
1828
1829   /* do the same for the right operand */
1830 right:
1831   if (!change &&
1832       IS_ITEMP (IC_RIGHT (ic)) &&
1833       OP_SYMBOL (IC_RIGHT (ic))->liveTo <= ic->seq)
1834     {
1835       iCode *dic = findAssignToSym (IC_RIGHT (ic), ic);
1836       iCode *sic;
1837
1838       if (!dic)
1839         return change;
1840
1841       /* if this is a subtraction & the result
1842          is a true symbol in far space then don't pack */
1843       if (ic->op == '-' && IS_TRUE_SYMOP (IC_RESULT (dic)))
1844         {
1845           sym_link *etype = getSpec (operandType (IC_RESULT (dic)));
1846           if (IN_FARSPACE (SPEC_OCLS (etype)))
1847             return change;
1848         }
1849       /* found it we need to remove it from the
1850          block */
1851       for (sic = dic; sic != ic; sic = sic->next)
1852         bitVectUnSetBit (sic->rlive, IC_RIGHT (ic)->key);
1853
1854       IC_RIGHT (ic)->operand.symOperand =
1855         IC_RIGHT (dic)->operand.symOperand;
1856       IC_RIGHT (ic)->key = IC_RIGHT (dic)->operand.symOperand->key;
1857
1858       remiCodeFromeBBlock (ebp, dic);
1859       hTabDeleteItem (&iCodehTab, dic->key, dic, DELETE_ITEM, NULL);
1860       change++;
1861     }
1862
1863   return change;
1864 }
1865
1866 #define IS_OP_RUONLY(x) (x && IS_SYMOP(x) && OP_SYMBOL(x)->ruonly)
1867
1868
1869 /*-----------------------------------------------------------------*/
1870 /* packRegsForOneuse : - will reduce some registers for single Use */
1871 /*-----------------------------------------------------------------*/
1872 static iCode *
1873 packRegsForOneuse (iCode * ic, operand * op, eBBlock * ebp)
1874 {
1875 #if 1
1876
1877   /* I can't figure out how to make this safe yet. */
1878   if ((int)ic+(int)op+(int)ebp) {
1879     return 0;
1880   } else {
1881     return 0;
1882   }
1883   return NULL;
1884
1885 #else
1886   bitVect *uses;
1887   iCode *dic, *sic;
1888
1889   /* if returning a literal then do nothing */
1890   if (!IS_SYMOP (op))
1891     return NULL;
1892
1893   /* only upto 2 bytes since we cannot predict
1894      the usage of b, & acc */
1895   if (getSize (operandType (op)) > (fReturnSizeDS390 - 2) &&
1896       ic->op != RETURN &&
1897       ic->op != SEND &&
1898       !POINTER_SET (ic) &&
1899       !POINTER_GET (ic))
1900     return NULL;
1901
1902   /* this routine will mark the a symbol as used in one 
1903      instruction use only && if the defintion is local 
1904      (ie. within the basic block) && has only one definition &&
1905      that definiion is either a return value from a 
1906      function or does not contain any variables in
1907      far space */
1908   uses = bitVectCopy (OP_USES (op));
1909   bitVectUnSetBit (uses, ic->key);      /* take away this iCode */
1910   if (!bitVectIsZero (uses))    /* has other uses */
1911     return NULL;
1912
1913   /* if it has only one defintion */
1914   if (bitVectnBitsOn (OP_DEFS (op)) > 1)
1915     return NULL;                /* has more than one definition */
1916
1917   /* get the that definition */
1918   if (!(dic =
1919         hTabItemWithKey (iCodehTab,
1920                          bitVectFirstBit (OP_DEFS (op)))))
1921     return NULL;
1922
1923   /* if that only usage is a cast */
1924   if (dic->op == CAST) {
1925     /* to a bigger type */
1926     if (getSize(OP_SYM_TYPE(IC_RESULT(dic))) > 
1927         getSize(OP_SYM_TYPE(IC_RIGHT(dic)))) {
1928       /* than we can not, since we cannot predict the usage of b & acc */
1929       return NULL;
1930     }
1931   }
1932
1933   /* found the definition now check if it is local */
1934   if (dic->seq < ebp->fSeq ||
1935       dic->seq > ebp->lSeq)
1936     return NULL;                /* non-local */
1937
1938   /* now check if it is the return from
1939      a function call */
1940   if (dic->op == CALL || dic->op == PCALL)
1941     {
1942       if (ic->op != SEND && ic->op != RETURN)
1943         {
1944           OP_SYMBOL (op)->ruonly = 1;
1945           return dic;
1946         }
1947       dic = dic->next;
1948     }
1949
1950
1951   /* otherwise check that the definition does
1952      not contain any symbols in far space */
1953   if (isOperandInFarSpace (IC_LEFT (dic)) ||
1954       isOperandInFarSpace (IC_RIGHT (dic)) ||
1955       IS_OP_RUONLY (IC_LEFT (ic)) ||
1956       IS_OP_RUONLY (IC_RIGHT (ic)))
1957     {
1958       return NULL;
1959     }
1960
1961   /* if pointer set then make sure the pointer
1962      is one byte */
1963   if (POINTER_SET (dic) &&
1964       !IS_DATA_PTR (aggrToPtr (operandType (IC_RESULT (dic)), FALSE)))
1965     return NULL;
1966
1967   if (POINTER_GET (dic) &&
1968       !IS_DATA_PTR (aggrToPtr (operandType (IC_LEFT (dic)), FALSE)))
1969     return NULL;
1970
1971   sic = dic;
1972
1973   /* also make sure the intervenening instructions
1974      don't have any thing in far space */
1975   for (dic = dic->next; dic && dic != ic; dic = dic->next)
1976     {
1977
1978       /* if there is an intervening function call then no */
1979       if (dic->op == CALL || dic->op == PCALL)
1980         return NULL;
1981       /* if pointer set then make sure the pointer
1982          is one byte */
1983       if (POINTER_SET (dic) &&
1984           !IS_DATA_PTR (aggrToPtr (operandType (IC_RESULT (dic)), FALSE)))
1985         return NULL;
1986
1987       if (POINTER_GET (dic) &&
1988           !IS_DATA_PTR (aggrToPtr (operandType (IC_LEFT (dic)), FALSE)))
1989         return NULL;
1990
1991       /* if address of & the result is remat the okay */
1992       if (dic->op == ADDRESS_OF &&
1993           OP_SYMBOL (IC_RESULT (dic))->remat)
1994         continue;
1995
1996       /* if operand has size of three or more & this
1997          operation is a '*','/' or '%' then 'b' may
1998          cause a problem */
1999       if ((dic->op == '%' || dic->op == '/' || dic->op == '*') &&
2000           getSize (operandType (op)) >= 3)
2001         return NULL;
2002
2003       /* if left or right or result is in far space */
2004       if (isOperandInFarSpace (IC_LEFT (dic)) ||
2005           isOperandInFarSpace (IC_RIGHT (dic)) ||
2006           isOperandInFarSpace (IC_RESULT (dic)) ||
2007           IS_OP_RUONLY (IC_LEFT (dic)) ||
2008           IS_OP_RUONLY (IC_RIGHT (dic)) ||
2009           IS_OP_RUONLY (IC_RESULT (dic)))
2010         {
2011           return NULL;
2012         }
2013     }
2014
2015   OP_SYMBOL (op)->ruonly = 1;
2016   return sic;
2017 #endif
2018 }
2019
2020 /*-----------------------------------------------------------------*/
2021 /* isBitwiseOptimizable - requirements of JEAN LOUIS VERN          */
2022 /*-----------------------------------------------------------------*/
2023 static bool
2024 isBitwiseOptimizable (iCode * ic)
2025 {
2026   sym_link *ltype = getSpec (operandType (IC_LEFT (ic)));
2027   sym_link *rtype = getSpec (operandType (IC_RIGHT (ic)));
2028
2029   /* bitwise operations are considered optimizable
2030      under the following conditions (Jean-Louis VERN) 
2031
2032      x & lit
2033      bit & bit
2034      bit & x
2035      bit ^ bit
2036      bit ^ x
2037      x   ^ lit
2038      x   | lit
2039      bit | bit
2040      bit | x
2041    */
2042   if ( IS_LITERAL (rtype) ||
2043       (IS_BITVAR (ltype) && IN_BITSPACE (SPEC_OCLS (ltype))))
2044     return TRUE;
2045   else
2046     return FALSE;
2047 }
2048
2049 /*-----------------------------------------------------------------*/
2050 /* packRegsForAccUse - pack registers for acc use                  */
2051 /*-----------------------------------------------------------------*/
2052 static void
2053 packRegsForAccUse (iCode * ic)
2054 {
2055   iCode *uic;
2056
2057   /* if + or - then it has to be one byte result */
2058   if ((ic->op == '+' || ic->op == '-')
2059       && getSize (operandType (IC_RESULT (ic))) > 1)
2060     return;
2061
2062   /* if shift operation make sure right side is not a literal */
2063   if (ic->op == RIGHT_OP &&
2064       (isOperandLiteral (IC_RIGHT (ic)) ||
2065        getSize (operandType (IC_RESULT (ic))) > 1))
2066     return;
2067
2068   if (ic->op == LEFT_OP &&
2069       (isOperandLiteral (IC_RIGHT (ic)) ||
2070        getSize (operandType (IC_RESULT (ic))) > 1))
2071     return;
2072
2073   if (IS_BITWISE_OP (ic) &&
2074       getSize (operandType (IC_RESULT (ic))) > 1)
2075     return;
2076
2077
2078   /* has only one definition */
2079   if (bitVectnBitsOn (OP_DEFS (IC_RESULT (ic))) > 1)
2080     return;
2081
2082   /* has only one use */
2083   if (bitVectnBitsOn (OP_USES (IC_RESULT (ic))) > 1)
2084     return;
2085
2086   /* and the usage immediately follows this iCode */
2087   if (!(uic = hTabItemWithKey (iCodehTab,
2088                                bitVectFirstBit (OP_USES (IC_RESULT (ic))))))
2089     return;
2090
2091   if (ic->next != uic)
2092     return;
2093
2094   /* if it is a conditional branch then we definitely can */
2095   if (uic->op == IFX)
2096     goto accuse;
2097
2098   if (uic->op == JUMPTABLE)
2099     return;
2100
2101   /* if the usage is not is an assignment
2102      or an arithmetic / bitwise / shift operation then not */
2103   if (POINTER_SET (uic) &&
2104       getSize (aggrToPtr (operandType (IC_RESULT (uic)), FALSE)) > 1)
2105     return;
2106
2107   if (uic->op != '=' &&
2108       !IS_ARITHMETIC_OP (uic) &&
2109       !IS_BITWISE_OP (uic) &&
2110       uic->op != LEFT_OP &&
2111       uic->op != RIGHT_OP)
2112     return;
2113
2114   /* if used in ^ operation then make sure right is not a 
2115      literl */
2116   if (uic->op == '^' && isOperandLiteral (IC_RIGHT (uic)))
2117     return;
2118
2119   /* if shift operation make sure right side is not a literal */
2120   if (uic->op == RIGHT_OP &&
2121       (isOperandLiteral (IC_RIGHT (uic)) ||
2122        getSize (operandType (IC_RESULT (uic))) > 1))
2123     return;
2124
2125   if (uic->op == LEFT_OP &&
2126       (isOperandLiteral (IC_RIGHT (uic)) ||
2127        getSize (operandType (IC_RESULT (uic))) > 1))
2128     return;
2129
2130   /* make sure that the result of this icode is not on the
2131      stack, since acc is used to compute stack offset */
2132   if (IS_TRUE_SYMOP (IC_RESULT (uic)) &&
2133       OP_SYMBOL (IC_RESULT (uic))->onStack)
2134     return;
2135
2136   /* if either one of them in far space then we cannot */
2137   if ((IS_TRUE_SYMOP (IC_LEFT (uic)) &&
2138        isOperandInFarSpace (IC_LEFT (uic))) ||
2139       (IS_TRUE_SYMOP (IC_RIGHT (uic)) &&
2140        isOperandInFarSpace (IC_RIGHT (uic))))
2141     return;
2142
2143   /* if the usage has only one operand then we can */
2144   if (IC_LEFT (uic) == NULL ||
2145       IC_RIGHT (uic) == NULL)
2146     goto accuse;
2147
2148   /* make sure this is on the left side if not
2149      a '+' since '+' is commutative */
2150   if (ic->op != '+' &&
2151       IC_LEFT (uic)->key != IC_RESULT (ic)->key)
2152     return;
2153
2154 #if 0
2155   // this is too dangerous and need further restrictions
2156   // see bug #447547
2157
2158   /* if one of them is a literal then we can */
2159   if ((IC_LEFT (uic) && IS_OP_LITERAL (IC_LEFT (uic))) ||
2160       (IC_RIGHT (uic) && IS_OP_LITERAL (IC_RIGHT (uic))))
2161     {
2162       OP_SYMBOL (IC_RESULT (ic))->accuse = 1;
2163       return;
2164     }
2165 #endif
2166
2167   /* if the other one is not on stack then we can */
2168   if (IC_LEFT (uic)->key == IC_RESULT (ic)->key &&
2169       (IS_ITEMP (IC_RIGHT (uic)) ||
2170        (IS_TRUE_SYMOP (IC_RIGHT (uic)) &&
2171         !OP_SYMBOL (IC_RIGHT (uic))->onStack)))
2172     goto accuse;
2173
2174   if (IC_RIGHT (uic)->key == IC_RESULT (ic)->key &&
2175       (IS_ITEMP (IC_LEFT (uic)) ||
2176        (IS_TRUE_SYMOP (IC_LEFT (uic)) &&
2177         !OP_SYMBOL (IC_LEFT (uic))->onStack)))
2178     goto accuse;
2179
2180   return;
2181
2182 accuse:
2183   OP_SYMBOL (IC_RESULT (ic))->accuse = 1;
2184
2185
2186 }
2187
2188 /*-----------------------------------------------------------------*/
2189 /* packForPush - hueristics to reduce iCode for pushing            */
2190 /*-----------------------------------------------------------------*/
2191 static void
2192 packForPush (iCode * ic, eBBlock * ebp)
2193 {
2194   iCode *dic, *lic;
2195   bitVect *dbv;
2196
2197   if (ic->op != IPUSH || !IS_ITEMP (IC_LEFT (ic)))
2198     return;
2199
2200   /* must have only definition & one usage */
2201   if (bitVectnBitsOn (OP_DEFS (IC_LEFT (ic))) != 1 ||
2202       bitVectnBitsOn (OP_USES (IC_LEFT (ic))) != 1)
2203     return;
2204
2205   /* find the definition */
2206   if (!(dic = hTabItemWithKey (iCodehTab,
2207                                bitVectFirstBit (OP_DEFS (IC_LEFT (ic))))))
2208     return;
2209
2210   if (dic->op != '=' || POINTER_SET (dic))
2211     return;
2212
2213   /* make sure the right side does not have any definitions
2214      inbetween */
2215   dbv = OP_DEFS(IC_RIGHT(dic));
2216   for (lic = ic; lic && lic != dic ; lic = lic->prev) {
2217           if (bitVectBitValue(dbv,lic->key)) return ;
2218   }
2219   /* make sure they have the same type */
2220   {
2221     sym_link *itype=operandType(IC_LEFT(ic));
2222     sym_link *ditype=operandType(IC_RIGHT(dic));
2223
2224     if (SPEC_USIGN(itype)!=SPEC_USIGN(ditype) ||
2225         SPEC_LONG(itype)!=SPEC_LONG(ditype))
2226       return;
2227   }
2228   /* extend the live range of replaced operand if needed */
2229   if (OP_SYMBOL(IC_RIGHT(dic))->liveTo < ic->seq) {
2230           OP_SYMBOL(IC_RIGHT(dic))->liveTo = ic->seq;
2231   }
2232   /* we now we know that it has one & only one def & use
2233      and the that the definition is an assignment */
2234   IC_LEFT (ic) = IC_RIGHT (dic);
2235
2236   remiCodeFromeBBlock (ebp, dic);
2237   hTabDeleteItem (&iCodehTab, dic->key, dic, DELETE_ITEM, NULL);
2238 }
2239
2240 /*-----------------------------------------------------------------*/
2241 /* packRegisters - does some transformations to reduce register    */
2242 /*                   pressure                                      */
2243 /*-----------------------------------------------------------------*/
2244 static void
2245 packRegisters (eBBlock * ebp)
2246 {
2247   iCode *ic;
2248   int change = 0;
2249
2250   while (1)
2251     {
2252
2253       change = 0;
2254
2255       /* look for assignments of the form */
2256       /* iTempNN = TRueSym (someoperation) SomeOperand */
2257       /*       ....                       */
2258       /* TrueSym := iTempNN:1             */
2259       for (ic = ebp->sch; ic; ic = ic->next)
2260         {
2261
2262
2263           /* find assignment of the form TrueSym := iTempNN:1 */
2264           if (ic->op == '=' && !POINTER_SET (ic))
2265             change += packRegsForAssign (ic, ebp);
2266         }
2267
2268       if (!change)
2269         break;
2270     }
2271
2272   for (ic = ebp->sch; ic; ic = ic->next)
2273     {
2274
2275       /* if this is an itemp & result of a address of a true sym 
2276          then mark this as rematerialisable   */
2277       if (ic->op == ADDRESS_OF &&
2278           IS_ITEMP (IC_RESULT (ic)) &&
2279           IS_TRUE_SYMOP (IC_LEFT (ic)) &&
2280           bitVectnBitsOn (OP_DEFS (IC_RESULT (ic))) == 1 &&
2281           !OP_SYMBOL (IC_LEFT (ic))->onStack)
2282         {
2283
2284           OP_SYMBOL (IC_RESULT (ic))->remat = 1;
2285           OP_SYMBOL (IC_RESULT (ic))->rematiCode = ic;
2286           OP_SYMBOL (IC_RESULT (ic))->usl.spillLoc = NULL;
2287
2288         }
2289
2290       /* if straight assignment then carry remat flag if
2291          this is the only definition */
2292       if (ic->op == '=' &&
2293           !POINTER_SET (ic) &&
2294           IS_SYMOP (IC_RIGHT (ic)) &&
2295           OP_SYMBOL (IC_RIGHT (ic))->remat &&
2296           bitVectnBitsOn (OP_SYMBOL (IC_RESULT (ic))->defs) <= 1)
2297         {
2298
2299           OP_SYMBOL (IC_RESULT (ic))->remat =
2300             OP_SYMBOL (IC_RIGHT (ic))->remat;
2301           OP_SYMBOL (IC_RESULT (ic))->rematiCode =
2302             OP_SYMBOL (IC_RIGHT (ic))->rematiCode;
2303         }
2304
2305       /* if this is a +/- operation with a rematerizable 
2306          then mark this as rematerializable as well */
2307       if ((ic->op == '+' || ic->op == '-') &&
2308           (IS_SYMOP (IC_LEFT (ic)) &&
2309            IS_ITEMP (IC_RESULT (ic)) &&
2310            OP_SYMBOL (IC_LEFT (ic))->remat &&
2311            bitVectnBitsOn (OP_DEFS (IC_RESULT (ic))) == 1 &&
2312            IS_OP_LITERAL (IC_RIGHT (ic))))
2313         {
2314
2315           //int i = operandLitValue(IC_RIGHT(ic));
2316           OP_SYMBOL (IC_RESULT (ic))->remat = 1;
2317           OP_SYMBOL (IC_RESULT (ic))->rematiCode = ic;
2318           OP_SYMBOL (IC_RESULT (ic))->usl.spillLoc = NULL;
2319         }
2320
2321       /* mark the pointer usages */
2322       if (POINTER_SET (ic))
2323         OP_SYMBOL (IC_RESULT (ic))->uptr = 1;
2324
2325       if (POINTER_GET (ic))
2326         OP_SYMBOL (IC_LEFT (ic))->uptr = 1;
2327
2328       if (!SKIP_IC2 (ic))
2329         {
2330           /* if we are using a symbol on the stack
2331              then we should say ds390_ptrRegReq */
2332           if (ic->op == IFX && IS_SYMOP (IC_COND (ic)))
2333             ds390_ptrRegReq += ((OP_SYMBOL (IC_COND (ic))->onStack ||
2334                                  OP_SYMBOL (IC_COND (ic))->iaccess) ? 1 : 0);
2335           else if (ic->op == JUMPTABLE && IS_SYMOP (IC_JTCOND (ic)))
2336             ds390_ptrRegReq += ((OP_SYMBOL (IC_JTCOND (ic))->onStack ||
2337                               OP_SYMBOL (IC_JTCOND (ic))->iaccess) ? 1 : 0);
2338           else
2339             {
2340               if (IS_SYMOP (IC_LEFT (ic)))
2341                 ds390_ptrRegReq += ((OP_SYMBOL (IC_LEFT (ic))->onStack ||
2342                                 OP_SYMBOL (IC_LEFT (ic))->iaccess) ? 1 : 0);
2343               if (IS_SYMOP (IC_RIGHT (ic)))
2344                 ds390_ptrRegReq += ((OP_SYMBOL (IC_RIGHT (ic))->onStack ||
2345                                OP_SYMBOL (IC_RIGHT (ic))->iaccess) ? 1 : 0);
2346               if (IS_SYMOP (IC_RESULT (ic)))
2347                 ds390_ptrRegReq += ((OP_SYMBOL (IC_RESULT (ic))->onStack ||
2348                               OP_SYMBOL (IC_RESULT (ic))->iaccess) ? 1 : 0);
2349             }
2350         }
2351
2352 #if 0
2353       /* if the condition of an if instruction
2354          is defined in the previous instruction then
2355          mark the itemp as a conditional */
2356       if ((IS_CONDITIONAL (ic) ||
2357            (IS_BITWISE_OP(ic) && isBitwiseOptimizable(ic))) &&
2358           ic->next && ic->next->op == IFX &&
2359           isOperandEqual (IC_RESULT (ic), IC_COND (ic->next)) &&
2360           OP_SYMBOL (IC_RESULT (ic))->liveTo <= ic->next->seq)
2361         {
2362
2363           OP_SYMBOL (IC_RESULT (ic))->regType = REG_CND;
2364           continue;
2365         }
2366 #else
2367       /* if the condition of an if instruction
2368          is defined in the previous instruction and
2369          this is the only usage then
2370          mark the itemp as a conditional */
2371       if ((IS_CONDITIONAL (ic) ||
2372            (IS_BITWISE_OP(ic) && isBitwiseOptimizable (ic))) &&
2373           ic->next && ic->next->op == IFX &&
2374           bitVectnBitsOn (OP_USES(IC_RESULT(ic)))==1 &&
2375           isOperandEqual (IC_RESULT (ic), IC_COND (ic->next)) &&
2376           OP_SYMBOL (IC_RESULT (ic))->liveTo <= ic->next->seq)
2377         {
2378           OP_SYMBOL (IC_RESULT (ic))->regType = REG_CND;
2379           continue;
2380         }
2381 #endif
2382
2383       /* reduce for support function calls */
2384       if (ic->supportRtn || ic->op == '+' || ic->op == '-')
2385         packRegsForSupport (ic, ebp);
2386
2387       /* some cases the redundant moves can
2388          can be eliminated for return statements */
2389       if ((ic->op == RETURN || ic->op == SEND) &&
2390           !isOperandInFarSpace (IC_LEFT (ic)) &&
2391           !options.model)
2392         packRegsForOneuse (ic, IC_LEFT (ic), ebp);
2393
2394       /* if pointer set & left has a size more than
2395          one and right is not in far space */
2396       if (POINTER_SET (ic) &&
2397           !isOperandInFarSpace (IC_RIGHT (ic)) &&
2398           !OP_SYMBOL (IC_RESULT (ic))->remat &&
2399           !IS_OP_RUONLY (IC_RIGHT (ic)) &&
2400           getSize (aggrToPtr (operandType (IC_RESULT (ic)), FALSE)) > 1)
2401
2402         packRegsForOneuse (ic, IC_RESULT (ic), ebp);
2403
2404       /* if pointer get */
2405       if (POINTER_GET (ic) &&
2406           !isOperandInFarSpace (IC_RESULT (ic)) &&
2407           !OP_SYMBOL (IC_LEFT (ic))->remat &&
2408           !IS_OP_RUONLY (IC_RESULT (ic)) &&
2409           getSize (aggrToPtr (operandType (IC_LEFT (ic)), FALSE)) > 1)
2410
2411         packRegsForOneuse (ic, IC_LEFT (ic), ebp);
2412
2413
2414       /* if this is cast for intergral promotion then
2415          check if only use of  the definition of the 
2416          operand being casted/ if yes then replace
2417          the result of that arithmetic operation with 
2418          this result and get rid of the cast */
2419       if (ic->op == CAST)
2420         {
2421           sym_link *fromType = operandType (IC_RIGHT (ic));
2422           sym_link *toType = operandType (IC_LEFT (ic));
2423
2424           if (IS_INTEGRAL (fromType) && IS_INTEGRAL (toType) &&
2425               getSize (fromType) != getSize (toType) &&
2426               SPEC_USIGN (fromType) == SPEC_USIGN (toType))
2427             {
2428
2429               iCode *dic = packRegsForOneuse (ic, IC_RIGHT (ic), ebp);
2430               if (dic)
2431                 {
2432                   if (IS_ARITHMETIC_OP (dic))
2433                     {
2434                       IC_RESULT (dic) = IC_RESULT (ic);
2435                       remiCodeFromeBBlock (ebp, ic);
2436                       hTabDeleteItem (&iCodehTab, ic->key, ic, DELETE_ITEM, NULL);
2437                       OP_DEFS (IC_RESULT (dic)) = bitVectSetBit (OP_DEFS (IC_RESULT (dic)), dic->key);
2438                       ic = ic->prev;
2439                     }
2440                   else
2441                     OP_SYMBOL (IC_RIGHT (ic))->ruonly = 0;
2442                 }
2443             }
2444           else
2445             {
2446
2447               /* if the type from and type to are the same
2448                  then if this is the only use then packit */
2449               if (compareType (operandType (IC_RIGHT (ic)),
2450                              operandType (IC_LEFT (ic))) == 1)
2451                 {
2452                   iCode *dic = packRegsForOneuse (ic, IC_RIGHT (ic), ebp);
2453                   if (dic)
2454                     {
2455                       IC_RESULT (dic) = IC_RESULT (ic);
2456                       remiCodeFromeBBlock (ebp, ic);
2457                       hTabDeleteItem (&iCodehTab, ic->key, ic, DELETE_ITEM, NULL);
2458                       OP_DEFS (IC_RESULT (dic)) = bitVectSetBit (OP_DEFS (IC_RESULT (dic)), dic->key);
2459                       ic = ic->prev;
2460                     }
2461                 }
2462             }
2463         }
2464
2465       /* pack for PUSH 
2466          iTempNN := (some variable in farspace) V1
2467          push iTempNN ;
2468          -------------
2469          push V1
2470        */
2471       if (ic->op == IPUSH)
2472         {
2473           packForPush (ic, ebp);
2474         }
2475
2476
2477       /* pack registers for accumulator use, when the
2478          result of an arithmetic or bit wise operation
2479          has only one use, that use is immediately following
2480          the defintion and the using iCode has only one
2481          operand or has two operands but one is literal &
2482          the result of that operation is not on stack then
2483          we can leave the result of this operation in acc:b
2484          combination */
2485       if ((IS_ARITHMETIC_OP (ic)
2486
2487            || IS_BITWISE_OP (ic)
2488
2489            || ic->op == LEFT_OP || ic->op == RIGHT_OP
2490
2491           ) &&
2492           IS_ITEMP (IC_RESULT (ic)) &&
2493           getSize (operandType (IC_RESULT (ic))) <= 2)
2494
2495         packRegsForAccUse (ic);
2496
2497     }
2498 }
2499
2500 /*-----------------------------------------------------------------*/
2501 /* assignRegisters - assigns registers to each live range as need  */
2502 /*-----------------------------------------------------------------*/
2503 void
2504 ds390_assignRegisters (eBBlock ** ebbs, int count)
2505 {
2506   iCode *ic;
2507   int i;
2508
2509   setToNull ((void *) &_G.funcrUsed);
2510   ds390_ptrRegReq = _G.stackExtend = _G.dataExtend = 0;
2511   ds390_nRegs = 8;
2512
2513   /* change assignments this will remove some
2514      live ranges reducing some register pressure */
2515   for (i = 0; i < count; i++)
2516     packRegisters (ebbs[i]);
2517
2518   if (options.dump_pack)
2519     dumpEbbsToFileExt (DUMP_PACK, ebbs, count);
2520
2521   /* first determine for each live range the number of 
2522      registers & the type of registers required for each */
2523   regTypeNum ();
2524
2525   /* and serially allocate registers */
2526   serialRegAssign (ebbs, count);
2527
2528   /* if stack was extended then tell the user */
2529   if (_G.stackExtend)
2530     {
2531 /*      werror(W_TOOMANY_SPILS,"stack", */
2532 /*             _G.stackExtend,currFunc->name,""); */
2533       _G.stackExtend = 0;
2534     }
2535
2536   if (_G.dataExtend)
2537     {
2538 /*      werror(W_TOOMANY_SPILS,"data space", */
2539 /*             _G.dataExtend,currFunc->name,""); */
2540       _G.dataExtend = 0;
2541     }
2542
2543   /* after that create the register mask
2544      for each of the instruction */
2545   createRegMask (ebbs, count);
2546
2547   /* redo that offsets for stacked automatic variables */
2548   redoStackOffsets ();
2549
2550   if (options.dump_rassgn)
2551     dumpEbbsToFileExt (DUMP_RASSGN, ebbs, count);
2552
2553   /* do the overlaysegment stuff SDCCmem.c */
2554   doOverlays (ebbs, count);
2555
2556   /* now get back the chain */
2557   ic = iCodeLabelOptimize (iCodeFromeBBlock (ebbs, count));
2558
2559
2560   gen390Code (ic);
2561
2562   /* free up any _G.stackSpil locations allocated */
2563   applyToSet (_G.stackSpil, deallocStackSpil);
2564   _G.slocNum = 0;
2565   setToNull ((void **) &_G.stackSpil);
2566   setToNull ((void **) &_G.spiltSet);
2567   /* mark all registers as free */
2568   freeAllRegs ();
2569
2570   return;
2571 }