aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/pr55116-2.c
blob: 7ef8eade06b66d4edf42a3a160b8d6ed8748debd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* { dg-do compile { target { ! { ia32 } } } } */
/* { dg-options "-O2 -mx32 -maddress-mode=long" } */

typedef struct rtx_def *rtx;
enum rtx_code { MINUS };
union rtunion_def {
  rtx rt_rtx;
};
typedef union rtunion_def rtunion;
struct rtx_def {
  enum rtx_code code: 16;
  union u {
    rtunion fld[1];
  }
  u;
};
rtx simplify_binary_operation (enum rtx_code code, int mode,
			       rtx op0, rtx op1);
struct simplify_plus_minus_op_data {
  rtx op;
  short neg;
};
void simplify_plus_minus (enum rtx_code code, int mode, rtx op0, rtx op1)
{
  struct simplify_plus_minus_op_data ops[8];
  rtx tem = (rtx) 0;
  int n_ops = 2, input_ops = 2;
  int changed, canonicalized = 0;
  int i, j;
  __builtin_memset (ops, 0, sizeof (ops));
  do
    {
      changed = 0;
      for (i = 0; i < n_ops; i++)
	{
	  rtx this_op = ops[i].op;
	  int this_neg = ops[i].neg;
	  enum rtx_code this_code = ((enum rtx_code) (this_op)->code);
	  switch (this_code)
	    {
	    case MINUS:
	      if (n_ops == 7)
		return;
	      n_ops++;
	      input_ops++;
	      changed = 1;
	      canonicalized |= this_neg; 
	      break;
	    }
	}
    }
  while (changed);
  do 
    {
      j =  n_ops - 1;
      for (i = n_ops - 1; j >= 0; j--)
	{
	  rtx lhs = ops[j].op, rhs = ops[i].op;
	  int lneg = ops[j].neg, rneg = ops[i].neg;
	  if (lhs != 0 && rhs != 0)
	    {
	      enum rtx_code ncode = MINUS;
	      if (((enum rtx_code) (lhs)->code) == MINUS)
		tem = simplify_binary_operation (ncode, mode, lhs, rhs);
	      if (tem && ! (((enum rtx_code) (tem)->code) == MINUS 
			    && ((((((tem)->u.fld[0]).rt_rtx))->u.fld[0]).rt_rtx) == lhs
			    && ((((((tem)->u.fld[0]).rt_rtx))->u.fld[1]).rt_rtx) == rhs))
		{
		  lneg &= rneg;
		  ops[i].op = tem;
		  ops[i].neg = lneg;
		  ops[j].op = (rtx) 0;
		  changed = 1;
		  canonicalized = 1;
		}
	    }
	}
      for (i = 0, j = 0; j < n_ops; j++)
	if (ops[j].op)
	  {
	    ops[i] = ops[j];
	    i++;
	  }
    }
  while (changed);
}