forked from OSchip/llvm-project
28 lines
845 B
C
28 lines
845 B
C
#ifndef ISL_POINT_PRIVATE_H
|
|
#define ISL_POINT_PRIVATE_H
|
|
|
|
#include <isl/space.h>
|
|
#include <isl/point.h>
|
|
#include <isl/vec.h>
|
|
|
|
struct isl_point {
|
|
int ref;
|
|
isl_space *dim;
|
|
struct isl_vec *vec;
|
|
};
|
|
|
|
__isl_give isl_point *isl_point_alloc(__isl_take isl_space *space,
|
|
__isl_take isl_vec *vec);
|
|
|
|
__isl_keep isl_space *isl_point_peek_space(__isl_keep isl_point *pnt);
|
|
__isl_give isl_space *isl_point_take_space(__isl_keep isl_point *pnt);
|
|
__isl_give isl_point *isl_point_restore_space(__isl_take isl_point *pnt,
|
|
__isl_take isl_space *space);
|
|
__isl_keep isl_vec *isl_point_peek_vec(__isl_keep isl_point *pnt);
|
|
__isl_give isl_vec *isl_point_get_vec(__isl_keep isl_point *pnt);
|
|
__isl_give isl_vec *isl_point_take_vec(__isl_keep isl_point *pnt);
|
|
__isl_give isl_point *isl_point_restore_vec(__isl_take isl_point *pnt,
|
|
__isl_take isl_vec *vec);
|
|
|
|
#endif
|