Subversion Repositories tendra.SVN

Rev

Blame | Last modification | View Log | RSS feed

/*
                 Crown Copyright (c) 1997
    
    This TenDRA(r) Computer Program is subject to Copyright
    owned by the United Kingdom Secretary of State for Defence
    acting through the Defence Evaluation and Research Agency
    (DERA).  It is made available to Recipients with a
    royalty-free licence for its use, reproduction, transfer
    to other parties and amendment for any purpose not excluding
    product development provided that any such use et cetera
    shall be deemed to be acceptance of the following conditions:-
    
        (1) Its Recipients shall ensure that this Notice is
        reproduced upon any copies or amended versions of it;
    
        (2) Any amended version of it shall be clearly marked to
        show both the nature of and the organisation responsible
        for the relevant amendment or amendments;
    
        (3) Its onward transfer from a recipient to another
        party shall be deemed to be that party's acceptance of
        these conditions;
    
        (4) DERA gives no warranty or assurance as to its
        quality or suitability for any purpose and DERA accepts
        no liability whatsoever in relation to any use to which
        it may be put.
*/


/*      $Id: regalloc.c,v 1.1.1.1 1998/01/17 15:56:01 release Exp $      */

#ifndef lint
static char vcid[] = "$Id: regalloc.c,v 1.1.1.1 1998/01/17 15:56:01 release Exp $";
#endif /* lint */


/*
  regalloc.c

  functions to allocate register and stack space for a proc.
  The following changes are made to the ident tags:
  
  props(ident) contains inreg_bits or infreg_bits, no(ident)==0
  => value is a t reg (chosen in make_code()).
  props(ident) contains reg bits =>  no(ident) is sreg.
  props(ident) is instore => no = displacement*64+SP.
*/

/*
$Log: regalloc.c,v $
 * Revision 1.1.1.1  1998/01/17  15:56:01  release
 * First version to be checked into rolling release.
 *
 * Revision 1.5  1995/08/23  16:07:20  john
 * Changed comment
 *
 * Revision 1.4  1995/05/25  15:33:27  john
 * Fixed register allocation
 *
 * Revision 1.3  1995/05/23  13:25:44  john
 * Changed to use FIRST_S_REG rather than constant
 *
 * Revision 1.2  1995/05/16  10:55:06  john
 * Changes for spec 3.1
 *
 * Revision 1.1.1.1  1995/03/23  10:39:19  john
 * Entered into CVS
 *
 * Revision 1.7  1995/03/23  10:13:26  john
 * Fix to register allocation
 *
*/

#include "config.h"
#include "expmacs.h"
#include "tags.h"
#include "procrectypes.h"
#include "procrecs.h"
#include "bitsmacs.h"
#include "maxminmacs.h"
#include "regable.h"
#include "regmacs.h"
#include "common_types.h"
#include "frames.h"
#include "reg_defs.h"
#include "coder.h"
#include "regalloc.h"

spacereq zerospace = {
  0, 0, 0
};

spacereq maxspace
    PROTO_N ( (a,b) )
    PROTO_T ( spacereq a X spacereq b )
{
  a.fixdump |= b.fixdump;
  a.fltdump |= b.fltdump;
  a.stack = max (a.stack, b.stack);
  return a;
}

static int spareparregs = 0;

