]>
git.saurik.com Git - bison.git/blob - src/relation.c
2 Copyright (C) 2002, 2004 Free Software Foundation, Inc.
4 This file is part of Bison, the GNU Compiler Compiler.
6 Bison is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 Bison is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with Bison; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 Boston, MA 02110-1301, USA. */
29 relation_print (relation r
, relation_node size
, FILE *out
)
34 for (i
= 0; i
< size
; ++i
)
36 fprintf (out
, "%3lu: ", (unsigned long int) i
);
38 for (j
= 0; r
[i
][j
] != END_NODE
; ++j
)
39 fprintf (out
, "%3lu ", (unsigned long int) r
[i
][j
]);
46 /*---------------------------------------------------------------.
47 | digraph & traverse. |
49 | The following variables are used as common storage between the |
51 `---------------------------------------------------------------*/
54 static relation_nodes INDEX
;
55 static relation_nodes VERTICES
;
56 static relation_node top
;
57 static relation_node infinity
;
61 traverse (relation_node i
)
67 INDEX
[i
] = height
= top
;
70 for (j
= 0; R
[i
][j
] != END_NODE
; ++j
)
72 if (INDEX
[R
[i
][j
]] == 0)
75 if (INDEX
[i
] > INDEX
[R
[i
][j
]])
76 INDEX
[i
] = INDEX
[R
[i
][j
]];
78 bitset_or (F
[i
], F
[i
], F
[R
[i
][j
]]);
81 if (INDEX
[i
] == height
)
90 bitset_copy (F
[j
], F
[i
]);
96 relation_digraph (relation r
, relation_node size
, bitsetv
*function
)
101 INDEX
= xcalloc (size
+ 1, sizeof *INDEX
);
102 VERTICES
= xnmalloc (size
+ 1, sizeof *VERTICES
);
108 for (i
= 0; i
< size
; i
++)
109 if (INDEX
[i
] == 0 && R
[i
])
119 /*-------------------------------------------.
120 | Destructively transpose R_ARG, of size N. |
121 `-------------------------------------------*/
124 relation_transpose (relation
*R_arg
, relation_node n
)
127 relation new_R
= xnmalloc (n
, sizeof *new_R
);
128 /* END_R[I] -- next entry of NEW_R[I]. */
129 relation end_R
= xnmalloc (n
, sizeof *end_R
);
130 /* NEDGES[I] -- total size of NEW_R[I]. */
131 size_t *nedges
= xcalloc (n
, sizeof *nedges
);
135 if (trace_flag
& trace_sets
)
137 fputs ("relation_transpose: input\n", stderr
);
138 relation_print (*R_arg
, n
, stderr
);
142 for (i
= 0; i
< n
; i
++)
144 for (j
= 0; (*R_arg
)[i
][j
] != END_NODE
; ++j
)
145 ++nedges
[(*R_arg
)[i
][j
]];
148 for (i
= 0; i
< n
; i
++)
150 relation_node
*sp
= NULL
;
153 sp
= xnmalloc (nedges
[i
] + 1, sizeof *sp
);
154 sp
[nedges
[i
]] = END_NODE
;
161 for (i
= 0; i
< n
; i
++)
163 for (j
= 0; (*R_arg
)[i
][j
] != END_NODE
; ++j
)
165 *end_R
[(*R_arg
)[i
][j
]] = i
;
166 ++end_R
[(*R_arg
)[i
][j
]];
172 /* Free the input: it is replaced with the result. */
173 for (i
= 0; i
< n
; i
++)
177 if (trace_flag
& trace_sets
)
179 fputs ("relation_transpose: output\n", stderr
);
180 relation_print (new_R
, n
, stderr
);