OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.dg/] [tree-ssa/] [pr38385.c] - Diff between revs 298 and 338

Only display areas with differences | Details | Blame | View Log

Rev 298 Rev 338
/* { dg-do compile } */
/* { dg-do compile } */
/* { dg-options "-O2 -ftree-loop-distribution" } */
/* { dg-options "-O2 -ftree-loop-distribution" } */
 
 
struct rtx_def
struct rtx_def
{
{
  int a;
  int a;
};
};
 
 
typedef struct rtx_def *rtx;
typedef struct rtx_def *rtx;
 
 
struct rd {
struct rd {
  int alternative_enabled_p[100];
  int alternative_enabled_p[100];
  rtx operand[100];
  rtx operand[100];
  int n_operands;
  int n_operands;
};
};
 
 
rtx this_insn;
rtx this_insn;
int n_reloads;
int n_reloads;
int n_replacements;
int n_replacements;
int n_earlyclobbers;
int n_earlyclobbers;
int replace_reloads;
int replace_reloads;
int hard_regs_live_known;
int hard_regs_live_known;
short* static_reload_reg_p;
short* static_reload_reg_p;
struct rd recog_data;
struct rd recog_data;
 
 
int
int
find_reloads (rtx insn, int replace, int ind_levels, int live_known,
find_reloads (rtx insn, int replace, int ind_levels, int live_known,
              short *reload_reg_p)
              short *reload_reg_p)
{
{
  int i, j;
  int i, j;
  int noperands = replace;
  int noperands = replace;
 
 
  int no_input_reloads = 0;
  int no_input_reloads = 0;
  int n_alternatives = replace;
  int n_alternatives = replace;
  char this_alternative_match_win[30];
  char this_alternative_match_win[30];
  char this_alternative_win[30];
  char this_alternative_win[30];
  char this_alternative_earlyclobber[30];
  char this_alternative_earlyclobber[30];
  int this_alternative_matches[30];
  int this_alternative_matches[30];
  int goal_alternative[30];
  int goal_alternative[30];
  int this_alternative_number;
  int this_alternative_number;
 
 
  char goal_alternative_match_win[30];
  char goal_alternative_match_win[30];
  char goal_alternative_win[30];
  char goal_alternative_win[30];
  int best;
  int best;
 
 
  int operand_mode[30];
  int operand_mode[30];
  int retval = 0;
  int retval = 0;
 
 
  for (this_alternative_number = 0;
  for (this_alternative_number = 0;
       this_alternative_number < n_alternatives;
       this_alternative_number < n_alternatives;
       this_alternative_number++)
       this_alternative_number++)
    {
    {
 
 
      int losers = 0;
      int losers = 0;
      int bad = 0;
      int bad = 0;
 
 
      if (!recog_data.alternative_enabled_p[this_alternative_number])
      if (!recog_data.alternative_enabled_p[this_alternative_number])
        {
        {
          int i;
          int i;
 
 
          for (i = 0; i < recog_data.n_operands; i++)
          for (i = 0; i < recog_data.n_operands; i++)
            ;
            ;
 
 
          continue;
          continue;
        }
        }
 
 
      for (i = 0; i < noperands; i++)
      for (i = 0; i < noperands; i++)
        if (this_alternative_earlyclobber[i]
        if (this_alternative_earlyclobber[i]
            && (this_alternative_win[i] || this_alternative_match_win[i]))
            && (this_alternative_win[i] || this_alternative_match_win[i]))
          {
          {
            if (j != noperands)
            if (j != noperands)
              {
              {
                losers++;
                losers++;
 
 
                for (j = 0; j < noperands; j++)
                for (j = 0; j < noperands; j++)
                  if (this_alternative_matches[j] == i
                  if (this_alternative_matches[j] == i
                      && this_alternative_match_win[j])
                      && this_alternative_match_win[j])
                    {
                    {
                      this_alternative_win[j] = 0;
                      this_alternative_win[j] = 0;
                      this_alternative_match_win[j] = 0;
                      this_alternative_match_win[j] = 0;
                      losers++;
                      losers++;
                    }
                    }
              }
              }
          }
          }
 
 
      if (losers == 0)
      if (losers == 0)
        {
        {
          for (i = 0; i < noperands; i++)
          for (i = 0; i < noperands; i++)
            {
            {
              goal_alternative_win[i] = 0;
              goal_alternative_win[i] = 0;
              goal_alternative_match_win[i] = 0;
              goal_alternative_match_win[i] = 0;
            }
            }
 
 
          goto finish;
          goto finish;
        }
        }
 
 
      if (! bad && best > losers)
      if (! bad && best > losers)
        {
        {
          for (i = 0; i < noperands; i++)
          for (i = 0; i < noperands; i++)
            {
            {
              goal_alternative[i] = 0;
              goal_alternative[i] = 0;
              goal_alternative_win[i] = 0;
              goal_alternative_win[i] = 0;
            }
            }
        }
        }
    }
    }
 
 
 
 
 finish:
 finish:
 
 
  for (i = 0; i < noperands; i++)
  for (i = 0; i < noperands; i++)
    if (! goal_alternative_win[i])
    if (! goal_alternative_win[i])
      {
      {
        rtx op = recog_data.operand[i];
        rtx op = recog_data.operand[i];
        int mode = operand_mode[i];
        int mode = operand_mode[i];
 
 
        if (((ix86_preferred_reload_class ((op), (goal_alternative[i])) == 2)
        if (((ix86_preferred_reload_class ((op), (goal_alternative[i])) == 2)
             || no_input_reloads)
             || no_input_reloads)
            && mode != 0)
            && mode != 0)
          {}
          {}
      }
      }
 
 
  return retval;
  return retval;
}
}
 
 
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.