OpenScop  0.9.0
generic.h
Go to the documentation of this file.
1 
2  /*+-----------------------------------------------------------------**
3  ** OpenScop Library **
4  **-----------------------------------------------------------------**
5  ** generic.h **
6  **-----------------------------------------------------------------**
7  ** First version: 26/11/2010 **
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) 2008 University Paris-Sud 11 and 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_generic_H
65 # define OSL_generic_H
66 
67 # include <osl/interface.h>
68 
69 # if defined(__cplusplus)
70 extern "C"
71  {
72 # endif
73 
74 
81 struct osl_generic {
82  void * data;
84  struct osl_generic * next;
85 };
86 typedef struct osl_generic osl_generic_t;
87 typedef struct osl_generic * osl_generic_p;
88 typedef struct osl_generic const osl_const_generic_t;
89 typedef struct osl_generic * const osl_generic_const_p;
90 typedef struct osl_generic const * osl_const_generic_p;
91 typedef struct osl_generic const * const osl_const_generic_const_p;
92 
93 
94 /*+***************************************************************************
95  * Structure display function *
96  *****************************************************************************/
97 void osl_generic_idump(FILE *, osl_generic_p, int);
98 void osl_generic_dump(FILE *, osl_generic_p);
99 void osl_generic_print(FILE *, osl_generic_p);
100 char* osl_generic_sprint(osl_generic_p);
101 
102 // SCoPLib Compatibility
103 void osl_generic_print_options_scoplib(FILE *, osl_generic_p);
104 
105 
106 /*****************************************************************************
107  * Reading function *
108  *****************************************************************************/
109 osl_generic_p osl_generic_sread(char **, osl_interface_p);
110 osl_generic_p osl_generic_sread_one(char **, osl_interface_p);
111 osl_generic_p osl_generic_read_one(FILE *, osl_interface_p);
112 osl_generic_p osl_generic_read(FILE *, osl_interface_p);
113 
114 
115 /*+***************************************************************************
116  * Memory allocation/deallocation function *
117  *****************************************************************************/
118 void osl_generic_add(osl_generic_p*, osl_generic_p);
119 void osl_generic_remove_node(osl_generic_p*, osl_generic_p);
120 void osl_generic_remove(osl_generic_p*, char *);
121 osl_generic_p osl_generic_malloc();
122 void osl_generic_free(osl_generic_p);
123 
124 
125 /*+***************************************************************************
126  * Processing functions *
127  *****************************************************************************/
128 int osl_generic_number(osl_generic_p);
129 osl_generic_p osl_generic_clone(osl_generic_p);
130 int osl_generic_equal(osl_generic_p, osl_generic_p);
131 int osl_generic_has_URI(osl_const_generic_const_p,
132  char const * const);
133 void * osl_generic_lookup(osl_generic_p, char const * const);
134 osl_generic_p osl_generic_shell(void *, osl_interface_p);
135 
136 
137 # if defined(__cplusplus)
138  }
139 # endif
140 
141 #endif /* define OSL_generic_H */
void osl_generic_print_options_scoplib(FILE *, osl_generic_p)
Definition: generic.c:214
void osl_generic_remove(osl_generic_p *, char *)
Definition: generic.c:447
void osl_generic_free(osl_generic_p)
Definition: generic.c:489
osl_generic_p osl_generic_read_one(FILE *, osl_interface_p)
Definition: generic.c:309
struct osl_generic const osl_const_generic_t
Definition: generic.h:88
struct osl_generic * osl_generic_p
Definition: generic.h:87
void osl_generic_print(FILE *, osl_generic_p)
Definition: generic.c:196
osl_generic_p osl_generic_sread_one(char **, osl_interface_p)
Definition: generic.c:266
int osl_generic_has_URI(osl_const_generic_const_p, char const *const)
Definition: generic.c:648
void osl_generic_dump(FILE *, osl_generic_p)
Definition: generic.c:146
void * osl_generic_lookup(osl_generic_p, char const *const)
Definition: generic.c:669
char * osl_generic_sprint(osl_generic_p)
Definition: generic.c:158
osl_generic_p osl_generic_malloc()
Definition: generic.c:472
void * data
Definition: generic.h:82
osl_generic_p osl_generic_sread(char **, osl_interface_p)
Definition: generic.c:243
void osl_generic_idump(FILE *, osl_generic_p, int)
Definition: generic.c:89
int osl_generic_equal(osl_generic_p, osl_generic_p)
Definition: generic.c:592
osl_generic_p osl_generic_shell(void *, osl_interface_p)
Definition: generic.c:689
osl_interface_p interface
Definition: generic.h:83
struct osl_generic * next
Definition: generic.h:84
osl_generic_p osl_generic_clone(osl_generic_p)
Definition: generic.c:540
osl_generic_p osl_generic_read(FILE *, osl_interface_p)
Definition: generic.c:350
void osl_generic_remove_node(osl_generic_p *, osl_generic_p)
Definition: generic.c:409
struct osl_generic const * osl_const_generic_p
Definition: generic.h:90
struct osl_generic const *const osl_const_generic_const_p
Definition: generic.h:91
struct osl_generic *const osl_generic_const_p
Definition: generic.h:89
void osl_generic_add(osl_generic_p *, osl_generic_p)
Definition: generic.c:375
int osl_generic_number(osl_generic_p)
Definition: generic.c:522