OpenScop  0.9.0
relation_list.h
Go to the documentation of this file.
00001 
00002     /*+-----------------------------------------------------------------**
00003      **                       OpenScop Library                          **
00004      **-----------------------------------------------------------------**
00005      **                        relation_list.h                          **
00006      **-----------------------------------------------------------------**
00007      **                   First version: 08/10/2010                     **
00008      **-----------------------------------------------------------------**
00009 
00010  
00011  *****************************************************************************
00012  * OpenScop: Structures and formats for polyhedral tools to talk together    *
00013  *****************************************************************************
00014  *    ,___,,_,__,,__,,__,,__,,_,__,,_,__,,__,,___,_,__,,_,__,                *
00015  *    /   / /  //  //  //  // /   / /  //  //   / /  // /  /|,_,             *
00016  *   /   / /  //  //  //  // /   / /  //  //   / /  // /  / / /\             *
00017  *  |~~~|~|~~~|~~~|~~~|~~~|~|~~~|~|~~~|~~~|~~~|~|~~~|~|~~~|/_/  \            *
00018  *  | G |C| P | = | L | P |=| = |C| = | = | = |=| = |=| C |\  \ /\           *
00019  *  | R |l| o | = | e | l |=| = |a| = | = | = |=| = |=| L | \# \ /\          *
00020  *  | A |a| l | = | t | u |=| = |n| = | = | = |=| = |=| o | |\# \  \         *
00021  *  | P |n| l | = | s | t |=| = |d| = | = | = | |   |=| o | | \# \  \        *
00022  *  | H | | y |   | e | o | | = |l|   |   | = | |   | | G | |  \  \  \       *
00023  *  | I | |   |   | e |   | |   | |   |   |   | |   | |   | |   \  \  \      *
00024  *  | T | |   |   |   |   | |   | |   |   |   | |   | |   | |    \  \  \     *
00025  *  | E | |   |   |   |   | |   | |   |   |   | |   | |   | |     \  \  \    *
00026  *  | * |*| * | * | * | * |*| * |*| * | * | * |*| * |*| * | /      \* \  \   *
00027  *  | O |p| e | n | S | c |o| p |-| L | i | b |r| a |r| y |/        \  \ /   *
00028  *  '---'-'---'---'---'---'-'---'-'---'---'---'-'---'-'---'          '--'    *
00029  *                                                                           *
00030  * Copyright (C) 2008 University Paris-Sud 11 and INRIA                      *
00031  *                                                                           *
00032  * (3-clause BSD license)                                                    *
00033  * Redistribution and use in source  and binary forms, with or without       *
00034  * modification, are permitted provided that the following conditions        *
00035  * are met:                                                                  *
00036  *                                                                           *
00037  * 1. Redistributions of source code must retain the above copyright notice, *
00038  *    this list of conditions and the following disclaimer.                  *
00039  * 2. Redistributions in binary form must reproduce the above copyright      *
00040  *    notice, this list of conditions and the following disclaimer in the    *
00041  *    documentation and/or other materials provided with the distribution.   *
00042  * 3. The name of the author may not be used to endorse or promote products  *
00043  *    derived from this software without specific prior written permission.  *
00044  *                                                                           *
00045  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR      *
00046  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES *
00047  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.   *
00048  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,          *
00049  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT  *
00050  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, *
00051  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY     *
00052  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT       *
00053  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF  *
00054  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.         *
00055  *                                                                           *
00056  * OpenScop Library, a library to manipulate OpenScop formats and data       *
00057  * structures. Written by:                                                   *
00058  * Cedric Bastoul     <Cedric.Bastoul@u-psud.fr> and                         *
00059  * Louis-Noel Pouchet <Louis-Noel.pouchet@inria.fr>                          *
00060  *                                                                           *
00061  *****************************************************************************/
00062 
00063 
00064 #ifndef OSL_RELATION_LIST_H
00065 # define OSL_RELATION_LIST_H
00066 
00067 # include <stdio.h>
00068 # include <osl/relation.h>
00069 
00070 
00071 # if defined(__cplusplus)
00072 extern "C"
00073   {
00074 # endif
00075 
00076 
00081 struct osl_relation_list {
00082   osl_relation_p elt;              
00083   struct osl_relation_list * next; 
00085 };
00086 typedef struct osl_relation_list   osl_relation_list_t;
00087 typedef struct osl_relation_list * osl_relation_list_p;
00088 
00089 
00090 /*+***************************************************************************
00091  *                          Structure display function                       *
00092  *****************************************************************************/
00093 void osl_relation_list_idump(FILE *, osl_relation_list_p, int);
00094 void osl_relation_list_dump(FILE *, osl_relation_list_p);
00095 void osl_relation_list_pprint_elts(FILE *, osl_relation_list_p, osl_names_p);
00096 void osl_relation_list_pprint(FILE *, osl_relation_list_p, osl_names_p);
00097 void osl_relation_list_print(FILE *, osl_relation_list_p);
00098 
00099 // SCoPLib Compatibility
00100 void osl_relation_list_pprint_access_array_scoplib(FILE *, osl_relation_list_p,
00101                                                     osl_names_p, int);
00102 
00103 
00104 /*****************************************************************************
00105  *                               Reading function                            *
00106  *****************************************************************************/
00107 osl_relation_list_p osl_relation_list_pread(FILE *, int);
00108 osl_relation_list_p osl_relation_list_read(FILE *);
00109 
00110 
00111 /*+***************************************************************************
00112  *                    Memory allocation/deallocation function                *
00113  *****************************************************************************/
00114 osl_relation_list_p osl_relation_list_malloc();
00115 void                osl_relation_list_free(osl_relation_list_p);
00116 
00117 
00118 /*+***************************************************************************
00119  *                            Processing functions                           *
00120  *****************************************************************************/
00121 osl_relation_list_p osl_relation_list_node(osl_relation_p);
00122 osl_relation_list_p osl_relation_list_clone(osl_relation_list_p);
00123 osl_relation_list_p osl_relation_list_concat(osl_relation_list_p,
00124                                              osl_relation_list_p);
00125 void                osl_relation_list_add(osl_relation_list_p *,
00126                                           osl_relation_list_p);
00127 void                osl_relation_list_push(osl_relation_list_p *,
00128                                            osl_relation_list_p);
00129 osl_relation_list_p osl_relation_list_pop(osl_relation_list_p *);
00130 void                osl_relation_list_dup(osl_relation_list_p *);
00131 void                osl_relation_list_drop(osl_relation_list_p *);
00132 void                osl_relation_list_destroy(osl_relation_list_p *);
00133 int                 osl_relation_list_equal(osl_relation_list_p,
00134                                             osl_relation_list_p);
00135 int                 osl_relation_list_integrity_check(osl_relation_list_p,
00136                                                       int, int, int, int);
00137 void                osl_relation_list_set_type(osl_relation_list_p, int);
00138 osl_relation_list_p osl_relation_list_filter(osl_relation_list_p, int);
00139 size_t              osl_relation_list_count(osl_relation_list_p);
00140 void                osl_relation_list_get_attributes(osl_relation_list_p,
00141                                                      int *, int *, int *,
00142                                                      int *, int *);
00143 # if defined(__cplusplus)
00144   }
00145 # endif
00146 #endif /* define OSL_RELATION_LIST_H */