/*
  reg_alloc
  Delivers a spacereq which gives the local stack bit 
  requirement in the stack field and the s regs used as bit 
  positions in the fixdump, sdump and ddump fields for fixed 
  point, single and double floats respectively.
  e is a proc body . freefixed and freefloat are the number of 
  fixed and floating s regs available. These are initialised at 
  the outer level but may be reduced by usage in paralloc 
*/
spacereq regalloc
    PROTO_N ( ( e, freefixed, freefloat, stack ) )
    PROTO_T ( exp e X int freefixed X int freefloat X int stack )
{
  int   n = name (e);
  exp s = son (e);
  spacereq def;

  if (n == ident_tag) {
    int   ffix = freefixed;
    int   ffloat = freefloat;
    int  st = stack;
    int old_spareparregs = spareparregs;
    spacereq body;
    ash a;
    if (props (e) & defer_bit) {
       /* the tag declared is transparent to code production */
      def = zerospace;
    }
    else {
      a = ashof (sh (s));
      if (name(s) != compound_tag && name(s) != nof_tag 
          && name(s) != concatnof_tag ) {
        def = regalloc (s, freefixed, freefloat, stack);
      }
      else  { 
     /*elements of tuples are done separately so evaluate above dec*/
        if (a.ashalign <= 64 || (stack & 0x40) == 0) {
          st = stack + ((a.ashsize + 63) & ~63);
        }       
        else {
          st = stack + 64 + ((a.ashsize + 63) & ~63);
        }
        def = regalloc (s, freefixed, freefloat, st);
      }     
      if ((props (e) & inreg_bits) == 0 && fixregable (e) && no (e) < ffix) {
        /* suitable for s reg , no(e) has been set
           up by weights */
        props (e) |= (inreg_bits | sreguse);
        no (e) = ffix + 8;      /* will be in s reg , note s0 = $9 */
        def.fixdump |= (1 << (no(e)-FIRST_S_REG)/*ffix*/);      
        ffix -= 1;
        /* def.fixdump |= (1<<no(e)); */
      }
      else
        if ((props (e) & infreg_bits) == 0
            && floatregable (e) && no (e) < ffloat) {
          /* suitable for float s reg , no(e) has
             been set up by weights */
          props (e) |= (infreg_bits | sreguse);
          no (e) = ffloat + 1;  /* will be in s reg,note start from $f9*/
          def.fltdump |=(1<<ffloat);
          ffloat -= 1;
          /* have another look at this */
        }
        else
          if ((props (e) & inanyreg) == 0) {
            if (fixregable(e) && PossParReg(e) && spareparregs > 0){
              props(e) |= inreg_bits;
              no(e) = NO_REG;
              spareparregs--;
            }   
            else
            /* not suitable for reg allocation */
              if (name (son (e)) == val_tag && !isvar (e) && !isvis(e)) {
                exp t = pt (e);
                for (; t != nilexp;) {
                  exp p = pt(t);
                  setname (t, val_tag);
                  son(t) = nilexp;
                  no(t) = no (son (e));
                  props(t) = 0;
                  pt(t) = nilexp;
                  t = p;
                }
                pt (e) = nilexp;
                props (e) |= defer_bit;
                def = zerospace;
              }
              else
                if (name (son (e)) == name_tag && !isvar (e) && !isvis(e)) {
                  /* must have been forced  - defer it */
                  props (e) |= defer_bit;
                  def = zerospace;
                }
                else 
                  if (isparam(e)) {
                    if(props(son(e)) != 0){
                      spareparregs++;
                    }
                    no(e) = 0;
                    /* don't know framesize yet; 
                     displacement in no(son(e)) */
                  }
                  else {                /* allocate on stack */
                    int basereg = (Has_vcallees)?local_reg:((Has_fp)?FP:SP);
                    if (a.ashalign <= 64 || (stack & 0x40) == 0) {
                      st = stack + ((a.ashsize + 63) & ~63);
                    }
                    else { 
                      stack += 64;
                      st = stack + ((a.ashsize + 63) & ~63);
                    }   
                    def.stack = max (def.stack, st);
                    no (e) = stack * 2 + basereg;
                  }
          }
          else
            if (no (e) == 101) {
              no(e) = RESULT_REG;
              /* Use the result register (the result register has the 
             same number for both floating and fixed point results */
            }
      /* else  allocation of stack like regs in make_code */
    }
    body = regalloc (bro (s), ffix, ffloat, st);
    spareparregs = old_spareparregs;
    return maxspace (body, def);
  }
  else                          /* recurse on all expressions in tree */
    if (n == case_tag) {
      return regalloc (s, freefixed, freefloat, stack);
    }
    else
      if (n != name_tag && n!= env_offset_tag && n != general_env_offset_tag 
          && s != nilexp) {
        def = regalloc (s, freefixed, freefloat, stack);
        while (!last (s)) {
          s = bro (s);
          def = maxspace (def, regalloc (s, freefixed, freefloat, stack));
        }
        return def;
      }
      else {
        def = zerospace;
        def.stack = stack;
        return def;
      }
}