OpenScop  0.9.0
pluto_unroll.h
Go to the documentation of this file.
1 
2  /*+-----------------------------------------------------------------**
3  ** OpenScop Library **
4  **-----------------------------------------------------------------**
5  ** extensions/pluto_unroll.h **
6  **-----------------------------------------------------------------**
7  ** First version: 26/06/2014 **
8  **-----------------------------------------------------------------**
9 
10 
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  * '---'-'---'---'---'---'-'---'-'---'---'---'-'---'-'---' '--' *
29  * *
30  * Copyright (C) 2014 Inria *
31  * *
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 *
35  * are met: *
36  * *
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. *
44  * *
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. *
55  * *
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> *
60  * *
61  *****************************************************************************/
62 
63 
64 #ifndef OSL_PLUTO_UNROLL_H
65 #define OSL_PLUTO_UNROLL_H
66 
67 
68 #include <stdio.h>
69 #include <stdbool.h>
70 
71 #include "../strings.h"
72 #include "../interface.h"
73 
74 
75 #if defined(__cplusplus)
76 extern "C"
77  {
78 #endif
79 
80 
81 #define OSL_URI_PLUTO_UNROLL "pluto_unroll"
82 
83 
89  char* iter;
90  bool jam;
91  unsigned int factor;
93 };
96 
97 
98 /*+***************************************************************************
99  * Structure display function *
100  *****************************************************************************/
101 void osl_pluto_unroll_idump(FILE *, osl_pluto_unroll_p, int);
102 void osl_pluto_unroll_dump(FILE *, osl_pluto_unroll_p);
103 char * osl_pluto_unroll_sprint(osl_pluto_unroll_p);
104 
105 
106 /*****************************************************************************
107  * Reading function *
108  *****************************************************************************/
109 osl_pluto_unroll_p osl_pluto_unroll_sread(char**);
110 
111 
112 /*+***************************************************************************
113  * Memory allocation/deallocation function *
114  *****************************************************************************/
115 osl_pluto_unroll_p osl_pluto_unroll_malloc();
116 void osl_pluto_unroll_free(osl_pluto_unroll_p);
117 
118 
119 /*+***************************************************************************
120  * Processing functions *
121  *****************************************************************************/
122 void osl_pluto_unroll_fill(osl_pluto_unroll_p,
123  char const * const,
124  bool const, int const);
125 osl_pluto_unroll_p osl_pluto_unroll_clone(osl_pluto_unroll_p);
126 int osl_pluto_unroll_equal_one(osl_pluto_unroll_p,
127  osl_pluto_unroll_p);
128 int osl_pluto_unroll_equal(osl_pluto_unroll_p,
129  osl_pluto_unroll_p);
130 osl_strings_p osl_pluto_unroll_to_strings(osl_pluto_unroll_p);
132 
133 
134 #if defined(__cplusplus)
135  }
136 #endif
137 
138 
139 #endif /* define OSL_PLUTO_UNROLL_H */
void osl_pluto_unroll_idump(FILE *, osl_pluto_unroll_p, int)
Definition: pluto_unroll.c:87
char * osl_pluto_unroll_sprint(osl_pluto_unroll_p)
Definition: pluto_unroll.c:171
void osl_pluto_unroll_dump(FILE *, osl_pluto_unroll_p)
Definition: pluto_unroll.c:157
osl_interface_p osl_pluto_unroll_interface()
Definition: pluto_unroll.c:409
unsigned int factor
unroll factor
Definition: pluto_unroll.h:91
osl_strings_p osl_pluto_unroll_to_strings(osl_pluto_unroll_p)
bool jam
true if jam, false otherwise
Definition: pluto_unroll.h:90
int osl_pluto_unroll_equal_one(osl_pluto_unroll_p, osl_pluto_unroll_p)
osl_pluto_unroll_p osl_pluto_unroll_sread(char **)
Definition: pluto_unroll.c:229
void osl_pluto_unroll_fill(osl_pluto_unroll_p, char const *const, bool const, int const)
Definition: pluto_unroll.c:310
char * iter
\0 terminated iterator name
Definition: pluto_unroll.h:89
osl_pluto_unroll_p osl_pluto_unroll_malloc()
Definition: pluto_unroll.c:267
void osl_pluto_unroll_free(osl_pluto_unroll_p)
Definition: pluto_unroll.c:287
struct osl_pluto_unroll * osl_pluto_unroll_p
Definition: pluto_unroll.h:95
struct osl_pluto_unroll * next
next { iter, jam, factor }
Definition: pluto_unroll.h:92
int osl_pluto_unroll_equal(osl_pluto_unroll_p, osl_pluto_unroll_p)
Definition: pluto_unroll.c:371
osl_pluto_unroll_p osl_pluto_unroll_clone(osl_pluto_unroll_p)
Definition: pluto_unroll.c:339