forked from simbuerg/isl-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AstBuild.hpp
211 lines (194 loc) · 6.27 KB
/
AstBuild.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
#ifndef ISL_CXX_AstBuild_IMPL_H
#define ISL_CXX_AstBuild_IMPL_H
#include "isl/AstBuild.h"
#include "isl/AstExpr.hpp"
#include "isl/AstNode.hpp"
#include "isl/MultiPwAff.hpp"
#include "isl/PwAff.hpp"
#include "isl/PwMultiAff.hpp"
#include "isl/Set.hpp"
#include "isl/Space.hpp"
#include "isl/UnionMap.hpp"
#include "isl/IslBase.h"
#include "isl/IslException.h"
#include "isl/ast.h"
#include <string>
#include <ostream>
#include <cassert>
namespace isl {
inline isl_ast_build *AstBuild::GetCopy() const {
return isl_ast_build_copy((isl_ast_build *)This);
}
inline AstBuild &AstBuild::operator=(const AstBuild &Other) {
isl_ast_build *New = Other.GetCopy();
isl_ast_build_free((isl_ast_build *)This);
This = New;
return *this;
}
inline AstBuild AstBuild::fromContext(const Set &set) {
const Ctx &_ctx = set.Context();
_ctx.lock();
Set _cast_set = set.asSet();
isl_ast_build *That = isl_ast_build_from_context((_cast_set).Give());
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_ast_build_from_context returned a NULL pointer.");
}
return AstBuild(_ctx, That);
}
inline AstBuild::~AstBuild() {
isl_ast_build_free((isl_ast_build *)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_build *AstBuild::Give() {
isl_ast_build *res = (isl_ast_build *)This;
This = nullptr;
return res;
}
/// \brief Unwrap the stored isl object.
/// \returns A the wrapped isl object.
inline isl_ast_build *AstBuild::Get() const { return (isl_ast_build *)This;
}
inline AstBuild AstBuild::asAstBuild() const {
return AstBuild(ctx, GetCopy());
}
inline AstExpr AstBuild::accessFromMultiPwAff(const MultiPwAff &mpa) const {
ctx.lock();
AstBuild self = asAstBuild();
// Prepare arguments
MultiPwAff _cast_mpa = mpa.asMultiPwAff();
// Call isl_ast_build_access_from_multi_pw_aff
isl_ast_expr * res = isl_ast_build_access_from_multi_pw_aff((self).Get(), (_cast_mpa).Give());
// Handle result argument(s)
ctx.unlock();
// Handle return
if (ctx.hasError()) {
handleError("isl_ast_build_access_from_multi_pw_aff returned a NULL pointer.");
}
return AstExpr(ctx, res);
}
inline AstExpr AstBuild::accessFromPwMultiAff(const PwMultiAff &pma) const {
ctx.lock();
AstBuild self = asAstBuild();
// Prepare arguments
PwMultiAff _cast_pma = pma.asPwMultiAff();
// Call isl_ast_build_access_from_pw_multi_aff
isl_ast_expr * res = isl_ast_build_access_from_pw_multi_aff((self).Get(), (_cast_pma).Give());
// Handle result argument(s)
ctx.unlock();
// Handle return
if (ctx.hasError()) {
handleError("isl_ast_build_access_from_pw_multi_aff returned a NULL pointer.");
}
return AstExpr(ctx, res);
}
inline AstNode AstBuild::astFromSchedule(const UnionMap &schedule) const {
ctx.lock();
AstBuild self = asAstBuild();
// Prepare arguments
UnionMap _cast_schedule = schedule.asUnionMap();
// Call isl_ast_build_ast_from_schedule
isl_ast_node * res = isl_ast_build_ast_from_schedule((self).Get(), (_cast_schedule).Give());
// Handle result argument(s)
ctx.unlock();
// Handle return
if (ctx.hasError()) {
handleError("isl_ast_build_ast_from_schedule returned a NULL pointer.");
}
return AstNode(ctx, res);
}
inline AstExpr AstBuild::callFromMultiPwAff(const MultiPwAff &mpa) const {
ctx.lock();
AstBuild self = asAstBuild();
// Prepare arguments
MultiPwAff _cast_mpa = mpa.asMultiPwAff();
// Call isl_ast_build_call_from_multi_pw_aff
isl_ast_expr * res = isl_ast_build_call_from_multi_pw_aff((self).Get(), (_cast_mpa).Give());
// Handle result argument(s)
ctx.unlock();
// Handle return
if (ctx.hasError()) {
handleError("isl_ast_build_call_from_multi_pw_aff returned a NULL pointer.");
}
return AstExpr(ctx, res);
}
inline AstExpr AstBuild::callFromPwMultiAff(const PwMultiAff &pma) const {
ctx.lock();
AstBuild self = asAstBuild();
// Prepare arguments
PwMultiAff _cast_pma = pma.asPwMultiAff();
// Call isl_ast_build_call_from_pw_multi_aff
isl_ast_expr * res = isl_ast_build_call_from_pw_multi_aff((self).Get(), (_cast_pma).Give());
// Handle result argument(s)
ctx.unlock();
// Handle return
if (ctx.hasError()) {
handleError("isl_ast_build_call_from_pw_multi_aff returned a NULL pointer.");
}
return AstExpr(ctx, res);
}
inline AstExpr AstBuild::exprFromPwAff(const PwAff &pa) const {
ctx.lock();
AstBuild self = asAstBuild();
// Prepare arguments
PwAff _cast_pa = pa.asPwAff();
// Call isl_ast_build_expr_from_pw_aff
isl_ast_expr * res = isl_ast_build_expr_from_pw_aff((self).Get(), (_cast_pa).Give());
// Handle result argument(s)
ctx.unlock();
// Handle return
if (ctx.hasError()) {
handleError("isl_ast_build_expr_from_pw_aff returned a NULL pointer.");
}
return AstExpr(ctx, res);
}
inline UnionMap AstBuild::getSchedule() const {
ctx.lock();
AstBuild self = asAstBuild();
// Prepare arguments
// Call isl_ast_build_get_schedule
isl_union_map * res = isl_ast_build_get_schedule((self).Get());
// Handle result argument(s)
ctx.unlock();
// Handle return
if (ctx.hasError()) {
handleError("isl_ast_build_get_schedule returned a NULL pointer.");
}
return UnionMap(ctx, res);
}
inline Space AstBuild::getScheduleSpace() const {
ctx.lock();
AstBuild self = asAstBuild();
// Prepare arguments
// Call isl_ast_build_get_schedule_space
isl_space * res = isl_ast_build_get_schedule_space((self).Get());
// Handle result argument(s)
ctx.unlock();
// Handle return
if (ctx.hasError()) {
handleError("isl_ast_build_get_schedule_space returned a NULL pointer.");
}
return Space(ctx, res);
}
inline AstBuild AstBuild::setAtEachDomain(const std::function<isl_ast_node *(isl_ast_node *, isl_ast_build *, void *)> && fn, void * user) const {
ctx.lock();
AstBuild self = asAstBuild();
// Prepare arguments
// Call isl_ast_build_set_at_each_domain
isl_ast_build * res = isl_ast_build_set_at_each_domain((self).Give(), get_fn_ptr<0>(fn), user);
// Handle result argument(s)
ctx.unlock();
// Handle return
if (ctx.hasError()) {
handleError("isl_ast_build_set_at_each_domain returned a NULL pointer.");
}
return AstBuild(ctx, res);
}
} // namespace isl
#endif //ISL_CXX_AstBuild_IMPL_H