allow building without isl
[cloog/uuh.git] / source / loop.c
blobcb74bd5800efa11a3fbbe2ccd97733ff38509e75
2 /**-------------------------------------------------------------------**
3 ** CLooG **
4 **-------------------------------------------------------------------**
5 ** loop.c **
6 **-------------------------------------------------------------------**
7 ** First version: october 26th 2001 **
8 **-------------------------------------------------------------------**/
11 /******************************************************************************
12 * CLooG : the Chunky Loop Generator (experimental) *
13 ******************************************************************************
14 * *
15 * Copyright (C) 2001-2005 Cedric Bastoul *
16 * *
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. *
21 * *
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. *
26 * *
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 *
31 * *
32 * CLooG, the Chunky Loop Generator *
33 * Written by Cedric Bastoul, Cedric.Bastoul@inria.fr *
34 * *
35 ******************************************************************************/
36 /* CAUTION: the english used for comments is probably the worst you ever read,
37 * please feel free to correct and improve it !
40 # include <stdlib.h>
41 # include <stdio.h>
42 # include "../include/cloog/cloog.h"
45 /******************************************************************************
46 * Memory leaks hunting *
47 ******************************************************************************/
50 /**
51 * These functions and global variables are devoted to memory leaks hunting: we
52 * want to know at each moment how many CloogLoop structures had been allocated
53 * (cloog_loop_allocated) and how many had been freed (cloog_loop_freed).
54 * Each time a CloogLoog structure is allocated, a call to the function
55 * cloog_loop_leak_up() must be carried out, and respectively
56 * cloog_loop_leak_down() when a CloogLoop structure is freed. The special
57 * variable cloog_loop_max gives the maximal number of CloogLoop structures
58 * simultaneously alive (i.e. allocated and non-freed) in memory.
59 * - July 3rd->11th 2003: first version (memory leaks hunt and correction).
63 static void cloog_loop_leak_up(CloogState *state)
65 state->loop_allocated++;
66 if ((state->loop_allocated - state->loop_freed) > state->loop_max)
67 state->loop_max = state->loop_allocated - state->loop_freed;
71 static void cloog_loop_leak_down(CloogState *state)
73 state->loop_freed++;
77 /******************************************************************************
78 * Structure display function *
79 ******************************************************************************/
82 /**
83 * cloog_loop_print_structure function:
84 * Displays a loop structure in a way that trends to be understandable without
85 * falling in a deep depression or, for the lucky ones, getting a headache...
86 * Written by Olivier Chorier, Luc Marchaud, Pierre Martin and Romain Tartiere.
87 * - April 24th 2005: Initial version.
88 * - May 21rd 2005: - New parameter `F' for destination file (ie stdout),
89 * - Minor tweaks.
90 * - May 26th 2005: Memory leak hunt.
91 * - June 2nd 2005: (Ced) Integration and minor fixes.
92 * -June 22nd 2005: (Ced) Adaptation for GMP.
94 void cloog_loop_print_structure(FILE * file, CloogLoop * loop, int level)
95 { int i, j, first=1 ;
97 if (loop)
98 { /* Go to the right level. */
99 for (i=0; i<level; i++)
100 fprintf(file,"|\t") ;
102 fprintf(file,"+-- CloogLoop\n") ;
105 /* For each loop. */
106 while (loop)
107 { if (!first)
108 { /* Go to the right level. */
109 for (i=0; i<level; i++)
110 fprintf(file,"|\t") ;
112 fprintf(file,"| CloogLoop\n") ;
114 else
115 first = 0 ;
117 /* A blank line. */
118 for(j=0; j<=level+1; j++)
119 fprintf(file,"|\t") ;
120 fprintf(file,"\n") ;
122 /* Print the domain. */
123 cloog_domain_print_structure(file, loop->domain, level+1, "CloogDomain");
125 /* Print the stride. */
126 for(j=0; j<=level; j++)
127 fprintf(file,"|\t") ;
128 fprintf(file, "Stride: ") ;
129 cloog_int_print(file, loop->stride);
130 fprintf(file, "\n") ;
131 fprintf(file, "Offset: ") ;
132 cloog_int_print(file, loop->offset);
133 fprintf(file, "\n") ;
135 /* A blank line. */
136 for(j=0; j<=level+1; j++)
137 fprintf(file,"|\t") ;
138 fprintf(file,"\n") ;
140 /* Print the block. */
141 cloog_block_print_structure(file,loop->block,level+1) ;
143 /* A blank line. */
144 for (i=0; i<=level+1; i++)
145 fprintf(file,"|\t") ;
146 fprintf(file,"\n") ;
148 /* Print inner if any. */
149 if (loop->inner)
150 cloog_loop_print_structure(file,loop->inner,level+1) ;
152 /* And let's go for the next one. */
153 loop = loop->next ;
155 /* One more time something that is here only for a better look. */
156 if (!loop)
157 { /* Two blank lines if this is the end of the linked list. */
158 for (j=0; j<2; j++)
159 { for (i=0; i<=level; i++)
160 fprintf(file,"|\t") ;
162 fprintf(file,"\n") ;
165 else
166 { /* A special blank line if the is a next loop. */
167 for (i=0; i<=level; i++)
168 fprintf(file,"|\t") ;
169 fprintf(file,"V\n") ;
176 * cloog_loop_print function:
177 * This function prints the content of a CloogLoop structure (start) into a
178 * file (file, possibly stdout).
179 * - June 2nd 2005: Now this very old function (probably as old as CLooG) is
180 * only a frontend to cloog_loop_print_structure, with a quite
181 * better human-readable representation.
183 void cloog_loop_print(FILE * file, CloogLoop * loop)
184 { cloog_loop_print_structure(file,loop,0) ;
188 /******************************************************************************
189 * Memory deallocation function *
190 ******************************************************************************/
194 * cloog_loop_free function:
195 * This function frees the allocated memory for a CloogLoop structure (loop),
196 * and frees its inner loops and its next loops.
197 * - June 22nd 2005: Adaptation for GMP.
199 void cloog_loop_free(CloogLoop * loop)
200 { CloogLoop * next ;
202 while (loop != NULL) {
203 cloog_loop_leak_down(loop->state);
205 next = loop->next ;
206 cloog_domain_free(loop->domain) ;
207 cloog_block_free(loop->block) ;
208 if (loop->inner != NULL)
209 cloog_loop_free(loop->inner) ;
211 cloog_int_clear(loop->stride);
212 cloog_int_clear(loop->offset);
213 free(loop) ;
214 loop = next ;
220 * cloog_loop_free_parts function:
221 * This function frees the allocated memory for some parts of a CloogLoop
222 * structure (loop), each other argument is a boolean having to be set to 1 if
223 * we want to free the corresponding part, 0 otherwise. This function applies
224 * the same freeing policy to its inner ans next loops recursively.
225 * - July 3rd 2003: first version.
226 * - June 22nd 2005: Adaptation for GMP.
228 void cloog_loop_free_parts(loop, domain, block, inner, next)
229 CloogLoop * loop ;
230 int domain, block, inner, next ;
231 { CloogLoop * follow ;
233 while (loop != NULL) {
234 cloog_loop_leak_down(loop->state);
235 follow = loop->next ;
237 if (domain)
238 cloog_domain_free(loop->domain) ;
240 if (block)
241 cloog_block_free(loop->block) ;
243 if ((inner) && (loop->inner != NULL))
244 cloog_loop_free_parts(loop->inner,domain,block,inner,1) ;
246 cloog_int_clear(loop->stride);
247 cloog_int_clear(loop->offset);
248 free(loop) ;
249 if (next)
250 loop = follow ;
251 else
252 loop = NULL ;
257 /******************************************************************************
258 * Reading functions *
259 ******************************************************************************/
263 * cloog_loop_read function:
264 * This function reads loop data into a file (foo, possibly stdin) and
265 * returns a pointer to a CloogLoop structure containing the read information.
266 * This function can be used only for input file reading, when one loop is
267 * associated with one statement.
268 * - number is the statement block number carried by the loop (-1 if none).
269 * - nb_parameters is the number of parameters.
271 * - September 9th 2002: first version.
272 * - April 16th 2005: adaptation to new CloogStatement struct (with number).
273 * - June 11th 2005: adaptation to new CloogBlock structure.
274 * - June 22nd 2005: Adaptation for GMP.
276 CloogLoop *cloog_loop_read(CloogState *state,
277 FILE * foo, int number, int nb_parameters)
278 { int nb_iterators, op1, op2, op3 ;
279 char s[MAX_STRING] ;
280 CloogLoop * loop ;
281 CloogStatement * statement ;
283 cloog_loop_leak_up(state);
285 /* Memory allocation and information reading for the first domain: */
286 loop = (CloogLoop *)malloc(sizeof(CloogLoop)) ;
287 if (loop == NULL)
288 cloog_die("memory overflow.\n");
289 /* domain. */
290 loop->state = state;
291 loop->domain = cloog_domain_union_read(state, foo, nb_parameters);
292 if (loop->domain != NULL)
293 nb_iterators = cloog_domain_dimension(loop->domain);
294 else
295 nb_iterators = 0 ;
296 /* stride is initialized to 1. */
297 cloog_int_init(loop->stride);
298 cloog_int_set_si(loop->stride, 1);
299 cloog_int_init(loop->offset);
300 cloog_int_set_si(loop->offset, 0);
301 /* included statement block. */
302 statement = cloog_statement_alloc(state, number + 1);
303 loop->block = cloog_block_alloc(statement, 0, NULL, nb_iterators);
304 loop->usr = NULL;
305 /* inner is NULL at beginning. */
306 loop->inner = NULL ;
307 /* next element. */
308 loop->next = NULL ;
310 /* To read that stupid "0 0 0" line. */
311 while (fgets(s,MAX_STRING,foo) == 0) ;
312 while ((*s=='#' || *s=='\n') || (sscanf(s," %d %d %d",&op1,&op2,&op3)<3))
313 fgets(s,MAX_STRING,foo) ;
315 return loop ;
319 /******************************************************************************
320 * Processing functions *
321 ******************************************************************************/
325 * cloog_loop_malloc function:
326 * This function allocates the memory space for a CloogLoop structure and
327 * sets its fields with default values. Then it returns a pointer to the
328 * allocated space.
329 * - November 21th 2005: first version.
331 CloogLoop *cloog_loop_malloc(CloogState *state)
332 { CloogLoop * loop ;
334 /* Memory allocation for the CloogLoop structure. */
335 loop = (CloogLoop *)malloc(sizeof(CloogLoop)) ;
336 if (loop == NULL)
337 cloog_die("memory overflow.\n");
338 cloog_loop_leak_up(state);
341 /* We set the various fields with default values. */
342 loop->state = state;
343 loop->domain = NULL ;
344 loop->block = NULL ;
345 loop->usr = NULL;
346 loop->inner = NULL ;
347 loop->next = NULL ;
348 cloog_int_init(loop->stride);
349 cloog_int_set_si(loop->stride, 1);
350 cloog_int_init(loop->offset);
351 cloog_int_set_si(loop->offset, 0);
353 return loop ;
358 * cloog_loop_alloc function:
359 * This function allocates the memory space for a CloogLoop structure and
360 * sets its fields with those given as input. Then it returns a pointer to the
361 * allocated space.
362 * - October 27th 2001: first version.
363 * - June 22nd 2005: Adaptation for GMP.
364 * - November 21th 2005: use of cloog_loop_malloc.
366 CloogLoop *cloog_loop_alloc(CloogState *state,
367 CloogDomain *domain, cloog_int_t stride, cloog_int_t offset,
368 CloogBlock *block, CloogLoop *inner, CloogLoop *next)
369 { CloogLoop * loop ;
371 loop = cloog_loop_malloc(state);
373 loop->domain = domain ;
374 loop->block = block ;
375 loop->inner = inner ;
376 loop->next = next ;
377 cloog_int_set(loop->stride, stride);
378 cloog_int_set(loop->offset, offset);
380 return(loop) ;
385 * cloog_loop_add function:
386 * This function adds a CloogLoop structure (loop) at a given place (now) of a
387 * NULL terminated list of CloogLoop structures. The beginning of this list
388 * is (start). This function updates (now) to (loop), and updates (start) if the
389 * added element is the first one -that is when (start) is NULL-.
390 * - October 28th 2001: first version.
392 void cloog_loop_add(CloogLoop ** start, CloogLoop ** now, CloogLoop * loop)
393 { if (*start == NULL)
394 { *start = loop ;
395 *now = *start ;
397 else
398 { (*now)->next = loop ;
399 *now = (*now)->next ;
405 * cloog_loop_add function:
406 * This function adds a CloogLoop structure (loop) at a given place (now) of a
407 * NULL terminated list of CloogLoop structures. The beginning of this list
408 * is (start). This function updates (now) to the end of the loop list (loop),
409 * and updates (start) if the added element is the first one -that is when
410 * (start) is NULL-.
411 * - September 9th 2005: first version.
413 void cloog_loop_add_list(CloogLoop ** start, CloogLoop ** now, CloogLoop * loop)
414 { if (*start == NULL)
415 { *start = loop ;
416 *now = *start ;
418 else
419 { (*now)->next = loop ;
420 *now = (*now)->next ;
423 while ((*now)->next != NULL)
424 *now = (*now)->next ;
429 * cloog_loop_copy function:
430 * This function returns a copy of the CloogLoop structure given as input. In
431 * fact, there is just new allocations for the CloogLoop structures, but their
432 * contents are the same.
433 * - October 28th 2001: first version.
434 * - July 3rd->11th 2003: memory leaks hunt and correction.
436 CloogLoop * cloog_loop_copy(CloogLoop * source)
437 { CloogLoop * loop ;
438 CloogBlock * block ;
439 CloogDomain * domain ;
441 loop = NULL ;
442 if (source != NULL)
443 { domain = cloog_domain_copy(source->domain) ;
444 block = cloog_block_copy(source->block) ;
445 loop = cloog_loop_alloc(source->state, domain, source->stride,
446 source->offset, block, NULL, NULL);
447 loop->usr = source->usr;
448 loop->inner = cloog_loop_copy(source->inner) ;
449 loop->next = cloog_loop_copy(source->next) ;
451 return(loop) ;
456 * cloog_loop_add_disjoint function:
457 * This function adds some CloogLoop structures at a given place (now) of a
458 * NULL terminated list of CloogLoop structures. The beginning of this list
459 * is (start). (loop) can be an union of polyhedra, this function separates the
460 * union into a list of *disjoint* polyhedra then adds the list. This function
461 * updates (now) to the end of the list and updates (start) if first added
462 * element is the first of the principal list -that is when (start) is NULL-.
463 * (loop) can be freed by this function, basically when its domain is actually
464 * a union of polyhedra, but don't worry, all the useful data are now stored
465 * inside the list (start). We do not use PolyLib's Domain_Disjoint function,
466 * since the number of union components is often higher (thus code size too).
467 * - October 28th 2001: first version.
468 * - November 14th 2001: bug correction (this one was hard to find !).
469 * - July 3rd->11th 2003: memory leaks hunt and correction.
470 * - June 22nd 2005: Adaptation for GMP.
471 * - October 27th 2005: (debug) included blocks were not copied for new loops.
473 void cloog_loop_add_disjoint(start, now, loop)
474 CloogLoop ** start, ** now, * loop ;
476 CloogLoop * sep, * inner ;
477 CloogDomain *domain, *seen, *seen_before, *temp, *rest;
478 CloogBlock * block ;
480 if (cloog_domain_isconvex(loop->domain))
481 cloog_loop_add(start,now,loop) ;
482 else {
483 domain = cloog_domain_simplify_union(loop->domain);
484 loop->domain = NULL ;
486 /* We separate the first element of the rest of the union. */
487 domain = cloog_domain_cut_first(domain, &rest);
489 /* This first element is the first of the list of disjoint polyhedra. */
490 sep = cloog_loop_alloc(loop->state, domain, loop->state->one,
491 loop->state->zero, loop->block, loop->inner, NULL);
492 cloog_loop_add(start,now,sep) ;
494 seen = cloog_domain_copy(domain);
495 while (!cloog_domain_isempty(domain = rest)) {
496 temp = cloog_domain_cut_first(domain, &rest);
497 domain = cloog_domain_difference(temp, seen);
498 cloog_domain_free(temp);
500 if (cloog_domain_isempty(domain)) {
501 cloog_domain_free(domain);
502 continue;
505 /* Each new loop will have its own life, for instance we can free its
506 * inner loop and included block. Then each one must have its own copy
507 * of both 'inner' and 'block'.
509 inner = cloog_loop_copy(loop->inner) ;
510 block = cloog_block_copy(loop->block) ;
512 sep = cloog_loop_alloc(loop->state, cloog_domain_copy(domain),
513 loop->state->one, loop->state->zero,
514 block, inner, NULL);
515 /* domain can be an union too. If so: recursion. */
516 if (cloog_domain_isconvex(domain))
517 cloog_loop_add(start,now,sep) ;
518 else
519 cloog_loop_add_disjoint(start,now,sep) ;
521 if (cloog_domain_isempty(rest)) {
522 cloog_domain_free(domain);
523 break;
526 seen_before = seen;
527 seen = cloog_domain_union(seen_before, domain);
528 cloog_domain_free(domain);
529 cloog_domain_free(seen_before);
531 cloog_domain_free(rest);
532 cloog_domain_free(seen);
533 cloog_loop_free_parts(loop,0,0,0,0) ;
539 * cloog_loop_disjoint function:
540 * This function returns a list of loops such that each loop with non-convex
541 * domain in the input list (loop) is separated into several loops where the
542 * domains are the components of the union of *disjoint* polyhedra equivalent
543 * to the original non-convex domain. See cloog_loop_add_disjoint comments
544 * for more details.
545 * - September 16th 2005: first version.
547 CloogLoop * cloog_loop_disjoint(CloogLoop * loop)
548 { CloogLoop *res=NULL, * now=NULL, * next ;
550 /* Because this is often the case, don't waste time ! */
551 if (loop && !loop->next && cloog_domain_isconvex(loop->domain))
552 return loop ;
554 while (loop != NULL)
555 { next = loop->next ;
556 loop->next = NULL ;
557 cloog_loop_add_disjoint(&res,&now,loop) ;
558 loop = next ;
561 return res ;
566 * cloog_loop_restrict function:
567 * This function returns the (loop) in the context of (context): it makes the
568 * intersection between the (loop) domain and the (context), then it returns
569 * a pointer to a new loop, with this intersection as domain.
571 * - October 27th 2001: first version.
572 * - June 15th 2005: a memory leak fixed (domain was not freed when empty).
573 * - June 22nd 2005: Adaptation for GMP.
575 CloogLoop *cloog_loop_restrict(CloogLoop *loop, CloogDomain *context)
576 { int new_dimension ;
577 CloogDomain * domain, * extended_context, * new_domain ;
578 CloogLoop * new_loop ;
580 domain = loop->domain ;
581 if (cloog_domain_dimension(domain) > cloog_domain_dimension(context))
583 new_dimension = cloog_domain_dimension(domain);
584 extended_context = cloog_domain_extend(context, new_dimension);
585 new_domain = cloog_domain_intersection(extended_context,loop->domain) ;
586 cloog_domain_free(extended_context) ;
588 else
589 new_domain = cloog_domain_intersection(context,loop->domain) ;
591 if (cloog_domain_isempty(new_domain))
592 { cloog_domain_free(new_domain) ;
593 return(NULL) ;
595 else {
596 new_loop = cloog_loop_alloc(loop->state, new_domain,
597 loop->state->one, loop->state->zero,
598 loop->block, loop->inner, NULL);
599 return(new_loop) ;
605 * Call cloog_loop_restrict on each loop in the list "loop" and return
606 * the concatenated result.
608 CloogLoop *cloog_loop_restrict_all(CloogLoop *loop, CloogDomain *context)
610 CloogLoop *next;
611 CloogLoop *res = NULL;
612 CloogLoop **res_next = &res;
614 for (; loop; loop = next) {
615 next = loop->next;
617 *res_next = cloog_loop_restrict(loop, context);
618 if (*res_next) {
619 res_next = &(*res_next)->next;
620 cloog_loop_free_parts(loop, 1, 0, 0, 0);
621 } else {
622 loop->next = NULL;
623 cloog_loop_free(loop);
627 return res;
631 * cloog_loop_project function:
632 * This function returns the projection of (loop) on the (level) first
633 * dimensions (outer loops). It makes the projection of the (loop) domain,
634 * then it returns a pointer to a new loop, with this projection as domain.
636 * - October 27th 2001: first version.
637 * - July 3rd->11th 2003: memory leaks hunt and correction.
638 * - June 22nd 2005: Adaptation for GMP.
640 CloogLoop * cloog_loop_project(CloogLoop * loop, int level)
642 CloogDomain * new_domain ;
643 CloogLoop * new_loop, * copy ;
645 copy = cloog_loop_alloc(loop->state, loop->domain, loop->stride, loop->offset,
646 loop->block, loop->inner, NULL);
648 if (cloog_domain_dimension(loop->domain) == level)
649 new_domain = cloog_domain_copy(loop->domain) ;
650 else
651 new_domain = cloog_domain_project(loop->domain, level);
653 new_loop = cloog_loop_alloc(loop->state, new_domain, loop->state->one,
654 loop->state->zero, NULL, copy, NULL);
656 return(new_loop) ;
661 * Call cloog_loop_project on each loop in the list "loop" and return
662 * the concatenated result.
664 CloogLoop *cloog_loop_project_all(CloogLoop *loop, int level)
666 CloogLoop *next;
667 CloogLoop *res = NULL;
668 CloogLoop **res_next = &res;
670 for (; loop; loop = next) {
671 next = loop->next;
673 *res_next = cloog_loop_project(loop, level);
674 res_next = &(*res_next)->next;
675 cloog_loop_free_parts(loop, 0, 0, 0, 0);
678 return res;
683 * cloog_loop_concat function:
684 * This function returns a pointer to the concatenation of the
685 * CloogLoop lists given as input.
686 * - October 28th 2001: first version.
688 CloogLoop * cloog_loop_concat(CloogLoop * a, CloogLoop * b)
689 { CloogLoop * loop, * temp ;
691 loop = a ;
692 temp = loop ;
693 if (loop != NULL)
694 { while (temp->next != NULL)
695 temp = temp->next ;
696 temp->next = b ;
698 else
699 loop = b ;
701 return(loop) ;
706 * cloog_loop_combine:
707 * Combine consecutive loops with identical domains into
708 * a single loop with the concatenation of their inner loops
709 * as inner loop.
711 CloogLoop *cloog_loop_combine(CloogLoop *loop)
713 CloogLoop *first, *second;
715 for (first = loop; first; first = first->next) {
716 while (first->next) {
717 if (!cloog_domain_lazy_equal(first->domain, first->next->domain))
718 break;
719 second = first->next;
720 first->inner = cloog_loop_concat(first->inner, second->inner);
721 first->next = second->next;
722 cloog_loop_free_parts(second, 1, 0, 0, 0);
726 return loop;
730 * cloog_loop_separate function:
731 * This function implements the Quillere algorithm for separation of multiple
732 * loops: for a given set of polyhedra (loop), it computes a set of disjoint
733 * polyhedra such that the unions of these sets are equal, and returns this set.
734 * - October 28th 2001: first version.
735 * - November 14th 2001: elimination of some unused blocks.
736 * - August 13th 2002: (debug) in the case of union of polyhedra for one
737 * loop, redundant constraints are fired.
738 * - July 3rd->11th 2003: memory leaks hunt and correction.
739 * - June 22nd 2005: Adaptation for GMP.
740 * - October 16th 2005: Removal of the non-shared constraint elimination when
741 * there is only one loop in the list (seems to work
742 * without now, DomainSimplify may have been improved).
743 * The problem was visible with test/iftest2.cloog.
745 CloogLoop * cloog_loop_separate(CloogLoop * loop)
746 { int lazy_equal=0, disjoint = 0;
747 CloogLoop * new_loop, * new_inner, * res, * now, * temp, * Q,
748 * inner, * old /*, * previous, * next*/ ;
749 CloogDomain * UQ, * old_UQ, * domain ;
751 if (loop == NULL)
752 return NULL ;
754 loop = cloog_loop_combine(loop);
756 if (loop->next == NULL)
757 return cloog_loop_disjoint(loop) ;
759 UQ = cloog_domain_copy(loop->domain) ;
760 domain = cloog_domain_copy(loop->domain) ;
761 res = cloog_loop_alloc(loop->state, domain, loop->state->one,
762 loop->state->zero, loop->block, loop->inner, NULL);
764 old = loop ;
765 while((loop = loop->next) != NULL)
766 { temp = NULL ;
768 /* For all Q, add Q-loop associated with the blocks of Q alone,
769 * and Q inter loop associated with the blocks of Q and loop.
771 for (Q = res; Q; Q = Q->next) {
772 /* Add (Q inter loop). */
773 if ((disjoint = cloog_domain_lazy_disjoint(Q->domain,loop->domain)))
774 domain = NULL ;
775 else
776 { if ((lazy_equal = cloog_domain_lazy_equal(Q->domain,loop->domain)))
777 domain = cloog_domain_copy(Q->domain) ;
778 else
779 domain = cloog_domain_intersection(Q->domain,loop->domain) ;
781 if (!cloog_domain_isempty(domain))
782 { new_inner = cloog_loop_concat(cloog_loop_copy(Q->inner),
783 cloog_loop_copy(loop->inner)) ;
784 new_loop = cloog_loop_alloc(loop->state, domain, loop->state->one,
785 loop->state->zero, NULL, new_inner, NULL);
786 cloog_loop_add_disjoint(&temp,&now,new_loop) ;
788 else {
789 disjoint = 1;
790 cloog_domain_free(domain);
794 /* Add (Q - loop). */
795 if (disjoint)
796 domain = cloog_domain_copy(Q->domain) ;
797 else
798 { if (lazy_equal)
799 domain = cloog_domain_empty(Q->domain);
800 else
801 domain = cloog_domain_difference(Q->domain,loop->domain) ;
804 if (!cloog_domain_isempty(domain)) {
805 new_loop = cloog_loop_alloc(loop->state, domain, loop->state->one,
806 loop->state->zero, NULL, Q->inner, NULL);
807 cloog_loop_add_disjoint(&temp,&now,new_loop) ;
809 else
810 { cloog_domain_free(domain) ;
811 /* If Q->inner is no more useful, we can free it. */
812 inner = Q->inner ;
813 Q->inner = NULL ;
814 cloog_loop_free(inner) ;
818 /* Add loop-UQ associated with the blocks of loop alone.*/
819 if (cloog_domain_lazy_disjoint(loop->domain,UQ))
820 domain = cloog_domain_copy(loop->domain) ;
821 else
822 { if (cloog_domain_lazy_equal(loop->domain,UQ))
823 domain = cloog_domain_empty(UQ);
824 else
825 domain = cloog_domain_difference(loop->domain,UQ) ;
828 if (!cloog_domain_isempty(domain)) {
829 new_loop = cloog_loop_alloc(loop->state, domain, loop->state->one,
830 loop->state->zero, NULL, loop->inner, NULL);
831 cloog_loop_add_disjoint(&temp,&now,new_loop) ;
833 else
834 { cloog_domain_free(domain) ;
835 /* If loop->inner is no more useful, we can free it. */
836 cloog_loop_free(loop->inner) ;
839 loop->inner = NULL ;
841 old_UQ = UQ ;
842 if (loop->next != NULL)
843 UQ = cloog_domain_union(UQ,loop->domain) ;
845 cloog_domain_free(old_UQ) ;
846 cloog_loop_free_parts(res,1,0,0,1) ;
848 res = temp ;
850 cloog_loop_free_parts(old,1,0,0,1) ;
852 return(res) ;
857 * cloog_loop_merge_list
858 * Merge two lists of CloogLoops. The new list contains the
859 * elements of the two lists in the same order, but they may
860 * be interleaved.
861 * In particular, if the elements of a and b are ordered
862 * according to the inner loops of the order list, then so are the elements
863 * in the new list.
865 static CloogLoop *cloog_loop_merge_inner_list(CloogLoop *a, CloogLoop *b,
866 CloogLoop *order)
868 CloogLoop *loop, **next;
869 next = &loop;
871 for ( ; order && (a||b); order = order->next) {
872 if (a && order->inner->block == a->block) {
873 *next = a;
874 a = a->next;
875 next = &(*next)->next;
876 continue;
878 if (b && order->inner->block == b->block) {
879 *next = b;
880 b = b->next;
881 next = &(*next)->next;
884 return loop;
888 * cloog_loop_merge function:
889 * This function is the 'soft' version of loop_separate if we are looking for
890 * a code much simpler (and less efficicient). Here we merge loops if they have
891 * common parts in the iteration space (if the intersection of their domains is
892 * not empty), and let them isolated otherwise. This function returns the new
893 * CloogLoop list.
894 * - October 29th 2001: first version.
895 * - July 3rd->11th 2003: memory leaks hunt and correction.
896 * - June 22nd 2005: Adaptation for GMP.
898 CloogLoop * cloog_loop_merge(CloogLoop * loop, CloogOptions * options)
900 CloogLoop * res, * merge, * now, * Q, * P, * new_inner, * next, * old ;
901 CloogDomain * new_domain, * temp ;
903 if (loop == NULL)
904 return loop ;
906 if (loop->next == NULL)
907 return cloog_loop_disjoint(loop);
909 /* First loop is added to the target list. */
910 res = cloog_loop_alloc(loop->state, loop->domain, loop->state->one,
911 loop->state->zero, loop->block, loop->inner, NULL);
912 old = loop ;
913 /* Now the domain is in 'res' and it will be freed. */
914 loop->domain = NULL ;
916 /* And one by one, we see if we have to merge or to add the other loops. */
917 while((loop = loop->next) != NULL)
918 { merge = NULL ;
919 P = cloog_loop_alloc(loop->state, loop->domain, loop->state->one,
920 loop->state->zero, loop->block, loop->inner, NULL);
921 Q = res ;
922 /* Now the domain is in 'P' and it will be freed. */
923 loop->domain = NULL ;
925 /* For each loop in the target list, if the intersection with the new loop
926 * is empty, we can add the new loop directly, otherwise, we can merge then
927 * add the fusion.
929 while (Q != NULL)
930 { temp = cloog_domain_intersection(Q->domain,P->domain) ;
931 next = Q->next ;
932 if (cloog_domain_isempty(temp))
933 { cloog_domain_free(temp) ;
934 cloog_loop_add_disjoint(&merge,&now,Q) ;
936 else
937 { cloog_domain_free(temp) ;
938 new_inner = cloog_loop_merge_inner_list(Q->inner, P->inner, old);
939 temp = cloog_domain_union(P->domain,Q->domain) ;
940 if (options->sh)
941 new_domain = cloog_domain_simple_convex(temp);
942 else
943 new_domain = cloog_domain_convex(temp);
944 cloog_domain_free(temp) ;
945 /* Q and P are no more used (but their content yes !).*/
946 cloog_loop_free_parts(P,1,0,0,0) ;
947 cloog_loop_free_parts(Q,1,0,0,0) ;
948 P = cloog_loop_alloc(loop->state, new_domain, loop->state->one,
949 loop->state->zero, NULL, new_inner, NULL);
951 Q = next ;
954 /* If there was merging, add it, otherwise add the loop lonely.
955 * DEBUG : ici pas besoin de s'assurer que P->next est NULL (possible que
956 * non si pas de fusion) car le dernier loop etudie a loop->next = NULL.
958 cloog_loop_add_disjoint(&merge,&now,P) ;
959 res = merge ;
961 cloog_loop_free_parts(old,0,0,0,1) ;
963 return (res);
967 static int cloog_loop_count(CloogLoop *loop)
969 int nb_loops;
971 for (nb_loops = 0; loop; loop = loop->next)
972 nb_loops++;
974 return nb_loops;
979 * cloog_loop_sort function:
980 * Adaptation from LoopGen 0.4 by F. Quillere. This function sorts a list of
981 * parameterized disjoint polyhedra, in order to not have lexicographic order
982 * violation (see Quillere paper).
983 * - September 16th 2005: inclusion of cloog_loop_number (October 29th 2001).
985 CloogLoop *cloog_loop_sort(CloogLoop *loop, int level)
987 CloogLoop *res, *now, **loop_array;
988 CloogDomain **doms;
989 int i, nb_loops=0, * permut ;
991 /* There is no need to sort the parameter domains. */
992 if (!level)
993 return loop;
995 /* We will need to know how many loops are in the list. */
996 nb_loops = cloog_loop_count(loop);
998 /* If there is only one loop, it's the end. */
999 if (nb_loops == 1)
1000 return(loop) ;
1002 /* We have to allocate memory for some useful components:
1003 * - loop_array: the loop array,
1004 * - doms: the array of domains to sort,
1005 * - permut: will give us a possible sort (maybe not the only one).
1007 loop_array = (CloogLoop **)malloc(nb_loops*sizeof(CloogLoop *)) ;
1008 doms = (CloogDomain **)malloc(nb_loops*sizeof(CloogDomain *));
1009 permut = (int *)malloc(nb_loops*sizeof(int)) ;
1011 /* We fill up the loop and domain arrays. */
1012 for (i=0;i<nb_loops;i++,loop=loop->next)
1013 { loop_array[i] = loop ;
1014 doms[i] = loop_array[i]->domain;
1017 /* cloog_domain_sort will fill up permut. */
1018 cloog_domain_sort(doms, nb_loops, level, permut);
1020 /* With permut and loop_array we build the sorted list. */
1021 res = NULL ;
1022 for (i=0;i<nb_loops;i++)
1023 { /* To avoid pointer looping... loop_add will rebuild the list. */
1024 loop_array[permut[i]-1]->next = NULL ;
1025 cloog_loop_add(&res,&now,loop_array[permut[i]-1]) ;
1028 free(permut) ;
1029 free(doms);
1030 free(loop_array) ;
1032 return res;
1037 * cloog_loop_nest function:
1038 * This function changes the loop list in such a way that we have no more than
1039 * one dimension added by level. It returns an equivalent loop list with
1040 * this property.
1041 * - October 29th 2001: first version.
1042 * - July 3rd->11th 2003: memory leaks hunt and correction.
1043 * - June 22nd 2005: Adaptation for GMP.
1044 * - November 21th 2005: (debug) now OK when cloog_loop_restrict returns NULL.
1046 CloogLoop *cloog_loop_nest(CloogLoop *loop, CloogDomain *context, int level)
1047 { int l ;
1048 CloogLoop * p, * temp, * res, * now, * next ;
1049 CloogDomain * new_domain ;
1051 loop = cloog_loop_disjoint(loop);
1053 res = NULL ;
1054 /* Each domain is changed by its intersection with the context. */
1055 while (loop != NULL)
1056 { p = cloog_loop_restrict(loop, context);
1057 next = loop->next ;
1059 if (p != NULL)
1060 { cloog_loop_free_parts(loop,1,0,0,0) ;
1062 temp = cloog_loop_alloc(p->state, p->domain, p->state->one,
1063 p->state->zero, p->block, p->inner, NULL);
1065 /* If the intersection dimension is too big, we make projections smaller
1066 * and smaller, and each projection includes the preceding projection
1067 * (thus, in the target list, dimensions are added one by one).
1069 if (cloog_domain_dimension(p->domain) >= level)
1070 for (l = cloog_domain_dimension(p->domain); l >= level; l--) {
1071 new_domain = cloog_domain_project(p->domain, l);
1072 temp = cloog_loop_alloc(p->state, new_domain, p->state->one,
1073 p->state->zero, NULL, temp, NULL);
1076 /* p is no more useful (but its content yes !). */
1077 cloog_loop_free_parts(p,0,0,0,0) ;
1079 cloog_loop_add(&res,&now,temp) ;
1081 else
1082 cloog_loop_free_parts(loop,1,1,1,0) ;
1084 loop = next ;
1087 return(res) ;
1092 * cloog_loop_stride function:
1093 * This function will find the stride of a loop for the iterator at the column
1094 * number 'level' in the constraint matrix. It will update the lower bound of
1095 * the iterator accordingly. Basically, the function will try to find in the
1096 * inner loops a common condition on this iterator for the inner loop iterators
1097 * to be integral. For instance, let us consider a loop with the iterator i,
1098 * the iteration domain -4<=i<=n, and its two inner loops with the iterator j.
1099 * The first inner loop has the constraint 3j=i, and the second one has the
1100 * constraint 6j=i. Then the common constraint on i for j to be integral is
1101 * i%3=0, the stride for i is 3. Lastly, we have to find the new lower bound
1102 * for i: the first value satisfying the common constraint: -3. At the end, the
1103 * iteration domain for i is -3<=i<=n and the stride for i is 3.
1104 * - loop is the loop including the iteration domain of the considered iterator,
1105 * - level is the column number of the iterator in the matrix of contraints.
1107 * - June 29th 2003: first version (work in progress since June 26th 2003).
1108 * - July 14th 2003: simpler version.
1109 * - June 22nd 2005: Adaptation for GMP (from S. Verdoolaege's 0.12.1 version).
1111 void cloog_loop_stride(CloogLoop * loop, int level)
1112 { int first_search ;
1113 cloog_int_t stride, ref_offset, offset, potential, lower;
1114 CloogLoop * inner ;
1116 cloog_int_init(stride);
1117 cloog_int_init(ref_offset);
1118 cloog_int_init(offset);
1119 cloog_int_init(potential);
1120 cloog_int_init(lower);
1122 cloog_int_set_si(ref_offset, 0);
1123 cloog_int_set_si(offset, 0);
1124 cloog_int_set_si(lower, 0);
1126 /* Default stride. */
1127 cloog_int_set_si(stride, 1);
1128 first_search = 1 ;
1129 inner = loop->inner ;
1131 if (cloog_domain_integral_lowerbound(loop->domain,level,&lower))
1132 while (inner != NULL)
1133 { /* If the minimun stride has not been found yet, find the stride. */
1134 if ((first_search) || (!cloog_int_is_one(stride)))
1136 cloog_domain_stride(inner->domain, level, &potential, &offset);
1137 if (!cloog_int_is_one(potential) && (!first_search))
1138 { /* Offsets must be the same for common stride. */
1139 cloog_int_gcd(stride, potential, stride);
1140 if (!cloog_int_is_zero(stride)) {
1141 cloog_int_fdiv_r(offset, offset, stride);
1142 cloog_int_fdiv_r(ref_offset, ref_offset, stride);
1144 if (cloog_int_ne(offset,ref_offset))
1145 cloog_int_set_si(stride, 1);
1147 else {
1148 cloog_int_set(stride, potential);
1149 cloog_int_set(ref_offset, offset);
1152 first_search = 0 ;
1155 inner = inner->next ;
1158 if (cloog_int_is_zero(stride))
1159 cloog_int_set_si(stride, 1);
1161 /* Update the values if necessary. */
1162 if (!cloog_int_is_one(stride))
1163 { /* Update the stride value. */
1164 cloog_int_set(loop->stride, stride);
1165 if (!cloog_int_is_zero(offset))
1166 cloog_int_sub(loop->offset, stride, offset);
1169 cloog_int_clear(stride);
1170 cloog_int_clear(ref_offset);
1171 cloog_int_clear(offset);
1172 cloog_int_clear(potential);
1173 cloog_int_clear(lower);
1178 * cloog_loop_stop function:
1179 * This function implements the 'stop' option : each domain of each loop
1180 * in the list 'loop' is replaced by 'context'. 'context' should be the
1181 * domain of the outer loop. By using this method, there are no more dimensions
1182 * to scan and the simplification step will automaticaly remove the domains
1183 * since they are the same as the corresponding contexts. The effect of this
1184 * function is to stop the code generation at the level this function is called,
1185 * the resulting code do not consider the next dimensions.
1186 * - January 11th 2005: first version.
1188 CloogLoop * cloog_loop_stop(CloogLoop * loop, CloogDomain * context)
1189 { if (loop == NULL)
1190 return NULL ;
1191 else
1192 { cloog_domain_free(loop->domain) ;
1193 loop->domain = cloog_domain_copy(context) ;
1194 loop->next = cloog_loop_stop(loop->next, context) ;
1197 return loop ;
1201 static int level_is_constant(int level, int scalar, int *scaldims, int nb_scattdims)
1203 return level && (level+scalar <= nb_scattdims) && (scaldims[level+scalar-1]);
1208 * Compare the constant dimensions of loops 'l1' and 'l2' starting at 'scalar'
1209 * and return -1 if the vector of constant dimensions of 'l1' is smaller
1210 * than that of 'l2', 0 if they are the same and +1 if that of 'l1' is
1211 * greater than that of 'l2'.
1212 * This function should be called on the innermost loop (the loop
1213 * containing a block).
1214 * \param l1 Loop to be compared with l2.
1215 * \param l2 Loop to be compared with l1.
1216 * \param level Current non-scalar dimension.
1217 * \param scaldims Boolean array saying whether a dimension is scalar or not.
1218 * \param nb_scattdims Size of the scaldims array.
1219 * \param scalar Current scalar dimension.
1220 * \return -1 if (l1 < l2), 0 if (l1 == l2) and +1 if (l1 > l2)
1222 int cloog_loop_constant_cmp(CloogLoop *l1, CloogLoop *l2, int level,
1223 int *scaldims, int nb_scattdims, int scalar)
1225 CloogBlock *b1, *b2;
1226 b1 = l1->block;
1227 b2 = l2->block;
1228 while (level_is_constant(level, scalar, scaldims, nb_scattdims)) {
1229 int cmp = cloog_int_cmp(b1->scaldims[scalar], b2->scaldims[scalar]);
1230 if (cmp)
1231 return cmp;
1232 scalar++;
1234 return 0;
1239 * cloog_loop_scalar_gt function:
1240 * This function returns 1 if loop 'l1' is greater than loop 'l2' for the
1241 * scalar dimension vector that begins at dimension 'scalar', 0 otherwise. What
1242 * we want to know is whether a loop is scheduled before another one or not.
1243 * This function solves the problem when the considered dimension for scheduling
1244 * is a scalar dimension. Since there may be a succession of scalar dimensions,
1245 * this function will reason about the vector of scalar dimension that begins
1246 * at dimension 'level+scalar' and finish to the first non-scalar dimension.
1247 * \param l1 Loop to be compared with l2.
1248 * \param l2 Loop to be compared with l1.
1249 * \param level Current non-scalar dimension.
1250 * \param scaldims Boolean array saying whether a dimension is scalar or not.
1251 * \param nb_scattdims Size of the scaldims array.
1252 * \param scalar Current scalar dimension.
1253 * \return 1 if (l1 > l2), 0 otherwise.
1255 * - September 9th 2005: first version.
1256 * - October 15nd 2007: now "greater than" instead of "greater or equal".
1258 int cloog_loop_scalar_gt(l1, l2, level, scaldims, nb_scattdims, scalar)
1259 CloogLoop * l1, * l2 ;
1260 int level, * scaldims, nb_scattdims, scalar ;
1262 return cloog_loop_constant_cmp(l1, l2, level, scaldims, nb_scattdims, scalar) > 0;
1267 * cloog_loop_scalar_eq function:
1268 * This function returns 1 if loop 'l1' is equal to loop 'l2' for the scalar
1269 * dimension vector that begins at dimension 'scalar', 0 otherwise. What we want
1270 * to know is whether two loops are scheduled for the same time or not.
1271 * This function solves the problem when the considered dimension for scheduling
1272 * is a scalar dimension. Since there may be a succession of scalar dimensions,
1273 * this function will reason about the vector of scalar dimension that begins
1274 * at dimension 'level+scalar' and finish to the first non-scalar dimension.
1275 * - l1 and l2 are the loops to compare,
1276 * - level is the current non-scalar dimension,
1277 * - scaldims is the boolean array saying whether a dimension is scalar or not,
1278 * - nb_scattdims is the size of the scaldims array,
1279 * - scalar is the current scalar dimension.
1281 * - September 9th 2005 : first version.
1283 int cloog_loop_scalar_eq(l1, l2, level, scaldims, nb_scattdims, scalar)
1284 CloogLoop * l1, * l2 ;
1285 int level, * scaldims, nb_scattdims, scalar ;
1287 return cloog_loop_constant_cmp(l1, l2, level, scaldims, nb_scattdims, scalar) == 0;
1292 * cloog_loop_scalar_sort function:
1293 * This function sorts a linked list of loops (loop) with respect to the
1294 * scalar dimension vector that begins at dimension 'scalar'. Since there may
1295 * be a succession of scalar dimensions, this function will reason about the
1296 * vector of scalar dimension that begins at dimension 'level+scalar' and
1297 * finish to the first non-scalar dimension.
1298 * \param loop Loop list to sort.
1299 * \param level Current non-scalar dimension.
1300 * \param scaldims Boolean array saying whether a dimension is scalar or not.
1301 * \param nb_scattdims Size of the scaldims array.
1302 * \param scalar Current scalar dimension.
1303 * \return A pointer to the sorted list.
1305 * - July 2nd 2005: first developments.
1306 * - September 2nd 2005: first version.
1307 * - October 15nd 2007: complete rewrite to remove bugs, now a bubble sort.
1309 CloogLoop * cloog_loop_scalar_sort(loop, level, scaldims, nb_scattdims, scalar)
1310 CloogLoop * loop ;
1311 int level, * scaldims, nb_scattdims, scalar ;
1312 { int ok ;
1313 CloogLoop **current;
1315 do {
1316 ok = 1;
1317 for (current = &loop; (*current)->next; current = &(*current)->next) {
1318 CloogLoop *next = (*current)->next;
1319 if (cloog_loop_scalar_gt(*current,next,level,scaldims,nb_scattdims,scalar)) {
1320 ok = 0;
1321 (*current)->next = next->next;
1322 next->next = *current;
1323 *current = next;
1326 } while (!ok);
1328 return loop ;
1333 * cloog_loop_generate_backtrack function:
1334 * adaptation from LoopGen 0.4 by F. Quillere. This function implements the
1335 * backtrack of the Quillere et al. algorithm (see the Quillere paper).
1336 * It eliminates unused iterations of the current level for the new one. See the
1337 * example called linearity-1-1 example with and without this part for an idea.
1338 * - October 26th 2001: first version in cloog_loop_generate_general.
1339 * - July 31th 2002: (debug) no more parasite loops (REALLY hard !).
1340 * - October 30th 2005: extraction from cloog_loop_generate_general.
1342 CloogLoop *cloog_loop_generate_backtrack(CloogLoop *loop,
1343 int level, CloogOptions *options)
1345 CloogDomain * domain ;
1346 CloogLoop * now, * now2, * next, * next2, * end, * temp, * l, * inner,
1347 * new_loop ;
1349 temp = loop ;
1350 loop = NULL ;
1352 while (temp != NULL)
1353 { l = NULL ;
1354 inner = temp->inner ;
1356 while (inner != NULL)
1357 { next = inner->next ;
1358 /* This 'if' and its first part is the debug of july 31th 2002. */
1359 if (inner->block != NULL) {
1360 end = cloog_loop_alloc(temp->state, inner->domain, temp->state->one,
1361 temp->state->zero, inner->block, NULL, NULL);
1362 domain = cloog_domain_copy(temp->domain) ;
1363 new_loop = cloog_loop_alloc(temp->state, domain, temp->state->one,
1364 temp->state->zero, NULL, end, NULL);
1366 else
1367 new_loop = cloog_loop_project(inner, level);
1369 cloog_loop_free_parts(inner,0,0,0,0) ;
1370 cloog_loop_add(&l,&now2,new_loop) ;
1371 inner = next ;
1374 temp->inner = NULL ;
1376 if (l != NULL)
1377 { l = cloog_loop_separate(l) ;
1378 l = cloog_loop_sort(l, level);
1379 while (l != NULL) {
1380 cloog_int_set(l->stride, temp->stride);
1381 cloog_int_set(l->offset, temp->offset);
1382 cloog_loop_add(&loop,&now,l) ;
1383 l = l->next ;
1386 next2 = temp->next ;
1387 cloog_loop_free_parts(temp,1,0,0,0) ;
1388 temp = next2 ;
1391 return loop ;
1396 * Return 1 if we need to continue recursing to the specified level.
1398 int cloog_loop_more(CloogLoop *loop, int level, int scalar, int nb_scattdims)
1400 return level + scalar <= nb_scattdims ||
1401 cloog_domain_dimension(loop->domain) >= level;
1406 * cloog_loop_generate_general function:
1407 * Adaptation from LoopGen 0.4 by F. Quillere. This function implements the
1408 * Quillere algorithm for polyhedron scanning from step 3 to 5.
1409 * (see the Quillere paper).
1410 * - loop is the loop for which we have to generate a scanning code,
1411 * - level is the current non-scalar dimension,
1412 * - scalar is the current scalar dimension,
1413 * - scaldims is the boolean array saying whether a dimension is scalar or not,
1414 * - nb_scattdims is the size of the scaldims array,
1415 * - options are the general code generation options.
1417 * - October 26th 2001: first version.
1418 * - July 3rd->11th 2003: memory leaks hunt and correction.
1419 * - June 22nd 2005: Adaptation for GMP.
1420 * - September 2nd 2005: The function have been cutted out in two pieces:
1421 * cloog_loop_generate and this one, in order to handle
1422 * the scalar dimension case more efficiently with
1423 * cloog_loop_generate_scalar.
1424 * - November 15th 2005: (debug) the result of the cloog_loop_generate call may
1425 * be a list of polyhedra (especially if stop option is
1426 * used): cloog_loop_add_list instead of cloog_loop_add.
1428 CloogLoop *cloog_loop_generate_general(CloogLoop *loop,
1429 int level, int scalar, int *scaldims, int nb_scattdims,
1430 CloogOptions *options)
1432 CloogLoop * res, * now, * temp, * l, * new_loop, * inner, * now2, * end,
1433 * next, * into ;
1434 CloogDomain * domain ;
1436 /* 3. Separate all projections into disjoint polyhedra. */
1437 res = ((options->f > level+scalar) || (options->f < 0)) ?
1438 cloog_loop_merge(loop, options) : cloog_loop_separate(loop);
1440 /* 3b. -correction- sort the loops to determine their textual order. */
1441 res = cloog_loop_sort(res, level);
1443 /* 4. Recurse for each loop with the current domain as context. */
1444 temp = res ;
1445 res = NULL ;
1446 if (!level || (level+scalar < options->l) || (options->l < 0))
1447 while(temp != NULL)
1448 { if (level && options->strides)
1449 cloog_loop_stride(temp, level);
1450 inner = temp->inner ;
1451 domain = temp->domain ;
1452 into = NULL ;
1453 while (inner != NULL)
1454 { /* 4b. -ced- recurse for each sub-list of non terminal loops. */
1455 if (cloog_loop_more(inner, level + 1, scalar, nb_scattdims)) {
1456 end = inner;
1457 while ((end->next != NULL) &&
1458 cloog_loop_more(end->next, level + 1, scalar, nb_scattdims))
1459 end = end->next ;
1461 next = end->next ;
1462 end->next = NULL ;
1464 l = cloog_loop_generate(inner,domain,level+1,scalar,
1465 scaldims, nb_scattdims, options);
1467 if (l != NULL)
1468 cloog_loop_add_list(&into,&now,l) ;
1470 inner = next ;
1472 else
1473 { cloog_loop_add(&into,&now,inner) ;
1474 inner = inner->next ;
1477 next = temp->next ;
1478 temp->next = NULL ;
1479 temp->inner = into ;
1480 cloog_loop_add(&res,&now2,temp) ;
1481 temp = next ;
1483 else
1484 while (temp != NULL)
1485 { next = temp->next ;
1486 l = cloog_loop_nest(temp->inner, temp->domain, level+1);
1487 new_loop = cloog_loop_alloc(temp->state, temp->domain, temp->state->one,
1488 temp->state->zero, NULL, l, NULL);
1489 temp->inner = NULL ;
1490 temp->next = NULL ;
1491 cloog_loop_free_parts(temp,0,0,0,0) ;
1492 cloog_loop_add(&res,&now,new_loop) ;
1493 temp = next ;
1496 /* 5. eliminate unused iterations of the current level for the new one. See
1497 * the example called linearity-1-1 example with and without this part
1498 * for an idea.
1500 if ((!options->nobacktrack) && level &&
1501 ((level+scalar < options->l) || (options->l < 0)) &&
1502 ((options->f <= level+scalar) && !(options->f < 0)))
1503 res = cloog_loop_generate_backtrack(res, level, options);
1505 /* Pray for my new paper to be accepted somewhere since the following stuff
1506 * is really amazing :-) !
1507 * Far long later: The paper has been accepted to PACT 2004 :-))). But there
1508 * are still some bugs and I have no time to fix them. Thus now you have to
1509 * pray for me to get an academic position for that really amazing stuff :-) !
1510 * Later again: OK, I get my academic position, but still I have not enough
1511 * time to fix and clean this part... Pray again :-) !!!
1513 /* res = cloog_loop_unisolate(res,level) ;*/
1515 return(res) ;
1519 CloogLoop *cloog_loop_generate_restricted(CloogLoop *loop,
1520 int level, int scalar, int *scaldims, int nb_scattdims,
1521 CloogOptions *options);
1525 * cloog_loop_generate_scalar function:
1526 * This function applies the simplified code generation scheme in the trivial
1527 * case of scalar dimensions. When dealing with scalar dimensions, there is
1528 * no need of costly polyhedral operations for separation or sorting: sorting
1529 * is a question of comparing scalar vectors and separation amounts to consider
1530 * only loops with the same scalar vector for the next step of the code
1531 * generation process. This function achieves the separation/sorting process
1532 * for the vector of scalar dimension that begins at dimension 'level+scalar'
1533 * and finish to the first non-scalar dimension.
1534 * - loop is the loop for which we have to generate a scanning code,
1535 * - level is the current non-scalar dimension,
1536 * - scalar is the current scalar dimension,
1537 * - scaldims is the boolean array saying whether a dimension is scalar or not,
1538 * - nb_scattdims is the size of the scaldims array,
1539 * - options are the general code generation options.
1541 * - September 2nd 2005: First version.
1543 CloogLoop *cloog_loop_generate_scalar(CloogLoop *loop,
1544 int level, int scalar, int *scaldims, int nb_scattdims,
1545 CloogOptions *options)
1546 { CloogLoop * res, * now, * temp, * l, * end, * next, * ref ;
1547 int scalar_new;
1549 /* We sort the loop list with respect to the current scalar vector. */
1550 res = cloog_loop_scalar_sort(loop,level,scaldims,nb_scattdims,scalar) ;
1552 scalar_new = scalar + scaldims[level + scalar - 1];
1554 temp = res ;
1555 res = NULL ;
1556 while (temp != NULL)
1557 { /* Then we will appy the general code generation process to each sub-list
1558 * of loops with the same scalar vector.
1560 end = temp ;
1561 ref = temp ;
1563 while((end->next != NULL) &&
1564 cloog_loop_more(end->next, level, scalar_new, nb_scattdims) &&
1565 cloog_loop_scalar_eq(ref,end->next,level,scaldims,nb_scattdims,scalar))
1566 end = end->next ;
1568 next = end->next ;
1569 end->next = NULL ;
1571 /* For the next dimension, scalar value is updated by adding the scalar
1572 * vector size, which is stored at scaldims[level+scalar-1].
1574 if (cloog_loop_more(temp, level, scalar_new, nb_scattdims)) {
1575 l = cloog_loop_generate_restricted(temp, level, scalar_new,
1576 scaldims, nb_scattdims, options);
1578 if (l != NULL)
1579 cloog_loop_add_list(&res, &now, l);
1580 } else
1581 cloog_loop_add(&res, &now, temp);
1583 temp = next ;
1586 return res ;
1590 /* Compare loop with the next loop based on their constant dimensions.
1591 * The result is < 0, == 0 or > 0 depending on whether the constant
1592 * dimensions of loop are lexicographically smaller, equal or greater
1593 * than those of loop->next.
1594 * If loop is the last in the list, then it is assumed to be smaller
1595 * than the "next" one.
1597 static int cloog_loop_next_scal_cmp(CloogLoop *loop)
1599 int i;
1600 int nb_scaldims;
1602 if (!loop->next)
1603 return -1;
1605 nb_scaldims = loop->block->nb_scaldims;
1606 if (loop->next->block->nb_scaldims < nb_scaldims)
1607 nb_scaldims = loop->next->block->nb_scaldims;
1609 for (i = 0; i < nb_scaldims; ++i) {
1610 int cmp = cloog_int_cmp(loop->block->scaldims[i],
1611 loop->next->block->scaldims[i]);
1612 if (cmp)
1613 return cmp;
1615 return loop->block->nb_scaldims - loop->next->block->nb_scaldims;
1619 /* Check whether the globally constant dimensions of a and b
1620 * have the same value for all globally constant dimensions
1621 * that are situated before any (locally) non-constant dimension.
1623 static int cloog_loop_equal_prefix(CloogLoop *a, CloogLoop *b,
1624 int *scaldims, int nb_scattdims)
1626 int i;
1627 int cst = 0;
1628 int dim = 0;
1630 for (i = 0; i < nb_scattdims; ++i) {
1631 if (!scaldims[i]) {
1632 dim++;
1633 continue;
1635 if (!cloog_int_eq(a->block->scaldims[cst], b->block->scaldims[cst]))
1636 break;
1637 cst++;
1639 for (i = i + 1; i < nb_scattdims; ++i) {
1640 if (scaldims[i])
1641 continue;
1642 if (!cloog_domain_lazy_isconstant(a->domain, dim))
1643 return 0;
1644 /* No need to check that dim is also constant in b and that the
1645 * constant values are equal. That will happen during the check
1646 * whether the two domains are equal.
1648 dim++;
1650 return 1;
1654 /* Try to block adjacent loops in the loop list "loop".
1655 * We only attempt blocking if the constant dimensions of the loops
1656 * in the least are (not necessarily strictly) increasing.
1657 * Then we look for a sublist such that the first (begin) has constant
1658 * dimensions strictly larger than the previous loop in the complete
1659 * list and such that the loop (end) after the last loop in the sublist
1660 * has constant dimensions strictly larger than the last loop in the sublist.
1661 * Furthermore, all loops in the sublist should have the same domain
1662 * (with globally constant dimensions removed) and the difference
1663 * (if any) in constant dimensions may only occur after all the
1664 * (locally) constant dimensions.
1665 * If we find such a sublist, then the blocks of all but the first
1666 * are merged into the block of the first.
1668 * Note that this function can only be called before the global
1669 * blocklist has been created because it may otherwise modify and destroy
1670 * elements on that list.
1672 CloogLoop *cloog_loop_block(CloogLoop *loop, int *scaldims, int nb_scattdims)
1674 CloogLoop *begin, *end, *l;
1675 int begin_after_previous;
1676 int end_after_previous;
1678 if (!loop->next)
1679 return loop;
1680 for (begin = loop; begin; begin = begin->next) {
1681 if (!begin->block || !begin->block->scaldims)
1682 return loop;
1683 if (cloog_loop_next_scal_cmp(loop) > 0)
1684 return loop;
1687 begin_after_previous = 1;
1688 for (begin = loop; begin; begin = begin->next) {
1689 if (!begin_after_previous) {
1690 begin_after_previous = cloog_loop_next_scal_cmp(begin) < 0;
1691 continue;
1694 end_after_previous = cloog_loop_next_scal_cmp(begin) < 0;
1695 for (end = begin->next; end; end = end->next) {
1696 if (!cloog_loop_equal_prefix(begin, end, scaldims, nb_scattdims))
1697 break;
1698 if (!cloog_domain_lazy_equal(begin->domain, end->domain))
1699 break;
1700 end_after_previous = cloog_loop_next_scal_cmp(end) < 0;
1702 if (end != begin->next && end_after_previous) {
1703 for (l = begin->next; l != end; l = begin->next) {
1704 cloog_block_merge(begin->block, l->block);
1705 begin->next = l->next;
1706 cloog_loop_free_parts(l, 1, 0, 1, 0);
1710 begin_after_previous = cloog_loop_next_scal_cmp(begin) < 0;
1713 return loop;
1718 * Check whether for any fixed iteration of the outer loops,
1719 * there is an iteration of loop1 that is lexicographically greater
1720 * than an iteration of loop2.
1721 * Return 1 if there exists (or may exist) such a pair.
1722 * Return 0 if all iterations of loop1 are lexicographically smaller
1723 * than the iterations of loop2.
1724 * If no iteration is lexicographically greater, but if there are
1725 * iterations that are equal to iterations of loop2, then return "def".
1726 * This is useful for ensuring that such statements are not reordered.
1727 * Some users, including the test_run target in test, expect
1728 * the statements at a given point to be run in the original order.
1729 * Passing the value "0" for "def" would allow such statements to be reordered
1730 * and would allow for the detection of more components.
1732 int cloog_loop_follows(CloogLoop *loop1, CloogLoop *loop2,
1733 int level, int scalar, int *scaldims, int nb_scattdims, int def)
1735 int dim1, dim2;
1737 dim1 = cloog_domain_dimension(loop1->domain);
1738 dim2 = cloog_domain_dimension(loop2->domain);
1739 while ((level <= dim1 && level <= dim2) ||
1740 level_is_constant(level, scalar, scaldims, nb_scattdims)) {
1741 if (level_is_constant(level, scalar, scaldims, nb_scattdims)) {
1742 int cmp = cloog_loop_constant_cmp(loop1, loop2, level, scaldims,
1743 nb_scattdims, scalar);
1744 if (cmp > 0)
1745 return 1;
1746 if (cmp < 0)
1747 return 0;
1748 scalar += scaldims[level + scalar - 1];
1749 } else {
1750 int follows = cloog_domain_follows(loop1->domain, loop2->domain,
1751 level);
1752 if (follows > 0)
1753 return 1;
1754 if (follows < 0)
1755 return 0;
1756 level++;
1760 return def;
1764 /* Structure for representing the nodes in the graph being traversed
1765 * using Tarjan's algorithm.
1766 * index represents the order in which nodes are visited.
1767 * min_index is the index of the root of a (sub)component.
1768 * on_stack indicates whether the node is currently on the stack.
1770 struct cloog_loop_sort_node {
1771 int index;
1772 int min_index;
1773 int on_stack;
1775 /* Structure for representing the graph being traversed
1776 * using Tarjan's algorithm.
1777 * len is the number of nodes
1778 * node is an array of nodes
1779 * stack contains the nodes on the path from the root to the current node
1780 * sp is the stack pointer
1781 * index is the index of the last node visited
1782 * order contains the elements of the components separated by -1
1783 * op represents the current position in order
1785 struct cloog_loop_sort {
1786 int len;
1787 struct cloog_loop_sort_node *node;
1788 int *stack;
1789 int sp;
1790 int index;
1791 int *order;
1792 int op;
1795 /* Allocate and initialize cloog_loop_sort structure.
1797 static struct cloog_loop_sort *cloog_loop_sort_alloc(int len)
1799 struct cloog_loop_sort *s;
1800 int i;
1802 s = (struct cloog_loop_sort *)malloc(sizeof(struct cloog_loop_sort));
1803 assert(s);
1804 s->len = len;
1805 s->node = (struct cloog_loop_sort_node *)
1806 malloc(len * sizeof(struct cloog_loop_sort_node));
1807 assert(s->node);
1808 for (i = 0; i < len; ++i)
1809 s->node[i].index = -1;
1810 s->stack = (int *)malloc(len * sizeof(int));
1811 assert(s->stack);
1812 s->order = (int *)malloc(2 * len * sizeof(int));
1813 assert(s->order);
1815 s->sp = 0;
1816 s->index = 0;
1817 s->op = 0;
1819 return s;
1822 /* Free cloog_loop_sort structure.
1824 static void cloog_loop_sort_free(struct cloog_loop_sort *s)
1826 free(s->node);
1827 free(s->stack);
1828 free(s->order);
1829 free(s);
1833 /* Perform Tarjan's algorithm for computing the strongly connected components
1834 * in the graph with the individual CloogLoops as vertices.
1835 * Two CloogLoops appear in the same component if some iterations of
1836 * each loop should be executed before some iterations of the other loop.
1837 * If two CloogLoops have exactly the same iteration domain, then they
1838 * are also placed in the same component.
1840 static void cloog_loop_components_tarjan(struct cloog_loop_sort *s,
1841 CloogLoop **loop_array, int i, int level, int scalar, int *scaldims,
1842 int nb_scattdims)
1844 int j;
1846 s->node[i].index = s->index;
1847 s->node[i].min_index = s->index;
1848 s->node[i].on_stack = 1;
1849 s->index++;
1850 s->stack[s->sp++] = i;
1852 for (j = s->len - 1; j >= 0; --j) {
1853 int f;
1855 if (j == i)
1856 continue;
1857 if (s->node[j].index >= 0 &&
1858 (!s->node[j].on_stack ||
1859 s->node[j].index > s->node[i].min_index))
1860 continue;
1862 f = cloog_domain_lazy_equal(loop_array[i]->domain, loop_array[j]->domain);
1863 if (!f)
1864 f = cloog_loop_follows(loop_array[i]->inner, loop_array[j]->inner,
1865 level, scalar, scaldims, nb_scattdims, i > j);
1866 if (!f)
1867 continue;
1869 if (s->node[j].index < 0) {
1870 cloog_loop_components_tarjan(s, loop_array, j, level, scalar,
1871 scaldims, nb_scattdims);
1872 if (s->node[j].min_index < s->node[i].min_index)
1873 s->node[i].min_index = s->node[j].min_index;
1874 } else if (s->node[j].index < s->node[i].min_index)
1875 s->node[i].min_index = s->node[j].index;
1878 if (s->node[i].index != s->node[i].min_index)
1879 return;
1881 do {
1882 j = s->stack[--s->sp];
1883 s->node[j].on_stack = 0;
1884 s->order[s->op++] = j;
1885 } while (j != i);
1886 s->order[s->op++] = -1;
1890 static int qsort_index_cmp(const void *p1, const void *p2)
1892 return *(int *)p1 - *(int *)p2;
1895 /* Sort the elements of the component starting at list.
1896 * The list is terminated by a -1.
1898 static void sort_component(int *list)
1900 int len;
1902 for (len = 0; list[len] != -1; ++len)
1905 qsort(list, len, sizeof(int), qsort_index_cmp);
1910 * Call cloog_loop_generate_scalar or cloog_loop_generate_general
1911 * on each of the strongly connected components in the list of CloogLoops
1912 * pointed to by "loop".
1914 * We use Tarjan's algorithm to find the strongly connected components.
1915 * Note that this algorithm also topologically sorts the components.
1917 * The components are treated separately to avoid spurious separations.
1918 * The concatentation of the results may contain successive loops
1919 * with the same bounds, so we try to combine such loops.
1921 CloogLoop *cloog_loop_generate_components(CloogLoop *loop,
1922 int level, int scalar, int *scaldims, int nb_scattdims,
1923 CloogOptions *options)
1925 int i, nb_loops;
1926 CloogLoop *tmp, **tmp_next;
1927 CloogLoop *res, **res_next;
1928 CloogLoop **loop_array;
1929 struct cloog_loop_sort *s;
1931 if (level == 0 || !loop->next)
1932 return cloog_loop_generate_general(loop, level, scalar,
1933 scaldims, nb_scattdims, options);
1935 nb_loops = cloog_loop_count(loop);
1937 loop_array = (CloogLoop **)malloc(nb_loops * sizeof(CloogLoop *));
1938 assert(loop_array);
1940 for (i = 0, tmp = loop; i < nb_loops; i++, tmp = tmp->next)
1941 loop_array[i] = tmp;
1943 s = cloog_loop_sort_alloc(nb_loops);
1944 for (i = nb_loops - 1; i >= 0; --i) {
1945 if (s->node[i].index >= 0)
1946 continue;
1947 cloog_loop_components_tarjan(s, loop_array, i, level, scalar, scaldims,
1948 nb_scattdims);
1951 i = 0;
1952 res = NULL;
1953 res_next = &res;
1954 while (nb_loops) {
1955 tmp_next = &tmp;
1956 sort_component(&s->order[i]);
1957 while (s->order[i] != -1) {
1958 *tmp_next = loop_array[s->order[i]];
1959 tmp_next = &(*tmp_next)->next;
1960 --nb_loops;
1961 ++i;
1963 ++i;
1964 *tmp_next = NULL;
1965 *res_next = cloog_loop_generate_general(tmp, level, scalar,
1966 scaldims, nb_scattdims, options);
1967 while (*res_next)
1968 res_next = &(*res_next)->next;
1971 cloog_loop_sort_free(s);
1973 free(loop_array);
1975 res = cloog_loop_combine(res);
1977 return res;
1981 CloogLoop *cloog_loop_generate_restricted(CloogLoop *loop,
1982 int level, int scalar, int *scaldims, int nb_scattdims,
1983 CloogOptions *options)
1985 /* To save both time and memory, we switch here depending on whether the
1986 * current dimension is scalar (simplified processing) or not (general
1987 * processing).
1989 if (level_is_constant(level, scalar, scaldims, nb_scattdims))
1990 return cloog_loop_generate_scalar(loop, level, scalar,
1991 scaldims, nb_scattdims, options);
1993 * 2. Compute the projection of each polyhedron onto the outermost
1994 * loop variable and the parameters.
1996 loop = cloog_loop_project_all(loop, level);
1998 return cloog_loop_generate_components(loop, level, scalar, scaldims,
1999 nb_scattdims, options);
2004 * cloog_loop_generate function:
2005 * Adaptation from LoopGen 0.4 by F. Quillere. This function implements the
2006 * Quillere algorithm for polyhedron scanning from step 1 to 2.
2007 * (see the Quillere paper).
2008 * - loop is the loop for which we have to generate a scanning code,
2009 * - context is the context of the current loop (constraints on parameter and/or
2010 * on outer loop counters),
2011 * - level is the current non-scalar dimension,
2012 * - scalar is the current scalar dimension,
2013 * - scaldims is the boolean array saying whether a dimension is scalar or not,
2014 * - nb_scattdims is the size of the scaldims array,
2015 * - options are the general code generation options.
2017 * - October 26th 2001: first version.
2018 * - July 3rd->11th 2003: memory leaks hunt and correction.
2019 * - June 15th 2005: a memory leak fixed (loop was not entirely freed when
2020 * the result of cloog_loop_restrict was NULL).
2021 * - June 22nd 2005: Adaptation for GMP.
2022 * - September 2nd 2005: The function have been cutted out in two pieces:
2023 * cloog_loop_generate and this one, in order to handle
2024 * the scalar dimension case more efficiently with
2025 * cloog_loop_generate_scalar.
2026 * - November 15th 2005: (debug) Condition for stop option no more take care of
2027 * further scalar dimensions.
2029 CloogLoop *cloog_loop_generate(CloogLoop *loop, CloogDomain *context,
2030 int level, int scalar, int *scaldims, int nb_scattdims,
2031 CloogOptions *options)
2033 /* If the user asked to stop code generation at this level, let's stop. */
2034 if ((options->stop >= 0) && (level+scalar >= options->stop+1))
2035 return cloog_loop_stop(loop,context) ;
2037 /* 1. Replace each polyhedron by its intersection with the context.
2039 loop = cloog_loop_restrict_all(loop, context);
2040 if (!loop)
2041 return NULL;
2043 return cloog_loop_generate_restricted(loop, level, scalar, scaldims,
2044 nb_scattdims, options);
2049 * Internal function for simplifying a single loop in a list of loops.
2050 * See cloog_loop_simplify.
2052 static CloogLoop *loop_simplify(CloogLoop *loop, CloogDomain *context,
2053 int level)
2055 int domain_dim;
2056 CloogBlock * new_block ;
2057 CloogLoop *simplified, *inner;
2058 CloogDomain * domain, * simp, * inter, * extended_context ;
2060 if (!cloog_domain_isconvex(loop->domain))
2061 loop->domain = cloog_domain_simplify_union(loop->domain);
2063 domain = loop->domain ;
2065 domain_dim = cloog_domain_dimension(domain);
2066 extended_context = cloog_domain_extend(context, domain_dim);
2067 inter = cloog_domain_intersection(domain,extended_context) ;
2068 simp = cloog_domain_simplify(inter,extended_context) ;
2069 cloog_domain_free(extended_context) ;
2071 /* If the constraint system is never true, go to the next one. */
2072 if (cloog_domain_never_integral(simp)) {
2073 cloog_loop_free(loop->inner);
2074 cloog_domain_free(inter);
2075 cloog_domain_free(simp);
2076 return NULL;
2079 inner = cloog_loop_simplify(loop->inner, inter, level+1);
2080 cloog_domain_free(inter) ;
2082 if ((inner == NULL) && (loop->block == NULL)) {
2083 cloog_domain_free(simp);
2084 return NULL;
2087 new_block = cloog_block_copy(loop->block) ;
2089 simplified = cloog_loop_alloc(loop->state, simp, loop->stride, loop->offset,
2090 new_block, inner, NULL);
2092 return(simplified) ;
2097 * cloog_loop_simplify function:
2098 * This function implements the part 6. of the Quillere algorithm, it
2099 * recursively simplifies each loop in the context of the preceding loop domain.
2100 * It returns a pointer to the simplified loop list.
2101 * The cloog_domain_simplify (DomainSimplify) behaviour is really bad with
2102 * polyhedra union and some really awful sidesteppings were written, I plan
2103 * to solve that...
2104 * - October 31th 2001: first version.
2105 * - July 3rd->11th 2003: memory leaks hunt and correction.
2106 * - April 16th 2005: a memory leak fixed (extended_context was not freed).
2107 * - June 15th 2005: a memory leak fixed (loop was not conveniently freed
2108 * when the constraint system is never true).
2109 * - October 27th 2005: - this function called before cloog_loop_fast_simplify
2110 * is now the official cloog_loop_simplify function in
2111 * replacement of a slower and more complex one (after
2112 * deep changes in the pretty printer).
2113 * - we use cloog_loop_disjoint to fix the problem when
2114 * simplifying gives a union of polyhedra (before, it
2115 * was under the responsibility of the pretty printer).
2117 CloogLoop *cloog_loop_simplify(CloogLoop *loop, CloogDomain *context, int level)
2119 CloogLoop *now;
2120 CloogLoop *res = NULL;
2121 CloogLoop **next = &res;
2123 for (now = loop; now; now = now->next) {
2124 *next = loop_simplify(now, context, level);
2126 now->inner = NULL; /* For loop integrity. */
2127 cloog_domain_free(now->domain);
2128 now->domain = NULL;
2130 if (*next)
2131 next = &(*next)->next;
2133 cloog_loop_free(loop);
2135 /* Examples like test/iftest2.cloog give unions of polyhedra after
2136 * simplifying, thus we we have to disjoint them. Another good reason to
2137 * put the simplifying step in the Quillere backtrack.
2139 res = cloog_loop_disjoint(res);
2141 return res;
2146 * cloog_loop_scatter function:
2147 * This function add the scattering (scheduling) informations in a loop.
2149 void cloog_loop_scatter(CloogLoop * loop, CloogScattering *scatt)
2151 loop->domain = cloog_domain_scatter(loop->domain, scatt);