Polly
20.0.0git
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Functions
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
v
Variables
Typedefs
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
~
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
~
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Typedefs
a
b
c
d
e
i
l
m
p
r
s
v
Enumerations
Enumerator
Related Functions
a
d
f
l
m
s
v
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
Typedefs
b
f
i
m
o
r
s
t
Enumerations
a
g
i
m
o
t
Enumerator
i
m
o
t
v
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
llvm-project
polly
lib
External
isl
isl_multi_hash.c
Go to the documentation of this file.
1
/*
2
* Copyright 2016 Sven Verdoolaege
3
*
4
* Use of this software is governed by the MIT license
5
*
6
* Written by Sven Verdoolaege
7
*/
8
9
#include <
isl_multi_macro.h
>
10
#include <
isl/hash.h
>
11
12
/* Return a hash value that digests "multi".
13
*/
14
uint32_t
FN
(
MULTI
(
BASE
),get_hash)(
__isl_keep
MULTI
(
BASE
) *multi)
15
{
16
int
i;
17
uint32_t hash;
18
19
if
(!multi)
20
return
0;
21
22
hash =
isl_hash_init
();
23
for
(i = 0; i < multi->n; ++i) {
24
uint32_t el_hash;
25
el_hash =
FN
(
EL
,get_hash)(multi->u.p[i]);
26
isl_hash_hash
(hash, el_hash);
27
}
28
29
return
hash;
30
}
FN
#define FN(TYPE, NAME)
Definition:
check_parse_fail_test_templ.c:15
__isl_keep
#define __isl_keep
Definition:
ctx.h:25
BASE
#define BASE
Definition:
flow_cmp.c:49
hash.h
isl_hash_hash
#define isl_hash_hash(h, h2)
Definition:
hash.h:26
isl_hash_init
#define isl_hash_init()
Definition:
hash.h:21
EL
#define EL
Definition:
isl_aff_private.h:238
isl_multi_macro.h
MULTI
#define MULTI(BASE)
Definition:
isl_multi_macro.h:6
Generated on Tue Apr 22 2025 02:09:27 for Polly by
1.9.6