2 /**-------------------------------------------------------------------**
4 **-------------------------------------------------------------------**
6 **-------------------------------------------------------------------**
7 ** First version: june 11th 2005 **
8 **-------------------------------------------------------------------**/
11 /******************************************************************************
12 * CLooG : the Chunky Loop Generator (experimental) *
13 ******************************************************************************
15 * Copyright (C) 2001-2005 Cedric Bastoul *
17 * This library is free software; you can redistribute it and/or *
18 * modify it under the terms of the GNU Lesser General Public *
19 * License as published by the Free Software Foundation; either *
20 * version 2.1 of the License, or (at your option) any later version. *
22 * This library is distributed in the hope that it will be useful, *
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
25 * Lesser General Public License for more details. *
27 * You should have received a copy of the GNU Lesser General Public *
28 * License along with this library; if not, write to the Free Software *
29 * Foundation, Inc., 51 Franklin Street, Fifth Floor, *
30 * Boston, MA 02110-1301 USA *
32 * CLooG, the Chunky Loop Generator *
33 * Written by Cedric Bastoul, Cedric.Bastoul@inria.fr *
35 ******************************************************************************/
36 /* CAUTION: the english used for comments is probably the worst you ever read,
37 * please feel free to correct and improve it !
42 # include "../include/cloog/cloog.h"
45 /******************************************************************************
46 * Memory leaks hunting *
47 ******************************************************************************/
51 * These functions and global variables are devoted to memory leaks hunting: we
52 * want to know at each moment how many CloogBlock structures had been allocated
53 * (cloog_block_allocated) and how many had been freed (cloog_block_freed).
54 * Each time a CloogBlock structure is allocated, a call to the function
55 * cloog_block_leak_up() must be carried out, and respectively
56 * cloog_block_leak_down() when a CloogBlock structure is freed. The special
57 * variable cloog_block_max gives the maximal number of CloogBlock structures
58 * simultaneously alive (i.e. allocated and non-freed) in memory.
59 * - June 11th 2005: first version.
63 static void cloog_block_leak_up(CloogState
*state
)
65 state
->block_allocated
++;
66 if ((state
->block_allocated
- state
->block_freed
) > state
->block_max
)
67 state
->block_max
= state
->block_allocated
- state
->block_freed
;
71 static void cloog_block_leak_down(CloogState
*state
)
77 /******************************************************************************
78 * Structure display function *
79 ******************************************************************************/
83 * cloog_domain_print_structure :
84 * this function is a human-friendly way to display the CloogDomain data
85 * structure, it includes an indentation level (level) in order to work with
86 * others print_structure functions.
87 * - June 16th 2005: first version.
89 void cloog_block_print_structure(FILE * file
, CloogBlock
* block
, int level
)
92 /* Go to the right level. */
93 for (i
=0; i
<level
; i
++)
97 { fprintf(file
,"+-- CloogBlock\n") ;
100 for (i
=0; i
<level
+2; i
++)
101 fprintf(file
,"|\t") ;
104 /* Print statement list. */
105 cloog_statement_print_structure(file
,block
->statement
,level
+1) ;
108 for (i
=0; i
<level
+2; i
++)
109 fprintf(file
,"|\t") ;
112 /* Print scattering function. */
113 for(i
=0; i
<level
+1; i
++)
114 fprintf(file
,"|\t") ;
116 fprintf(file
,"+-- Null scattering function\n") ;
119 for (i
=0; i
<level
+2; i
++)
120 fprintf(file
,"|\t") ;
123 /* Print scalar dimensions. */
124 for (i
=0; i
<level
+1; i
++)
125 fprintf(file
,"|\t") ;
127 if (block
->nb_scaldims
== 0)
128 fprintf(file
,"No scalar dimensions\n") ;
130 { fprintf(file
,"Scalar dimensions (%d):",block
->nb_scaldims
) ;
131 for (i
= 0; i
< block
->nb_scaldims
; i
++) {
133 cloog_int_print(file
, block
->scaldims
[i
]);
139 for (i
=0; i
<level
+2; i
++)
140 fprintf(file
,"|\t") ;
144 for (i
=0; i
<level
+1; i
++)
145 fprintf(file
,"|\t") ;
146 fprintf(file
,"Depth: %d\n",block
->depth
) ;
149 for (i
=0; i
<level
+1; i
++)
150 fprintf(file
,"|\t") ;
154 fprintf(file
,"+-- Null CloogBlock\n") ;
159 * cloog_block_print function:
160 * This function prints the content of a CloogBlock structure (block) into a
161 * file (file, possibly stdout).
162 * - June 11th 2005: first version.
163 * - June 16th 2005: now just a call to cloog_block_print_structure.
165 void cloog_block_print(FILE * file
, CloogBlock
* block
)
166 { cloog_block_print_structure(file
,block
,0) ;
171 * cloog_block_list_print function:
172 * This function prints the content of a CloogBlock structure (block) into a
173 * file (file, possibly stdout).
174 * - June 16th 2005: first version.
176 void cloog_block_list_print(FILE * file
, CloogBlockList
* blocklist
)
179 while (blocklist
!= NULL
)
180 { fprintf(file
,"+-- CloogBlockList node %d\n",i
) ;
181 cloog_block_print_structure(file
,blocklist
->block
,1) ;
182 blocklist
= blocklist
->next
;
188 /******************************************************************************
189 * Memory deallocation function *
190 ******************************************************************************/
194 * cloog_block_free function:
195 * This function frees the allocated memory for a CloogStatement structure.
196 * - June 11th 2005: first version.
197 * - June 30th 2005: scaldims field management.
199 void cloog_block_free(CloogBlock
* block
)
203 { block
->references
-- ;
205 if (block
->references
== 0) {
206 cloog_block_leak_down(block
->state
);
207 if (block
->scaldims
!= NULL
)
208 { for (i
=0;i
<block
->nb_scaldims
;i
++)
209 cloog_int_clear(block
->scaldims
[i
]);
211 free(block
->scaldims
) ;
213 if (block
->statement
)
214 cloog_statement_free(block
->statement
);
222 * cloog_block_list_free function:
223 * This function frees the allocated memory for a CloogBlockList structure.
224 * - June 11th 2005: first version.
226 void cloog_block_list_free(CloogBlockList
* blocklist
)
227 { CloogBlockList
* temp
;
229 while (blocklist
!= NULL
)
230 { temp
= blocklist
->next
;
231 cloog_block_free(blocklist
->block
) ;
238 /******************************************************************************
239 * Processing functions *
240 ******************************************************************************/
243 * cloog_block_malloc function:
244 * This function allocates the memory space for a CloogBlock structure and
245 * sets its fields with default values. Then it returns a pointer to the
247 * - November 21th 2005: first version.
249 CloogBlock
*cloog_block_malloc(CloogState
*state
)
250 { CloogBlock
* block
;
252 /* Memory allocation for the CloogBlock structure. */
253 block
= (CloogBlock
*)malloc(sizeof(CloogBlock
)) ;
255 cloog_die("memory overflow.\n");
256 cloog_block_leak_up(state
);
258 /* We set the various fields with default values. */
259 block
->state
= state
;
260 block
->statement
= NULL
;
261 block
->nb_scaldims
= 0 ;
262 block
->scaldims
= NULL
;
264 block
->references
= 1 ;
272 * cloog_block_alloc function:
273 * This function allocates the memory space for a CloogBlock structure and
274 * sets its fields with those given as input. Then it returns a pointer to the
275 * allocated space. The two parameters nb_scaldims and scaldims are for internal
276 * service, put to respectively 0 and NULL if you don't know what they are
278 * - statement is the statement list of the block,
279 * - scattering is the scattering function for the block (NULL if unsure !),
280 * - nb_scaldims is the number of scalar dimensions (0 if unsure !),
281 * - scaldims is the array with the scalar dimensions values (NULL if unsure !),
282 * - depth is the original block depth (the number of outer loops).
284 * - June 11th 2005: first version.
285 * - June 30th 2005: addition of the nb_scaldims and scaldims parameters.
286 * - November 21th 2005: use of cloog_block_malloc.
288 CloogBlock
*cloog_block_alloc(CloogStatement
*statement
, int nb_scaldims
,
289 cloog_int_t
*scaldims
, int depth
)
290 { CloogBlock
* block
;
292 /* Block allocation. */
293 block
= cloog_block_malloc(statement
->state
);
295 block
->statement
= statement
;
296 block
->nb_scaldims
= nb_scaldims
;
297 block
->scaldims
= scaldims
;
298 block
->depth
= depth
;
299 block
->references
= 1 ;
306 * cloog_block_list_malloc function:
307 * This function allocates the memory space for a CloogBlockList structure and
308 * sets its fields with default values. Then it returns a pointer to the
310 * - November 21th 2005: first version.
312 CloogBlockList
* cloog_block_list_malloc()
313 { CloogBlockList
* blocklist
;
315 /* Memory allocation for the CloogBlock structure. */
316 blocklist
= (CloogBlockList
*)malloc(sizeof(CloogBlockList
)) ;
317 if (blocklist
== NULL
)
318 cloog_die("memory overflow.\n");
320 /* We set the various fields with default values. */
321 blocklist
->block
= NULL
;
322 blocklist
->next
= NULL
;
329 * cloog_block_list_alloc function:
330 * This function allocates the memory space for a CloogBlockList structure and
331 * sets its fields with those given as input. Then it returns a pointer to the
333 * - block is the block element of the list node,
335 * - June 11th 2005: first version.
336 * - November 21th 2005: use of cloog_block_list_malloc.
338 CloogBlockList
* cloog_block_list_alloc(CloogBlock
* block
)
339 { CloogBlockList
* blocklist
;
341 /* Block list node allocation. */
342 blocklist
= cloog_block_list_malloc() ;
344 blocklist
->block
= block
;
345 blocklist
->block
->references
++ ; /* The block has a new reference to it. */
346 blocklist
->next
= NULL
;
353 * cloog_block_copy function:
354 * This function returns a copy of a CloogBlock structure 'block'. To save
355 * memory this is not a memory copy but we increment a counter of active
356 * references inside the structure, then return a pointer to that structure.
358 CloogBlock
* cloog_block_copy(CloogBlock
* block
)
362 block
->references
++ ;
368 * cloog_block_merge function:
369 * this function adds at the end of the statement list of the block 'block',
370 * the statement list of the block 'merged'. Then the CloogBlock structure
371 * of 'merged' is freed (obviously not its statement list that is now
372 * included in 'block').
373 * - June 11th 2005: first version.
375 void cloog_block_merge(CloogBlock
* block
, CloogBlock
* merged
)
376 { CloogStatement
* statement
;
378 if ((block
== NULL
) || (merged
== NULL
))
381 if (block
->statement
!= NULL
)
382 { statement
= block
->statement
;
384 while (statement
->next
!= NULL
)
385 statement
= statement
->next
;
387 statement
->next
= merged
->statement
;
390 block
->statement
= merged
->statement
;
392 merged
->statement
= NULL
;
393 cloog_block_free(merged
);