try and extract condition of ternary operator as a single affine expression
[pet.git] / scan.cc
blobd21c078f8e5ec25b43167c3c2a4b6983526472c9
1 /*
2 * Copyright 2011 Leiden University. All rights reserved.
3 * Copyright 2012 Ecole Normale Superieure. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following
14 * disclaimer in the documentation and/or other materials provided
15 * with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY LEIDEN UNIVERSITY ''AS IS'' AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL LEIDEN UNIVERSITY OR
21 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
24 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 * The views and conclusions contained in the software and documentation
30 * are those of the authors and should not be interpreted as
31 * representing official policies, either expressed or implied, of
32 * Leiden University.
33 */
35 #include <set>
36 #include <map>
37 #include <iostream>
38 #include <clang/AST/ASTDiagnostic.h>
39 #include <clang/AST/Expr.h>
40 #include <clang/AST/RecursiveASTVisitor.h>
42 #include <isl/id.h>
43 #include <isl/space.h>
44 #include <isl/aff.h>
45 #include <isl/set.h>
47 #include "scan.h"
48 #include "scop.h"
49 #include "scop_plus.h"
51 #include "config.h"
53 using namespace std;
54 using namespace clang;
56 #ifdef DECLREFEXPR_CREATE_REQUIRES_SOURCELOCATION
57 static DeclRefExpr *create_DeclRefExpr(VarDecl *var)
59 return DeclRefExpr::Create(var->getASTContext(), var->getQualifierLoc(),
60 SourceLocation(), var, var->getInnerLocStart(), var->getType(),
61 VK_LValue);
63 #else
64 static DeclRefExpr *create_DeclRefExpr(VarDecl *var)
66 return DeclRefExpr::Create(var->getASTContext(), var->getQualifierLoc(),
67 var, var->getInnerLocStart(), var->getType(), VK_LValue);
69 #endif
71 /* Check if the element type corresponding to the given array type
72 * has a const qualifier.
74 static bool const_base(QualType qt)
76 const Type *type = qt.getTypePtr();
78 if (type->isPointerType())
79 return const_base(type->getPointeeType());
80 if (type->isArrayType()) {
81 const ArrayType *atype;
82 type = type->getCanonicalTypeInternal().getTypePtr();
83 atype = cast<ArrayType>(type);
84 return const_base(atype->getElementType());
87 return qt.isConstQualified();
90 /* Mark "decl" as having an unknown value in "assigned_value".
92 * If no (known or unknown) value was assigned to "decl" before,
93 * then it may have been treated as a parameter before and may
94 * therefore appear in a value assigned to another variable.
95 * If so, this assignment needs to be turned into an unknown value too.
97 static void clear_assignment(map<ValueDecl *, isl_pw_aff *> &assigned_value,
98 ValueDecl *decl)
100 map<ValueDecl *, isl_pw_aff *>::iterator it;
102 it = assigned_value.find(decl);
104 assigned_value[decl] = NULL;
106 if (it == assigned_value.end())
107 return;
109 for (it = assigned_value.begin(); it != assigned_value.end(); ++it) {
110 isl_pw_aff *pa = it->second;
111 int nparam = isl_pw_aff_dim(pa, isl_dim_param);
113 for (int i = 0; i < nparam; ++i) {
114 isl_id *id;
116 if (!isl_pw_aff_has_dim_id(pa, isl_dim_param, i))
117 continue;
118 id = isl_pw_aff_get_dim_id(pa, isl_dim_param, i);
119 if (isl_id_get_user(id) == decl)
120 it->second = NULL;
121 isl_id_free(id);
126 /* Look for any assignments to scalar variables in part of the parse
127 * tree and set assigned_value to NULL for each of them.
128 * Also reset assigned_value if the address of a scalar variable
129 * is being taken. As an exception, if the address is passed to a function
130 * that is declared to receive a const pointer, then assigned_value is
131 * not reset.
133 * This ensures that we won't use any previously stored value
134 * in the current subtree and its parents.
136 struct clear_assignments : RecursiveASTVisitor<clear_assignments> {
137 map<ValueDecl *, isl_pw_aff *> &assigned_value;
138 set<UnaryOperator *> skip;
140 clear_assignments(map<ValueDecl *, isl_pw_aff *> &assigned_value) :
141 assigned_value(assigned_value) {}
143 /* Check for "address of" operators whose value is passed
144 * to a const pointer argument and add them to "skip", so that
145 * we can skip them in VisitUnaryOperator.
147 bool VisitCallExpr(CallExpr *expr) {
148 FunctionDecl *fd;
149 fd = expr->getDirectCallee();
150 if (!fd)
151 return true;
152 for (int i = 0; i < expr->getNumArgs(); ++i) {
153 Expr *arg = expr->getArg(i);
154 UnaryOperator *op;
155 if (arg->getStmtClass() == Stmt::ImplicitCastExprClass) {
156 ImplicitCastExpr *ice;
157 ice = cast<ImplicitCastExpr>(arg);
158 arg = ice->getSubExpr();
160 if (arg->getStmtClass() != Stmt::UnaryOperatorClass)
161 continue;
162 op = cast<UnaryOperator>(arg);
163 if (op->getOpcode() != UO_AddrOf)
164 continue;
165 if (const_base(fd->getParamDecl(i)->getType()))
166 skip.insert(op);
168 return true;
171 bool VisitUnaryOperator(UnaryOperator *expr) {
172 Expr *arg;
173 DeclRefExpr *ref;
174 ValueDecl *decl;
176 if (expr->getOpcode() != UO_AddrOf)
177 return true;
178 if (skip.find(expr) != skip.end())
179 return true;
181 arg = expr->getSubExpr();
182 if (arg->getStmtClass() != Stmt::DeclRefExprClass)
183 return true;
184 ref = cast<DeclRefExpr>(arg);
185 decl = ref->getDecl();
186 clear_assignment(assigned_value, decl);
187 return true;
190 bool VisitBinaryOperator(BinaryOperator *expr) {
191 Expr *lhs;
192 DeclRefExpr *ref;
193 ValueDecl *decl;
195 if (!expr->isAssignmentOp())
196 return true;
197 lhs = expr->getLHS();
198 if (lhs->getStmtClass() != Stmt::DeclRefExprClass)
199 return true;
200 ref = cast<DeclRefExpr>(lhs);
201 decl = ref->getDecl();
202 clear_assignment(assigned_value, decl);
203 return true;
207 /* Keep a copy of the currently assigned values.
209 * Any variable that is assigned a value inside the current scope
210 * is removed again when we leave the scope (either because it wasn't
211 * stored in the cache or because it has a different value in the cache).
213 struct assigned_value_cache {
214 map<ValueDecl *, isl_pw_aff *> &assigned_value;
215 map<ValueDecl *, isl_pw_aff *> cache;
217 assigned_value_cache(map<ValueDecl *, isl_pw_aff *> &assigned_value) :
218 assigned_value(assigned_value), cache(assigned_value) {}
219 ~assigned_value_cache() {
220 map<ValueDecl *, isl_pw_aff *>::iterator it = cache.begin();
221 for (it = assigned_value.begin(); it != assigned_value.end();
222 ++it) {
223 if (!it->second ||
224 (cache.find(it->first) != cache.end() &&
225 cache[it->first] != it->second))
226 cache[it->first] = NULL;
228 assigned_value = cache;
232 /* Insert an expression into the collection of expressions,
233 * provided it is not already in there.
234 * The isl_pw_affs are freed in the destructor.
236 void PetScan::insert_expression(__isl_take isl_pw_aff *expr)
238 std::set<isl_pw_aff *>::iterator it;
240 if (expressions.find(expr) == expressions.end())
241 expressions.insert(expr);
242 else
243 isl_pw_aff_free(expr);
246 PetScan::~PetScan()
248 std::set<isl_pw_aff *>::iterator it;
250 for (it = expressions.begin(); it != expressions.end(); ++it)
251 isl_pw_aff_free(*it);
253 isl_union_map_free(value_bounds);
256 /* Called if we found something we (currently) cannot handle.
257 * We'll provide more informative warnings later.
259 * We only actually complain if autodetect is false.
261 void PetScan::unsupported(Stmt *stmt, const char *msg)
263 if (autodetect)
264 return;
266 SourceLocation loc = stmt->getLocStart();
267 DiagnosticsEngine &diag = PP.getDiagnostics();
268 unsigned id = diag.getCustomDiagID(DiagnosticsEngine::Warning,
269 msg ? msg : "unsupported");
270 DiagnosticBuilder B = diag.Report(loc, id) << stmt->getSourceRange();
273 /* Extract an integer from "expr" and store it in "v".
275 int PetScan::extract_int(IntegerLiteral *expr, isl_int *v)
277 const Type *type = expr->getType().getTypePtr();
278 int is_signed = type->hasSignedIntegerRepresentation();
280 if (is_signed) {
281 int64_t i = expr->getValue().getSExtValue();
282 isl_int_set_si(*v, i);
283 } else {
284 uint64_t i = expr->getValue().getZExtValue();
285 isl_int_set_ui(*v, i);
288 return 0;
291 /* Extract an integer from "expr" and store it in "v".
292 * Return -1 if "expr" does not (obviously) represent an integer.
294 int PetScan::extract_int(clang::ParenExpr *expr, isl_int *v)
296 return extract_int(expr->getSubExpr(), v);
299 /* Extract an integer from "expr" and store it in "v".
300 * Return -1 if "expr" does not (obviously) represent an integer.
302 int PetScan::extract_int(clang::Expr *expr, isl_int *v)
304 if (expr->getStmtClass() == Stmt::IntegerLiteralClass)
305 return extract_int(cast<IntegerLiteral>(expr), v);
306 if (expr->getStmtClass() == Stmt::ParenExprClass)
307 return extract_int(cast<ParenExpr>(expr), v);
309 unsupported(expr);
310 return -1;
313 /* Extract an affine expression from the IntegerLiteral "expr".
315 __isl_give isl_pw_aff *PetScan::extract_affine(IntegerLiteral *expr)
317 isl_space *dim = isl_space_params_alloc(ctx, 0);
318 isl_local_space *ls = isl_local_space_from_space(isl_space_copy(dim));
319 isl_aff *aff = isl_aff_zero_on_domain(ls);
320 isl_set *dom = isl_set_universe(dim);
321 isl_int v;
323 isl_int_init(v);
324 extract_int(expr, &v);
325 aff = isl_aff_add_constant(aff, v);
326 isl_int_clear(v);
328 return isl_pw_aff_alloc(dom, aff);
331 /* Extract an affine expression from the APInt "val".
333 __isl_give isl_pw_aff *PetScan::extract_affine(const llvm::APInt &val)
335 isl_space *dim = isl_space_params_alloc(ctx, 0);
336 isl_local_space *ls = isl_local_space_from_space(isl_space_copy(dim));
337 isl_aff *aff = isl_aff_zero_on_domain(ls);
338 isl_set *dom = isl_set_universe(dim);
339 isl_int v;
341 isl_int_init(v);
342 isl_int_set_ui(v, val.getZExtValue());
343 aff = isl_aff_add_constant(aff, v);
344 isl_int_clear(v);
346 return isl_pw_aff_alloc(dom, aff);
349 __isl_give isl_pw_aff *PetScan::extract_affine(ImplicitCastExpr *expr)
351 return extract_affine(expr->getSubExpr());
354 static unsigned get_type_size(ValueDecl *decl)
356 return decl->getASTContext().getIntWidth(decl->getType());
359 /* Bound parameter "pos" of "set" to the possible values of "decl".
361 static __isl_give isl_set *set_parameter_bounds(__isl_take isl_set *set,
362 unsigned pos, ValueDecl *decl)
364 unsigned width;
365 isl_int v;
367 isl_int_init(v);
369 width = get_type_size(decl);
370 if (decl->getType()->isUnsignedIntegerType()) {
371 set = isl_set_lower_bound_si(set, isl_dim_param, pos, 0);
372 isl_int_set_si(v, 1);
373 isl_int_mul_2exp(v, v, width);
374 isl_int_sub_ui(v, v, 1);
375 set = isl_set_upper_bound(set, isl_dim_param, pos, v);
376 } else {
377 isl_int_set_si(v, 1);
378 isl_int_mul_2exp(v, v, width - 1);
379 isl_int_sub_ui(v, v, 1);
380 set = isl_set_upper_bound(set, isl_dim_param, pos, v);
381 isl_int_neg(v, v);
382 isl_int_sub_ui(v, v, 1);
383 set = isl_set_lower_bound(set, isl_dim_param, pos, v);
386 isl_int_clear(v);
388 return set;
391 /* Extract an affine expression from the DeclRefExpr "expr".
393 * If the variable has been assigned a value, then we check whether
394 * we know what (affine) value was assigned.
395 * If so, we return this value. Otherwise we convert "expr"
396 * to an extra parameter (provided nesting_enabled is set).
398 * Otherwise, we simply return an expression that is equal
399 * to a parameter corresponding to the referenced variable.
401 __isl_give isl_pw_aff *PetScan::extract_affine(DeclRefExpr *expr)
403 ValueDecl *decl = expr->getDecl();
404 const Type *type = decl->getType().getTypePtr();
405 isl_id *id;
406 isl_space *dim;
407 isl_aff *aff;
408 isl_set *dom;
410 if (!type->isIntegerType()) {
411 unsupported(expr);
412 return NULL;
415 if (assigned_value.find(decl) != assigned_value.end()) {
416 if (assigned_value[decl])
417 return isl_pw_aff_copy(assigned_value[decl]);
418 else
419 return nested_access(expr);
422 id = isl_id_alloc(ctx, decl->getName().str().c_str(), decl);
423 dim = isl_space_params_alloc(ctx, 1);
425 dim = isl_space_set_dim_id(dim, isl_dim_param, 0, id);
427 dom = isl_set_universe(isl_space_copy(dim));
428 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
429 aff = isl_aff_add_coefficient_si(aff, isl_dim_param, 0, 1);
431 return isl_pw_aff_alloc(dom, aff);
434 /* Extract an affine expression from an integer division operation.
435 * In particular, if "expr" is lhs/rhs, then return
437 * lhs >= 0 ? floor(lhs/rhs) : ceil(lhs/rhs)
439 * The second argument (rhs) is required to be a (positive) integer constant.
441 __isl_give isl_pw_aff *PetScan::extract_affine_div(BinaryOperator *expr)
443 Expr *rhs_expr;
444 isl_pw_aff *lhs, *lhs_f, *lhs_c;
445 isl_pw_aff *res;
446 isl_int v;
447 isl_set *cond;
449 rhs_expr = expr->getRHS();
450 isl_int_init(v);
451 if (extract_int(rhs_expr, &v) < 0) {
452 isl_int_clear(v);
453 return NULL;
456 lhs = extract_affine(expr->getLHS());
457 cond = isl_pw_aff_nonneg_set(isl_pw_aff_copy(lhs));
459 lhs = isl_pw_aff_scale_down(lhs, v);
460 isl_int_clear(v);
462 lhs_f = isl_pw_aff_floor(isl_pw_aff_copy(lhs));
463 lhs_c = isl_pw_aff_ceil(lhs);
464 res = isl_pw_aff_cond(isl_set_indicator_function(cond), lhs_f, lhs_c);
466 return res;
469 /* Extract an affine expression from a modulo operation.
470 * In particular, if "expr" is lhs/rhs, then return
472 * lhs - rhs * (lhs >= 0 ? floor(lhs/rhs) : ceil(lhs/rhs))
474 * The second argument (rhs) is required to be a (positive) integer constant.
476 __isl_give isl_pw_aff *PetScan::extract_affine_mod(BinaryOperator *expr)
478 Expr *rhs_expr;
479 isl_pw_aff *lhs, *lhs_f, *lhs_c;
480 isl_pw_aff *res;
481 isl_int v;
482 isl_set *cond;
484 rhs_expr = expr->getRHS();
485 if (rhs_expr->getStmtClass() != Stmt::IntegerLiteralClass) {
486 unsupported(expr);
487 return NULL;
490 lhs = extract_affine(expr->getLHS());
491 cond = isl_pw_aff_nonneg_set(isl_pw_aff_copy(lhs));
493 isl_int_init(v);
494 extract_int(cast<IntegerLiteral>(rhs_expr), &v);
495 res = isl_pw_aff_scale_down(isl_pw_aff_copy(lhs), v);
497 lhs_f = isl_pw_aff_floor(isl_pw_aff_copy(res));
498 lhs_c = isl_pw_aff_ceil(res);
499 res = isl_pw_aff_cond(isl_set_indicator_function(cond), lhs_f, lhs_c);
501 res = isl_pw_aff_scale(res, v);
502 isl_int_clear(v);
504 res = isl_pw_aff_sub(lhs, res);
506 return res;
509 /* Extract an affine expression from a multiplication operation.
510 * This is only allowed if at least one of the two arguments
511 * is a (piecewise) constant.
513 __isl_give isl_pw_aff *PetScan::extract_affine_mul(BinaryOperator *expr)
515 isl_pw_aff *lhs;
516 isl_pw_aff *rhs;
518 lhs = extract_affine(expr->getLHS());
519 rhs = extract_affine(expr->getRHS());
521 if (!isl_pw_aff_is_cst(lhs) && !isl_pw_aff_is_cst(rhs)) {
522 isl_pw_aff_free(lhs);
523 isl_pw_aff_free(rhs);
524 unsupported(expr);
525 return NULL;
528 return isl_pw_aff_mul(lhs, rhs);
531 /* Extract an affine expression from an addition or subtraction operation.
533 __isl_give isl_pw_aff *PetScan::extract_affine_add(BinaryOperator *expr)
535 isl_pw_aff *lhs;
536 isl_pw_aff *rhs;
538 lhs = extract_affine(expr->getLHS());
539 rhs = extract_affine(expr->getRHS());
541 switch (expr->getOpcode()) {
542 case BO_Add:
543 return isl_pw_aff_add(lhs, rhs);
544 case BO_Sub:
545 return isl_pw_aff_sub(lhs, rhs);
546 default:
547 isl_pw_aff_free(lhs);
548 isl_pw_aff_free(rhs);
549 return NULL;
554 /* Compute
556 * pwaff mod 2^width
558 static __isl_give isl_pw_aff *wrap(__isl_take isl_pw_aff *pwaff,
559 unsigned width)
561 isl_int mod;
563 isl_int_init(mod);
564 isl_int_set_si(mod, 1);
565 isl_int_mul_2exp(mod, mod, width);
567 pwaff = isl_pw_aff_mod(pwaff, mod);
569 isl_int_clear(mod);
571 return pwaff;
574 /* Return the piecewise affine expression "set ? 1 : 0" defined on "dom".
576 static __isl_give isl_pw_aff *indicator_function(__isl_take isl_set *set,
577 __isl_take isl_set *dom)
579 isl_pw_aff *pa;
580 pa = isl_set_indicator_function(set);
581 pa = isl_pw_aff_intersect_domain(pa, dom);
582 return pa;
585 /* Extract an affine expression from some binary operations.
586 * If the result of the expression is unsigned, then we wrap it
587 * based on the size of the type.
589 __isl_give isl_pw_aff *PetScan::extract_affine(BinaryOperator *expr)
591 isl_pw_aff *res;
593 switch (expr->getOpcode()) {
594 case BO_Add:
595 case BO_Sub:
596 res = extract_affine_add(expr);
597 break;
598 case BO_Div:
599 res = extract_affine_div(expr);
600 break;
601 case BO_Rem:
602 res = extract_affine_mod(expr);
603 break;
604 case BO_Mul:
605 res = extract_affine_mul(expr);
606 break;
607 case BO_LT:
608 case BO_LE:
609 case BO_GT:
610 case BO_GE:
611 case BO_EQ:
612 case BO_NE:
613 case BO_LAnd:
614 case BO_LOr:
615 return extract_condition(expr);
616 default:
617 unsupported(expr);
618 return NULL;
621 if (expr->getType()->isUnsignedIntegerType())
622 res = wrap(res, ast_context.getIntWidth(expr->getType()));
624 return res;
627 /* Extract an affine expression from a negation operation.
629 __isl_give isl_pw_aff *PetScan::extract_affine(UnaryOperator *expr)
631 if (expr->getOpcode() == UO_Minus)
632 return isl_pw_aff_neg(extract_affine(expr->getSubExpr()));
633 if (expr->getOpcode() == UO_LNot)
634 return extract_condition(expr);
636 unsupported(expr);
637 return NULL;
640 __isl_give isl_pw_aff *PetScan::extract_affine(ParenExpr *expr)
642 return extract_affine(expr->getSubExpr());
645 /* Extract an affine expression from some special function calls.
646 * In particular, we handle "min", "max", "ceild" and "floord".
647 * In case of the latter two, the second argument needs to be
648 * a (positive) integer constant.
650 __isl_give isl_pw_aff *PetScan::extract_affine(CallExpr *expr)
652 FunctionDecl *fd;
653 string name;
654 isl_pw_aff *aff1, *aff2;
656 fd = expr->getDirectCallee();
657 if (!fd) {
658 unsupported(expr);
659 return NULL;
662 name = fd->getDeclName().getAsString();
663 if (!(expr->getNumArgs() == 2 && name == "min") &&
664 !(expr->getNumArgs() == 2 && name == "max") &&
665 !(expr->getNumArgs() == 2 && name == "floord") &&
666 !(expr->getNumArgs() == 2 && name == "ceild")) {
667 unsupported(expr);
668 return NULL;
671 if (name == "min" || name == "max") {
672 aff1 = extract_affine(expr->getArg(0));
673 aff2 = extract_affine(expr->getArg(1));
675 if (name == "min")
676 aff1 = isl_pw_aff_min(aff1, aff2);
677 else
678 aff1 = isl_pw_aff_max(aff1, aff2);
679 } else if (name == "floord" || name == "ceild") {
680 isl_int v;
681 Expr *arg2 = expr->getArg(1);
683 if (arg2->getStmtClass() != Stmt::IntegerLiteralClass) {
684 unsupported(expr);
685 return NULL;
687 aff1 = extract_affine(expr->getArg(0));
688 isl_int_init(v);
689 extract_int(cast<IntegerLiteral>(arg2), &v);
690 aff1 = isl_pw_aff_scale_down(aff1, v);
691 isl_int_clear(v);
692 if (name == "floord")
693 aff1 = isl_pw_aff_floor(aff1);
694 else
695 aff1 = isl_pw_aff_ceil(aff1);
696 } else {
697 unsupported(expr);
698 return NULL;
701 return aff1;
705 /* This method is called when we come across an access that is
706 * nested in what is supposed to be an affine expression.
707 * If nesting is allowed, we return a new parameter that corresponds
708 * to this nested access. Otherwise, we simply complain.
710 * The new parameter is resolved in resolve_nested.
712 isl_pw_aff *PetScan::nested_access(Expr *expr)
714 isl_id *id;
715 isl_space *dim;
716 isl_aff *aff;
717 isl_set *dom;
719 if (!nesting_enabled) {
720 unsupported(expr);
721 return NULL;
724 id = isl_id_alloc(ctx, NULL, expr);
725 dim = isl_space_params_alloc(ctx, 1);
727 dim = isl_space_set_dim_id(dim, isl_dim_param, 0, id);
729 dom = isl_set_universe(isl_space_copy(dim));
730 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
731 aff = isl_aff_add_coefficient_si(aff, isl_dim_param, 0, 1);
733 return isl_pw_aff_alloc(dom, aff);
736 /* Affine expressions are not supposed to contain array accesses,
737 * but if nesting is allowed, we return a parameter corresponding
738 * to the array access.
740 __isl_give isl_pw_aff *PetScan::extract_affine(ArraySubscriptExpr *expr)
742 return nested_access(expr);
745 /* Extract an affine expression from a conditional operation.
747 __isl_give isl_pw_aff *PetScan::extract_affine(ConditionalOperator *expr)
749 isl_pw_aff *cond, *lhs, *rhs, *res;
751 cond = extract_condition(expr->getCond());
752 lhs = extract_affine(expr->getTrueExpr());
753 rhs = extract_affine(expr->getFalseExpr());
755 return isl_pw_aff_cond(cond, lhs, rhs);
758 /* Extract an affine expression, if possible, from "expr".
759 * Otherwise return NULL.
761 __isl_give isl_pw_aff *PetScan::extract_affine(Expr *expr)
763 switch (expr->getStmtClass()) {
764 case Stmt::ImplicitCastExprClass:
765 return extract_affine(cast<ImplicitCastExpr>(expr));
766 case Stmt::IntegerLiteralClass:
767 return extract_affine(cast<IntegerLiteral>(expr));
768 case Stmt::DeclRefExprClass:
769 return extract_affine(cast<DeclRefExpr>(expr));
770 case Stmt::BinaryOperatorClass:
771 return extract_affine(cast<BinaryOperator>(expr));
772 case Stmt::UnaryOperatorClass:
773 return extract_affine(cast<UnaryOperator>(expr));
774 case Stmt::ParenExprClass:
775 return extract_affine(cast<ParenExpr>(expr));
776 case Stmt::CallExprClass:
777 return extract_affine(cast<CallExpr>(expr));
778 case Stmt::ArraySubscriptExprClass:
779 return extract_affine(cast<ArraySubscriptExpr>(expr));
780 case Stmt::ConditionalOperatorClass:
781 return extract_affine(cast<ConditionalOperator>(expr));
782 default:
783 unsupported(expr);
785 return NULL;
788 __isl_give isl_map *PetScan::extract_access(ImplicitCastExpr *expr)
790 return extract_access(expr->getSubExpr());
793 /* Return the depth of an array of the given type.
795 static int array_depth(const Type *type)
797 if (type->isPointerType())
798 return 1 + array_depth(type->getPointeeType().getTypePtr());
799 if (type->isArrayType()) {
800 const ArrayType *atype;
801 type = type->getCanonicalTypeInternal().getTypePtr();
802 atype = cast<ArrayType>(type);
803 return 1 + array_depth(atype->getElementType().getTypePtr());
805 return 0;
808 /* Return the element type of the given array type.
810 static QualType base_type(QualType qt)
812 const Type *type = qt.getTypePtr();
814 if (type->isPointerType())
815 return base_type(type->getPointeeType());
816 if (type->isArrayType()) {
817 const ArrayType *atype;
818 type = type->getCanonicalTypeInternal().getTypePtr();
819 atype = cast<ArrayType>(type);
820 return base_type(atype->getElementType());
822 return qt;
825 /* Extract an access relation from a reference to a variable.
826 * If the variable has name "A" and its type corresponds to an
827 * array of depth d, then the returned access relation is of the
828 * form
830 * { [] -> A[i_1,...,i_d] }
832 __isl_give isl_map *PetScan::extract_access(DeclRefExpr *expr)
834 ValueDecl *decl = expr->getDecl();
835 int depth = array_depth(decl->getType().getTypePtr());
836 isl_id *id = isl_id_alloc(ctx, decl->getName().str().c_str(), decl);
837 isl_space *dim = isl_space_alloc(ctx, 0, 0, depth);
838 isl_map *access_rel;
840 dim = isl_space_set_tuple_id(dim, isl_dim_out, id);
842 access_rel = isl_map_universe(dim);
844 return access_rel;
847 /* Extract an access relation from an integer contant.
848 * If the value of the constant is "v", then the returned access relation
849 * is
851 * { [] -> [v] }
853 __isl_give isl_map *PetScan::extract_access(IntegerLiteral *expr)
855 return isl_map_from_range(isl_set_from_pw_aff(extract_affine(expr)));
858 /* Try and extract an access relation from the given Expr.
859 * Return NULL if it doesn't work out.
861 __isl_give isl_map *PetScan::extract_access(Expr *expr)
863 switch (expr->getStmtClass()) {
864 case Stmt::ImplicitCastExprClass:
865 return extract_access(cast<ImplicitCastExpr>(expr));
866 case Stmt::DeclRefExprClass:
867 return extract_access(cast<DeclRefExpr>(expr));
868 case Stmt::ArraySubscriptExprClass:
869 return extract_access(cast<ArraySubscriptExpr>(expr));
870 default:
871 unsupported(expr);
873 return NULL;
876 /* Assign the affine expression "index" to the output dimension "pos" of "map"
877 * and return the result.
879 __isl_give isl_map *set_index(__isl_take isl_map *map, int pos,
880 __isl_take isl_pw_aff *index)
882 isl_map *index_map;
883 int len = isl_map_dim(map, isl_dim_out);
884 isl_id *id;
886 index_map = isl_map_from_range(isl_set_from_pw_aff(index));
887 index_map = isl_map_insert_dims(index_map, isl_dim_out, 0, pos);
888 index_map = isl_map_add_dims(index_map, isl_dim_out, len - pos - 1);
889 id = isl_map_get_tuple_id(map, isl_dim_out);
890 index_map = isl_map_set_tuple_id(index_map, isl_dim_out, id);
892 map = isl_map_intersect(map, index_map);
894 return map;
897 /* Extract an access relation from the given array subscript expression.
898 * If nesting is allowed in general, then we turn it on while
899 * examining the index expression.
901 * We first extract an access relation from the base.
902 * This will result in an access relation with a range that corresponds
903 * to the array being accessed and with earlier indices filled in already.
904 * We then extract the current index and fill that in as well.
905 * The position of the current index is based on the type of base.
906 * If base is the actual array variable, then the depth of this type
907 * will be the same as the depth of the array and we will fill in
908 * the first array index.
909 * Otherwise, the depth of the base type will be smaller and we will fill
910 * in a later index.
912 __isl_give isl_map *PetScan::extract_access(ArraySubscriptExpr *expr)
914 Expr *base = expr->getBase();
915 Expr *idx = expr->getIdx();
916 isl_pw_aff *index;
917 isl_map *base_access;
918 isl_map *access;
919 int depth = array_depth(base->getType().getTypePtr());
920 int pos;
921 bool save_nesting = nesting_enabled;
923 nesting_enabled = allow_nested;
925 base_access = extract_access(base);
926 index = extract_affine(idx);
928 nesting_enabled = save_nesting;
930 pos = isl_map_dim(base_access, isl_dim_out) - depth;
931 access = set_index(base_access, pos, index);
933 return access;
936 /* Check if "expr" calls function "minmax" with two arguments and if so
937 * make lhs and rhs refer to these two arguments.
939 static bool is_minmax(Expr *expr, const char *minmax, Expr *&lhs, Expr *&rhs)
941 CallExpr *call;
942 FunctionDecl *fd;
943 string name;
945 if (expr->getStmtClass() != Stmt::CallExprClass)
946 return false;
948 call = cast<CallExpr>(expr);
949 fd = call->getDirectCallee();
950 if (!fd)
951 return false;
953 if (call->getNumArgs() != 2)
954 return false;
956 name = fd->getDeclName().getAsString();
957 if (name != minmax)
958 return false;
960 lhs = call->getArg(0);
961 rhs = call->getArg(1);
963 return true;
966 /* Check if "expr" is of the form min(lhs, rhs) and if so make
967 * lhs and rhs refer to the two arguments.
969 static bool is_min(Expr *expr, Expr *&lhs, Expr *&rhs)
971 return is_minmax(expr, "min", lhs, rhs);
974 /* Check if "expr" is of the form max(lhs, rhs) and if so make
975 * lhs and rhs refer to the two arguments.
977 static bool is_max(Expr *expr, Expr *&lhs, Expr *&rhs)
979 return is_minmax(expr, "max", lhs, rhs);
982 /* Return "lhs && rhs", defined on the shared definition domain.
984 static __isl_give isl_pw_aff *pw_aff_and(__isl_take isl_pw_aff *lhs,
985 __isl_take isl_pw_aff *rhs)
987 isl_set *cond;
988 isl_set *dom;
990 dom = isl_set_intersect(isl_pw_aff_domain(isl_pw_aff_copy(lhs)),
991 isl_pw_aff_domain(isl_pw_aff_copy(rhs)));
992 cond = isl_set_intersect(isl_pw_aff_non_zero_set(lhs),
993 isl_pw_aff_non_zero_set(rhs));
994 return indicator_function(cond, dom);
997 /* Return "lhs && rhs", with shortcut semantics.
998 * That is, if lhs is false, then the result is defined even if rhs is not.
999 * In practice, we compute lhs ? rhs : lhs.
1001 static __isl_give isl_pw_aff *pw_aff_and_then(__isl_take isl_pw_aff *lhs,
1002 __isl_take isl_pw_aff *rhs)
1004 return isl_pw_aff_cond(isl_pw_aff_copy(lhs), rhs, lhs);
1007 /* Return "lhs || rhs", with shortcut semantics.
1008 * That is, if lhs is true, then the result is defined even if rhs is not.
1009 * In practice, we compute lhs ? lhs : rhs.
1011 static __isl_give isl_pw_aff *pw_aff_or_else(__isl_take isl_pw_aff *lhs,
1012 __isl_take isl_pw_aff *rhs)
1014 return isl_pw_aff_cond(isl_pw_aff_copy(lhs), lhs, rhs);
1017 /* Extract an affine expressions representing the comparison "LHS op RHS"
1018 * "comp" is the original statement that "LHS op RHS" is derived from
1019 * and is used for diagnostics.
1021 * If the comparison is of the form
1023 * a <= min(b,c)
1025 * then the expression is constructed as the conjunction of
1026 * the comparisons
1028 * a <= b and a <= c
1030 * A similar optimization is performed for max(a,b) <= c.
1031 * We do this because that will lead to simpler representations
1032 * of the expression.
1033 * If isl is ever enhanced to explicitly deal with min and max expressions,
1034 * this optimization can be removed.
1036 __isl_give isl_pw_aff *PetScan::extract_comparison(BinaryOperatorKind op,
1037 Expr *LHS, Expr *RHS, Stmt *comp)
1039 isl_pw_aff *lhs;
1040 isl_pw_aff *rhs;
1041 isl_pw_aff *res;
1042 isl_set *cond;
1043 isl_set *dom;
1045 if (op == BO_GT)
1046 return extract_comparison(BO_LT, RHS, LHS, comp);
1047 if (op == BO_GE)
1048 return extract_comparison(BO_LE, RHS, LHS, comp);
1050 if (op == BO_LT || op == BO_LE) {
1051 Expr *expr1, *expr2;
1052 if (is_min(RHS, expr1, expr2)) {
1053 lhs = extract_comparison(op, LHS, expr1, comp);
1054 rhs = extract_comparison(op, LHS, expr2, comp);
1055 return pw_aff_and(lhs, rhs);
1057 if (is_max(LHS, expr1, expr2)) {
1058 lhs = extract_comparison(op, expr1, RHS, comp);
1059 rhs = extract_comparison(op, expr2, RHS, comp);
1060 return pw_aff_and(lhs, rhs);
1064 lhs = extract_affine(LHS);
1065 rhs = extract_affine(RHS);
1067 dom = isl_pw_aff_domain(isl_pw_aff_copy(lhs));
1068 dom = isl_set_intersect(dom, isl_pw_aff_domain(isl_pw_aff_copy(rhs)));
1070 switch (op) {
1071 case BO_LT:
1072 cond = isl_pw_aff_lt_set(lhs, rhs);
1073 break;
1074 case BO_LE:
1075 cond = isl_pw_aff_le_set(lhs, rhs);
1076 break;
1077 case BO_EQ:
1078 cond = isl_pw_aff_eq_set(lhs, rhs);
1079 break;
1080 case BO_NE:
1081 cond = isl_pw_aff_ne_set(lhs, rhs);
1082 break;
1083 default:
1084 isl_pw_aff_free(lhs);
1085 isl_pw_aff_free(rhs);
1086 isl_set_free(dom);
1087 unsupported(comp);
1088 return NULL;
1091 cond = isl_set_coalesce(cond);
1092 res = indicator_function(cond, dom);
1094 return res;
1097 __isl_give isl_pw_aff *PetScan::extract_comparison(BinaryOperator *comp)
1099 return extract_comparison(comp->getOpcode(), comp->getLHS(),
1100 comp->getRHS(), comp);
1103 /* Extract an affine expression representing the negation (logical not)
1104 * of a subexpression.
1106 __isl_give isl_pw_aff *PetScan::extract_boolean(UnaryOperator *op)
1108 isl_set *set_cond, *dom;
1109 isl_pw_aff *cond, *res;
1111 cond = extract_condition(op->getSubExpr());
1113 dom = isl_pw_aff_domain(isl_pw_aff_copy(cond));
1115 set_cond = isl_pw_aff_zero_set(cond);
1117 res = indicator_function(set_cond, dom);
1119 return res;
1122 /* Extract an affine expression representing the disjunction (logical or)
1123 * or conjunction (logical and) of two subexpressions.
1125 __isl_give isl_pw_aff *PetScan::extract_boolean(BinaryOperator *comp)
1127 isl_pw_aff *lhs, *rhs;
1129 lhs = extract_condition(comp->getLHS());
1130 rhs = extract_condition(comp->getRHS());
1132 switch (comp->getOpcode()) {
1133 case BO_LAnd:
1134 return pw_aff_and_then(lhs, rhs);
1135 case BO_LOr:
1136 return pw_aff_or_else(lhs, rhs);
1137 default:
1138 isl_pw_aff_free(lhs);
1139 isl_pw_aff_free(rhs);
1142 unsupported(comp);
1143 return NULL;
1146 __isl_give isl_pw_aff *PetScan::extract_condition(UnaryOperator *expr)
1148 switch (expr->getOpcode()) {
1149 case UO_LNot:
1150 return extract_boolean(expr);
1151 default:
1152 unsupported(expr);
1153 return NULL;
1157 /* Extract the affine expression "expr != 0 ? 1 : 0".
1159 __isl_give isl_pw_aff *PetScan::extract_implicit_condition(Expr *expr)
1161 isl_pw_aff *res;
1162 isl_set *set, *dom;
1164 res = extract_affine(expr);
1166 dom = isl_pw_aff_domain(isl_pw_aff_copy(res));
1167 set = isl_pw_aff_non_zero_set(res);
1169 res = indicator_function(set, dom);
1171 return res;
1174 /* Extract an affine expression from a boolean expression.
1175 * In particular, return the expression "expr ? 1 : 0".
1177 * If the expression doesn't look like a condition, we assume it
1178 * is an affine expression and return the condition "expr != 0 ? 1 : 0".
1180 __isl_give isl_pw_aff *PetScan::extract_condition(Expr *expr)
1182 BinaryOperator *comp;
1184 if (!expr) {
1185 isl_set *u = isl_set_universe(isl_space_params_alloc(ctx, 0));
1186 return indicator_function(u, isl_set_copy(u));
1189 if (expr->getStmtClass() == Stmt::ParenExprClass)
1190 return extract_condition(cast<ParenExpr>(expr)->getSubExpr());
1192 if (expr->getStmtClass() == Stmt::UnaryOperatorClass)
1193 return extract_condition(cast<UnaryOperator>(expr));
1195 if (expr->getStmtClass() != Stmt::BinaryOperatorClass)
1196 return extract_implicit_condition(expr);
1198 comp = cast<BinaryOperator>(expr);
1199 switch (comp->getOpcode()) {
1200 case BO_LT:
1201 case BO_LE:
1202 case BO_GT:
1203 case BO_GE:
1204 case BO_EQ:
1205 case BO_NE:
1206 return extract_comparison(comp);
1207 case BO_LAnd:
1208 case BO_LOr:
1209 return extract_boolean(comp);
1210 default:
1211 return extract_implicit_condition(expr);
1215 static enum pet_op_type UnaryOperatorKind2pet_op_type(UnaryOperatorKind kind)
1217 switch (kind) {
1218 case UO_Minus:
1219 return pet_op_minus;
1220 default:
1221 return pet_op_last;
1225 static enum pet_op_type BinaryOperatorKind2pet_op_type(BinaryOperatorKind kind)
1227 switch (kind) {
1228 case BO_AddAssign:
1229 return pet_op_add_assign;
1230 case BO_SubAssign:
1231 return pet_op_sub_assign;
1232 case BO_MulAssign:
1233 return pet_op_mul_assign;
1234 case BO_DivAssign:
1235 return pet_op_div_assign;
1236 case BO_Assign:
1237 return pet_op_assign;
1238 case BO_Add:
1239 return pet_op_add;
1240 case BO_Sub:
1241 return pet_op_sub;
1242 case BO_Mul:
1243 return pet_op_mul;
1244 case BO_Div:
1245 return pet_op_div;
1246 case BO_EQ:
1247 return pet_op_eq;
1248 case BO_LE:
1249 return pet_op_le;
1250 case BO_LT:
1251 return pet_op_lt;
1252 case BO_GT:
1253 return pet_op_gt;
1254 default:
1255 return pet_op_last;
1259 /* Construct a pet_expr representing a unary operator expression.
1261 struct pet_expr *PetScan::extract_expr(UnaryOperator *expr)
1263 struct pet_expr *arg;
1264 enum pet_op_type op;
1266 op = UnaryOperatorKind2pet_op_type(expr->getOpcode());
1267 if (op == pet_op_last) {
1268 unsupported(expr);
1269 return NULL;
1272 arg = extract_expr(expr->getSubExpr());
1274 return pet_expr_new_unary(ctx, op, arg);
1277 /* Mark the given access pet_expr as a write.
1278 * If a scalar is being accessed, then mark its value
1279 * as unknown in assigned_value.
1281 void PetScan::mark_write(struct pet_expr *access)
1283 isl_id *id;
1284 ValueDecl *decl;
1286 access->acc.write = 1;
1287 access->acc.read = 0;
1289 if (isl_map_dim(access->acc.access, isl_dim_out) != 0)
1290 return;
1292 id = isl_map_get_tuple_id(access->acc.access, isl_dim_out);
1293 decl = (ValueDecl *) isl_id_get_user(id);
1294 clear_assignment(assigned_value, decl);
1295 isl_id_free(id);
1298 /* Construct a pet_expr representing a binary operator expression.
1300 * If the top level operator is an assignment and the LHS is an access,
1301 * then we mark that access as a write. If the operator is a compound
1302 * assignment, the access is marked as both a read and a write.
1304 * If "expr" assigns something to a scalar variable, then we mark
1305 * the variable as having been assigned. If, furthermore, the expression
1306 * is affine, then keep track of this value in assigned_value
1307 * so that we can plug it in when we later come across the same variable.
1309 struct pet_expr *PetScan::extract_expr(BinaryOperator *expr)
1311 struct pet_expr *lhs, *rhs;
1312 enum pet_op_type op;
1314 op = BinaryOperatorKind2pet_op_type(expr->getOpcode());
1315 if (op == pet_op_last) {
1316 unsupported(expr);
1317 return NULL;
1320 lhs = extract_expr(expr->getLHS());
1321 rhs = extract_expr(expr->getRHS());
1323 if (expr->isAssignmentOp() && lhs && lhs->type == pet_expr_access) {
1324 mark_write(lhs);
1325 if (expr->isCompoundAssignmentOp())
1326 lhs->acc.read = 1;
1329 if (expr->getOpcode() == BO_Assign &&
1330 lhs && lhs->type == pet_expr_access &&
1331 isl_map_dim(lhs->acc.access, isl_dim_out) == 0) {
1332 isl_id *id = isl_map_get_tuple_id(lhs->acc.access, isl_dim_out);
1333 ValueDecl *decl = (ValueDecl *) isl_id_get_user(id);
1334 Expr *rhs = expr->getRHS();
1335 isl_pw_aff *pa = try_extract_affine(rhs);
1336 clear_assignment(assigned_value, decl);
1337 if (pa) {
1338 assigned_value[decl] = pa;
1339 insert_expression(pa);
1341 isl_id_free(id);
1344 return pet_expr_new_binary(ctx, op, lhs, rhs);
1347 /* Construct a pet_expr representing a conditional operation.
1349 * We first try to extract the condition as an affine expression.
1350 * If that fails, we construct a pet_expr tree representing the condition.
1352 struct pet_expr *PetScan::extract_expr(ConditionalOperator *expr)
1354 struct pet_expr *cond, *lhs, *rhs;
1355 isl_pw_aff *pa;
1357 pa = try_extract_affine(expr->getCond());
1358 if (pa) {
1359 isl_set *test = isl_set_from_pw_aff(pa);
1360 cond = pet_expr_from_access(isl_map_from_range(test));
1361 } else
1362 cond = extract_expr(expr->getCond());
1363 lhs = extract_expr(expr->getTrueExpr());
1364 rhs = extract_expr(expr->getFalseExpr());
1366 return pet_expr_new_ternary(ctx, cond, lhs, rhs);
1369 struct pet_expr *PetScan::extract_expr(ImplicitCastExpr *expr)
1371 return extract_expr(expr->getSubExpr());
1374 /* Construct a pet_expr representing a floating point value.
1376 struct pet_expr *PetScan::extract_expr(FloatingLiteral *expr)
1378 return pet_expr_new_double(ctx, expr->getValueAsApproximateDouble());
1381 /* Extract an access relation from "expr" and then convert it into
1382 * a pet_expr.
1384 struct pet_expr *PetScan::extract_access_expr(Expr *expr)
1386 isl_map *access;
1387 struct pet_expr *pe;
1389 switch (expr->getStmtClass()) {
1390 case Stmt::ArraySubscriptExprClass:
1391 access = extract_access(cast<ArraySubscriptExpr>(expr));
1392 break;
1393 case Stmt::DeclRefExprClass:
1394 access = extract_access(cast<DeclRefExpr>(expr));
1395 break;
1396 case Stmt::IntegerLiteralClass:
1397 access = extract_access(cast<IntegerLiteral>(expr));
1398 break;
1399 default:
1400 unsupported(expr);
1401 return NULL;
1404 pe = pet_expr_from_access(access);
1406 return pe;
1409 struct pet_expr *PetScan::extract_expr(ParenExpr *expr)
1411 return extract_expr(expr->getSubExpr());
1414 /* Construct a pet_expr representing a function call.
1416 * If we are passing along a pointer to an array element
1417 * or an entire row or even higher dimensional slice of an array,
1418 * then the function being called may write into the array.
1420 * We assume here that if the function is declared to take a pointer
1421 * to a const type, then the function will perform a read
1422 * and that otherwise, it will perform a write.
1424 struct pet_expr *PetScan::extract_expr(CallExpr *expr)
1426 struct pet_expr *res = NULL;
1427 FunctionDecl *fd;
1428 string name;
1430 fd = expr->getDirectCallee();
1431 if (!fd) {
1432 unsupported(expr);
1433 return NULL;
1436 name = fd->getDeclName().getAsString();
1437 res = pet_expr_new_call(ctx, name.c_str(), expr->getNumArgs());
1438 if (!res)
1439 return NULL;
1441 for (int i = 0; i < expr->getNumArgs(); ++i) {
1442 Expr *arg = expr->getArg(i);
1443 int is_addr = 0;
1444 pet_expr *main_arg;
1446 if (arg->getStmtClass() == Stmt::ImplicitCastExprClass) {
1447 ImplicitCastExpr *ice = cast<ImplicitCastExpr>(arg);
1448 arg = ice->getSubExpr();
1450 if (arg->getStmtClass() == Stmt::UnaryOperatorClass) {
1451 UnaryOperator *op = cast<UnaryOperator>(arg);
1452 if (op->getOpcode() == UO_AddrOf) {
1453 is_addr = 1;
1454 arg = op->getSubExpr();
1457 res->args[i] = PetScan::extract_expr(arg);
1458 main_arg = res->args[i];
1459 if (is_addr)
1460 res->args[i] = pet_expr_new_unary(ctx,
1461 pet_op_address_of, res->args[i]);
1462 if (!res->args[i])
1463 goto error;
1464 if (arg->getStmtClass() == Stmt::ArraySubscriptExprClass &&
1465 array_depth(arg->getType().getTypePtr()) > 0)
1466 is_addr = 1;
1467 if (is_addr && main_arg->type == pet_expr_access) {
1468 ParmVarDecl *parm;
1469 if (!fd->hasPrototype()) {
1470 unsupported(expr, "prototype required");
1471 goto error;
1473 parm = fd->getParamDecl(i);
1474 if (!const_base(parm->getType()))
1475 mark_write(main_arg);
1479 return res;
1480 error:
1481 pet_expr_free(res);
1482 return NULL;
1485 /* Try and onstruct a pet_expr representing "expr".
1487 struct pet_expr *PetScan::extract_expr(Expr *expr)
1489 switch (expr->getStmtClass()) {
1490 case Stmt::UnaryOperatorClass:
1491 return extract_expr(cast<UnaryOperator>(expr));
1492 case Stmt::CompoundAssignOperatorClass:
1493 case Stmt::BinaryOperatorClass:
1494 return extract_expr(cast<BinaryOperator>(expr));
1495 case Stmt::ImplicitCastExprClass:
1496 return extract_expr(cast<ImplicitCastExpr>(expr));
1497 case Stmt::ArraySubscriptExprClass:
1498 case Stmt::DeclRefExprClass:
1499 case Stmt::IntegerLiteralClass:
1500 return extract_access_expr(expr);
1501 case Stmt::FloatingLiteralClass:
1502 return extract_expr(cast<FloatingLiteral>(expr));
1503 case Stmt::ParenExprClass:
1504 return extract_expr(cast<ParenExpr>(expr));
1505 case Stmt::ConditionalOperatorClass:
1506 return extract_expr(cast<ConditionalOperator>(expr));
1507 case Stmt::CallExprClass:
1508 return extract_expr(cast<CallExpr>(expr));
1509 default:
1510 unsupported(expr);
1512 return NULL;
1515 /* Check if the given initialization statement is an assignment.
1516 * If so, return that assignment. Otherwise return NULL.
1518 BinaryOperator *PetScan::initialization_assignment(Stmt *init)
1520 BinaryOperator *ass;
1522 if (init->getStmtClass() != Stmt::BinaryOperatorClass)
1523 return NULL;
1525 ass = cast<BinaryOperator>(init);
1526 if (ass->getOpcode() != BO_Assign)
1527 return NULL;
1529 return ass;
1532 /* Check if the given initialization statement is a declaration
1533 * of a single variable.
1534 * If so, return that declaration. Otherwise return NULL.
1536 Decl *PetScan::initialization_declaration(Stmt *init)
1538 DeclStmt *decl;
1540 if (init->getStmtClass() != Stmt::DeclStmtClass)
1541 return NULL;
1543 decl = cast<DeclStmt>(init);
1545 if (!decl->isSingleDecl())
1546 return NULL;
1548 return decl->getSingleDecl();
1551 /* Given the assignment operator in the initialization of a for loop,
1552 * extract the induction variable, i.e., the (integer)variable being
1553 * assigned.
1555 ValueDecl *PetScan::extract_induction_variable(BinaryOperator *init)
1557 Expr *lhs;
1558 DeclRefExpr *ref;
1559 ValueDecl *decl;
1560 const Type *type;
1562 lhs = init->getLHS();
1563 if (lhs->getStmtClass() != Stmt::DeclRefExprClass) {
1564 unsupported(init);
1565 return NULL;
1568 ref = cast<DeclRefExpr>(lhs);
1569 decl = ref->getDecl();
1570 type = decl->getType().getTypePtr();
1572 if (!type->isIntegerType()) {
1573 unsupported(lhs);
1574 return NULL;
1577 return decl;
1580 /* Given the initialization statement of a for loop and the single
1581 * declaration in this initialization statement,
1582 * extract the induction variable, i.e., the (integer) variable being
1583 * declared.
1585 VarDecl *PetScan::extract_induction_variable(Stmt *init, Decl *decl)
1587 VarDecl *vd;
1589 vd = cast<VarDecl>(decl);
1591 const QualType type = vd->getType();
1592 if (!type->isIntegerType()) {
1593 unsupported(init);
1594 return NULL;
1597 if (!vd->getInit()) {
1598 unsupported(init);
1599 return NULL;
1602 return vd;
1605 /* Check that op is of the form iv++ or iv--.
1606 * "inc" is accordingly set to 1 or -1.
1608 bool PetScan::check_unary_increment(UnaryOperator *op, clang::ValueDecl *iv,
1609 isl_int &inc)
1611 Expr *sub;
1612 DeclRefExpr *ref;
1614 if (!op->isIncrementDecrementOp()) {
1615 unsupported(op);
1616 return false;
1619 if (op->isIncrementOp())
1620 isl_int_set_si(inc, 1);
1621 else
1622 isl_int_set_si(inc, -1);
1624 sub = op->getSubExpr();
1625 if (sub->getStmtClass() != Stmt::DeclRefExprClass) {
1626 unsupported(op);
1627 return false;
1630 ref = cast<DeclRefExpr>(sub);
1631 if (ref->getDecl() != iv) {
1632 unsupported(op);
1633 return false;
1636 return true;
1639 /* If the isl_pw_aff on which isl_pw_aff_foreach_piece is called
1640 * has a single constant expression on a universe domain, then
1641 * put this constant in *user.
1643 static int extract_cst(__isl_take isl_set *set, __isl_take isl_aff *aff,
1644 void *user)
1646 isl_int *inc = (isl_int *)user;
1647 int res = 0;
1649 if (!isl_set_plain_is_universe(set) || !isl_aff_is_cst(aff))
1650 res = -1;
1651 else
1652 isl_aff_get_constant(aff, inc);
1654 isl_set_free(set);
1655 isl_aff_free(aff);
1657 return res;
1660 /* Check if op is of the form
1662 * iv = iv + inc
1664 * with inc a constant and set "inc" accordingly.
1666 * We extract an affine expression from the RHS and the subtract iv.
1667 * The result should be a constant.
1669 bool PetScan::check_binary_increment(BinaryOperator *op, clang::ValueDecl *iv,
1670 isl_int &inc)
1672 Expr *lhs;
1673 DeclRefExpr *ref;
1674 isl_id *id;
1675 isl_space *dim;
1676 isl_aff *aff;
1677 isl_pw_aff *val;
1679 if (op->getOpcode() != BO_Assign) {
1680 unsupported(op);
1681 return false;
1684 lhs = op->getLHS();
1685 if (lhs->getStmtClass() != Stmt::DeclRefExprClass) {
1686 unsupported(op);
1687 return false;
1690 ref = cast<DeclRefExpr>(lhs);
1691 if (ref->getDecl() != iv) {
1692 unsupported(op);
1693 return false;
1696 val = extract_affine(op->getRHS());
1698 id = isl_id_alloc(ctx, iv->getName().str().c_str(), iv);
1700 dim = isl_space_params_alloc(ctx, 1);
1701 dim = isl_space_set_dim_id(dim, isl_dim_param, 0, id);
1702 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
1703 aff = isl_aff_add_coefficient_si(aff, isl_dim_param, 0, 1);
1705 val = isl_pw_aff_sub(val, isl_pw_aff_from_aff(aff));
1707 if (isl_pw_aff_foreach_piece(val, &extract_cst, &inc) < 0) {
1708 isl_pw_aff_free(val);
1709 unsupported(op);
1710 return false;
1713 isl_pw_aff_free(val);
1715 return true;
1718 /* Check that op is of the form iv += cst or iv -= cst.
1719 * "inc" is set to cst or -cst accordingly.
1721 bool PetScan::check_compound_increment(CompoundAssignOperator *op,
1722 clang::ValueDecl *iv, isl_int &inc)
1724 Expr *lhs, *rhs;
1725 DeclRefExpr *ref;
1726 bool neg = false;
1728 BinaryOperatorKind opcode;
1730 opcode = op->getOpcode();
1731 if (opcode != BO_AddAssign && opcode != BO_SubAssign) {
1732 unsupported(op);
1733 return false;
1735 if (opcode == BO_SubAssign)
1736 neg = true;
1738 lhs = op->getLHS();
1739 if (lhs->getStmtClass() != Stmt::DeclRefExprClass) {
1740 unsupported(op);
1741 return false;
1744 ref = cast<DeclRefExpr>(lhs);
1745 if (ref->getDecl() != iv) {
1746 unsupported(op);
1747 return false;
1750 rhs = op->getRHS();
1752 if (rhs->getStmtClass() == Stmt::UnaryOperatorClass) {
1753 UnaryOperator *op = cast<UnaryOperator>(rhs);
1754 if (op->getOpcode() != UO_Minus) {
1755 unsupported(op);
1756 return false;
1759 neg = !neg;
1761 rhs = op->getSubExpr();
1764 if (rhs->getStmtClass() != Stmt::IntegerLiteralClass) {
1765 unsupported(op);
1766 return false;
1769 extract_int(cast<IntegerLiteral>(rhs), &inc);
1770 if (neg)
1771 isl_int_neg(inc, inc);
1773 return true;
1776 /* Check that the increment of the given for loop increments
1777 * (or decrements) the induction variable "iv".
1778 * "up" is set to true if the induction variable is incremented.
1780 bool PetScan::check_increment(ForStmt *stmt, ValueDecl *iv, isl_int &v)
1782 Stmt *inc = stmt->getInc();
1784 if (!inc) {
1785 unsupported(stmt);
1786 return false;
1789 if (inc->getStmtClass() == Stmt::UnaryOperatorClass)
1790 return check_unary_increment(cast<UnaryOperator>(inc), iv, v);
1791 if (inc->getStmtClass() == Stmt::CompoundAssignOperatorClass)
1792 return check_compound_increment(
1793 cast<CompoundAssignOperator>(inc), iv, v);
1794 if (inc->getStmtClass() == Stmt::BinaryOperatorClass)
1795 return check_binary_increment(cast<BinaryOperator>(inc), iv, v);
1797 unsupported(inc);
1798 return false;
1801 /* Embed the given iteration domain in an extra outer loop
1802 * with induction variable "var".
1803 * If this variable appeared as a parameter in the constraints,
1804 * it is replaced by the new outermost dimension.
1806 static __isl_give isl_set *embed(__isl_take isl_set *set,
1807 __isl_take isl_id *var)
1809 int pos;
1811 set = isl_set_insert_dims(set, isl_dim_set, 0, 1);
1812 pos = isl_set_find_dim_by_id(set, isl_dim_param, var);
1813 if (pos >= 0) {
1814 set = isl_set_equate(set, isl_dim_param, pos, isl_dim_set, 0);
1815 set = isl_set_project_out(set, isl_dim_param, pos, 1);
1818 isl_id_free(var);
1819 return set;
1822 /* Construct a pet_scop for an infinite loop around the given body.
1824 * We extract a pet_scop for the body and then embed it in a loop with
1825 * iteration domain
1827 * { [t] : t >= 0 }
1829 * and schedule
1831 * { [t] -> [t] }
1833 struct pet_scop *PetScan::extract_infinite_loop(Stmt *body)
1835 isl_id *id;
1836 isl_space *dim;
1837 isl_set *domain;
1838 isl_map *sched;
1839 struct pet_scop *scop;
1841 scop = extract(body);
1842 if (!scop)
1843 return NULL;
1845 id = isl_id_alloc(ctx, "t", NULL);
1846 domain = isl_set_nat_universe(isl_space_set_alloc(ctx, 0, 1));
1847 domain = isl_set_set_dim_id(domain, isl_dim_set, 0, isl_id_copy(id));
1848 dim = isl_space_from_domain(isl_set_get_space(domain));
1849 dim = isl_space_add_dims(dim, isl_dim_out, 1);
1850 sched = isl_map_universe(dim);
1851 sched = isl_map_equate(sched, isl_dim_in, 0, isl_dim_out, 0);
1852 scop = pet_scop_embed(scop, domain, sched, id);
1854 return scop;
1857 /* Construct a pet_scop for an infinite loop, i.e., a loop of the form
1859 * for (;;)
1860 * body
1863 struct pet_scop *PetScan::extract_infinite_for(ForStmt *stmt)
1865 return extract_infinite_loop(stmt->getBody());
1868 /* Check if the while loop is of the form
1870 * while (1)
1871 * body
1873 * If so, construct a scop for an infinite loop around body.
1874 * Otherwise, fail.
1876 struct pet_scop *PetScan::extract(WhileStmt *stmt)
1878 Expr *cond;
1879 isl_set *set;
1880 int is_universe;
1882 cond = stmt->getCond();
1883 if (!cond) {
1884 unsupported(stmt);
1885 return NULL;
1888 set = isl_pw_aff_non_zero_set(extract_condition(cond));
1889 is_universe = isl_set_plain_is_universe(set);
1890 isl_set_free(set);
1892 if (!is_universe) {
1893 unsupported(stmt);
1894 return NULL;
1897 return extract_infinite_loop(stmt->getBody());
1900 /* Check whether "cond" expresses a simple loop bound
1901 * on the only set dimension.
1902 * In particular, if "up" is set then "cond" should contain only
1903 * upper bounds on the set dimension.
1904 * Otherwise, it should contain only lower bounds.
1906 static bool is_simple_bound(__isl_keep isl_set *cond, isl_int inc)
1908 if (isl_int_is_pos(inc))
1909 return !isl_set_dim_has_lower_bound(cond, isl_dim_set, 0);
1910 else
1911 return !isl_set_dim_has_upper_bound(cond, isl_dim_set, 0);
1914 /* Extend a condition on a given iteration of a loop to one that
1915 * imposes the same condition on all previous iterations.
1916 * "domain" expresses the lower [upper] bound on the iterations
1917 * when inc is positive [negative].
1919 * In particular, we construct the condition (when inc is positive)
1921 * forall i' : (domain(i') and i' <= i) => cond(i')
1923 * which is equivalent to
1925 * not exists i' : domain(i') and i' <= i and not cond(i')
1927 * We construct this set by negating cond, applying a map
1929 * { [i'] -> [i] : domain(i') and i' <= i }
1931 * and then negating the result again.
1933 static __isl_give isl_set *valid_for_each_iteration(__isl_take isl_set *cond,
1934 __isl_take isl_set *domain, isl_int inc)
1936 isl_map *previous_to_this;
1938 if (isl_int_is_pos(inc))
1939 previous_to_this = isl_map_lex_le(isl_set_get_space(domain));
1940 else
1941 previous_to_this = isl_map_lex_ge(isl_set_get_space(domain));
1943 previous_to_this = isl_map_intersect_domain(previous_to_this, domain);
1945 cond = isl_set_complement(cond);
1946 cond = isl_set_apply(cond, previous_to_this);
1947 cond = isl_set_complement(cond);
1949 return cond;
1952 /* Construct a domain of the form
1954 * [id] -> { : exists a: id = init + a * inc and a >= 0 }
1956 static __isl_give isl_set *strided_domain(__isl_take isl_id *id,
1957 __isl_take isl_pw_aff *init, isl_int inc)
1959 isl_aff *aff;
1960 isl_space *dim;
1961 isl_set *set;
1963 init = isl_pw_aff_insert_dims(init, isl_dim_in, 0, 1);
1964 dim = isl_pw_aff_get_domain_space(init);
1965 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
1966 aff = isl_aff_add_coefficient(aff, isl_dim_in, 0, inc);
1967 init = isl_pw_aff_add(init, isl_pw_aff_from_aff(aff));
1969 dim = isl_space_set_alloc(isl_pw_aff_get_ctx(init), 1, 1);
1970 dim = isl_space_set_dim_id(dim, isl_dim_param, 0, id);
1971 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
1972 aff = isl_aff_add_coefficient_si(aff, isl_dim_param, 0, 1);
1974 set = isl_pw_aff_eq_set(isl_pw_aff_from_aff(aff), init);
1976 set = isl_set_lower_bound_si(set, isl_dim_set, 0, 0);
1978 return isl_set_params(set);
1981 /* Assuming "cond" represents a bound on a loop where the loop
1982 * iterator "iv" is incremented (or decremented) by one, check if wrapping
1983 * is possible.
1985 * Under the given assumptions, wrapping is only possible if "cond" allows
1986 * for the last value before wrapping, i.e., 2^width - 1 in case of an
1987 * increasing iterator and 0 in case of a decreasing iterator.
1989 static bool can_wrap(__isl_keep isl_set *cond, ValueDecl *iv, isl_int inc)
1991 bool cw;
1992 isl_int limit;
1993 isl_set *test;
1995 test = isl_set_copy(cond);
1997 isl_int_init(limit);
1998 if (isl_int_is_neg(inc))
1999 isl_int_set_si(limit, 0);
2000 else {
2001 isl_int_set_si(limit, 1);
2002 isl_int_mul_2exp(limit, limit, get_type_size(iv));
2003 isl_int_sub_ui(limit, limit, 1);
2006 test = isl_set_fix(cond, isl_dim_set, 0, limit);
2007 cw = !isl_set_is_empty(test);
2008 isl_set_free(test);
2010 isl_int_clear(limit);
2012 return cw;
2015 /* Given a one-dimensional space, construct the following mapping on this
2016 * space
2018 * { [v] -> [v mod 2^width] }
2020 * where width is the number of bits used to represent the values
2021 * of the unsigned variable "iv".
2023 static __isl_give isl_map *compute_wrapping(__isl_take isl_space *dim,
2024 ValueDecl *iv)
2026 isl_int mod;
2027 isl_aff *aff;
2028 isl_map *map;
2030 isl_int_init(mod);
2031 isl_int_set_si(mod, 1);
2032 isl_int_mul_2exp(mod, mod, get_type_size(iv));
2034 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
2035 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, 0, 1);
2036 aff = isl_aff_mod(aff, mod);
2038 isl_int_clear(mod);
2040 return isl_map_from_basic_map(isl_basic_map_from_aff(aff));
2041 map = isl_map_reverse(map);
2044 /* Construct a pet_scop for a for statement.
2045 * The for loop is required to be of the form
2047 * for (i = init; condition; ++i)
2049 * or
2051 * for (i = init; condition; --i)
2053 * The initialization of the for loop should either be an assignment
2054 * to an integer variable, or a declaration of such a variable with
2055 * initialization.
2057 * The condition is allowed to contain nested accesses, provided
2058 * they are not being written to inside the body of the loop.
2060 * We extract a pet_scop for the body and then embed it in a loop with
2061 * iteration domain and schedule
2063 * { [i] : i >= init and condition' }
2064 * { [i] -> [i] }
2066 * or
2068 * { [i] : i <= init and condition' }
2069 * { [i] -> [-i] }
2071 * Where condition' is equal to condition if the latter is
2072 * a simple upper [lower] bound and a condition that is extended
2073 * to apply to all previous iterations otherwise.
2075 * If the stride of the loop is not 1, then "i >= init" is replaced by
2077 * (exists a: i = init + stride * a and a >= 0)
2079 * If the loop iterator i is unsigned, then wrapping may occur.
2080 * During the computation, we work with a virtual iterator that
2081 * does not wrap. However, the condition in the code applies
2082 * to the wrapped value, so we need to change condition(i)
2083 * into condition([i % 2^width]).
2084 * After computing the virtual domain and schedule, we apply
2085 * the function { [v] -> [v % 2^width] } to the domain and the domain
2086 * of the schedule. In order not to lose any information, we also
2087 * need to intersect the domain of the schedule with the virtual domain
2088 * first, since some iterations in the wrapped domain may be scheduled
2089 * several times, typically an infinite number of times.
2090 * Note that there is no need to perform this final wrapping
2091 * if the loop condition (after wrapping) is simple.
2093 * Wrapping on unsigned iterators can be avoided entirely if
2094 * loop condition is simple, the loop iterator is incremented
2095 * [decremented] by one and the last value before wrapping cannot
2096 * possibly satisfy the loop condition.
2098 * Before extracting a pet_scop from the body we remove all
2099 * assignments in assigned_value to variables that are assigned
2100 * somewhere in the body of the loop.
2102 struct pet_scop *PetScan::extract_for(ForStmt *stmt)
2104 BinaryOperator *ass;
2105 Decl *decl;
2106 Stmt *init;
2107 Expr *lhs, *rhs;
2108 ValueDecl *iv;
2109 isl_space *dim;
2110 isl_set *domain;
2111 isl_map *sched;
2112 isl_set *cond = NULL;
2113 isl_id *id;
2114 struct pet_scop *scop;
2115 assigned_value_cache cache(assigned_value);
2116 isl_int inc;
2117 bool is_one;
2118 bool is_unsigned;
2119 bool is_simple;
2120 bool is_virtual;
2121 isl_map *wrap = NULL;
2122 isl_pw_aff *pa;
2124 if (!stmt->getInit() && !stmt->getCond() && !stmt->getInc())
2125 return extract_infinite_for(stmt);
2127 init = stmt->getInit();
2128 if (!init) {
2129 unsupported(stmt);
2130 return NULL;
2132 if ((ass = initialization_assignment(init)) != NULL) {
2133 iv = extract_induction_variable(ass);
2134 if (!iv)
2135 return NULL;
2136 lhs = ass->getLHS();
2137 rhs = ass->getRHS();
2138 } else if ((decl = initialization_declaration(init)) != NULL) {
2139 VarDecl *var = extract_induction_variable(init, decl);
2140 if (!var)
2141 return NULL;
2142 iv = var;
2143 rhs = var->getInit();
2144 lhs = create_DeclRefExpr(var);
2145 } else {
2146 unsupported(stmt->getInit());
2147 return NULL;
2150 isl_int_init(inc);
2151 if (!check_increment(stmt, iv, inc)) {
2152 isl_int_clear(inc);
2153 return NULL;
2156 is_unsigned = iv->getType()->isUnsignedIntegerType();
2158 assigned_value.erase(iv);
2159 clear_assignments clear(assigned_value);
2160 clear.TraverseStmt(stmt->getBody());
2162 id = isl_id_alloc(ctx, iv->getName().str().c_str(), iv);
2164 scop = extract(stmt->getBody());
2166 pa = try_extract_nested_condition(stmt->getCond());
2167 if (pa && !is_nested_allowed(pa, scop)) {
2168 isl_pw_aff_free(pa);
2169 pa = NULL;
2172 if (!pa)
2173 pa = extract_condition(stmt->getCond());
2174 cond = isl_pw_aff_non_zero_set(pa);
2175 cond = embed(cond, isl_id_copy(id));
2176 is_one = isl_int_is_one(inc) || isl_int_is_negone(inc);
2177 is_virtual = is_unsigned && (!is_one || can_wrap(cond, iv, inc));
2179 if (is_one && !is_virtual) {
2180 pa = extract_comparison(isl_int_is_pos(inc) ? BO_GE : BO_LE,
2181 lhs, rhs, init);
2182 domain = isl_pw_aff_non_zero_set(pa);
2183 } else {
2184 isl_pw_aff *lb = extract_affine(rhs);
2185 domain = strided_domain(isl_id_copy(id), lb, inc);
2188 domain = embed(domain, isl_id_copy(id));
2189 if (is_virtual) {
2190 wrap = compute_wrapping(isl_set_get_space(cond), iv);
2191 cond = isl_set_apply(cond, isl_map_reverse(isl_map_copy(wrap)));
2193 cond = isl_set_gist(cond, isl_set_copy(domain));
2194 is_simple = is_simple_bound(cond, inc);
2195 if (!is_simple)
2196 cond = valid_for_each_iteration(cond,
2197 isl_set_copy(domain), inc);
2198 domain = isl_set_intersect(domain, cond);
2199 domain = isl_set_set_dim_id(domain, isl_dim_set, 0, isl_id_copy(id));
2200 dim = isl_space_from_domain(isl_set_get_space(domain));
2201 dim = isl_space_add_dims(dim, isl_dim_out, 1);
2202 sched = isl_map_universe(dim);
2203 if (isl_int_is_pos(inc))
2204 sched = isl_map_equate(sched, isl_dim_in, 0, isl_dim_out, 0);
2205 else
2206 sched = isl_map_oppose(sched, isl_dim_in, 0, isl_dim_out, 0);
2208 if (is_virtual && !is_simple) {
2209 wrap = isl_map_set_dim_id(wrap,
2210 isl_dim_out, 0, isl_id_copy(id));
2211 sched = isl_map_intersect_domain(sched, isl_set_copy(domain));
2212 domain = isl_set_apply(domain, isl_map_copy(wrap));
2213 sched = isl_map_apply_domain(sched, wrap);
2214 } else
2215 isl_map_free(wrap);
2217 scop = pet_scop_embed(scop, domain, sched, id);
2218 scop = resolve_nested(scop);
2219 clear_assignment(assigned_value, iv);
2221 isl_int_clear(inc);
2222 return scop;
2225 struct pet_scop *PetScan::extract(CompoundStmt *stmt)
2227 return extract(stmt->children());
2230 /* Does "id" refer to a nested access?
2232 static bool is_nested_parameter(__isl_keep isl_id *id)
2234 return id && isl_id_get_user(id) && !isl_id_get_name(id);
2237 /* Does parameter "pos" of "space" refer to a nested access?
2239 static bool is_nested_parameter(__isl_keep isl_space *space, int pos)
2241 bool nested;
2242 isl_id *id;
2244 id = isl_space_get_dim_id(space, isl_dim_param, pos);
2245 nested = is_nested_parameter(id);
2246 isl_id_free(id);
2248 return nested;
2251 /* Does parameter "pos" of "map" refer to a nested access?
2253 static bool is_nested_parameter(__isl_keep isl_map *map, int pos)
2255 bool nested;
2256 isl_id *id;
2258 id = isl_map_get_dim_id(map, isl_dim_param, pos);
2259 nested = is_nested_parameter(id);
2260 isl_id_free(id);
2262 return nested;
2265 /* How many parameters of "space" refer to nested accesses, i.e., have no name?
2267 static int n_nested_parameter(__isl_keep isl_space *space)
2269 int n = 0;
2270 int nparam;
2272 nparam = isl_space_dim(space, isl_dim_param);
2273 for (int i = 0; i < nparam; ++i)
2274 if (is_nested_parameter(space, i))
2275 ++n;
2277 return n;
2280 /* How many parameters of "map" refer to nested accesses, i.e., have no name?
2282 static int n_nested_parameter(__isl_keep isl_map *map)
2284 isl_space *space;
2285 int n;
2287 space = isl_map_get_space(map);
2288 n = n_nested_parameter(space);
2289 isl_space_free(space);
2291 return n;
2294 /* For each nested access parameter in "space",
2295 * construct a corresponding pet_expr, place it in args and
2296 * record its position in "param2pos".
2297 * "n_arg" is the number of elements that are already in args.
2298 * The position recorded in "param2pos" takes this number into account.
2299 * If the pet_expr corresponding to a parameter is identical to
2300 * the pet_expr corresponding to an earlier parameter, then these two
2301 * parameters are made to refer to the same element in args.
2303 * Return the final number of elements in args or -1 if an error has occurred.
2305 int PetScan::extract_nested(__isl_keep isl_space *space,
2306 int n_arg, struct pet_expr **args, std::map<int,int> &param2pos)
2308 int nparam;
2310 nparam = isl_space_dim(space, isl_dim_param);
2311 for (int i = 0; i < nparam; ++i) {
2312 int j;
2313 isl_id *id = isl_space_get_dim_id(space, isl_dim_param, i);
2314 Expr *nested;
2316 if (!is_nested_parameter(id)) {
2317 isl_id_free(id);
2318 continue;
2321 nested = (Expr *) isl_id_get_user(id);
2322 args[n_arg] = extract_expr(nested);
2323 if (!args[n_arg])
2324 return -1;
2326 for (j = 0; j < n_arg; ++j)
2327 if (pet_expr_is_equal(args[j], args[n_arg]))
2328 break;
2330 if (j < n_arg) {
2331 pet_expr_free(args[n_arg]);
2332 args[n_arg] = NULL;
2333 param2pos[i] = j;
2334 } else
2335 param2pos[i] = n_arg++;
2337 isl_id_free(id);
2340 return n_arg;
2343 /* For each nested access parameter in the access relations in "expr",
2344 * construct a corresponding pet_expr, place it in expr->args and
2345 * record its position in "param2pos".
2346 * n is the number of nested access parameters.
2348 struct pet_expr *PetScan::extract_nested(struct pet_expr *expr, int n,
2349 std::map<int,int> &param2pos)
2351 isl_space *space;
2353 expr->args = isl_calloc_array(ctx, struct pet_expr *, n);
2354 expr->n_arg = n;
2355 if (!expr->args)
2356 goto error;
2358 space = isl_map_get_space(expr->acc.access);
2359 n = extract_nested(space, 0, expr->args, param2pos);
2360 isl_space_free(space);
2362 if (n < 0)
2363 goto error;
2365 expr->n_arg = n;
2366 return expr;
2367 error:
2368 pet_expr_free(expr);
2369 return NULL;
2372 /* Look for parameters in any access relation in "expr" that
2373 * refer to nested accesses. In particular, these are
2374 * parameters with no name.
2376 * If there are any such parameters, then the domain of the access
2377 * relation, which is still [] at this point, is replaced by
2378 * [[] -> [t_1,...,t_n]], with n the number of these parameters
2379 * (after identifying identical nested accesses).
2380 * The parameters are then equated to the corresponding t dimensions
2381 * and subsequently projected out.
2382 * param2pos maps the position of the parameter to the position
2383 * of the corresponding t dimension.
2385 struct pet_expr *PetScan::resolve_nested(struct pet_expr *expr)
2387 int n;
2388 int nparam;
2389 int n_in;
2390 isl_space *dim;
2391 isl_map *map;
2392 std::map<int,int> param2pos;
2394 if (!expr)
2395 return expr;
2397 for (int i = 0; i < expr->n_arg; ++i) {
2398 expr->args[i] = resolve_nested(expr->args[i]);
2399 if (!expr->args[i]) {
2400 pet_expr_free(expr);
2401 return NULL;
2405 if (expr->type != pet_expr_access)
2406 return expr;
2408 n = n_nested_parameter(expr->acc.access);
2409 if (n == 0)
2410 return expr;
2412 expr = extract_nested(expr, n, param2pos);
2413 if (!expr)
2414 return NULL;
2416 n = expr->n_arg;
2417 nparam = isl_map_dim(expr->acc.access, isl_dim_param);
2418 n_in = isl_map_dim(expr->acc.access, isl_dim_in);
2419 dim = isl_map_get_space(expr->acc.access);
2420 dim = isl_space_domain(dim);
2421 dim = isl_space_from_domain(dim);
2422 dim = isl_space_add_dims(dim, isl_dim_out, n);
2423 map = isl_map_universe(dim);
2424 map = isl_map_domain_map(map);
2425 map = isl_map_reverse(map);
2426 expr->acc.access = isl_map_apply_domain(expr->acc.access, map);
2428 for (int i = nparam - 1; i >= 0; --i) {
2429 isl_id *id = isl_map_get_dim_id(expr->acc.access,
2430 isl_dim_param, i);
2431 if (!is_nested_parameter(id)) {
2432 isl_id_free(id);
2433 continue;
2436 expr->acc.access = isl_map_equate(expr->acc.access,
2437 isl_dim_param, i, isl_dim_in,
2438 n_in + param2pos[i]);
2439 expr->acc.access = isl_map_project_out(expr->acc.access,
2440 isl_dim_param, i, 1);
2442 isl_id_free(id);
2445 return expr;
2446 error:
2447 pet_expr_free(expr);
2448 return NULL;
2451 /* Convert a top-level pet_expr to a pet_scop with one statement.
2452 * This mainly involves resolving nested expression parameters
2453 * and setting the name of the iteration space.
2454 * The name is given by "label" if it is non-NULL. Otherwise,
2455 * it is of the form S_<n_stmt>.
2457 struct pet_scop *PetScan::extract(Stmt *stmt, struct pet_expr *expr,
2458 __isl_take isl_id *label)
2460 struct pet_stmt *ps;
2461 SourceLocation loc = stmt->getLocStart();
2462 int line = PP.getSourceManager().getExpansionLineNumber(loc);
2464 expr = resolve_nested(expr);
2465 ps = pet_stmt_from_pet_expr(ctx, line, label, n_stmt++, expr);
2466 return pet_scop_from_pet_stmt(ctx, ps);
2469 /* Check if we can extract an affine expression from "expr".
2470 * Return the expressions as an isl_pw_aff if we can and NULL otherwise.
2471 * We turn on autodetection so that we won't generate any warnings
2472 * and turn off nesting, so that we won't accept any non-affine constructs.
2474 __isl_give isl_pw_aff *PetScan::try_extract_affine(Expr *expr)
2476 isl_pw_aff *pwaff;
2477 int save_autodetect = autodetect;
2478 bool save_nesting = nesting_enabled;
2480 autodetect = 1;
2481 nesting_enabled = false;
2483 pwaff = extract_affine(expr);
2485 autodetect = save_autodetect;
2486 nesting_enabled = save_nesting;
2488 return pwaff;
2491 /* Check whether "expr" is an affine expression.
2493 bool PetScan::is_affine(Expr *expr)
2495 isl_pw_aff *pwaff;
2497 pwaff = try_extract_affine(expr);
2498 isl_pw_aff_free(pwaff);
2500 return pwaff != NULL;
2503 /* Check whether "expr" is an affine constraint.
2504 * We turn on autodetection so that we won't generate any warnings
2505 * and turn off nesting, so that we won't accept any non-affine constructs.
2507 bool PetScan::is_affine_condition(Expr *expr)
2509 isl_pw_aff *cond;
2510 int save_autodetect = autodetect;
2511 bool save_nesting = nesting_enabled;
2513 autodetect = 1;
2514 nesting_enabled = false;
2516 cond = extract_condition(expr);
2517 isl_pw_aff_free(cond);
2519 autodetect = save_autodetect;
2520 nesting_enabled = save_nesting;
2522 return cond != NULL;
2525 /* Check if we can extract a condition from "expr".
2526 * Return the condition as an isl_pw_aff if we can and NULL otherwise.
2527 * If allow_nested is set, then the condition may involve parameters
2528 * corresponding to nested accesses.
2529 * We turn on autodetection so that we won't generate any warnings.
2531 __isl_give isl_pw_aff *PetScan::try_extract_nested_condition(Expr *expr)
2533 isl_pw_aff *cond;
2534 int save_autodetect = autodetect;
2535 bool save_nesting = nesting_enabled;
2537 autodetect = 1;
2538 nesting_enabled = allow_nested;
2539 cond = extract_condition(expr);
2541 autodetect = save_autodetect;
2542 nesting_enabled = save_nesting;
2544 return cond;
2547 /* If the top-level expression of "stmt" is an assignment, then
2548 * return that assignment as a BinaryOperator.
2549 * Otherwise return NULL.
2551 static BinaryOperator *top_assignment_or_null(Stmt *stmt)
2553 BinaryOperator *ass;
2555 if (!stmt)
2556 return NULL;
2557 if (stmt->getStmtClass() != Stmt::BinaryOperatorClass)
2558 return NULL;
2560 ass = cast<BinaryOperator>(stmt);
2561 if(ass->getOpcode() != BO_Assign)
2562 return NULL;
2564 return ass;
2567 /* Check if the given if statement is a conditional assignement
2568 * with a non-affine condition. If so, construct a pet_scop
2569 * corresponding to this conditional assignment. Otherwise return NULL.
2571 * In particular we check if "stmt" is of the form
2573 * if (condition)
2574 * a = f(...);
2575 * else
2576 * a = g(...);
2578 * where a is some array or scalar access.
2579 * The constructed pet_scop then corresponds to the expression
2581 * a = condition ? f(...) : g(...)
2583 * All access relations in f(...) are intersected with condition
2584 * while all access relation in g(...) are intersected with the complement.
2586 struct pet_scop *PetScan::extract_conditional_assignment(IfStmt *stmt)
2588 BinaryOperator *ass_then, *ass_else;
2589 isl_map *write_then, *write_else;
2590 isl_set *cond, *comp;
2591 isl_map *map;
2592 isl_pw_aff *pa;
2593 int equal;
2594 struct pet_expr *pe_cond, *pe_then, *pe_else, *pe, *pe_write;
2595 bool save_nesting = nesting_enabled;
2597 ass_then = top_assignment_or_null(stmt->getThen());
2598 ass_else = top_assignment_or_null(stmt->getElse());
2600 if (!ass_then || !ass_else)
2601 return NULL;
2603 if (is_affine_condition(stmt->getCond()))
2604 return NULL;
2606 write_then = extract_access(ass_then->getLHS());
2607 write_else = extract_access(ass_else->getLHS());
2609 equal = isl_map_is_equal(write_then, write_else);
2610 isl_map_free(write_else);
2611 if (equal < 0 || !equal) {
2612 isl_map_free(write_then);
2613 return NULL;
2616 nesting_enabled = allow_nested;
2617 pa = extract_condition(stmt->getCond());
2618 nesting_enabled = save_nesting;
2619 cond = isl_pw_aff_non_zero_set(isl_pw_aff_copy(pa));
2620 comp = isl_pw_aff_zero_set(isl_pw_aff_copy(pa));
2621 map = isl_map_from_range(isl_set_from_pw_aff(pa));
2623 pe_cond = pet_expr_from_access(map);
2625 pe_then = extract_expr(ass_then->getRHS());
2626 pe_then = pet_expr_restrict(pe_then, cond);
2627 pe_else = extract_expr(ass_else->getRHS());
2628 pe_else = pet_expr_restrict(pe_else, comp);
2630 pe = pet_expr_new_ternary(ctx, pe_cond, pe_then, pe_else);
2631 pe_write = pet_expr_from_access(write_then);
2632 if (pe_write) {
2633 pe_write->acc.write = 1;
2634 pe_write->acc.read = 0;
2636 pe = pet_expr_new_binary(ctx, pet_op_assign, pe_write, pe);
2637 return extract(stmt, pe);
2640 /* Create an access to a virtual array representing the result
2641 * of a condition.
2642 * Unlike other accessed data, the id of the array is NULL as
2643 * there is no ValueDecl in the program corresponding to the virtual
2644 * array.
2645 * The array starts out as a scalar, but grows along with the
2646 * statement writing to the array in pet_scop_embed.
2648 static __isl_give isl_map *create_test_access(isl_ctx *ctx, int test_nr)
2650 isl_space *dim = isl_space_alloc(ctx, 0, 0, 0);
2651 isl_id *id;
2652 char name[50];
2654 snprintf(name, sizeof(name), "__pet_test_%d", test_nr);
2655 id = isl_id_alloc(ctx, name, NULL);
2656 dim = isl_space_set_tuple_id(dim, isl_dim_out, id);
2657 return isl_map_universe(dim);
2660 /* Create a pet_scop with a single statement evaluating "cond"
2661 * and writing the result to a virtual scalar, as expressed by
2662 * "access".
2664 struct pet_scop *PetScan::extract_non_affine_condition(Expr *cond,
2665 __isl_take isl_map *access)
2667 struct pet_expr *expr, *write;
2668 struct pet_stmt *ps;
2669 SourceLocation loc = cond->getLocStart();
2670 int line = PP.getSourceManager().getExpansionLineNumber(loc);
2672 write = pet_expr_from_access(access);
2673 if (write) {
2674 write->acc.write = 1;
2675 write->acc.read = 0;
2677 expr = extract_expr(cond);
2678 expr = pet_expr_new_binary(ctx, pet_op_assign, write, expr);
2679 ps = pet_stmt_from_pet_expr(ctx, line, NULL, n_stmt++, expr);
2680 return pet_scop_from_pet_stmt(ctx, ps);
2683 /* Add an array with the given extent ("access") to the list
2684 * of arrays in "scop" and return the extended pet_scop.
2685 * The array is marked as attaining values 0 and 1 only.
2687 static struct pet_scop *scop_add_array(struct pet_scop *scop,
2688 __isl_keep isl_map *access, clang::ASTContext &ast_ctx)
2690 isl_ctx *ctx = isl_map_get_ctx(access);
2691 isl_space *dim;
2692 struct pet_array **arrays;
2693 struct pet_array *array;
2695 if (!scop)
2696 return NULL;
2697 if (!ctx)
2698 goto error;
2700 arrays = isl_realloc_array(ctx, scop->arrays, struct pet_array *,
2701 scop->n_array + 1);
2702 if (!arrays)
2703 goto error;
2704 scop->arrays = arrays;
2706 array = isl_calloc_type(ctx, struct pet_array);
2707 if (!array)
2708 goto error;
2710 array->extent = isl_map_range(isl_map_copy(access));
2711 dim = isl_space_params_alloc(ctx, 0);
2712 array->context = isl_set_universe(dim);
2713 dim = isl_space_set_alloc(ctx, 0, 1);
2714 array->value_bounds = isl_set_universe(dim);
2715 array->value_bounds = isl_set_lower_bound_si(array->value_bounds,
2716 isl_dim_set, 0, 0);
2717 array->value_bounds = isl_set_upper_bound_si(array->value_bounds,
2718 isl_dim_set, 0, 1);
2719 array->element_type = strdup("int");
2720 array->element_size = ast_ctx.getTypeInfo(ast_ctx.IntTy).first / 8;
2722 scop->arrays[scop->n_array] = array;
2723 scop->n_array++;
2725 if (!array->extent || !array->context)
2726 goto error;
2728 return scop;
2729 error:
2730 pet_scop_free(scop);
2731 return NULL;
2734 extern "C" {
2735 static __isl_give isl_map *embed_access(__isl_take isl_map *access,
2736 void *user);
2739 /* Apply the map pointed to by "user" to the domain of the access
2740 * relation, thereby embedding it in the range of the map.
2741 * The domain of both relations is the zero-dimensional domain.
2743 static __isl_give isl_map *embed_access(__isl_take isl_map *access, void *user)
2745 isl_map *map = (isl_map *) user;
2747 return isl_map_apply_domain(access, isl_map_copy(map));
2750 /* Apply "map" to all access relations in "expr".
2752 static struct pet_expr *embed(struct pet_expr *expr, __isl_keep isl_map *map)
2754 return pet_expr_foreach_access(expr, &embed_access, map);
2757 /* How many parameters of "set" refer to nested accesses, i.e., have no name?
2759 static int n_nested_parameter(__isl_keep isl_set *set)
2761 isl_space *space;
2762 int n;
2764 space = isl_set_get_space(set);
2765 n = n_nested_parameter(space);
2766 isl_space_free(space);
2768 return n;
2771 /* Remove all parameters from "map" that refer to nested accesses.
2773 static __isl_give isl_map *remove_nested_parameters(__isl_take isl_map *map)
2775 int nparam;
2776 isl_space *space;
2778 space = isl_map_get_space(map);
2779 nparam = isl_space_dim(space, isl_dim_param);
2780 for (int i = nparam - 1; i >= 0; --i)
2781 if (is_nested_parameter(space, i))
2782 map = isl_map_project_out(map, isl_dim_param, i, 1);
2783 isl_space_free(space);
2785 return map;
2788 extern "C" {
2789 static __isl_give isl_map *access_remove_nested_parameters(
2790 __isl_take isl_map *access, void *user);
2793 static __isl_give isl_map *access_remove_nested_parameters(
2794 __isl_take isl_map *access, void *user)
2796 return remove_nested_parameters(access);
2799 /* Remove all nested access parameters from the schedule and all
2800 * accesses of "stmt".
2801 * There is no need to remove them from the domain as these parameters
2802 * have already been removed from the domain when this function is called.
2804 static struct pet_stmt *remove_nested_parameters(struct pet_stmt *stmt)
2806 if (!stmt)
2807 return NULL;
2808 stmt->schedule = remove_nested_parameters(stmt->schedule);
2809 stmt->body = pet_expr_foreach_access(stmt->body,
2810 &access_remove_nested_parameters, NULL);
2811 if (!stmt->schedule || !stmt->body)
2812 goto error;
2813 for (int i = 0; i < stmt->n_arg; ++i) {
2814 stmt->args[i] = pet_expr_foreach_access(stmt->args[i],
2815 &access_remove_nested_parameters, NULL);
2816 if (!stmt->args[i])
2817 goto error;
2820 return stmt;
2821 error:
2822 pet_stmt_free(stmt);
2823 return NULL;
2826 /* For each nested access parameter in the domain of "stmt",
2827 * construct a corresponding pet_expr, place it in stmt->args and
2828 * record its position in "param2pos".
2829 * n is the number of nested access parameters.
2831 struct pet_stmt *PetScan::extract_nested(struct pet_stmt *stmt, int n,
2832 std::map<int,int> &param2pos)
2834 isl_space *space;
2835 unsigned n_arg;
2836 struct pet_expr **args;
2838 n_arg = stmt->n_arg;
2839 args = isl_realloc_array(ctx, stmt->args, struct pet_expr *, n_arg + n);
2840 if (!args)
2841 goto error;
2842 stmt->args = args;
2843 stmt->n_arg += n;
2845 space = isl_set_get_space(stmt->domain);
2846 n = extract_nested(space, n_arg, stmt->args, param2pos);
2847 isl_space_free(space);
2849 if (n < 0)
2850 goto error;
2852 stmt->n_arg = n;
2853 return stmt;
2854 error:
2855 pet_stmt_free(stmt);
2856 return NULL;
2859 /* Look for parameters in the iteration domain of "stmt" that
2860 * refer to nested accesses. In particular, these are
2861 * parameters with no name.
2863 * If there are any such parameters, then as many extra variables
2864 * (after identifying identical nested accesses) are added to the
2865 * range of the map wrapped inside the domain.
2866 * If the original domain is not a wrapped map, then a new wrapped
2867 * map is created with zero output dimensions.
2868 * The parameters are then equated to the corresponding output dimensions
2869 * and subsequently projected out, from the iteration domain,
2870 * the schedule and the access relations.
2871 * For each of the output dimensions, a corresponding argument
2872 * expression is added. Initially they are created with
2873 * a zero-dimensional domain, so they have to be embedded
2874 * in the current iteration domain.
2875 * param2pos maps the position of the parameter to the position
2876 * of the corresponding output dimension in the wrapped map.
2878 struct pet_stmt *PetScan::resolve_nested(struct pet_stmt *stmt)
2880 int n;
2881 int nparam;
2882 unsigned n_arg;
2883 isl_map *map;
2884 std::map<int,int> param2pos;
2886 if (!stmt)
2887 return NULL;
2889 n = n_nested_parameter(stmt->domain);
2890 if (n == 0)
2891 return stmt;
2893 n_arg = stmt->n_arg;
2894 stmt = extract_nested(stmt, n, param2pos);
2895 if (!stmt)
2896 return NULL;
2898 n = stmt->n_arg - n_arg;
2899 nparam = isl_set_dim(stmt->domain, isl_dim_param);
2900 if (isl_set_is_wrapping(stmt->domain))
2901 map = isl_set_unwrap(stmt->domain);
2902 else
2903 map = isl_map_from_domain(stmt->domain);
2904 map = isl_map_add_dims(map, isl_dim_out, n);
2906 for (int i = nparam - 1; i >= 0; --i) {
2907 isl_id *id;
2909 if (!is_nested_parameter(map, i))
2910 continue;
2912 id = isl_map_get_tuple_id(stmt->args[param2pos[i]]->acc.access,
2913 isl_dim_out);
2914 map = isl_map_set_dim_id(map, isl_dim_out, param2pos[i], id);
2915 map = isl_map_equate(map, isl_dim_param, i, isl_dim_out,
2916 param2pos[i]);
2917 map = isl_map_project_out(map, isl_dim_param, i, 1);
2920 stmt->domain = isl_map_wrap(map);
2922 map = isl_set_unwrap(isl_set_copy(stmt->domain));
2923 map = isl_map_from_range(isl_map_domain(map));
2924 for (int pos = n_arg; pos < stmt->n_arg; ++pos)
2925 stmt->args[pos] = embed(stmt->args[pos], map);
2926 isl_map_free(map);
2928 stmt = remove_nested_parameters(stmt);
2930 return stmt;
2931 error:
2932 pet_stmt_free(stmt);
2933 return NULL;
2936 /* For each statement in "scop", move the parameters that correspond
2937 * to nested access into the ranges of the domains and create
2938 * corresponding argument expressions.
2940 struct pet_scop *PetScan::resolve_nested(struct pet_scop *scop)
2942 if (!scop)
2943 return NULL;
2945 for (int i = 0; i < scop->n_stmt; ++i) {
2946 scop->stmts[i] = resolve_nested(scop->stmts[i]);
2947 if (!scop->stmts[i])
2948 goto error;
2951 return scop;
2952 error:
2953 pet_scop_free(scop);
2954 return NULL;
2957 /* Does "space" involve any parameters that refer to nested
2958 * accesses, i.e., parameters with no name?
2960 static bool has_nested(__isl_keep isl_space *space)
2962 int nparam;
2964 nparam = isl_space_dim(space, isl_dim_param);
2965 for (int i = 0; i < nparam; ++i)
2966 if (is_nested_parameter(space, i))
2967 return true;
2969 return false;
2972 /* Does "pa" involve any parameters that refer to nested
2973 * accesses, i.e., parameters with no name?
2975 static bool has_nested(__isl_keep isl_pw_aff *pa)
2977 isl_space *space;
2978 bool nested;
2980 space = isl_pw_aff_get_space(pa);
2981 nested = has_nested(space);
2982 isl_space_free(space);
2984 return nested;
2987 /* Given an access expression "expr", is the variable accessed by
2988 * "expr" assigned anywhere inside "scop"?
2990 static bool is_assigned(pet_expr *expr, pet_scop *scop)
2992 bool assigned = false;
2993 isl_id *id;
2995 id = isl_map_get_tuple_id(expr->acc.access, isl_dim_out);
2996 assigned = pet_scop_writes(scop, id);
2997 isl_id_free(id);
2999 return assigned;
3002 /* Are all nested access parameters in "pa" allowed given "scop".
3003 * In particular, is none of them written by anywhere inside "scop".
3005 bool PetScan::is_nested_allowed(__isl_keep isl_pw_aff *pa, pet_scop *scop)
3007 int nparam;
3009 nparam = isl_pw_aff_dim(pa, isl_dim_param);
3010 for (int i = 0; i < nparam; ++i) {
3011 Expr *nested;
3012 isl_id *id = isl_pw_aff_get_dim_id(pa, isl_dim_param, i);
3013 pet_expr *expr;
3014 bool allowed;
3016 if (!is_nested_parameter(id)) {
3017 isl_id_free(id);
3018 continue;
3021 nested = (Expr *) isl_id_get_user(id);
3022 expr = extract_expr(nested);
3023 allowed = expr && expr->type == pet_expr_access &&
3024 !is_assigned(expr, scop);
3026 pet_expr_free(expr);
3027 isl_id_free(id);
3029 if (!allowed)
3030 return false;
3033 return true;
3036 /* Construct a pet_scop for an if statement.
3038 * If the condition fits the pattern of a conditional assignment,
3039 * then it is handled by extract_conditional_assignment.
3040 * Otherwise, we do the following.
3042 * If the condition is affine, then the condition is added
3043 * to the iteration domains of the then branch, while the
3044 * opposite of the condition in added to the iteration domains
3045 * of the else branch, if any.
3046 * We allow the condition to be dynamic, i.e., to refer to
3047 * scalars or array elements that may be written to outside
3048 * of the given if statement. These nested accesses are then represented
3049 * as output dimensions in the wrapping iteration domain.
3050 * If it also written _inside_ the then or else branch, then
3051 * we treat the condition as non-affine.
3052 * As explained below, this will introduce an extra statement.
3053 * For aesthetic reasons, we want this statement to have a statement
3054 * number that is lower than those of the then and else branches.
3055 * In order to evaluate if will need such a statement, however, we
3056 * first construct scops for the then and else branches.
3057 * We therefore reserve a statement number if we might have to
3058 * introduce such an extra statement.
3060 * If the condition is not affine, then we create a separate
3061 * statement that writes the result of the condition to a virtual scalar.
3062 * A constraint requiring the value of this virtual scalar to be one
3063 * is added to the iteration domains of the then branch.
3064 * Similarly, a constraint requiring the value of this virtual scalar
3065 * to be zero is added to the iteration domains of the else branch, if any.
3066 * We adjust the schedules to ensure that the virtual scalar is written
3067 * before it is read.
3069 struct pet_scop *PetScan::extract(IfStmt *stmt)
3071 struct pet_scop *scop_then, *scop_else, *scop;
3072 assigned_value_cache cache(assigned_value);
3073 isl_map *test_access = NULL;
3074 isl_pw_aff *cond;
3075 int stmt_id;
3077 scop = extract_conditional_assignment(stmt);
3078 if (scop)
3079 return scop;
3081 cond = try_extract_nested_condition(stmt->getCond());
3082 if (allow_nested && (!cond || has_nested(cond)))
3083 stmt_id = n_stmt++;
3085 scop_then = extract(stmt->getThen());
3087 if (stmt->getElse()) {
3088 scop_else = extract(stmt->getElse());
3089 if (autodetect) {
3090 if (scop_then && !scop_else) {
3091 partial = true;
3092 isl_pw_aff_free(cond);
3093 return scop_then;
3095 if (!scop_then && scop_else) {
3096 partial = true;
3097 isl_pw_aff_free(cond);
3098 return scop_else;
3103 if (cond &&
3104 (!is_nested_allowed(cond, scop_then) ||
3105 (stmt->getElse() && !is_nested_allowed(cond, scop_else)))) {
3106 isl_pw_aff_free(cond);
3107 cond = NULL;
3109 if (allow_nested && !cond) {
3110 int save_n_stmt = n_stmt;
3111 test_access = create_test_access(ctx, n_test++);
3112 n_stmt = stmt_id;
3113 scop = extract_non_affine_condition(stmt->getCond(),
3114 isl_map_copy(test_access));
3115 n_stmt = save_n_stmt;
3116 scop = scop_add_array(scop, test_access, ast_context);
3117 if (!scop) {
3118 pet_scop_free(scop_then);
3119 pet_scop_free(scop_else);
3120 isl_map_free(test_access);
3121 return NULL;
3125 if (!scop) {
3126 isl_set *set;
3128 if (!cond)
3129 cond = extract_condition(stmt->getCond());
3130 set = isl_pw_aff_non_zero_set(cond);
3131 scop = pet_scop_restrict(scop_then, isl_set_copy(set));
3133 if (stmt->getElse()) {
3134 set = isl_set_complement(set);
3135 scop_else = pet_scop_restrict(scop_else, set);
3136 scop = pet_scop_add(ctx, scop, scop_else);
3137 } else
3138 isl_set_free(set);
3139 scop = resolve_nested(scop);
3140 } else {
3141 scop = pet_scop_prefix(scop, 0);
3142 scop_then = pet_scop_prefix(scop_then, 1);
3143 scop_then = pet_scop_filter(scop_then,
3144 isl_map_copy(test_access), 1);
3145 scop = pet_scop_add(ctx, scop, scop_then);
3146 if (stmt->getElse()) {
3147 scop_else = pet_scop_prefix(scop_else, 1);
3148 scop_else = pet_scop_filter(scop_else, test_access, 0);
3149 scop = pet_scop_add(ctx, scop, scop_else);
3150 } else
3151 isl_map_free(test_access);
3154 return scop;
3157 /* Try and construct a pet_scop for a label statement.
3158 * We currently only allow labels on expression statements.
3160 struct pet_scop *PetScan::extract(LabelStmt *stmt)
3162 isl_id *label;
3163 Stmt *sub;
3165 sub = stmt->getSubStmt();
3166 if (!isa<Expr>(sub)) {
3167 unsupported(stmt);
3168 return NULL;
3171 label = isl_id_alloc(ctx, stmt->getName(), NULL);
3173 return extract(sub, extract_expr(cast<Expr>(sub)), label);
3176 /* Try and construct a pet_scop corresponding to "stmt".
3178 struct pet_scop *PetScan::extract(Stmt *stmt)
3180 if (isa<Expr>(stmt))
3181 return extract(stmt, extract_expr(cast<Expr>(stmt)));
3183 switch (stmt->getStmtClass()) {
3184 case Stmt::WhileStmtClass:
3185 return extract(cast<WhileStmt>(stmt));
3186 case Stmt::ForStmtClass:
3187 return extract_for(cast<ForStmt>(stmt));
3188 case Stmt::IfStmtClass:
3189 return extract(cast<IfStmt>(stmt));
3190 case Stmt::CompoundStmtClass:
3191 return extract(cast<CompoundStmt>(stmt));
3192 case Stmt::LabelStmtClass:
3193 return extract(cast<LabelStmt>(stmt));
3194 default:
3195 unsupported(stmt);
3198 return NULL;
3201 /* Try and construct a pet_scop corresponding to (part of)
3202 * a sequence of statements.
3204 struct pet_scop *PetScan::extract(StmtRange stmt_range)
3206 pet_scop *scop;
3207 StmtIterator i;
3208 int j;
3209 bool partial_range = false;
3211 scop = pet_scop_empty(ctx);
3212 for (i = stmt_range.first, j = 0; i != stmt_range.second; ++i, ++j) {
3213 Stmt *child = *i;
3214 struct pet_scop *scop_i;
3215 scop_i = extract(child);
3216 if (scop && partial) {
3217 pet_scop_free(scop_i);
3218 break;
3220 scop_i = pet_scop_prefix(scop_i, j);
3221 if (autodetect) {
3222 if (scop_i)
3223 scop = pet_scop_add(ctx, scop, scop_i);
3224 else
3225 partial_range = true;
3226 if (scop->n_stmt != 0 && !scop_i)
3227 partial = true;
3228 } else {
3229 scop = pet_scop_add(ctx, scop, scop_i);
3231 if (partial)
3232 break;
3235 if (scop && partial_range)
3236 partial = true;
3238 return scop;
3241 /* Check if the scop marked by the user is exactly this Stmt
3242 * or part of this Stmt.
3243 * If so, return a pet_scop corresponding to the marked region.
3244 * Otherwise, return NULL.
3246 struct pet_scop *PetScan::scan(Stmt *stmt)
3248 SourceManager &SM = PP.getSourceManager();
3249 unsigned start_off, end_off;
3251 start_off = SM.getFileOffset(stmt->getLocStart());
3252 end_off = SM.getFileOffset(stmt->getLocEnd());
3254 if (start_off > loc.end)
3255 return NULL;
3256 if (end_off < loc.start)
3257 return NULL;
3258 if (start_off >= loc.start && end_off <= loc.end) {
3259 return extract(stmt);
3262 StmtIterator start;
3263 for (start = stmt->child_begin(); start != stmt->child_end(); ++start) {
3264 Stmt *child = *start;
3265 if (!child)
3266 continue;
3267 start_off = SM.getFileOffset(child->getLocStart());
3268 end_off = SM.getFileOffset(child->getLocEnd());
3269 if (start_off < loc.start && end_off > loc.end)
3270 return scan(child);
3271 if (start_off >= loc.start)
3272 break;
3275 StmtIterator end;
3276 for (end = start; end != stmt->child_end(); ++end) {
3277 Stmt *child = *end;
3278 start_off = SM.getFileOffset(child->getLocStart());
3279 if (start_off >= loc.end)
3280 break;
3283 return extract(StmtRange(start, end));
3286 /* Set the size of index "pos" of "array" to "size".
3287 * In particular, add a constraint of the form
3289 * i_pos < size
3291 * to array->extent and a constraint of the form
3293 * size >= 0
3295 * to array->context.
3297 static struct pet_array *update_size(struct pet_array *array, int pos,
3298 __isl_take isl_pw_aff *size)
3300 isl_set *valid;
3301 isl_set *univ;
3302 isl_set *bound;
3303 isl_space *dim;
3304 isl_aff *aff;
3305 isl_pw_aff *index;
3306 isl_id *id;
3308 valid = isl_pw_aff_nonneg_set(isl_pw_aff_copy(size));
3309 array->context = isl_set_intersect(array->context, valid);
3311 dim = isl_set_get_space(array->extent);
3312 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
3313 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, pos, 1);
3314 univ = isl_set_universe(isl_aff_get_domain_space(aff));
3315 index = isl_pw_aff_alloc(univ, aff);
3317 size = isl_pw_aff_add_dims(size, isl_dim_in,
3318 isl_set_dim(array->extent, isl_dim_set));
3319 id = isl_set_get_tuple_id(array->extent);
3320 size = isl_pw_aff_set_tuple_id(size, isl_dim_in, id);
3321 bound = isl_pw_aff_lt_set(index, size);
3323 array->extent = isl_set_intersect(array->extent, bound);
3325 if (!array->context || !array->extent)
3326 goto error;
3328 return array;
3329 error:
3330 pet_array_free(array);
3331 return NULL;
3334 /* Figure out the size of the array at position "pos" and all
3335 * subsequent positions from "type" and update "array" accordingly.
3337 struct pet_array *PetScan::set_upper_bounds(struct pet_array *array,
3338 const Type *type, int pos)
3340 const ArrayType *atype;
3341 isl_pw_aff *size;
3343 if (!array)
3344 return NULL;
3346 if (type->isPointerType()) {
3347 type = type->getPointeeType().getTypePtr();
3348 return set_upper_bounds(array, type, pos + 1);
3350 if (!type->isArrayType())
3351 return array;
3353 type = type->getCanonicalTypeInternal().getTypePtr();
3354 atype = cast<ArrayType>(type);
3356 if (type->isConstantArrayType()) {
3357 const ConstantArrayType *ca = cast<ConstantArrayType>(atype);
3358 size = extract_affine(ca->getSize());
3359 array = update_size(array, pos, size);
3360 } else if (type->isVariableArrayType()) {
3361 const VariableArrayType *vla = cast<VariableArrayType>(atype);
3362 size = extract_affine(vla->getSizeExpr());
3363 array = update_size(array, pos, size);
3366 type = atype->getElementType().getTypePtr();
3368 return set_upper_bounds(array, type, pos + 1);
3371 /* Construct and return a pet_array corresponding to the variable "decl".
3372 * In particular, initialize array->extent to
3374 * { name[i_1,...,i_d] : i_1,...,i_d >= 0 }
3376 * and then call set_upper_bounds to set the upper bounds on the indices
3377 * based on the type of the variable.
3379 struct pet_array *PetScan::extract_array(isl_ctx *ctx, ValueDecl *decl)
3381 struct pet_array *array;
3382 QualType qt = decl->getType();
3383 const Type *type = qt.getTypePtr();
3384 int depth = array_depth(type);
3385 QualType base = base_type(qt);
3386 string name;
3387 isl_id *id;
3388 isl_space *dim;
3390 array = isl_calloc_type(ctx, struct pet_array);
3391 if (!array)
3392 return NULL;
3394 id = isl_id_alloc(ctx, decl->getName().str().c_str(), decl);
3395 dim = isl_space_set_alloc(ctx, 0, depth);
3396 dim = isl_space_set_tuple_id(dim, isl_dim_set, id);
3398 array->extent = isl_set_nat_universe(dim);
3400 dim = isl_space_params_alloc(ctx, 0);
3401 array->context = isl_set_universe(dim);
3403 array = set_upper_bounds(array, type, 0);
3404 if (!array)
3405 return NULL;
3407 name = base.getAsString();
3408 array->element_type = strdup(name.c_str());
3409 array->element_size = decl->getASTContext().getTypeInfo(base).first / 8;
3411 return array;
3414 /* Construct a list of pet_arrays, one for each array (or scalar)
3415 * accessed inside "scop" add this list to "scop" and return the result.
3417 * The context of "scop" is updated with the intesection of
3418 * the contexts of all arrays, i.e., constraints on the parameters
3419 * that ensure that the arrays have a valid (non-negative) size.
3421 struct pet_scop *PetScan::scan_arrays(struct pet_scop *scop)
3423 int i;
3424 set<ValueDecl *> arrays;
3425 set<ValueDecl *>::iterator it;
3426 int n_array;
3427 struct pet_array **scop_arrays;
3429 if (!scop)
3430 return NULL;
3432 pet_scop_collect_arrays(scop, arrays);
3433 if (arrays.size() == 0)
3434 return scop;
3436 n_array = scop->n_array;
3438 scop_arrays = isl_realloc_array(ctx, scop->arrays, struct pet_array *,
3439 n_array + arrays.size());
3440 if (!scop_arrays)
3441 goto error;
3442 scop->arrays = scop_arrays;
3444 for (it = arrays.begin(), i = 0; it != arrays.end(); ++it, ++i) {
3445 struct pet_array *array;
3446 scop->arrays[n_array + i] = array = extract_array(ctx, *it);
3447 if (!scop->arrays[n_array + i])
3448 goto error;
3449 scop->n_array++;
3450 scop->context = isl_set_intersect(scop->context,
3451 isl_set_copy(array->context));
3452 if (!scop->context)
3453 goto error;
3456 return scop;
3457 error:
3458 pet_scop_free(scop);
3459 return NULL;
3462 /* Bound all parameters in scop->context to the possible values
3463 * of the corresponding C variable.
3465 static struct pet_scop *add_parameter_bounds(struct pet_scop *scop)
3467 int n;
3469 if (!scop)
3470 return NULL;
3472 n = isl_set_dim(scop->context, isl_dim_param);
3473 for (int i = 0; i < n; ++i) {
3474 isl_id *id;
3475 ValueDecl *decl;
3477 id = isl_set_get_dim_id(scop->context, isl_dim_param, i);
3478 decl = (ValueDecl *) isl_id_get_user(id);
3479 isl_id_free(id);
3481 scop->context = set_parameter_bounds(scop->context, i, decl);
3483 if (!scop->context)
3484 goto error;
3487 return scop;
3488 error:
3489 pet_scop_free(scop);
3490 return NULL;
3493 /* Construct a pet_scop from the given function.
3495 struct pet_scop *PetScan::scan(FunctionDecl *fd)
3497 pet_scop *scop;
3498 Stmt *stmt;
3500 stmt = fd->getBody();
3502 if (autodetect)
3503 scop = extract(stmt);
3504 else
3505 scop = scan(stmt);
3506 scop = pet_scop_detect_parameter_accesses(scop);
3507 scop = scan_arrays(scop);
3508 scop = add_parameter_bounds(scop);
3509 scop = pet_scop_gist(scop, value_bounds);
3511 return scop;