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
check_single_reference_templ.c
Go to the documentation of this file.
1
#define xFN(TYPE,NAME) TYPE ## _ ## NAME
2
#define FN(TYPE,NAME) xFN(TYPE,NAME)
3
4
/* Check that "obj" has a single reference.
5
* That is, check that "obj" can be changed inplace.
6
*/
7
isl_stat
FN
(
TYPE
,check_single_reference)(
__isl_keep
TYPE
*
obj
)
8
{
9
isl_bool
single;
10
11
single =
FN
(
TYPE
,has_single_reference)(
obj
);
12
if
(single < 0)
13
return
isl_stat_error
;
14
if
(!single)
15
isl_die
(
FN
(
TYPE
,get_ctx)(
obj
),
isl_error_invalid
,
16
"object should have a single reference"
,
17
return
isl_stat_error
);
18
return
isl_stat_ok
;
19
}
TYPE
#define TYPE
Definition:
check_parse_fail_test_templ.c:13
FN
#define FN(TYPE, NAME)
Definition:
check_single_reference_templ.c:2
isl_stat
isl_stat
Definition:
ctx.h:84
isl_stat_error
@ isl_stat_error
Definition:
ctx.h:85
isl_stat_ok
@ isl_stat_ok
Definition:
ctx.h:86
isl_die
#define isl_die(ctx, errno, msg, code)
Definition:
ctx.h:137
isl_error_invalid
@ isl_error_invalid
Definition:
ctx.h:80
__isl_keep
#define __isl_keep
Definition:
ctx.h:25
isl_bool
isl_bool
Definition:
ctx.h:89
obj
const char * obj
Definition:
isl_test.c:3316
Generated on Fri Apr 25 2025 19:43:56 for Polly by
1.9.6