2013-09-12 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / debug / ra1.C
blobb6f7bfc588d8729f7b544264b6540ea9d993f0c4
1 /* { dg-options "-fcompare-debug" } */
3 enum signop { SIGNED, UNSIGNED };
4 enum tree_code { FOO, BAR };
5 enum tree_code_class { tcc_type, tcc_other };
6 extern enum tree_code_class tree_code_type[];
8 struct tree_base {
9   enum tree_code code : 16;
10   unsigned unsigned_flag : 1;
13 struct tree_def {
14   tree_base base;
15   struct {
16     int precision;
17   } type_common;
20 typedef tree_def *tree;
22 struct storage_ref
24   storage_ref (const long *, unsigned int, unsigned int);
26   const long *val;
27   unsigned int len;
28   unsigned int precision;
31 inline storage_ref::storage_ref (const long *val_in,
32                                  unsigned int len_in,
33                                  unsigned int precision_in)
34   : val (val_in), len (len_in), precision (precision_in)
38 struct hwi_with_prec
40   long val;
41   unsigned int precision;
42   signop sgn;
45 inline storage_ref
46 decompose (long *scratch, unsigned int precision,
47            const hwi_with_prec &x)
49   scratch[0] = x.val;
50   if (x.sgn == SIGNED || x.val >= 0 || precision <= sizeof (long) * 8)
51     return storage_ref (scratch, 1, precision);
52   scratch[1] = 0;
53   return storage_ref (scratch, 2, precision);
56 extern void tree_class_check_failed (int) __attribute__ ((__noreturn__));
58 inline tree
59 tree_class_check (tree t, const enum tree_code_class cls, int x)
61   if (tree_code_type[t->base.code] != cls)
62     tree_class_check_failed (x);
63   return t;
66 tree wide_int_to_tree (tree, const storage_ref &);
68 tree
69 build_int_cstu (tree type, unsigned long val)
71   hwi_with_prec x;
72   x.val = val;
73   x.precision = tree_class_check (type, tcc_type, 1)->type_common.precision;
74   x.sgn = (signop) tree_class_check (type, tcc_type, 2)->base.unsigned_flag;
75   long scratch[2];
76   return wide_int_to_tree (type, decompose (scratch, x.precision, x));