accept infinite while loops
[pet.git] / scan.cc
blobdd005734ab075e9dead699edd446284f4d1c4d47
1 #include <set>
2 #include <map>
3 #include <iostream>
4 #include <clang/AST/ASTDiagnostic.h>
5 #include <clang/AST/Expr.h>
6 #include <clang/AST/RecursiveASTVisitor.h>
8 #include <isl/id.h>
9 #include <isl/dim.h>
10 #include <isl/aff.h>
11 #include <isl/set.h>
13 #include "scan.h"
14 #include "scop.h"
15 #include "scop_plus.h"
17 #include "config.h"
19 using namespace std;
20 using namespace clang;
22 /* Look for any assignments to variables in part of the parse
23 * tree and set assigned_value to NULL for each of them.
25 * This ensures that we won't use any previously stored value
26 * in the current subtree and its parents.
28 struct clear_assignments : RecursiveASTVisitor<clear_assignments> {
29 map<ValueDecl *, Expr *> &assigned_value;
31 clear_assignments(map<ValueDecl *, Expr *> &assigned_value) :
32 assigned_value(assigned_value) {}
34 bool VisitBinaryOperator(BinaryOperator *expr) {
35 Expr *lhs;
36 DeclRefExpr *ref;
37 ValueDecl *decl;
39 if (!expr->isAssignmentOp())
40 return true;
41 lhs = expr->getLHS();
42 if (lhs->getStmtClass() != Stmt::DeclRefExprClass)
43 return true;
44 ref = cast<DeclRefExpr>(lhs);
45 decl = ref->getDecl();
46 assigned_value[decl] = NULL;
47 return true;
51 /* Keep a copy of the currently assigned values.
53 * Any variable that is assigned a value inside the current scope
54 * is removed again when we leave the scope (either because it wasn't
55 * stored in the cache or because it has a different value in the cache).
57 struct assigned_value_cache {
58 map<ValueDecl *, Expr *> &assigned_value;
59 map<ValueDecl *, Expr *> cache;
61 assigned_value_cache(map<ValueDecl *, Expr *> &assigned_value) :
62 assigned_value(assigned_value), cache(assigned_value) {}
63 ~assigned_value_cache() {
64 map<ValueDecl *, Expr *>::iterator it = cache.begin();
65 for (it = assigned_value.begin(); it != assigned_value.end();
66 ++it) {
67 if (!it->second ||
68 (cache.find(it->first) != cache.end() &&
69 cache[it->first] != it->second))
70 cache[it->first] = NULL;
72 assigned_value = cache;
76 /* Called if we found something we (currently) cannot handle.
77 * We'll provide more informative warnings later.
79 * We only actually complain if autodetect is false.
81 void PetScan::unsupported(Stmt *stmt)
83 if (autodetect)
84 return;
86 SourceLocation loc = stmt->getLocStart();
87 Diagnostic &diag = PP.getDiagnostics();
88 unsigned id = diag.getCustomDiagID(Diagnostic::Warning, "unsupported");
89 DiagnosticBuilder B = diag.Report(loc, id) << stmt->getSourceRange();
92 /* Extract an integer from "expr" and store it in "v".
94 int PetScan::extract_int(IntegerLiteral *expr, isl_int *v)
96 const Type *type = expr->getType().getTypePtr();
97 int is_signed = type->hasSignedIntegerRepresentation();
99 if (is_signed) {
100 int64_t i = expr->getValue().getSExtValue();
101 isl_int_set_si(*v, i);
102 } else {
103 uint64_t i = expr->getValue().getZExtValue();
104 isl_int_set_ui(*v, i);
107 return 0;
110 /* Extract an affine expression from the IntegerLiteral "expr".
112 __isl_give isl_pw_aff *PetScan::extract_affine(IntegerLiteral *expr)
114 isl_dim *dim = isl_dim_set_alloc(ctx, 0, 0);
115 isl_local_space *ls = isl_local_space_from_dim(isl_dim_copy(dim));
116 isl_aff *aff = isl_aff_zero(ls);
117 isl_set *dom = isl_set_universe(dim);
118 isl_int v;
120 isl_int_init(v);
121 extract_int(expr, &v);
122 aff = isl_aff_add_constant(aff, v);
123 isl_int_clear(v);
125 return isl_pw_aff_alloc(dom, aff);
128 /* Extract an affine expression from the APInt "val".
130 __isl_give isl_pw_aff *PetScan::extract_affine(const llvm::APInt &val)
132 isl_dim *dim = isl_dim_set_alloc(ctx, 0, 0);
133 isl_local_space *ls = isl_local_space_from_dim(isl_dim_copy(dim));
134 isl_aff *aff = isl_aff_zero(ls);
135 isl_set *dom = isl_set_universe(dim);
136 isl_int v;
138 isl_int_init(v);
139 isl_int_set_ui(v, val.getZExtValue());
140 aff = isl_aff_add_constant(aff, v);
141 isl_int_clear(v);
143 return isl_pw_aff_alloc(dom, aff);
146 __isl_give isl_pw_aff *PetScan::extract_affine(ImplicitCastExpr *expr)
148 return extract_affine(expr->getSubExpr());
151 /* Extract an affine expression from the DeclRefExpr "expr".
153 * If we have recorded an expression that was assigned to the variable
154 * before, then we convert this expressoin to an isl_pw_aff if it is
155 * affine and to an extra parameter otherwise (provided nesting_enabled is set).
157 * Otherwise, we simply return an expression that is equal
158 * to a parameter corresponding to the referenced variable.
160 __isl_give isl_pw_aff *PetScan::extract_affine(DeclRefExpr *expr)
162 ValueDecl *decl = expr->getDecl();
163 const Type *type = decl->getType().getTypePtr();
164 isl_id *id;
165 isl_dim *dim;
166 isl_aff *aff;
167 isl_set *dom;
169 if (!type->isIntegerType()) {
170 unsupported(expr);
171 return NULL;
174 if (assigned_value.find(decl) != assigned_value.end() &&
175 assigned_value[decl] != NULL) {
176 if (is_affine(assigned_value[decl]))
177 return extract_affine(assigned_value[decl]);
178 else
179 return non_affine(expr);
182 id = isl_id_alloc(ctx, decl->getName().str().c_str(), decl);
183 dim = isl_dim_set_alloc(ctx, 1, 0);
185 dim = isl_dim_set_dim_id(dim, isl_dim_param, 0, id);
187 dom = isl_set_universe(isl_dim_copy(dim));
188 aff = isl_aff_zero(isl_local_space_from_dim(dim));
189 aff = isl_aff_add_coefficient_si(aff, isl_dim_param, 0, 1);
191 return isl_pw_aff_alloc(dom, aff);
194 /* Extract an affine expression from an integer division operation.
195 * In particular, if "expr" is lhs/rhs, then return
197 * lhs >= 0 ? floor(lhs/rhs) : ceil(lhs/rhs)
199 * The second argument (rhs) is required to be a (positive) integer constant.
201 __isl_give isl_pw_aff *PetScan::extract_affine_div(BinaryOperator *expr)
203 Expr *rhs_expr;
204 isl_pw_aff *lhs, *lhs_f, *lhs_c;
205 isl_pw_aff *res;
206 isl_int v;
207 isl_set *cond;
209 rhs_expr = expr->getRHS();
210 if (rhs_expr->getStmtClass() != Stmt::IntegerLiteralClass) {
211 unsupported(expr);
212 return NULL;
215 lhs = extract_affine(expr->getLHS());
216 cond = isl_pw_aff_nonneg_set(isl_pw_aff_copy(lhs));
218 isl_int_init(v);
219 extract_int(cast<IntegerLiteral>(rhs_expr), &v);
220 lhs = isl_pw_aff_scale_down(lhs, v);
221 isl_int_clear(v);
223 lhs_f = isl_pw_aff_floor(isl_pw_aff_copy(lhs));
224 lhs_c = isl_pw_aff_ceil(lhs);
225 res = isl_pw_aff_cond(cond, lhs_f, lhs_c);
227 return res;
230 /* Extract an affine expression from a modulo operation.
231 * In particular, if "expr" is lhs/rhs, then return
233 * lhs - rhs * (lhs >= 0 ? floor(lhs/rhs) : ceil(lhs/rhs))
235 * The second argument (rhs) is required to be a (positive) integer constant.
237 __isl_give isl_pw_aff *PetScan::extract_affine_mod(BinaryOperator *expr)
239 Expr *rhs_expr;
240 isl_pw_aff *lhs, *lhs_f, *lhs_c;
241 isl_pw_aff *res;
242 isl_int v;
243 isl_set *cond;
245 rhs_expr = expr->getRHS();
246 if (rhs_expr->getStmtClass() != Stmt::IntegerLiteralClass) {
247 unsupported(expr);
248 return NULL;
251 lhs = extract_affine(expr->getLHS());
252 cond = isl_pw_aff_nonneg_set(isl_pw_aff_copy(lhs));
254 isl_int_init(v);
255 extract_int(cast<IntegerLiteral>(rhs_expr), &v);
256 res = isl_pw_aff_scale_down(isl_pw_aff_copy(lhs), v);
258 lhs_f = isl_pw_aff_floor(isl_pw_aff_copy(res));
259 lhs_c = isl_pw_aff_ceil(res);
260 res = isl_pw_aff_cond(cond, lhs_f, lhs_c);
262 res = isl_pw_aff_scale(res, v);
263 isl_int_clear(v);
265 res = isl_pw_aff_sub(lhs, res);
267 return res;
270 /* Extract an affine expression from a multiplication operation.
271 * This is only allowed if at least one of the two arguments
272 * is a (piecewise) constant.
274 __isl_give isl_pw_aff *PetScan::extract_affine_mul(BinaryOperator *expr)
276 isl_pw_aff *lhs;
277 isl_pw_aff *rhs;
279 lhs = extract_affine(expr->getLHS());
280 rhs = extract_affine(expr->getRHS());
282 if (!isl_pw_aff_is_cst(lhs) && !isl_pw_aff_is_cst(rhs)) {
283 isl_pw_aff_free(lhs);
284 isl_pw_aff_free(rhs);
285 unsupported(expr);
286 return NULL;
289 return isl_pw_aff_mul(lhs, rhs);
292 /* Extract an affine expression from an addition or subtraction operation.
294 __isl_give isl_pw_aff *PetScan::extract_affine_add(BinaryOperator *expr)
296 isl_pw_aff *lhs;
297 isl_pw_aff *rhs;
299 lhs = extract_affine(expr->getLHS());
300 rhs = extract_affine(expr->getRHS());
302 switch (expr->getOpcode()) {
303 case BO_Add:
304 return isl_pw_aff_add(lhs, rhs);
305 case BO_Sub:
306 return isl_pw_aff_sub(lhs, rhs);
307 default:
308 isl_pw_aff_free(lhs);
309 isl_pw_aff_free(rhs);
310 return NULL;
315 /* Compute
317 * pwaff mod 2^width
319 static __isl_give isl_pw_aff *wrap(__isl_take isl_pw_aff *pwaff,
320 unsigned width)
322 isl_int mod;
324 isl_int_init(mod);
325 isl_int_set_si(mod, 1);
326 isl_int_mul_2exp(mod, mod, width);
328 pwaff = isl_pw_aff_mod(pwaff, mod);
330 isl_int_clear(mod);
332 return pwaff;
335 /* Extract an affine expression from some binary operations.
336 * If the result of the expression is unsigned, then we wrap it
337 * based on the size of the type.
339 __isl_give isl_pw_aff *PetScan::extract_affine(BinaryOperator *expr)
341 isl_pw_aff *res;
343 switch (expr->getOpcode()) {
344 case BO_Add:
345 case BO_Sub:
346 res = extract_affine_add(expr);
347 break;
348 case BO_Div:
349 res = extract_affine_div(expr);
350 break;
351 case BO_Rem:
352 res = extract_affine_mod(expr);
353 break;
354 case BO_Mul:
355 res = extract_affine_mul(expr);
356 break;
357 default:
358 unsupported(expr);
359 return NULL;
362 if (expr->getType()->isUnsignedIntegerType())
363 res = wrap(res, ast_context.getIntWidth(expr->getType()));
365 return res;
368 /* Extract an affine expression from a negation operation.
370 __isl_give isl_pw_aff *PetScan::extract_affine(UnaryOperator *expr)
372 if (expr->getOpcode() == UO_Minus)
373 return isl_pw_aff_neg(extract_affine(expr->getSubExpr()));
375 unsupported(expr);
376 return NULL;
379 __isl_give isl_pw_aff *PetScan::extract_affine(ParenExpr *expr)
381 return extract_affine(expr->getSubExpr());
384 /* Extract an affine expression from some special function calls.
385 * In particular, we handle "min", "max", "ceild" and "floord".
386 * In case of the latter two, the second argument needs to be
387 * a (positive) integer constant.
389 __isl_give isl_pw_aff *PetScan::extract_affine(CallExpr *expr)
391 FunctionDecl *fd;
392 string name;
393 isl_pw_aff *aff1, *aff2;
395 fd = expr->getDirectCallee();
396 if (!fd) {
397 unsupported(expr);
398 return NULL;
401 name = fd->getDeclName().getAsString();
402 if (!(expr->getNumArgs() == 2 && name == "min") &&
403 !(expr->getNumArgs() == 2 && name == "max") &&
404 !(expr->getNumArgs() == 2 && name == "floord") &&
405 !(expr->getNumArgs() == 2 && name == "ceild")) {
406 unsupported(expr);
407 return NULL;
410 if (name == "min" || name == "max") {
411 aff1 = extract_affine(expr->getArg(0));
412 aff2 = extract_affine(expr->getArg(1));
414 if (name == "min")
415 aff1 = isl_pw_aff_min(aff1, aff2);
416 else
417 aff1 = isl_pw_aff_max(aff1, aff2);
418 } else if (name == "floord" || name == "ceild") {
419 isl_int v;
420 Expr *arg2 = expr->getArg(1);
422 if (arg2->getStmtClass() != Stmt::IntegerLiteralClass) {
423 unsupported(expr);
424 return NULL;
426 aff1 = extract_affine(expr->getArg(0));
427 isl_int_init(v);
428 extract_int(cast<IntegerLiteral>(arg2), &v);
429 aff1 = isl_pw_aff_scale_down(aff1, v);
430 isl_int_clear(v);
431 if (name == "floord")
432 aff1 = isl_pw_aff_floor(aff1);
433 else
434 aff1 = isl_pw_aff_ceil(aff1);
435 } else {
436 unsupported(expr);
437 return NULL;
440 return aff1;
444 /* This method is called when we come across a non-affine expression.
445 * If nesting is allowed, we return a new parameter that corresponds
446 * to the non-affine expression. Otherwise, we simply complain.
448 * The new parameter is resolved in resolve_nested.
450 isl_pw_aff *PetScan::non_affine(Expr *expr)
452 isl_id *id;
453 isl_dim *dim;
454 isl_aff *aff;
455 isl_set *dom;
457 if (!nesting_enabled) {
458 unsupported(expr);
459 return NULL;
462 id = isl_id_alloc(ctx, NULL, expr);
463 dim = isl_dim_set_alloc(ctx, 1, 0);
465 dim = isl_dim_set_dim_id(dim, isl_dim_param, 0, id);
467 dom = isl_set_universe(isl_dim_copy(dim));
468 aff = isl_aff_zero(isl_local_space_from_dim(dim));
469 aff = isl_aff_add_coefficient_si(aff, isl_dim_param, 0, 1);
471 return isl_pw_aff_alloc(dom, aff);
474 /* Affine expressions are not supposed to contain array accesses,
475 * but if nesting is allowed, we return a parameter corresponding
476 * to the array access.
478 __isl_give isl_pw_aff *PetScan::extract_affine(ArraySubscriptExpr *expr)
480 return non_affine(expr);
483 /* Extract an affine expression from a conditional operation.
485 __isl_give isl_pw_aff *PetScan::extract_affine(ConditionalOperator *expr)
487 isl_set *cond;
488 isl_pw_aff *lhs, *rhs;
490 cond = extract_condition(expr->getCond());
491 lhs = extract_affine(expr->getTrueExpr());
492 rhs = extract_affine(expr->getFalseExpr());
494 return isl_pw_aff_cond(cond, lhs, rhs);
497 /* Extract an affine expression, if possible, from "expr".
498 * Otherwise return NULL.
500 __isl_give isl_pw_aff *PetScan::extract_affine(Expr *expr)
502 switch (expr->getStmtClass()) {
503 case Stmt::ImplicitCastExprClass:
504 return extract_affine(cast<ImplicitCastExpr>(expr));
505 case Stmt::IntegerLiteralClass:
506 return extract_affine(cast<IntegerLiteral>(expr));
507 case Stmt::DeclRefExprClass:
508 return extract_affine(cast<DeclRefExpr>(expr));
509 case Stmt::BinaryOperatorClass:
510 return extract_affine(cast<BinaryOperator>(expr));
511 case Stmt::UnaryOperatorClass:
512 return extract_affine(cast<UnaryOperator>(expr));
513 case Stmt::ParenExprClass:
514 return extract_affine(cast<ParenExpr>(expr));
515 case Stmt::CallExprClass:
516 return extract_affine(cast<CallExpr>(expr));
517 case Stmt::ArraySubscriptExprClass:
518 return extract_affine(cast<ArraySubscriptExpr>(expr));
519 case Stmt::ConditionalOperatorClass:
520 return extract_affine(cast<ConditionalOperator>(expr));
521 default:
522 unsupported(expr);
524 return NULL;
527 __isl_give isl_map *PetScan::extract_access(ImplicitCastExpr *expr)
529 return extract_access(expr->getSubExpr());
532 /* Return the depth of an array of the given type.
534 static int array_depth(const Type *type)
536 if (type->isPointerType())
537 return 1 + array_depth(type->getPointeeType().getTypePtr());
538 if (type->isArrayType()) {
539 const ArrayType *atype;
540 type = type->getCanonicalTypeInternal().getTypePtr();
541 atype = cast<ArrayType>(type);
542 return 1 + array_depth(atype->getElementType().getTypePtr());
544 return 0;
547 /* Return the element type of the given array type.
549 static QualType base_type(QualType qt)
551 const Type *type = qt.getTypePtr();
553 if (type->isPointerType())
554 return base_type(type->getPointeeType());
555 if (type->isArrayType()) {
556 const ArrayType *atype;
557 type = type->getCanonicalTypeInternal().getTypePtr();
558 atype = cast<ArrayType>(type);
559 return base_type(atype->getElementType());
561 return qt;
564 /* Check if the element type corresponding to the given array type
565 * has a const qualifier.
567 static bool const_base(QualType qt)
569 const Type *type = qt.getTypePtr();
571 if (type->isPointerType())
572 return const_base(type->getPointeeType());
573 if (type->isArrayType()) {
574 const ArrayType *atype;
575 type = type->getCanonicalTypeInternal().getTypePtr();
576 atype = cast<ArrayType>(type);
577 return const_base(atype->getElementType());
580 return qt.isConstQualified();
583 /* Extract an access relation from a reference to a variable.
584 * If the variable has name "A" and its type corresponds to an
585 * array of depth d, then the returned access relation is of the
586 * form
588 * { [] -> A[i_1,...,i_d] }
590 __isl_give isl_map *PetScan::extract_access(DeclRefExpr *expr)
592 ValueDecl *decl = expr->getDecl();
593 int depth = array_depth(decl->getType().getTypePtr());
594 isl_id *id = isl_id_alloc(ctx, decl->getName().str().c_str(), decl);
595 isl_dim *dim = isl_dim_alloc(ctx, 0, 0, depth);
596 isl_map *access_rel;
598 dim = isl_dim_set_tuple_id(dim, isl_dim_out, id);
600 access_rel = isl_map_universe(dim);
602 return access_rel;
605 /* Extract an access relation from an integer contant.
606 * If the value of the constant is "v", then the returned access relation
607 * is
609 * { [] -> [v] }
611 __isl_give isl_map *PetScan::extract_access(IntegerLiteral *expr)
613 return isl_map_from_pw_aff(extract_affine(expr));
616 /* Try and extract an access relation from the given Expr.
617 * Return NULL if it doesn't work out.
619 __isl_give isl_map *PetScan::extract_access(Expr *expr)
621 switch (expr->getStmtClass()) {
622 case Stmt::ImplicitCastExprClass:
623 return extract_access(cast<ImplicitCastExpr>(expr));
624 case Stmt::DeclRefExprClass:
625 return extract_access(cast<DeclRefExpr>(expr));
626 case Stmt::ArraySubscriptExprClass:
627 return extract_access(cast<ArraySubscriptExpr>(expr));
628 default:
629 unsupported(expr);
631 return NULL;
634 /* Assign the affine expression "index" to the output dimension "pos" of "map"
635 * and return the result.
637 __isl_give isl_map *set_index(__isl_take isl_map *map, int pos,
638 __isl_take isl_pw_aff *index)
640 isl_map *index_map;
641 int len = isl_map_dim(map, isl_dim_out);
642 isl_id *id;
644 index_map = isl_map_from_pw_aff(index);
645 index_map = isl_map_insert_dims(index_map, isl_dim_out, 0, pos);
646 index_map = isl_map_add_dims(index_map, isl_dim_out, len - pos - 1);
647 id = isl_map_get_tuple_id(map, isl_dim_out);
648 index_map = isl_map_set_tuple_id(index_map, isl_dim_out, id);
650 map = isl_map_intersect(map, index_map);
652 return map;
655 /* Extract an access relation from the given array subscript expression.
656 * If nesting is allowed in general, then we turn it on while
657 * examining the index expression.
659 * We first extract an access relation from the base.
660 * This will result in an access relation with a range that corresponds
661 * to the array being accessed and with earlier indices filled in already.
662 * We then extract the current index and fill that in as well.
663 * The position of the current index is based on the type of base.
664 * If base is the actual array variable, then the depth of this type
665 * will be the same as the depth of the array and we will fill in
666 * the first array index.
667 * Otherwise, the depth of the base type will be smaller and we will fill
668 * in a later index.
670 __isl_give isl_map *PetScan::extract_access(ArraySubscriptExpr *expr)
672 Expr *base = expr->getBase();
673 Expr *idx = expr->getIdx();
674 isl_pw_aff *index;
675 isl_map *base_access;
676 isl_map *access;
677 int depth = array_depth(base->getType().getTypePtr());
678 int pos;
679 bool save_nesting = nesting_enabled;
681 nesting_enabled = allow_nested;
683 base_access = extract_access(base);
684 index = extract_affine(idx);
686 nesting_enabled = save_nesting;
688 pos = isl_map_dim(base_access, isl_dim_out) - depth;
689 access = set_index(base_access, pos, index);
691 return access;
694 /* Check if "expr" calls function "minmax" with two arguments and if so
695 * make lhs and rhs refer to these two arguments.
697 static bool is_minmax(Expr *expr, const char *minmax, Expr *&lhs, Expr *&rhs)
699 CallExpr *call;
700 FunctionDecl *fd;
701 string name;
703 if (expr->getStmtClass() != Stmt::CallExprClass)
704 return false;
706 call = cast<CallExpr>(expr);
707 fd = call->getDirectCallee();
708 if (!fd)
709 return false;
711 if (call->getNumArgs() != 2)
712 return false;
714 name = fd->getDeclName().getAsString();
715 if (name != minmax)
716 return false;
718 lhs = call->getArg(0);
719 rhs = call->getArg(1);
721 return true;
724 /* Check if "expr" is of the form min(lhs, rhs) and if so make
725 * lhs and rhs refer to the two arguments.
727 static bool is_min(Expr *expr, Expr *&lhs, Expr *&rhs)
729 return is_minmax(expr, "min", lhs, rhs);
732 /* Check if "expr" is of the form max(lhs, rhs) and if so make
733 * lhs and rhs refer to the two arguments.
735 static bool is_max(Expr *expr, Expr *&lhs, Expr *&rhs)
737 return is_minmax(expr, "max", lhs, rhs);
740 /* Extract a set of values satisfying the comparison "LHS op RHS"
741 * "comp" is the original statement that "LHS op RHS" is derived from
742 * and is used for diagnostics.
744 * If the comparison is of the form
746 * a <= min(b,c)
748 * then the set is constructed as the intersection of the set corresponding
749 * to the comparisons
751 * a <= b and a <= c
753 * A similar optimization is performed for max(a,b) <= c.
754 * We do this because that will lead to simpler representations of the set.
755 * If isl is ever enhanced to explicitly deal with min and max expressions,
756 * this optimization can be removed.
758 __isl_give isl_set *PetScan::extract_comparison(BinaryOperatorKind op,
759 Expr *LHS, Expr *RHS, Stmt *comp)
761 isl_pw_aff *lhs;
762 isl_pw_aff *rhs;
763 isl_set *cond;
765 if (op == BO_GT)
766 return extract_comparison(BO_LT, RHS, LHS, comp);
767 if (op == BO_GE)
768 return extract_comparison(BO_LE, RHS, LHS, comp);
770 if (op == BO_LT || op == BO_LE) {
771 Expr *expr1, *expr2;
772 isl_set *set1, *set2;
773 if (is_min(RHS, expr1, expr2)) {
774 set1 = extract_comparison(op, LHS, expr1, comp);
775 set2 = extract_comparison(op, LHS, expr2, comp);
776 return isl_set_intersect(set1, set2);
778 if (is_max(LHS, expr1, expr2)) {
779 set1 = extract_comparison(op, expr1, RHS, comp);
780 set2 = extract_comparison(op, expr2, RHS, comp);
781 return isl_set_intersect(set1, set2);
785 lhs = extract_affine(LHS);
786 rhs = extract_affine(RHS);
788 switch (op) {
789 case BO_LT:
790 cond = isl_pw_aff_lt_set(lhs, rhs);
791 break;
792 case BO_LE:
793 cond = isl_pw_aff_le_set(lhs, rhs);
794 break;
795 case BO_EQ:
796 cond = isl_pw_aff_eq_set(lhs, rhs);
797 break;
798 case BO_NE:
799 cond = isl_pw_aff_ne_set(lhs, rhs);
800 break;
801 default:
802 isl_pw_aff_free(lhs);
803 isl_pw_aff_free(rhs);
804 unsupported(comp);
805 return NULL;
808 cond = isl_set_coalesce(cond);
810 return cond;
813 __isl_give isl_set *PetScan::extract_comparison(BinaryOperator *comp)
815 return extract_comparison(comp->getOpcode(), comp->getLHS(),
816 comp->getRHS(), comp);
819 /* Extract a set of values satisfying the negation (logical not)
820 * of a subexpression.
822 __isl_give isl_set *PetScan::extract_boolean(UnaryOperator *op)
824 isl_set *cond;
826 cond = extract_condition(op->getSubExpr());
828 return isl_set_complement(cond);
831 /* Extract a set of values satisfying the union (logical or)
832 * or intersection (logical and) of two subexpressions.
834 __isl_give isl_set *PetScan::extract_boolean(BinaryOperator *comp)
836 isl_set *lhs;
837 isl_set *rhs;
838 isl_set *cond;
840 lhs = extract_condition(comp->getLHS());
841 rhs = extract_condition(comp->getRHS());
843 switch (comp->getOpcode()) {
844 case BO_LAnd:
845 cond = isl_set_intersect(lhs, rhs);
846 break;
847 case BO_LOr:
848 cond = isl_set_union(lhs, rhs);
849 break;
850 default:
851 isl_set_free(lhs);
852 isl_set_free(rhs);
853 unsupported(comp);
854 return NULL;
857 return cond;
860 __isl_give isl_set *PetScan::extract_condition(UnaryOperator *expr)
862 switch (expr->getOpcode()) {
863 case UO_LNot:
864 return extract_boolean(expr);
865 default:
866 unsupported(expr);
867 return NULL;
871 /* Extract a set of values satisfying the condition "expr != 0".
873 __isl_give isl_set *PetScan::extract_implicit_condition(Expr *expr)
875 return isl_pw_aff_non_zero_set(extract_affine(expr));
878 /* Extract a set of values satisfying the condition expressed by "expr".
880 * If the expression doesn't look like a condition, we assume it
881 * is an affine expression and return the condition "expr != 0".
883 __isl_give isl_set *PetScan::extract_condition(Expr *expr)
885 BinaryOperator *comp;
887 if (!expr)
888 return isl_set_universe(isl_dim_set_alloc(ctx, 0, 0));
890 if (expr->getStmtClass() == Stmt::ParenExprClass)
891 return extract_condition(cast<ParenExpr>(expr)->getSubExpr());
893 if (expr->getStmtClass() == Stmt::UnaryOperatorClass)
894 return extract_condition(cast<UnaryOperator>(expr));
896 if (expr->getStmtClass() != Stmt::BinaryOperatorClass)
897 return extract_implicit_condition(expr);
899 comp = cast<BinaryOperator>(expr);
900 switch (comp->getOpcode()) {
901 case BO_LT:
902 case BO_LE:
903 case BO_GT:
904 case BO_GE:
905 case BO_EQ:
906 case BO_NE:
907 return extract_comparison(comp);
908 case BO_LAnd:
909 case BO_LOr:
910 return extract_boolean(comp);
911 default:
912 return extract_implicit_condition(expr);
916 static enum pet_op_type UnaryOperatorKind2pet_op_type(UnaryOperatorKind kind)
918 switch (kind) {
919 case UO_Minus:
920 return pet_op_minus;
921 default:
922 return pet_op_last;
926 static enum pet_op_type BinaryOperatorKind2pet_op_type(BinaryOperatorKind kind)
928 switch (kind) {
929 case BO_AddAssign:
930 return pet_op_add_assign;
931 case BO_SubAssign:
932 return pet_op_sub_assign;
933 case BO_MulAssign:
934 return pet_op_mul_assign;
935 case BO_DivAssign:
936 return pet_op_div_assign;
937 case BO_Assign:
938 return pet_op_assign;
939 case BO_Add:
940 return pet_op_add;
941 case BO_Sub:
942 return pet_op_sub;
943 case BO_Mul:
944 return pet_op_mul;
945 case BO_Div:
946 return pet_op_div;
947 case BO_EQ:
948 return pet_op_eq;
949 case BO_LE:
950 return pet_op_le;
951 case BO_LT:
952 return pet_op_lt;
953 case BO_GT:
954 return pet_op_gt;
955 default:
956 return pet_op_last;
960 /* Construct a pet_expr representing a unary operator expression.
962 struct pet_expr *PetScan::extract_expr(UnaryOperator *expr)
964 struct pet_expr *arg;
965 enum pet_op_type op;
967 op = UnaryOperatorKind2pet_op_type(expr->getOpcode());
968 if (op == pet_op_last) {
969 unsupported(expr);
970 return NULL;
973 arg = extract_expr(expr->getSubExpr());
975 return pet_expr_new_unary(ctx, op, arg);
978 /* Construct a pet_expr representing a binary operator expression.
980 * If the top level operator is an assignment and the LHS is an access,
981 * then we mark that access as a write. If the operator is a compound
982 * assignment, the access is marked as both a read and a write.
984 * If "expr" assigns something to a scalar variable, then we keep track
985 * of the assigned expression in assigned_value so that we can plug
986 * it in when we later come across the same variable.
988 struct pet_expr *PetScan::extract_expr(BinaryOperator *expr)
990 struct pet_expr *lhs, *rhs;
991 enum pet_op_type op;
993 op = BinaryOperatorKind2pet_op_type(expr->getOpcode());
994 if (op == pet_op_last) {
995 unsupported(expr);
996 return NULL;
999 lhs = extract_expr(expr->getLHS());
1000 rhs = extract_expr(expr->getRHS());
1002 if (expr->isAssignmentOp() && lhs && lhs->type == pet_expr_access) {
1003 lhs->acc.write = 1;
1004 if (!expr->isCompoundAssignmentOp())
1005 lhs->acc.read = 0;
1008 if (expr->getOpcode() == BO_Assign &&
1009 lhs && lhs->type == pet_expr_access &&
1010 isl_map_dim(lhs->acc.access, isl_dim_out) == 0) {
1011 isl_id *id = isl_map_get_tuple_id(lhs->acc.access, isl_dim_out);
1012 ValueDecl *decl = (ValueDecl *) isl_id_get_user(id);
1013 assigned_value[decl] = expr->getRHS();
1014 isl_id_free(id);
1017 return pet_expr_new_binary(ctx, op, lhs, rhs);
1020 /* Construct a pet_expr representing a conditional operation.
1022 struct pet_expr *PetScan::extract_expr(ConditionalOperator *expr)
1024 struct pet_expr *cond, *lhs, *rhs;
1026 cond = extract_expr(expr->getCond());
1027 lhs = extract_expr(expr->getTrueExpr());
1028 rhs = extract_expr(expr->getFalseExpr());
1030 return pet_expr_new_ternary(ctx, cond, lhs, rhs);
1033 struct pet_expr *PetScan::extract_expr(ImplicitCastExpr *expr)
1035 return extract_expr(expr->getSubExpr());
1038 /* Construct a pet_expr representing a floating point value.
1040 struct pet_expr *PetScan::extract_expr(FloatingLiteral *expr)
1042 return pet_expr_new_double(ctx, expr->getValueAsApproximateDouble());
1045 /* Extract an access relation from "expr" and then convert it into
1046 * a pet_expr.
1048 struct pet_expr *PetScan::extract_access_expr(Expr *expr)
1050 isl_map *access;
1051 struct pet_expr *pe;
1053 switch (expr->getStmtClass()) {
1054 case Stmt::ArraySubscriptExprClass:
1055 access = extract_access(cast<ArraySubscriptExpr>(expr));
1056 break;
1057 case Stmt::DeclRefExprClass:
1058 access = extract_access(cast<DeclRefExpr>(expr));
1059 break;
1060 case Stmt::IntegerLiteralClass:
1061 access = extract_access(cast<IntegerLiteral>(expr));
1062 break;
1063 default:
1064 unsupported(expr);
1065 return NULL;
1068 pe = pet_expr_from_access(access);
1070 return pe;
1073 struct pet_expr *PetScan::extract_expr(ParenExpr *expr)
1075 return extract_expr(expr->getSubExpr());
1078 /* Construct a pet_expr representing a function call.
1080 * If we are passing along a pointer to an array element
1081 * or an entire row or even higher dimensional slice of an array,
1082 * then the function being called may write into the array.
1084 * We assume here that if the function is declared to take a pointer
1085 * to a const type, then the function will perform a read
1086 * and that otherwise, it will perform a write.
1088 struct pet_expr *PetScan::extract_expr(CallExpr *expr)
1090 struct pet_expr *res = NULL;
1091 FunctionDecl *fd;
1092 string name;
1094 fd = expr->getDirectCallee();
1095 if (!fd) {
1096 unsupported(expr);
1097 return NULL;
1100 name = fd->getDeclName().getAsString();
1101 res = pet_expr_new_call(ctx, name.c_str(), expr->getNumArgs());
1102 if (!res)
1103 return NULL;
1105 for (int i = 0; i < expr->getNumArgs(); ++i) {
1106 Expr *arg = expr->getArg(i);
1107 int is_addr = 0;
1109 if (arg->getStmtClass() == Stmt::ImplicitCastExprClass) {
1110 ImplicitCastExpr *ice = cast<ImplicitCastExpr>(arg);
1111 arg = ice->getSubExpr();
1113 if (arg->getStmtClass() == Stmt::UnaryOperatorClass) {
1114 UnaryOperator *op = cast<UnaryOperator>(arg);
1115 if (op->getOpcode() == UO_AddrOf) {
1116 is_addr = 1;
1117 arg = op->getSubExpr();
1120 res->args[i] = PetScan::extract_expr(arg);
1121 if (!res->args[i])
1122 goto error;
1123 if (arg->getStmtClass() == Stmt::ArraySubscriptExprClass &&
1124 array_depth(arg->getType().getTypePtr()) > 0)
1125 is_addr = 1;
1126 if (is_addr && res->args[i]->type == pet_expr_access) {
1127 ParmVarDecl *parm = fd->getParamDecl(i);
1128 if (!const_base(parm->getType())) {
1129 res->args[i]->acc.write = 1;
1130 res->args[i]->acc.read = 0;
1135 return res;
1136 error:
1137 pet_expr_free(res);
1138 return NULL;
1141 /* Try and onstruct a pet_expr representing "expr".
1143 struct pet_expr *PetScan::extract_expr(Expr *expr)
1145 switch (expr->getStmtClass()) {
1146 case Stmt::UnaryOperatorClass:
1147 return extract_expr(cast<UnaryOperator>(expr));
1148 case Stmt::CompoundAssignOperatorClass:
1149 case Stmt::BinaryOperatorClass:
1150 return extract_expr(cast<BinaryOperator>(expr));
1151 case Stmt::ImplicitCastExprClass:
1152 return extract_expr(cast<ImplicitCastExpr>(expr));
1153 case Stmt::ArraySubscriptExprClass:
1154 case Stmt::DeclRefExprClass:
1155 case Stmt::IntegerLiteralClass:
1156 return extract_access_expr(expr);
1157 case Stmt::FloatingLiteralClass:
1158 return extract_expr(cast<FloatingLiteral>(expr));
1159 case Stmt::ParenExprClass:
1160 return extract_expr(cast<ParenExpr>(expr));
1161 case Stmt::ConditionalOperatorClass:
1162 return extract_expr(cast<ConditionalOperator>(expr));
1163 case Stmt::CallExprClass:
1164 return extract_expr(cast<CallExpr>(expr));
1165 default:
1166 unsupported(expr);
1168 return NULL;
1171 /* Check if the given initialization statement is an assignment.
1172 * If so, return that assignment. Otherwise return NULL.
1174 BinaryOperator *PetScan::initialization_assignment(Stmt *init)
1176 BinaryOperator *ass;
1178 if (init->getStmtClass() != Stmt::BinaryOperatorClass)
1179 return NULL;
1181 ass = cast<BinaryOperator>(init);
1182 if (ass->getOpcode() != BO_Assign)
1183 return NULL;
1185 return ass;
1188 /* Check if the given initialization statement is a declaration
1189 * of a single variable.
1190 * If so, return that declaration. Otherwise return NULL.
1192 Decl *PetScan::initialization_declaration(Stmt *init)
1194 DeclStmt *decl;
1196 if (init->getStmtClass() != Stmt::DeclStmtClass)
1197 return NULL;
1199 decl = cast<DeclStmt>(init);
1201 if (!decl->isSingleDecl())
1202 return NULL;
1204 return decl->getSingleDecl();
1207 /* Given the assignment operator in the initialization of a for loop,
1208 * extract the induction variable, i.e., the (integer)variable being
1209 * assigned.
1211 ValueDecl *PetScan::extract_induction_variable(BinaryOperator *init)
1213 Expr *lhs;
1214 DeclRefExpr *ref;
1215 ValueDecl *decl;
1216 const Type *type;
1218 lhs = init->getLHS();
1219 if (lhs->getStmtClass() != Stmt::DeclRefExprClass) {
1220 unsupported(init);
1221 return NULL;
1224 ref = cast<DeclRefExpr>(lhs);
1225 decl = ref->getDecl();
1226 type = decl->getType().getTypePtr();
1228 if (!type->isIntegerType()) {
1229 unsupported(lhs);
1230 return NULL;
1233 return decl;
1236 /* Given the initialization statement of a for loop and the single
1237 * declaration in this initialization statement,
1238 * extract the induction variable, i.e., the (integer) variable being
1239 * declared.
1241 VarDecl *PetScan::extract_induction_variable(Stmt *init, Decl *decl)
1243 VarDecl *vd;
1245 vd = cast<VarDecl>(decl);
1247 const QualType type = vd->getType();
1248 if (!type->isIntegerType()) {
1249 unsupported(init);
1250 return NULL;
1253 if (!vd->getInit()) {
1254 unsupported(init);
1255 return NULL;
1258 return vd;
1261 /* Check that op is of the form iv++ or iv--.
1262 * "inc" is accordingly set to 1 or -1.
1264 bool PetScan::check_unary_increment(UnaryOperator *op, clang::ValueDecl *iv,
1265 isl_int &inc)
1267 Expr *sub;
1268 DeclRefExpr *ref;
1270 if (!op->isIncrementDecrementOp()) {
1271 unsupported(op);
1272 return false;
1275 if (op->isIncrementOp())
1276 isl_int_set_si(inc, 1);
1277 else
1278 isl_int_set_si(inc, -1);
1280 sub = op->getSubExpr();
1281 if (sub->getStmtClass() != Stmt::DeclRefExprClass) {
1282 unsupported(op);
1283 return false;
1286 ref = cast<DeclRefExpr>(sub);
1287 if (ref->getDecl() != iv) {
1288 unsupported(op);
1289 return false;
1292 return true;
1295 /* If the isl_pw_aff on which isl_pw_aff_foreach_piece is called
1296 * has a single constant expression on a universe domain, then
1297 * put this constant in *user.
1299 static int extract_cst(__isl_take isl_set *set, __isl_take isl_aff *aff,
1300 void *user)
1302 isl_int *inc = (isl_int *)user;
1303 int res = 0;
1305 if (!isl_set_plain_is_universe(set) || !isl_aff_is_cst(aff))
1306 res = -1;
1307 else
1308 isl_aff_get_constant(aff, inc);
1310 isl_set_free(set);
1311 isl_aff_free(aff);
1313 return res;
1316 /* Check if op is of the form
1318 * iv = iv + inc
1320 * with inc a constant and set "inc" accordingly.
1322 * We extract an affine expression from the RHS and the subtract iv.
1323 * The result should be a constant.
1325 bool PetScan::check_binary_increment(BinaryOperator *op, clang::ValueDecl *iv,
1326 isl_int &inc)
1328 Expr *lhs;
1329 DeclRefExpr *ref;
1330 isl_id *id;
1331 isl_dim *dim;
1332 isl_aff *aff;
1333 isl_pw_aff *val;
1335 if (op->getOpcode() != BO_Assign) {
1336 unsupported(op);
1337 return false;
1340 lhs = op->getLHS();
1341 if (lhs->getStmtClass() != Stmt::DeclRefExprClass) {
1342 unsupported(op);
1343 return false;
1346 ref = cast<DeclRefExpr>(lhs);
1347 if (ref->getDecl() != iv) {
1348 unsupported(op);
1349 return false;
1352 val = extract_affine(op->getRHS());
1354 id = isl_id_alloc(ctx, iv->getName().str().c_str(), iv);
1356 dim = isl_dim_set_alloc(ctx, 1, 0);
1357 dim = isl_dim_set_dim_id(dim, isl_dim_param, 0, id);
1358 aff = isl_aff_zero(isl_local_space_from_dim(dim));
1359 aff = isl_aff_add_coefficient_si(aff, isl_dim_param, 0, 1);
1361 val = isl_pw_aff_sub(val, isl_pw_aff_from_aff(aff));
1363 if (isl_pw_aff_foreach_piece(val, &extract_cst, &inc) < 0) {
1364 isl_pw_aff_free(val);
1365 unsupported(op);
1366 return false;
1369 isl_pw_aff_free(val);
1371 return true;
1374 /* Check that op is of the form iv += cst or iv -= cst.
1375 * "inc" is set to cst or -cst accordingly.
1377 bool PetScan::check_compound_increment(CompoundAssignOperator *op,
1378 clang::ValueDecl *iv, isl_int &inc)
1380 Expr *lhs, *rhs;
1381 DeclRefExpr *ref;
1382 bool neg = false;
1384 BinaryOperatorKind opcode;
1386 opcode = op->getOpcode();
1387 if (opcode != BO_AddAssign && opcode != BO_SubAssign) {
1388 unsupported(op);
1389 return false;
1391 if (opcode == BO_SubAssign)
1392 neg = true;
1394 lhs = op->getLHS();
1395 if (lhs->getStmtClass() != Stmt::DeclRefExprClass) {
1396 unsupported(op);
1397 return false;
1400 ref = cast<DeclRefExpr>(lhs);
1401 if (ref->getDecl() != iv) {
1402 unsupported(op);
1403 return false;
1406 rhs = op->getRHS();
1408 if (rhs->getStmtClass() == Stmt::UnaryOperatorClass) {
1409 UnaryOperator *op = cast<UnaryOperator>(rhs);
1410 if (op->getOpcode() != UO_Minus) {
1411 unsupported(op);
1412 return false;
1415 neg = !neg;
1417 rhs = op->getSubExpr();
1420 if (rhs->getStmtClass() != Stmt::IntegerLiteralClass) {
1421 unsupported(op);
1422 return false;
1425 extract_int(cast<IntegerLiteral>(rhs), &inc);
1426 if (neg)
1427 isl_int_neg(inc, inc);
1429 return true;
1432 /* Check that the increment of the given for loop increments
1433 * (or decrements) the induction variable "iv".
1434 * "up" is set to true if the induction variable is incremented.
1436 bool PetScan::check_increment(ForStmt *stmt, ValueDecl *iv, isl_int &v)
1438 Stmt *inc = stmt->getInc();
1440 if (!inc) {
1441 unsupported(stmt);
1442 return false;
1445 if (inc->getStmtClass() == Stmt::UnaryOperatorClass)
1446 return check_unary_increment(cast<UnaryOperator>(inc), iv, v);
1447 if (inc->getStmtClass() == Stmt::CompoundAssignOperatorClass)
1448 return check_compound_increment(
1449 cast<CompoundAssignOperator>(inc), iv, v);
1450 if (inc->getStmtClass() == Stmt::BinaryOperatorClass)
1451 return check_binary_increment(cast<BinaryOperator>(inc), iv, v);
1453 unsupported(inc);
1454 return false;
1457 /* Embed the given iteration domain in an extra outer loop
1458 * with induction variable "var".
1459 * If this variable appeared as a parameter in the constraints,
1460 * it is replaced by the new outermost dimension.
1462 static __isl_give isl_set *embed(__isl_take isl_set *set,
1463 __isl_take isl_id *var)
1465 int pos;
1467 set = isl_set_insert_dims(set, isl_dim_set, 0, 1);
1468 pos = isl_set_find_dim_by_id(set, isl_dim_param, var);
1469 if (pos >= 0) {
1470 set = isl_set_equate(set, isl_dim_param, pos, isl_dim_set, 0);
1471 set = isl_set_project_out(set, isl_dim_param, pos, 1);
1474 isl_id_free(var);
1475 return set;
1478 /* Construct a pet_scop for an infinite loop around the given body.
1480 * We extract a pet_scop for the body and then embed it in a loop with
1481 * iteration domain
1483 * { [t] : t >= 0 }
1485 * and schedule
1487 * { [t] -> [t] }
1489 struct pet_scop *PetScan::extract_infinite_loop(Stmt *body)
1491 isl_id *id;
1492 isl_dim *dim;
1493 isl_set *domain;
1494 isl_map *sched;
1495 struct pet_scop *scop;
1497 scop = extract(body);
1498 if (!scop)
1499 return NULL;
1501 id = isl_id_alloc(ctx, "t", NULL);
1502 domain = isl_set_nat_universe(isl_dim_set_alloc(ctx, 0, 1));
1503 domain = isl_set_set_dim_id(domain, isl_dim_set, 0, isl_id_copy(id));
1504 dim = isl_dim_from_domain(isl_set_get_dim(domain));
1505 dim = isl_dim_add(dim, isl_dim_out, 1);
1506 sched = isl_map_universe(dim);
1507 sched = isl_map_equate(sched, isl_dim_in, 0, isl_dim_out, 0);
1508 scop = pet_scop_embed(scop, domain, sched, id);
1510 return scop;
1513 /* Construct a pet_scop for an infinite loop, i.e., a loop of the form
1515 * for (;;)
1516 * body
1519 struct pet_scop *PetScan::extract_infinite_for(ForStmt *stmt)
1521 return extract_infinite_loop(stmt->getBody());
1524 /* Check if the while loop is of the form
1526 * while (1)
1527 * body
1529 * If so, construct a scop for an infinite loop around body.
1530 * Otherwise, fail.
1532 struct pet_scop *PetScan::extract(WhileStmt *stmt)
1534 Expr *cond;
1535 isl_set *set;
1536 int is_universe;
1538 cond = stmt->getCond();
1539 if (!cond) {
1540 unsupported(stmt);
1541 return NULL;
1544 set = extract_condition(cond);
1545 is_universe = isl_set_plain_is_universe(set);
1546 isl_set_free(set);
1548 if (!is_universe) {
1549 unsupported(stmt);
1550 return NULL;
1553 return extract_infinite_loop(stmt->getBody());
1556 /* Check whether "cond" expresses a simple loop bound
1557 * on the only set dimension.
1558 * In particular, if "up" is set then "cond" should contain only
1559 * upper bounds on the set dimension.
1560 * Otherwise, it should contain only lower bounds.
1562 static bool is_simple_bound(__isl_keep isl_set *cond, isl_int inc)
1564 if (isl_int_is_pos(inc))
1565 return !isl_set_dim_has_lower_bound(cond, isl_dim_set, 0);
1566 else
1567 return !isl_set_dim_has_upper_bound(cond, isl_dim_set, 0);
1570 /* Extend a condition on a given iteration of a loop to one that
1571 * imposes the same condition on all previous iterations.
1572 * "domain" expresses the lower [upper] bound on the iterations
1573 * when up is set [not set].
1575 * In particular, we construct the condition (when up is set)
1577 * forall i' : (domain(i') and i' <= i) => cond(i')
1579 * which is equivalent to
1581 * not exists i' : domain(i') and i' <= i and not cond(i')
1583 * We construct this set by negating cond, applying a map
1585 * { [i'] -> [i] : domain(i') and i' <= i }
1587 * and then negating the result again.
1589 static __isl_give isl_set *valid_for_each_iteration(__isl_take isl_set *cond,
1590 __isl_take isl_set *domain, isl_int inc)
1592 isl_map *previous_to_this;
1594 if (isl_int_is_pos(inc))
1595 previous_to_this = isl_map_lex_le(isl_set_get_dim(domain));
1596 else
1597 previous_to_this = isl_map_lex_ge(isl_set_get_dim(domain));
1599 previous_to_this = isl_map_intersect_domain(previous_to_this, domain);
1601 cond = isl_set_complement(cond);
1602 cond = isl_set_apply(cond, previous_to_this);
1603 cond = isl_set_complement(cond);
1605 return cond;
1608 /* Construct a domain of the form
1610 * [id] -> { [] : exists a: id = init + a * inc and a >= 0 }
1612 static __isl_give isl_set *strided_domain(__isl_take isl_id *id,
1613 __isl_take isl_pw_aff *init, isl_int inc)
1615 isl_aff *aff;
1616 isl_dim *dim;
1617 isl_set *set;
1619 init = isl_pw_aff_insert_dims(init, isl_dim_set, 0, 1);
1620 aff = isl_aff_zero(isl_local_space_from_dim(isl_pw_aff_get_dim(init)));
1621 aff = isl_aff_add_coefficient(aff, isl_dim_set, 0, inc);
1622 init = isl_pw_aff_add(init, isl_pw_aff_from_aff(aff));
1624 dim = isl_dim_set_alloc(isl_pw_aff_get_ctx(init), 1, 1);
1625 dim = isl_dim_set_dim_id(dim, isl_dim_param, 0, id);
1626 aff = isl_aff_zero(isl_local_space_from_dim(dim));
1627 aff = isl_aff_add_coefficient_si(aff, isl_dim_param, 0, 1);
1629 set = isl_pw_aff_eq_set(isl_pw_aff_from_aff(aff), init);
1631 set = isl_set_lower_bound_si(set, isl_dim_set, 0, 0);
1633 return isl_set_project_out(set, isl_dim_set, 0, 1);
1636 static unsigned get_type_size(ValueDecl *decl)
1638 return decl->getASTContext().getIntWidth(decl->getType());
1641 /* Assuming "cond" represents a simple bound on a loop where the loop
1642 * iterator "iv" is incremented (or decremented) by one, check if wrapping
1643 * is possible.
1645 * Under the given assumptions, wrapping is only possible if "cond" allows
1646 * for the last value before wrapping, i.e., 2^width - 1 in case of an
1647 * increasing iterator and 0 in case of a decreasing iterator.
1649 static bool can_wrap(__isl_keep isl_set *cond, ValueDecl *iv, isl_int inc)
1651 bool cw;
1652 isl_int limit;
1653 isl_set *test;
1655 test = isl_set_copy(cond);
1657 isl_int_init(limit);
1658 if (isl_int_is_neg(inc))
1659 isl_int_set_si(limit, 0);
1660 else {
1661 isl_int_set_si(limit, 1);
1662 isl_int_mul_2exp(limit, limit, get_type_size(iv));
1663 isl_int_sub_ui(limit, limit, 1);
1666 test = isl_set_fix(cond, isl_dim_set, 0, limit);
1667 cw = !isl_set_is_empty(test);
1668 isl_set_free(test);
1670 isl_int_clear(limit);
1672 return cw;
1675 /* Given a one-dimensional space, construct the following mapping on this
1676 * space
1678 * { [v] -> [v mod 2^width] }
1680 * where width is the number of bits used to represent the values
1681 * of the unsigned variable "iv".
1683 static __isl_give isl_map *compute_wrapping(__isl_take isl_dim *dim,
1684 ValueDecl *iv)
1686 isl_int mod;
1687 isl_aff *aff;
1688 isl_map *map;
1690 isl_int_init(mod);
1691 isl_int_set_si(mod, 1);
1692 isl_int_mul_2exp(mod, mod, get_type_size(iv));
1694 aff = isl_aff_zero(isl_local_space_from_dim(dim));
1695 aff = isl_aff_add_coefficient_si(aff, isl_dim_set, 0, 1);
1696 aff = isl_aff_mod(aff, mod);
1698 isl_int_clear(mod);
1700 return isl_map_from_basic_map(isl_basic_map_from_aff(aff));
1701 map = isl_map_reverse(map);
1704 /* Construct a pet_scop for a for statement.
1705 * The for loop is required to be of the form
1707 * for (i = init; condition; ++i)
1709 * or
1711 * for (i = init; condition; --i)
1713 * The initialization of the for loop should either be an assignment
1714 * to an integer variable, or a declaration of such a variable with
1715 * initialization.
1717 * We extract a pet_scop for the body and then embed it in a loop with
1718 * iteration domain and schedule
1720 * { [i] : i >= init and condition' }
1721 * { [i] -> [i] }
1723 * or
1725 * { [i] : i <= init and condition' }
1726 * { [i] -> [-i] }
1728 * Where condition' is equal to condition if the latter is
1729 * a simple upper [lower] bound and a condition that is extended
1730 * to apply to all previous iterations otherwise.
1732 * If the stride of the loop is not 1, then "i >= init" is replaced by
1734 * (exists a: i = init + stride * a and a >= 0)
1736 * If the loop iterator i is unsigned, then wrapping may occur.
1737 * During the computation, we work with a virtual iterator that
1738 * does not wrap. However, the condition in the code applies
1739 * to the wrapped value, so we need to change condition(i)
1740 * into condition([i % 2^width]).
1741 * After computing the virtual domain and schedule, we apply
1742 * the function { [v] -> [v % 2^width] } to the domain and the domain
1743 * of the schedule. In order not to lose any information, we also
1744 * need to intersect the domain of the schedule with the virtual domain
1745 * first, since some iterations in the wrapped domain may be scheduled
1746 * several times, typically an infinite number of times.
1747 * Note that there is no need to perform this final wrapping
1748 * if the loop condition (after wrapping) is simple.
1750 * Wrapping on unsigned iterators can be avoided entirely if
1751 * loop condition is simple, the loop iterator is incremented
1752 * [decremented] by one and the last value before wrapping cannot
1753 * possibly satisfy the loop condition.
1755 * Before extracting a pet_scop from the body we remove all
1756 * assignments in assigned_value to variables that are assigned
1757 * somewhere in the body of the loop.
1759 struct pet_scop *PetScan::extract_for(ForStmt *stmt)
1761 BinaryOperator *ass;
1762 Decl *decl;
1763 Stmt *init;
1764 Expr *lhs, *rhs;
1765 ValueDecl *iv;
1766 isl_dim *dim;
1767 isl_set *domain;
1768 isl_map *sched;
1769 isl_set *cond;
1770 isl_id *id;
1771 struct pet_scop *scop;
1772 assigned_value_cache cache(assigned_value);
1773 isl_int inc;
1774 bool is_one;
1775 bool is_unsigned;
1776 bool is_simple;
1777 isl_map *wrap = NULL;
1779 if (!stmt->getInit() && !stmt->getCond() && !stmt->getInc())
1780 return extract_infinite_for(stmt);
1782 init = stmt->getInit();
1783 if (!init) {
1784 unsupported(stmt);
1785 return NULL;
1787 if ((ass = initialization_assignment(init)) != NULL) {
1788 iv = extract_induction_variable(ass);
1789 if (!iv)
1790 return NULL;
1791 lhs = ass->getLHS();
1792 rhs = ass->getRHS();
1793 } else if ((decl = initialization_declaration(init)) != NULL) {
1794 VarDecl *var = extract_induction_variable(init, decl);
1795 if (!var)
1796 return NULL;
1797 iv = var;
1798 rhs = var->getInit();
1799 lhs = DeclRefExpr::Create(iv->getASTContext(),
1800 var->getQualifierLoc(), iv, var->getInnerLocStart(),
1801 var->getType(), VK_LValue);
1802 } else {
1803 unsupported(stmt->getInit());
1804 return NULL;
1807 isl_int_init(inc);
1808 if (!check_increment(stmt, iv, inc)) {
1809 isl_int_clear(inc);
1810 return NULL;
1813 is_unsigned = iv->getType()->isUnsignedIntegerType();
1815 assigned_value[iv] = NULL;
1816 clear_assignments clear(assigned_value);
1817 clear.TraverseStmt(stmt->getBody());
1819 id = isl_id_alloc(ctx, iv->getName().str().c_str(), iv);
1821 is_one = isl_int_is_one(inc) || isl_int_is_negone(inc);
1822 if (is_one)
1823 domain = extract_comparison(isl_int_is_pos(inc) ? BO_GE : BO_LE,
1824 lhs, rhs, init);
1825 else {
1826 isl_pw_aff *lb = extract_affine(rhs);
1827 domain = strided_domain(isl_id_copy(id), lb, inc);
1830 cond = extract_condition(stmt->getCond());
1831 cond = embed(cond, isl_id_copy(id));
1832 domain = embed(domain, isl_id_copy(id));
1833 is_simple = is_simple_bound(cond, inc);
1834 if (is_unsigned &&
1835 (!is_simple || !is_one || can_wrap(cond, iv, inc))) {
1836 wrap = compute_wrapping(isl_set_get_dim(cond), iv);
1837 cond = isl_set_apply(cond, isl_map_reverse(isl_map_copy(wrap)));
1838 is_simple = is_simple && is_simple_bound(cond, inc);
1840 if (!is_simple)
1841 cond = valid_for_each_iteration(cond,
1842 isl_set_copy(domain), inc);
1843 domain = isl_set_intersect(domain, cond);
1844 domain = isl_set_set_dim_id(domain, isl_dim_set, 0, isl_id_copy(id));
1845 dim = isl_dim_from_domain(isl_set_get_dim(domain));
1846 dim = isl_dim_add(dim, isl_dim_out, 1);
1847 sched = isl_map_universe(dim);
1848 if (isl_int_is_pos(inc))
1849 sched = isl_map_equate(sched, isl_dim_in, 0, isl_dim_out, 0);
1850 else
1851 sched = isl_map_oppose(sched, isl_dim_in, 0, isl_dim_out, 0);
1853 if (is_unsigned && !is_simple) {
1854 wrap = isl_map_set_dim_id(wrap,
1855 isl_dim_out, 0, isl_id_copy(id));
1856 sched = isl_map_intersect_domain(sched, isl_set_copy(domain));
1857 domain = isl_set_apply(domain, isl_map_copy(wrap));
1858 sched = isl_map_apply_domain(sched, wrap);
1859 } else
1860 isl_map_free(wrap);
1862 scop = extract(stmt->getBody());
1863 scop = pet_scop_embed(scop, domain, sched, id);
1865 isl_int_clear(inc);
1866 return scop;
1869 struct pet_scop *PetScan::extract(CompoundStmt *stmt)
1871 return extract(stmt->children());
1874 /* Look for parameters in any access relation in "expr" that
1875 * refer to non-affine constructs. In particular, these are
1876 * parameters with no name.
1878 * If there are any such parameters, then the domain of the access
1879 * relation, which is still [] at this point, is replaced by
1880 * [[] -> [t_1,...,t_n]], with n the number of these parameters
1881 * (after identifying identical non-affine constructs).
1882 * The parameters are then equated to the corresponding t dimensions
1883 * and subsequently projected out.
1884 * param2pos maps the position of the parameter to the position
1885 * of the corresponding t dimension.
1887 struct pet_expr *PetScan::resolve_nested(struct pet_expr *expr)
1889 int n;
1890 int nparam;
1891 int n_in;
1892 isl_dim *dim;
1893 isl_map *map;
1894 std::map<int,int> param2pos;
1896 if (!expr)
1897 return expr;
1899 for (int i = 0; i < expr->n_arg; ++i) {
1900 expr->args[i] = resolve_nested(expr->args[i]);
1901 if (!expr->args[i]) {
1902 pet_expr_free(expr);
1903 return NULL;
1907 if (expr->type != pet_expr_access)
1908 return expr;
1910 nparam = isl_map_dim(expr->acc.access, isl_dim_param);
1911 n = 0;
1912 for (int i = 0; i < nparam; ++i) {
1913 isl_id *id = isl_map_get_dim_id(expr->acc.access,
1914 isl_dim_param, i);
1915 if (id && isl_id_get_user(id) && !isl_id_get_name(id))
1916 n++;
1917 isl_id_free(id);
1920 if (n == 0)
1921 return expr;
1923 expr->n_arg = n;
1924 expr->args = isl_calloc_array(ctx, struct pet_expr *, n);
1925 if (!expr->args)
1926 goto error;
1928 n_in = isl_map_dim(expr->acc.access, isl_dim_in);
1929 for (int i = 0, pos = 0; i < nparam; ++i) {
1930 int j;
1931 isl_id *id = isl_map_get_dim_id(expr->acc.access,
1932 isl_dim_param, i);
1933 Expr *nested;
1935 if (!(id && isl_id_get_user(id) && !isl_id_get_name(id))) {
1936 isl_id_free(id);
1937 continue;
1940 nested = (Expr *) isl_id_get_user(id);
1941 expr->args[pos] = extract_expr(nested);
1943 for (j = 0; j < pos; ++j)
1944 if (pet_expr_is_equal(expr->args[j], expr->args[pos]))
1945 break;
1947 if (j < pos) {
1948 pet_expr_free(expr->args[pos]);
1949 param2pos[i] = n_in + j;
1950 n--;
1951 } else
1952 param2pos[i] = n_in + pos++;
1954 isl_id_free(id);
1956 expr->n_arg = n;
1958 dim = isl_map_get_dim(expr->acc.access);
1959 dim = isl_dim_domain(dim);
1960 dim = isl_dim_from_domain(dim);
1961 dim = isl_dim_add(dim, isl_dim_out, n);
1962 map = isl_map_universe(dim);
1963 map = isl_map_domain_map(map);
1964 map = isl_map_reverse(map);
1965 expr->acc.access = isl_map_apply_domain(expr->acc.access, map);
1967 for (int i = nparam - 1; i >= 0; --i) {
1968 isl_id *id = isl_map_get_dim_id(expr->acc.access,
1969 isl_dim_param, i);
1970 if (!(id && isl_id_get_user(id) && !isl_id_get_name(id))) {
1971 isl_id_free(id);
1972 continue;
1975 expr->acc.access = isl_map_equate(expr->acc.access,
1976 isl_dim_param, i, isl_dim_in,
1977 param2pos[i]);
1978 expr->acc.access = isl_map_project_out(expr->acc.access,
1979 isl_dim_param, i, 1);
1981 isl_id_free(id);
1984 return expr;
1985 error:
1986 pet_expr_free(expr);
1987 return NULL;
1990 /* Convert a top-level pet_expr to a pet_scop with one statement.
1991 * This mainly involves resolving nested expression parameters
1992 * and setting the name of the iteration space.
1994 struct pet_scop *PetScan::extract(Stmt *stmt, struct pet_expr *expr)
1996 struct pet_stmt *ps;
1997 SourceLocation loc = stmt->getLocStart();
1998 int line = PP.getSourceManager().getExpansionLineNumber(loc);
2000 expr = resolve_nested(expr);
2001 ps = pet_stmt_from_pet_expr(ctx, line, n_stmt++, expr);
2002 return pet_scop_from_pet_stmt(ctx, ps);
2005 /* Check whether "expr" is an affine expression.
2006 * We turn on autodetection so that we won't generate any warnings
2007 * and turn off nesting, so that we won't accept any non-affine constructs.
2009 bool PetScan::is_affine(Expr *expr)
2011 isl_pw_aff *pwaff;
2012 int save_autodetect = autodetect;
2013 bool save_nesting = nesting_enabled;
2015 autodetect = 1;
2016 nesting_enabled = false;
2018 pwaff = extract_affine(expr);
2019 isl_pw_aff_free(pwaff);
2021 autodetect = save_autodetect;
2022 nesting_enabled = save_nesting;
2024 return pwaff != NULL;
2027 /* Check whether "expr" is an affine constraint.
2028 * We turn on autodetection so that we won't generate any warnings
2029 * and turn off nesting, so that we won't accept any non-affine constructs.
2031 bool PetScan::is_affine_condition(Expr *expr)
2033 isl_set *set;
2034 int save_autodetect = autodetect;
2035 bool save_nesting = nesting_enabled;
2037 autodetect = 1;
2038 nesting_enabled = false;
2040 set = extract_condition(expr);
2041 isl_set_free(set);
2043 autodetect = save_autodetect;
2044 nesting_enabled = save_nesting;
2046 return set != NULL;
2049 /* If the top-level expression of "stmt" is an assignment, then
2050 * return that assignment as a BinaryOperator.
2051 * Otherwise return NULL.
2053 static BinaryOperator *top_assignment_or_null(Stmt *stmt)
2055 BinaryOperator *ass;
2057 if (!stmt)
2058 return NULL;
2059 if (stmt->getStmtClass() != Stmt::BinaryOperatorClass)
2060 return NULL;
2062 ass = cast<BinaryOperator>(stmt);
2063 if(ass->getOpcode() != BO_Assign)
2064 return NULL;
2066 return ass;
2069 /* Check if the given if statement is a conditional assignement
2070 * with a non-affine condition. If so, construct a pet_scop
2071 * corresponding to this conditional assignment. Otherwise return NULL.
2073 * In particular we check if "stmt" is of the form
2075 * if (condition)
2076 * a = f(...);
2077 * else
2078 * a = g(...);
2080 * where a is some array or scalar access.
2081 * The constructed pet_scop then corresponds to the expression
2083 * a = condition ? f(...) : g(...)
2085 * All access relations in f(...) are intersected with condition
2086 * while all access relation in g(...) are intersected with the complement.
2088 struct pet_scop *PetScan::extract_conditional_assignment(IfStmt *stmt)
2090 BinaryOperator *ass_then, *ass_else;
2091 isl_map *write_then, *write_else;
2092 isl_set *cond, *comp;
2093 isl_map *map, *map_true, *map_false;
2094 int equal;
2095 struct pet_expr *pe_cond, *pe_then, *pe_else, *pe, *pe_write;
2096 bool save_nesting = nesting_enabled;
2098 ass_then = top_assignment_or_null(stmt->getThen());
2099 ass_else = top_assignment_or_null(stmt->getElse());
2101 if (!ass_then || !ass_else)
2102 return NULL;
2104 if (is_affine_condition(stmt->getCond()))
2105 return NULL;
2107 write_then = extract_access(ass_then->getLHS());
2108 write_else = extract_access(ass_else->getLHS());
2110 equal = isl_map_is_equal(write_then, write_else);
2111 isl_map_free(write_else);
2112 if (equal < 0 || !equal) {
2113 isl_map_free(write_then);
2114 return NULL;
2117 nesting_enabled = allow_nested;
2118 cond = extract_condition(stmt->getCond());
2119 nesting_enabled = save_nesting;
2120 comp = isl_set_complement(isl_set_copy(cond));
2121 map_true = isl_map_from_domain(isl_set_copy(cond));
2122 map_true = isl_map_add_dims(map_true, isl_dim_out, 1);
2123 map_true = isl_map_fix_si(map_true, isl_dim_out, 0, 1);
2124 map_false = isl_map_from_domain(isl_set_copy(comp));
2125 map_false = isl_map_add_dims(map_false, isl_dim_out, 1);
2126 map_false = isl_map_fix_si(map_false, isl_dim_out, 0, 0);
2127 map = isl_map_union_disjoint(map_true, map_false);
2129 pe_cond = pet_expr_from_access(map);
2131 pe_then = extract_expr(ass_then->getRHS());
2132 pe_then = pet_expr_restrict(pe_then, cond);
2133 pe_else = extract_expr(ass_else->getRHS());
2134 pe_else = pet_expr_restrict(pe_else, comp);
2136 pe = pet_expr_new_ternary(ctx, pe_cond, pe_then, pe_else);
2137 pe_write = pet_expr_from_access(write_then);
2138 if (pe_write) {
2139 pe_write->acc.write = 1;
2140 pe_write->acc.read = 0;
2142 pe = pet_expr_new_binary(ctx, pet_op_assign, pe_write, pe);
2143 return extract(stmt, pe);
2146 /* Construct a pet_scop for an if statement.
2148 struct pet_scop *PetScan::extract(IfStmt *stmt)
2150 isl_set *cond;
2151 struct pet_scop *scop_then, *scop_else, *scop;
2152 assigned_value_cache cache(assigned_value);
2154 scop = extract_conditional_assignment(stmt);
2155 if (scop)
2156 return scop;
2158 scop_then = extract(stmt->getThen());
2160 if (stmt->getElse()) {
2161 scop_else = extract(stmt->getElse());
2162 if (autodetect) {
2163 if (scop_then && !scop_else) {
2164 partial = true;
2165 return scop_then;
2167 if (!scop_then && scop_else) {
2168 partial = true;
2169 return scop_else;
2174 cond = extract_condition(stmt->getCond());
2175 scop = pet_scop_restrict(scop_then, isl_set_copy(cond));
2177 if (stmt->getElse()) {
2178 cond = isl_set_complement(cond);
2179 scop_else = pet_scop_restrict(scop_else, cond);
2180 scop = pet_scop_add(ctx, scop, scop_else);
2181 } else
2182 isl_set_free(cond);
2184 return scop;
2187 /* Try and construct a pet_scop corresponding to "stmt".
2189 struct pet_scop *PetScan::extract(Stmt *stmt)
2191 if (isa<Expr>(stmt))
2192 return extract(stmt, extract_expr(cast<Expr>(stmt)));
2194 switch (stmt->getStmtClass()) {
2195 case Stmt::WhileStmtClass:
2196 return extract(cast<WhileStmt>(stmt));
2197 case Stmt::ForStmtClass:
2198 return extract_for(cast<ForStmt>(stmt));
2199 case Stmt::IfStmtClass:
2200 return extract(cast<IfStmt>(stmt));
2201 case Stmt::CompoundStmtClass:
2202 return extract(cast<CompoundStmt>(stmt));
2203 default:
2204 unsupported(stmt);
2207 return NULL;
2210 /* Try and construct a pet_scop corresponding to (part of)
2211 * a sequence of statements.
2213 struct pet_scop *PetScan::extract(StmtRange stmt_range)
2215 pet_scop *scop;
2216 StmtIterator i;
2217 int j;
2218 bool partial_range = false;
2220 scop = pet_scop_empty(ctx);
2221 for (i = stmt_range.first, j = 0; i != stmt_range.second; ++i, ++j) {
2222 Stmt *child = *i;
2223 struct pet_scop *scop_i;
2224 scop_i = extract(child);
2225 if (scop && partial) {
2226 pet_scop_free(scop_i);
2227 break;
2229 scop_i = pet_scop_prefix(scop_i, j);
2230 if (autodetect) {
2231 if (scop_i)
2232 scop = pet_scop_add(ctx, scop, scop_i);
2233 else
2234 partial_range = true;
2235 if (scop->n_stmt != 0 && !scop_i)
2236 partial = true;
2237 } else {
2238 scop = pet_scop_add(ctx, scop, scop_i);
2240 if (partial)
2241 break;
2244 if (scop && partial_range)
2245 partial = true;
2247 return scop;
2250 /* Check if the scop marked by the user is exactly this Stmt
2251 * or part of this Stmt.
2252 * If so, return a pet_scop corresponding to the marked region.
2253 * Otherwise, return NULL.
2255 struct pet_scop *PetScan::scan(Stmt *stmt)
2257 SourceManager &SM = PP.getSourceManager();
2258 unsigned start_off, end_off;
2260 start_off = SM.getFileOffset(stmt->getLocStart());
2261 end_off = SM.getFileOffset(stmt->getLocEnd());
2263 if (start_off > loc.end)
2264 return NULL;
2265 if (end_off < loc.start)
2266 return NULL;
2267 if (start_off >= loc.start && end_off <= loc.end) {
2268 return extract(stmt);
2271 StmtIterator start;
2272 for (start = stmt->child_begin(); start != stmt->child_end(); ++start) {
2273 Stmt *child = *start;
2274 start_off = SM.getFileOffset(child->getLocStart());
2275 end_off = SM.getFileOffset(child->getLocEnd());
2276 if (start_off < loc.start && end_off > loc.end)
2277 return scan(child);
2278 if (start_off >= loc.start)
2279 break;
2282 StmtIterator end;
2283 for (end = start; end != stmt->child_end(); ++end) {
2284 Stmt *child = *end;
2285 start_off = SM.getFileOffset(child->getLocStart());
2286 if (start_off >= loc.end)
2287 break;
2290 return extract(StmtRange(start, end));
2293 /* Set the size of index "pos" of "array" to "size".
2294 * In particular, add a constraint of the form
2296 * i_pos < size
2298 * to array->extent and a constraint of the form
2300 * size >= 0
2302 * to array->context.
2304 static struct pet_array *update_size(struct pet_array *array, int pos,
2305 __isl_take isl_pw_aff *size)
2307 isl_set *valid;
2308 isl_set *univ;
2309 isl_set *bound;
2310 isl_dim *dim;
2311 isl_aff *aff;
2312 isl_pw_aff *index;
2313 isl_id *id;
2315 valid = isl_pw_aff_nonneg_set(isl_pw_aff_copy(size));
2316 array->context = isl_set_intersect(array->context, valid);
2318 dim = isl_set_get_dim(array->extent);
2319 aff = isl_aff_zero(isl_local_space_from_dim(dim));
2320 aff = isl_aff_add_coefficient_si(aff, isl_dim_set, pos, 1);
2321 univ = isl_set_universe(isl_aff_get_dim(aff));
2322 index = isl_pw_aff_alloc(univ, aff);
2324 size = isl_pw_aff_add_dims(size, isl_dim_set,
2325 isl_set_dim(array->extent, isl_dim_set));
2326 id = isl_set_get_tuple_id(array->extent);
2327 size = isl_pw_aff_set_tuple_id(size, id);
2328 bound = isl_pw_aff_lt_set(index, size);
2330 array->extent = isl_set_intersect(array->extent, bound);
2332 if (!array->context || !array->extent)
2333 goto error;
2335 return array;
2336 error:
2337 pet_array_free(array);
2338 return NULL;
2341 /* Figure out the size of the array at position "pos" and all
2342 * subsequent positions from "type" and update "array" accordingly.
2344 struct pet_array *PetScan::set_upper_bounds(struct pet_array *array,
2345 const Type *type, int pos)
2347 const ArrayType *atype;
2348 isl_pw_aff *size;
2350 if (type->isPointerType()) {
2351 type = type->getPointeeType().getTypePtr();
2352 return set_upper_bounds(array, type, pos + 1);
2354 if (!type->isArrayType())
2355 return array;
2357 type = type->getCanonicalTypeInternal().getTypePtr();
2358 atype = cast<ArrayType>(type);
2360 if (type->isConstantArrayType()) {
2361 const ConstantArrayType *ca = cast<ConstantArrayType>(atype);
2362 size = extract_affine(ca->getSize());
2363 array = update_size(array, pos, size);
2364 } else if (type->isVariableArrayType()) {
2365 const VariableArrayType *vla = cast<VariableArrayType>(atype);
2366 size = extract_affine(vla->getSizeExpr());
2367 array = update_size(array, pos, size);
2370 type = atype->getElementType().getTypePtr();
2372 return set_upper_bounds(array, type, pos + 1);
2375 /* Construct and return a pet_array corresponding to the variable "decl".
2376 * In particular, initialize array->extent to
2378 * { name[i_1,...,i_d] : i_1,...,i_d >= 0 }
2380 * and then call set_upper_bounds to set the upper bounds on the indices
2381 * based on the type of the variable.
2383 struct pet_array *PetScan::extract_array(isl_ctx *ctx, ValueDecl *decl)
2385 struct pet_array *array;
2386 QualType qt = decl->getType();
2387 const Type *type = qt.getTypePtr();
2388 int depth = array_depth(type);
2389 QualType base = base_type(qt);
2390 string name;
2391 isl_id *id;
2392 isl_dim *dim;
2394 array = isl_calloc_type(ctx, struct pet_array);
2395 if (!array)
2396 return NULL;
2398 id = isl_id_alloc(ctx, decl->getName().str().c_str(), decl);
2399 dim = isl_dim_set_alloc(ctx, 0, depth);
2400 dim = isl_dim_set_tuple_id(dim, isl_dim_set, id);
2402 array->extent = isl_set_nat_universe(dim);
2404 dim = isl_dim_set_alloc(ctx, 0, 0);
2405 array->context = isl_set_universe(dim);
2407 array = set_upper_bounds(array, type, 0);
2408 if (!array)
2409 return NULL;
2411 name = base.getAsString();
2412 array->element_type = strdup(name.c_str());
2414 return array;
2417 /* Construct a list of pet_arrays, one for each array (or scalar)
2418 * accessed inside "scop" add this list to "scop" and return the result.
2420 * The context of "scop" is updated with the intesection of
2421 * the contexts of all arrays, i.e., constraints on the parameters
2422 * that ensure that the arrays have a valid (non-negative) size.
2424 struct pet_scop *PetScan::scan_arrays(struct pet_scop *scop)
2426 int i;
2427 set<ValueDecl *> arrays;
2428 set<ValueDecl *>::iterator it;
2430 if (!scop)
2431 return NULL;
2433 pet_scop_collect_arrays(scop, arrays);
2435 scop->n_array = arrays.size();
2436 if (scop->n_array == 0)
2437 return scop;
2439 scop->arrays = isl_calloc_array(ctx, struct pet_array *, scop->n_array);
2440 if (!scop->arrays)
2441 goto error;
2443 for (it = arrays.begin(), i = 0; it != arrays.end(); ++it, ++i) {
2444 struct pet_array *array;
2445 scop->arrays[i] = array = extract_array(ctx, *it);
2446 if (!scop->arrays[i])
2447 goto error;
2448 scop->context = isl_set_intersect(scop->context,
2449 isl_set_copy(array->context));
2450 if (!scop->context)
2451 goto error;
2454 return scop;
2455 error:
2456 pet_scop_free(scop);
2457 return NULL;
2460 /* Construct a pet_scop from the given function.
2462 struct pet_scop *PetScan::scan(FunctionDecl *fd)
2464 pet_scop *scop;
2465 Stmt *stmt;
2467 stmt = fd->getBody();
2469 if (autodetect)
2470 scop = extract(stmt);
2471 else
2472 scop = scan(stmt);
2473 scop = pet_scop_detect_parameter_accesses(scop);
2474 scop = scan_arrays(scop);
2476 return scop;