2 /*+-----------------------------------------------------------------**
4 **-----------------------------------------------------------------**
6 **-----------------------------------------------------------------**
7 ** First version: 18/07/2011 **
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_INT_H
65 # define OPENSCOP_INT_H
67 # include <openscop/macros.h>
68 # ifdef OPENSCOP_GMP_IS_HERE
73 /*+***************************************************************************
75 *****************************************************************************/
78 void openscop_int_dump_precision(FILE *, int);
79 int openscop_int_sizeof(int);
80 void * openscop_int_address(int, void *, int);
81 void openscop_int_init(int, void *, int);
82 void openscop_int_assign(int, void *, int, void *, int);
83 void openscop_int_set_si(int, void *, int, int);
84 int openscop_int_get_si(int, void *, int);
85 void openscop_int_init_set_si(int, void *, int, int);
86 void openscop_int_clear(int, void *, int);
87 void openscop_int_print(FILE *, int, void *, int);
88 void openscop_int_sprint(char *, int, void *, int);
89 void openscop_int_sread(char *, int, void *, int);
92 /*+***************************************************************************
93 * Arithmetic Operations *
94 *****************************************************************************/
97 void openscop_int_increment(int, void *, int, void *, int);
98 void openscop_int_add(int, void *, int, void *, int, void *, int);
99 void openscop_int_add_ui(int, void *, int, void *, int, int);
100 void openscop_int_mul(int, void *, int, void *, int, void *, int);
101 void openscop_int_mul_si(int, void *, int, void *, int, int);
102 void openscop_int_sub(int, void *, int, void *, int, void *, int);
103 void openscop_int_oppose(int, void *, int, void *, int);
106 /*+***************************************************************************
107 * Conditional Operations *
108 *****************************************************************************/
111 int openscop_int_eq(int, void *, int, void *, int);
112 int openscop_int_ne(int, void *, int, void *, int);
113 int openscop_int_pos(int, void *, int);
114 int openscop_int_neg(int, void *, int);
115 int openscop_int_zero(int, void *, int);
116 int openscop_int_notzero(int, void *, int);
117 int openscop_int_one(int, void *, int);
118 int openscop_int_mone(int, void *, int);
119 int openscop_int_divisible(int, void *, int, void *, int);
122 #endif /* define OPENSCOP_INT_H */