forked from simbuerg/isl-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AstExprList.hpp
69 lines (60 loc) · 1.87 KB
/
AstExprList.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#ifndef ISL_CXX_AstExprList_IMPL_H
#define ISL_CXX_AstExprList_IMPL_H
#include "isl/AstExprList.h"
#include "isl/AstExpr.hpp"
#include "isl/Ctx.hpp"
#include "isl/IslBase.h"
#include "isl/IslException.h"
#include <string>
#include <cassert>
namespace isl {
inline isl_ast_expr_list *AstExprList::GetCopy() const {
return isl_ast_expr_list_copy((isl_ast_expr_list *)This);
}
inline AstExprList &AstExprList::operator=(const AstExprList &Other) {
isl_ast_expr_list *New = Other.GetCopy();
ctx = Other.Context();
isl_ast_expr_list_free((isl_ast_expr_list *)This);
This = New;
return *this;
}
inline AstExprList AstExprList::alloc(const Ctx &ctx, int n) {
const Ctx &_ctx = ctx.Context();
_ctx.lock();
isl_ast_expr_list *That = isl_ast_expr_list_alloc((ctx.Get()), n);
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_ast_expr_list_alloc returned a NULL pointer.");
}
return AstExprList(_ctx, That);
}
inline AstExprList::~AstExprList() {
isl_ast_expr_list_free((isl_ast_expr_list *)This);
This = nullptr;
}
/// rief Release ownership of the wrapped object.
///
/// You are on your own now buddy.
/// The wrapper cannot be used anymore after calling Give()
///
///@return the wrapped isl object.
inline isl_ast_expr_list *AstExprList::Give() {
isl_ast_expr_list *res = (isl_ast_expr_list *)This;
This = nullptr;
return res;
}
/// \brief Unwrap the stored isl object.
/// \returns A the wrapped isl object.
inline isl_ast_expr_list *AstExprList::Get() const { return (isl_ast_expr_list *)This;
}
inline AstExprList AstExprList::add(const AstExpr &el) const {
ctx.lock();
isl_ast_expr_list * res = isl_ast_expr_list_add((*this).GetCopy(), (el).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_ast_expr_list_add returned a NULL pointer.");
}
return AstExprList(ctx, res);
}
} // namespace isl
#endif //ISL_CXX_AstExprList_IMPL_H