2 /*+-----------------------------------------------------------------**
4 **-----------------------------------------------------------------**
5 ** extensions/irregular.h **
6 **-----------------------------------------------------------------**
7 ** First version: 07/12/2010 **
8 **-----------------------------------------------------------------**
11 *****************************************************************************
12 * OpenScop: Structures and formats for polyhedral tools to talk together *
13 *****************************************************************************
14 * ,___,,_,__,,__,,__,,__,,_,__,,_,__,,__,,___,_,__,,_,__, *
15 * / / / // // // // / / / // // / / // / /|,_, *
16 * / / / // // // // / / / // // / / // / / / /\ *
17 * |~~~|~|~~~|~~~|~~~|~~~|~|~~~|~|~~~|~~~|~~~|~|~~~|~|~~~|/_/ \ *
18 * | G |C| P | = | L | P |=| = |C| = | = | = |=| = |=| C |\ \ /\ *
19 * | R |l| o | = | e | l |=| = |a| = | = | = |=| = |=| L | \# \ /\ *
20 * | A |a| l | = | t | u |=| = |n| = | = | = |=| = |=| o | |\# \ \ *
21 * | P |n| l | = | s | t |=| = |d| = | = | = | | |=| o | | \# \ \ *
22 * | H | | y | | e | o | | = |l| | | = | | | | G | | \ \ \ *
23 * | I | | | | e | | | | | | | | | | | | | \ \ \ *
24 * | T | | | | | | | | | | | | | | | | | \ \ \ *
25 * | E | | | | | | | | | | | | | | | | | \ \ \ *
26 * | * |*| * | * | * | * |*| * |*| * | * | * |*| * |*| * | / \* \ \ *
27 * | O |p| e | n | S | c |o| p |-| L | i | b |r| a |r| y |/ \ \ / *
28 * '---'-'---'---'---'---'-'---'-'---'---'---'-'---'-'---' '--' *
30 * Copyright (C) 2008 University Paris-Sud 11 and INRIA *
32 * (3-clause BSD license) *
33 * Redistribution and use in source and binary forms, with or without *
34 * modification, are permitted provided that the following conditions *
37 * 1. Redistributions of source code must retain the above copyright notice, *
38 * this list of conditions and the following disclaimer. *
39 * 2. Redistributions in binary form must reproduce the above copyright *
40 * notice, this list of conditions and the following disclaimer in the *
41 * documentation and/or other materials provided with the distribution. *
42 * 3. The name of the author may not be used to endorse or promote products *
43 * derived from this software without specific prior written permission. *
45 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR *
46 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES *
47 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. *
48 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, *
49 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT *
50 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, *
51 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY *
52 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT *
53 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF *
54 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
56 * OpenScop Library, a library to manipulate OpenScop formats and data *
57 * structures. Written by: *
58 * Cedric Bastoul <Cedric.Bastoul@u-psud.fr> and *
59 * Louis-Noel Pouchet <Louis-Noel.pouchet@inria.fr> *
61 *****************************************************************************/
64 #ifndef OPENSCOP_IRREGULAR_H
65 # define OPENSCOP_IRREGULAR_H
67 # include <openscop/macros.h>
68 # include <openscop/strings.h>
70 # if defined(__cplusplus)
76 # define OPENSCOP_TAG_IRREGULAR_START "<irregular>"
77 # define OPENSCOP_TAG_IRREGULAR_STOP "</irregular>"
81 * The openscop_irregular_t structure stores an irregular extension to the core
82 * OpenScop representation. It contains a list of predicates (in their textual
83 * representation), and for each statement, its list of associated predicates.
84 * The list of predicates contains both control and exit predicates (see
85 * Benabderrhamane et al.'s paper at CC'2010), control predicates are listed
86 * first, then come exit predicates.
88 struct openscop_irregular
{
89 // List of predicates (textual representation).
90 int nb_control
; /**< Number of control predicates in the SCoP. */
91 int nb_exit
; /**< Number of exit predicates in the SCoP. */
92 int * nb_iterators
; /**< nb_iterators[i]: #iterators for ith predicate. */
93 char *** iterators
; /**< iterators[i]: array of (nb_control + nb_exit)
94 arrays of nb_iterators[i] strings. Each element
95 corresponds to the list of original iterators
96 for the ith predicate. */
97 char ** body
; /**< body[i]: original source code of ith predicate. */
99 // List of associated predicates for each statement.
100 int nb_statements
; /**< Number of statements in the SCoP. */
101 int * nb_predicates
; /**< nb_predicates[i]: #predicates for ith statement. */
102 int ** predicates
; /**< predicates[i]: array of nb_predicates[i] predicates
103 corresponding to the list of predicates associated
104 to the ith statement. */
106 typedef struct openscop_irregular openscop_irregular_t
;
107 typedef struct openscop_irregular
* openscop_irregular_p
;
110 /*+***************************************************************************
111 * Structure display function *
112 *****************************************************************************/
113 void openscop_irregular_idump(FILE *, openscop_irregular_p
, int);
114 void openscop_irregular_dump(FILE *, openscop_irregular_p
);
115 char * openscop_irregular_sprint(openscop_irregular_p
);
118 /*****************************************************************************
120 *****************************************************************************/
121 openscop_irregular_p
openscop_irregular_sread(char *);
124 /*+***************************************************************************
125 * Memory allocation/deallocation function *
126 *****************************************************************************/
127 openscop_irregular_p
openscop_irregular_malloc();
128 void openscop_irregular_free(openscop_irregular_p
);
131 /*+***************************************************************************
132 * Processing functions *
133 *****************************************************************************/
134 openscop_irregular_p
openscop_irregular_clone(openscop_irregular_p
);
135 int openscop_irregular_equal(openscop_irregular_p
,
136 openscop_irregular_p
);
137 openscop_irregular_p
openscop_irregular_add_control(openscop_irregular_p
,
139 openscop_irregular_p
openscop_irregular_add_exit(openscop_irregular_p
,
141 openscop_irregular_p
openscop_irregular_add_predicates(openscop_irregular_p
,
145 # if defined(__cplusplus)
149 #endif /* define OPENSCOP_IRREGULAR_H */