extract out shared pet_expr_access_get_id
[pet.git] / scan.cc
blob765d7f238583f3b72d7cacc74f8323179c082fb6
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 <string.h>
36 #include <set>
37 #include <map>
38 #include <iostream>
39 #include <llvm/Support/raw_ostream.h>
40 #include <clang/AST/ASTContext.h>
41 #include <clang/AST/ASTDiagnostic.h>
42 #include <clang/AST/Expr.h>
43 #include <clang/AST/RecursiveASTVisitor.h>
45 #include <isl/id.h>
46 #include <isl/space.h>
47 #include <isl/aff.h>
48 #include <isl/set.h>
50 #include "options.h"
51 #include "scan.h"
52 #include "scop.h"
53 #include "scop_plus.h"
55 #include "config.h"
57 using namespace std;
58 using namespace clang;
60 #if defined(DECLREFEXPR_CREATE_REQUIRES_BOOL)
61 static DeclRefExpr *create_DeclRefExpr(VarDecl *var)
63 return DeclRefExpr::Create(var->getASTContext(), var->getQualifierLoc(),
64 SourceLocation(), var, false, var->getInnerLocStart(),
65 var->getType(), VK_LValue);
67 #elif defined(DECLREFEXPR_CREATE_REQUIRES_SOURCELOCATION)
68 static DeclRefExpr *create_DeclRefExpr(VarDecl *var)
70 return DeclRefExpr::Create(var->getASTContext(), var->getQualifierLoc(),
71 SourceLocation(), var, var->getInnerLocStart(), var->getType(),
72 VK_LValue);
74 #else
75 static DeclRefExpr *create_DeclRefExpr(VarDecl *var)
77 return DeclRefExpr::Create(var->getASTContext(), var->getQualifierLoc(),
78 var, var->getInnerLocStart(), var->getType(), VK_LValue);
80 #endif
82 /* Check if the element type corresponding to the given array type
83 * has a const qualifier.
85 static bool const_base(QualType qt)
87 const Type *type = qt.getTypePtr();
89 if (type->isPointerType())
90 return const_base(type->getPointeeType());
91 if (type->isArrayType()) {
92 const ArrayType *atype;
93 type = type->getCanonicalTypeInternal().getTypePtr();
94 atype = cast<ArrayType>(type);
95 return const_base(atype->getElementType());
98 return qt.isConstQualified();
101 /* Mark "decl" as having an unknown value in "assigned_value".
103 * If no (known or unknown) value was assigned to "decl" before,
104 * then it may have been treated as a parameter before and may
105 * therefore appear in a value assigned to another variable.
106 * If so, this assignment needs to be turned into an unknown value too.
108 static void clear_assignment(map<ValueDecl *, isl_pw_aff *> &assigned_value,
109 ValueDecl *decl)
111 map<ValueDecl *, isl_pw_aff *>::iterator it;
113 it = assigned_value.find(decl);
115 assigned_value[decl] = NULL;
117 if (it == assigned_value.end())
118 return;
120 for (it = assigned_value.begin(); it != assigned_value.end(); ++it) {
121 isl_pw_aff *pa = it->second;
122 int nparam = isl_pw_aff_dim(pa, isl_dim_param);
124 for (int i = 0; i < nparam; ++i) {
125 isl_id *id;
127 if (!isl_pw_aff_has_dim_id(pa, isl_dim_param, i))
128 continue;
129 id = isl_pw_aff_get_dim_id(pa, isl_dim_param, i);
130 if (isl_id_get_user(id) == decl)
131 it->second = NULL;
132 isl_id_free(id);
137 /* Look for any assignments to scalar variables in part of the parse
138 * tree and set assigned_value to NULL for each of them.
139 * Also reset assigned_value if the address of a scalar variable
140 * is being taken. As an exception, if the address is passed to a function
141 * that is declared to receive a const pointer, then assigned_value is
142 * not reset.
144 * This ensures that we won't use any previously stored value
145 * in the current subtree and its parents.
147 struct clear_assignments : RecursiveASTVisitor<clear_assignments> {
148 map<ValueDecl *, isl_pw_aff *> &assigned_value;
149 set<UnaryOperator *> skip;
151 clear_assignments(map<ValueDecl *, isl_pw_aff *> &assigned_value) :
152 assigned_value(assigned_value) {}
154 /* Check for "address of" operators whose value is passed
155 * to a const pointer argument and add them to "skip", so that
156 * we can skip them in VisitUnaryOperator.
158 bool VisitCallExpr(CallExpr *expr) {
159 FunctionDecl *fd;
160 fd = expr->getDirectCallee();
161 if (!fd)
162 return true;
163 for (int i = 0; i < expr->getNumArgs(); ++i) {
164 Expr *arg = expr->getArg(i);
165 UnaryOperator *op;
166 if (arg->getStmtClass() == Stmt::ImplicitCastExprClass) {
167 ImplicitCastExpr *ice;
168 ice = cast<ImplicitCastExpr>(arg);
169 arg = ice->getSubExpr();
171 if (arg->getStmtClass() != Stmt::UnaryOperatorClass)
172 continue;
173 op = cast<UnaryOperator>(arg);
174 if (op->getOpcode() != UO_AddrOf)
175 continue;
176 if (const_base(fd->getParamDecl(i)->getType()))
177 skip.insert(op);
179 return true;
182 bool VisitUnaryOperator(UnaryOperator *expr) {
183 Expr *arg;
184 DeclRefExpr *ref;
185 ValueDecl *decl;
187 switch (expr->getOpcode()) {
188 case UO_AddrOf:
189 case UO_PostInc:
190 case UO_PostDec:
191 case UO_PreInc:
192 case UO_PreDec:
193 break;
194 default:
195 return true;
197 if (skip.find(expr) != skip.end())
198 return true;
200 arg = expr->getSubExpr();
201 if (arg->getStmtClass() != Stmt::DeclRefExprClass)
202 return true;
203 ref = cast<DeclRefExpr>(arg);
204 decl = ref->getDecl();
205 clear_assignment(assigned_value, decl);
206 return true;
209 bool VisitBinaryOperator(BinaryOperator *expr) {
210 Expr *lhs;
211 DeclRefExpr *ref;
212 ValueDecl *decl;
214 if (!expr->isAssignmentOp())
215 return true;
216 lhs = expr->getLHS();
217 if (lhs->getStmtClass() != Stmt::DeclRefExprClass)
218 return true;
219 ref = cast<DeclRefExpr>(lhs);
220 decl = ref->getDecl();
221 clear_assignment(assigned_value, decl);
222 return true;
226 /* Keep a copy of the currently assigned values.
228 * Any variable that is assigned a value inside the current scope
229 * is removed again when we leave the scope (either because it wasn't
230 * stored in the cache or because it has a different value in the cache).
232 struct assigned_value_cache {
233 map<ValueDecl *, isl_pw_aff *> &assigned_value;
234 map<ValueDecl *, isl_pw_aff *> cache;
236 assigned_value_cache(map<ValueDecl *, isl_pw_aff *> &assigned_value) :
237 assigned_value(assigned_value), cache(assigned_value) {}
238 ~assigned_value_cache() {
239 map<ValueDecl *, isl_pw_aff *>::iterator it = cache.begin();
240 for (it = assigned_value.begin(); it != assigned_value.end();
241 ++it) {
242 if (!it->second ||
243 (cache.find(it->first) != cache.end() &&
244 cache[it->first] != it->second))
245 cache[it->first] = NULL;
247 assigned_value = cache;
251 /* Insert an expression into the collection of expressions,
252 * provided it is not already in there.
253 * The isl_pw_affs are freed in the destructor.
255 void PetScan::insert_expression(__isl_take isl_pw_aff *expr)
257 std::set<isl_pw_aff *>::iterator it;
259 if (expressions.find(expr) == expressions.end())
260 expressions.insert(expr);
261 else
262 isl_pw_aff_free(expr);
265 PetScan::~PetScan()
267 std::set<isl_pw_aff *>::iterator it;
269 for (it = expressions.begin(); it != expressions.end(); ++it)
270 isl_pw_aff_free(*it);
272 isl_union_map_free(value_bounds);
275 /* Called if we found something we (currently) cannot handle.
276 * We'll provide more informative warnings later.
278 * We only actually complain if autodetect is false.
280 void PetScan::unsupported(Stmt *stmt, const char *msg)
282 if (options->autodetect)
283 return;
285 SourceLocation loc = stmt->getLocStart();
286 DiagnosticsEngine &diag = PP.getDiagnostics();
287 unsigned id = diag.getCustomDiagID(DiagnosticsEngine::Warning,
288 msg ? msg : "unsupported");
289 DiagnosticBuilder B = diag.Report(loc, id) << stmt->getSourceRange();
292 /* Extract an integer from "expr".
294 __isl_give isl_val *PetScan::extract_int(isl_ctx *ctx, IntegerLiteral *expr)
296 const Type *type = expr->getType().getTypePtr();
297 int is_signed = type->hasSignedIntegerRepresentation();
298 llvm::APInt val = expr->getValue();
299 int is_negative = is_signed && val.isNegative();
300 isl_val *v;
302 if (is_negative)
303 val = -val;
305 v = extract_unsigned(ctx, val);
307 if (is_negative)
308 v = isl_val_neg(v);
309 return v;
312 /* Extract an integer from "val", which assumed to be non-negative.
314 __isl_give isl_val *PetScan::extract_unsigned(isl_ctx *ctx,
315 const llvm::APInt &val)
317 unsigned n;
318 const uint64_t *data;
320 data = val.getRawData();
321 n = val.getNumWords();
322 return isl_val_int_from_chunks(ctx, n, sizeof(uint64_t), data);
325 /* Extract an integer from "expr".
326 * Return NULL if "expr" does not (obviously) represent an integer.
328 __isl_give isl_val *PetScan::extract_int(clang::ParenExpr *expr)
330 return extract_int(expr->getSubExpr());
333 /* Extract an integer from "expr".
334 * Return NULL if "expr" does not (obviously) represent an integer.
336 __isl_give isl_val *PetScan::extract_int(clang::Expr *expr)
338 if (expr->getStmtClass() == Stmt::IntegerLiteralClass)
339 return extract_int(ctx, cast<IntegerLiteral>(expr));
340 if (expr->getStmtClass() == Stmt::ParenExprClass)
341 return extract_int(cast<ParenExpr>(expr));
343 unsupported(expr);
344 return NULL;
347 /* Extract an affine expression from the IntegerLiteral "expr".
349 __isl_give isl_pw_aff *PetScan::extract_affine(IntegerLiteral *expr)
351 isl_space *dim = isl_space_params_alloc(ctx, 0);
352 isl_local_space *ls = isl_local_space_from_space(isl_space_copy(dim));
353 isl_aff *aff = isl_aff_zero_on_domain(ls);
354 isl_set *dom = isl_set_universe(dim);
355 isl_val *v;
357 v = extract_int(expr);
358 aff = isl_aff_add_constant_val(aff, v);
360 return isl_pw_aff_alloc(dom, aff);
363 /* Extract an affine expression from the APInt "val", which is assumed
364 * to be non-negative.
366 __isl_give isl_pw_aff *PetScan::extract_affine(const llvm::APInt &val)
368 isl_space *dim = isl_space_params_alloc(ctx, 0);
369 isl_local_space *ls = isl_local_space_from_space(isl_space_copy(dim));
370 isl_aff *aff = isl_aff_zero_on_domain(ls);
371 isl_set *dom = isl_set_universe(dim);
372 isl_val *v;
374 v = extract_unsigned(ctx, val);
375 aff = isl_aff_add_constant_val(aff, v);
377 return isl_pw_aff_alloc(dom, aff);
380 __isl_give isl_pw_aff *PetScan::extract_affine(ImplicitCastExpr *expr)
382 return extract_affine(expr->getSubExpr());
385 static unsigned get_type_size(ValueDecl *decl)
387 return decl->getASTContext().getIntWidth(decl->getType());
390 /* Bound parameter "pos" of "set" to the possible values of "decl".
392 static __isl_give isl_set *set_parameter_bounds(__isl_take isl_set *set,
393 unsigned pos, ValueDecl *decl)
395 unsigned width;
396 isl_ctx *ctx;
397 isl_val *bound;
399 ctx = isl_set_get_ctx(set);
400 width = get_type_size(decl);
401 if (decl->getType()->isUnsignedIntegerType()) {
402 set = isl_set_lower_bound_si(set, isl_dim_param, pos, 0);
403 bound = isl_val_int_from_ui(ctx, width);
404 bound = isl_val_2exp(bound);
405 bound = isl_val_sub_ui(bound, 1);
406 set = isl_set_upper_bound_val(set, isl_dim_param, pos, bound);
407 } else {
408 bound = isl_val_int_from_ui(ctx, width - 1);
409 bound = isl_val_2exp(bound);
410 bound = isl_val_sub_ui(bound, 1);
411 set = isl_set_upper_bound_val(set, isl_dim_param, pos,
412 isl_val_copy(bound));
413 bound = isl_val_neg(bound);
414 bound = isl_val_sub_ui(bound, 1);
415 set = isl_set_lower_bound_val(set, isl_dim_param, pos, bound);
418 return set;
421 /* Extract an affine expression from the DeclRefExpr "expr".
423 * If the variable has been assigned a value, then we check whether
424 * we know what (affine) value was assigned.
425 * If so, we return this value. Otherwise we convert "expr"
426 * to an extra parameter (provided nesting_enabled is set).
428 * Otherwise, we simply return an expression that is equal
429 * to a parameter corresponding to the referenced variable.
431 __isl_give isl_pw_aff *PetScan::extract_affine(DeclRefExpr *expr)
433 ValueDecl *decl = expr->getDecl();
434 const Type *type = decl->getType().getTypePtr();
435 isl_id *id;
436 isl_space *dim;
437 isl_aff *aff;
438 isl_set *dom;
440 if (!type->isIntegerType()) {
441 unsupported(expr);
442 return NULL;
445 if (assigned_value.find(decl) != assigned_value.end()) {
446 if (assigned_value[decl])
447 return isl_pw_aff_copy(assigned_value[decl]);
448 else
449 return nested_access(expr);
452 id = isl_id_alloc(ctx, decl->getName().str().c_str(), decl);
453 dim = isl_space_params_alloc(ctx, 1);
455 dim = isl_space_set_dim_id(dim, isl_dim_param, 0, id);
457 dom = isl_set_universe(isl_space_copy(dim));
458 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
459 aff = isl_aff_add_coefficient_si(aff, isl_dim_param, 0, 1);
461 return isl_pw_aff_alloc(dom, aff);
464 /* Extract an affine expression from an integer division operation.
465 * In particular, if "expr" is lhs/rhs, then return
467 * lhs >= 0 ? floor(lhs/rhs) : ceil(lhs/rhs)
469 * The second argument (rhs) is required to be a (positive) integer constant.
471 __isl_give isl_pw_aff *PetScan::extract_affine_div(BinaryOperator *expr)
473 int is_cst;
474 isl_pw_aff *rhs, *lhs;
476 rhs = extract_affine(expr->getRHS());
477 is_cst = isl_pw_aff_is_cst(rhs);
478 if (is_cst < 0 || !is_cst) {
479 isl_pw_aff_free(rhs);
480 if (!is_cst)
481 unsupported(expr);
482 return NULL;
485 lhs = extract_affine(expr->getLHS());
487 return isl_pw_aff_tdiv_q(lhs, rhs);
490 /* Extract an affine expression from a modulo operation.
491 * In particular, if "expr" is lhs/rhs, then return
493 * lhs - rhs * (lhs >= 0 ? floor(lhs/rhs) : ceil(lhs/rhs))
495 * The second argument (rhs) is required to be a (positive) integer constant.
497 __isl_give isl_pw_aff *PetScan::extract_affine_mod(BinaryOperator *expr)
499 int is_cst;
500 isl_pw_aff *rhs, *lhs;
502 rhs = extract_affine(expr->getRHS());
503 is_cst = isl_pw_aff_is_cst(rhs);
504 if (is_cst < 0 || !is_cst) {
505 isl_pw_aff_free(rhs);
506 if (!is_cst)
507 unsupported(expr);
508 return NULL;
511 lhs = extract_affine(expr->getLHS());
513 return isl_pw_aff_tdiv_r(lhs, rhs);
516 /* Extract an affine expression from a multiplication operation.
517 * This is only allowed if at least one of the two arguments
518 * is a (piecewise) constant.
520 __isl_give isl_pw_aff *PetScan::extract_affine_mul(BinaryOperator *expr)
522 isl_pw_aff *lhs;
523 isl_pw_aff *rhs;
525 lhs = extract_affine(expr->getLHS());
526 rhs = extract_affine(expr->getRHS());
528 if (!isl_pw_aff_is_cst(lhs) && !isl_pw_aff_is_cst(rhs)) {
529 isl_pw_aff_free(lhs);
530 isl_pw_aff_free(rhs);
531 unsupported(expr);
532 return NULL;
535 return isl_pw_aff_mul(lhs, rhs);
538 /* Extract an affine expression from an addition or subtraction operation.
540 __isl_give isl_pw_aff *PetScan::extract_affine_add(BinaryOperator *expr)
542 isl_pw_aff *lhs;
543 isl_pw_aff *rhs;
545 lhs = extract_affine(expr->getLHS());
546 rhs = extract_affine(expr->getRHS());
548 switch (expr->getOpcode()) {
549 case BO_Add:
550 return isl_pw_aff_add(lhs, rhs);
551 case BO_Sub:
552 return isl_pw_aff_sub(lhs, rhs);
553 default:
554 isl_pw_aff_free(lhs);
555 isl_pw_aff_free(rhs);
556 return NULL;
561 /* Compute
563 * pwaff mod 2^width
565 static __isl_give isl_pw_aff *wrap(__isl_take isl_pw_aff *pwaff,
566 unsigned width)
568 isl_ctx *ctx;
569 isl_val *mod;
571 ctx = isl_pw_aff_get_ctx(pwaff);
572 mod = isl_val_int_from_ui(ctx, width);
573 mod = isl_val_2exp(mod);
575 pwaff = isl_pw_aff_mod_val(pwaff, mod);
577 return pwaff;
580 /* Limit the domain of "pwaff" to those elements where the function
581 * value satisfies
583 * 2^{width-1} <= pwaff < 2^{width-1}
585 static __isl_give isl_pw_aff *avoid_overflow(__isl_take isl_pw_aff *pwaff,
586 unsigned width)
588 isl_ctx *ctx;
589 isl_val *v;
590 isl_space *space = isl_pw_aff_get_domain_space(pwaff);
591 isl_local_space *ls = isl_local_space_from_space(space);
592 isl_aff *bound;
593 isl_set *dom;
594 isl_pw_aff *b;
596 ctx = isl_pw_aff_get_ctx(pwaff);
597 v = isl_val_int_from_ui(ctx, width - 1);
598 v = isl_val_2exp(v);
600 bound = isl_aff_zero_on_domain(ls);
601 bound = isl_aff_add_constant_val(bound, v);
602 b = isl_pw_aff_from_aff(bound);
604 dom = isl_pw_aff_lt_set(isl_pw_aff_copy(pwaff), isl_pw_aff_copy(b));
605 pwaff = isl_pw_aff_intersect_domain(pwaff, dom);
607 b = isl_pw_aff_neg(b);
608 dom = isl_pw_aff_ge_set(isl_pw_aff_copy(pwaff), b);
609 pwaff = isl_pw_aff_intersect_domain(pwaff, dom);
611 return pwaff;
614 /* Handle potential overflows on signed computations.
616 * If options->signed_overflow is set to PET_OVERFLOW_AVOID,
617 * the we adjust the domain of "pa" to avoid overflows.
619 __isl_give isl_pw_aff *PetScan::signed_overflow(__isl_take isl_pw_aff *pa,
620 unsigned width)
622 if (options->signed_overflow == PET_OVERFLOW_AVOID)
623 pa = avoid_overflow(pa, width);
625 return pa;
628 /* Return the piecewise affine expression "set ? 1 : 0" defined on "dom".
630 static __isl_give isl_pw_aff *indicator_function(__isl_take isl_set *set,
631 __isl_take isl_set *dom)
633 isl_pw_aff *pa;
634 pa = isl_set_indicator_function(set);
635 pa = isl_pw_aff_intersect_domain(pa, dom);
636 return pa;
639 /* Extract an affine expression from some binary operations.
640 * If the result of the expression is unsigned, then we wrap it
641 * based on the size of the type. Otherwise, we ensure that
642 * no overflow occurs.
644 __isl_give isl_pw_aff *PetScan::extract_affine(BinaryOperator *expr)
646 isl_pw_aff *res;
647 unsigned width;
649 switch (expr->getOpcode()) {
650 case BO_Add:
651 case BO_Sub:
652 res = extract_affine_add(expr);
653 break;
654 case BO_Div:
655 res = extract_affine_div(expr);
656 break;
657 case BO_Rem:
658 res = extract_affine_mod(expr);
659 break;
660 case BO_Mul:
661 res = extract_affine_mul(expr);
662 break;
663 case BO_LT:
664 case BO_LE:
665 case BO_GT:
666 case BO_GE:
667 case BO_EQ:
668 case BO_NE:
669 case BO_LAnd:
670 case BO_LOr:
671 return extract_condition(expr);
672 default:
673 unsupported(expr);
674 return NULL;
677 width = ast_context.getIntWidth(expr->getType());
678 if (expr->getType()->isUnsignedIntegerType())
679 res = wrap(res, width);
680 else
681 res = signed_overflow(res, width);
683 return res;
686 /* Extract an affine expression from a negation operation.
688 __isl_give isl_pw_aff *PetScan::extract_affine(UnaryOperator *expr)
690 if (expr->getOpcode() == UO_Minus)
691 return isl_pw_aff_neg(extract_affine(expr->getSubExpr()));
692 if (expr->getOpcode() == UO_LNot)
693 return extract_condition(expr);
695 unsupported(expr);
696 return NULL;
699 __isl_give isl_pw_aff *PetScan::extract_affine(ParenExpr *expr)
701 return extract_affine(expr->getSubExpr());
704 /* Extract an affine expression from some special function calls.
705 * In particular, we handle "min", "max", "ceild" and "floord".
706 * In case of the latter two, the second argument needs to be
707 * a (positive) integer constant.
709 __isl_give isl_pw_aff *PetScan::extract_affine(CallExpr *expr)
711 FunctionDecl *fd;
712 string name;
713 isl_pw_aff *aff1, *aff2;
715 fd = expr->getDirectCallee();
716 if (!fd) {
717 unsupported(expr);
718 return NULL;
721 name = fd->getDeclName().getAsString();
722 if (!(expr->getNumArgs() == 2 && name == "min") &&
723 !(expr->getNumArgs() == 2 && name == "max") &&
724 !(expr->getNumArgs() == 2 && name == "floord") &&
725 !(expr->getNumArgs() == 2 && name == "ceild")) {
726 unsupported(expr);
727 return NULL;
730 if (name == "min" || name == "max") {
731 aff1 = extract_affine(expr->getArg(0));
732 aff2 = extract_affine(expr->getArg(1));
734 if (name == "min")
735 aff1 = isl_pw_aff_min(aff1, aff2);
736 else
737 aff1 = isl_pw_aff_max(aff1, aff2);
738 } else if (name == "floord" || name == "ceild") {
739 isl_val *v;
740 Expr *arg2 = expr->getArg(1);
742 if (arg2->getStmtClass() != Stmt::IntegerLiteralClass) {
743 unsupported(expr);
744 return NULL;
746 aff1 = extract_affine(expr->getArg(0));
747 v = extract_int(cast<IntegerLiteral>(arg2));
748 aff1 = isl_pw_aff_scale_down_val(aff1, v);
749 if (name == "floord")
750 aff1 = isl_pw_aff_floor(aff1);
751 else
752 aff1 = isl_pw_aff_ceil(aff1);
753 } else {
754 unsupported(expr);
755 return NULL;
758 return aff1;
761 /* This method is called when we come across an access that is
762 * nested in what is supposed to be an affine expression.
763 * If nesting is allowed, we return a new parameter that corresponds
764 * to this nested access. Otherwise, we simply complain.
766 * Note that we currently don't allow nested accesses themselves
767 * to contain any nested accesses, so we check if we can extract
768 * the access without any nesting and complain if we can't.
770 * The new parameter is resolved in resolve_nested.
772 isl_pw_aff *PetScan::nested_access(Expr *expr)
774 isl_id *id;
775 isl_space *dim;
776 isl_aff *aff;
777 isl_set *dom;
778 isl_map *access;
780 if (!nesting_enabled) {
781 unsupported(expr);
782 return NULL;
785 allow_nested = false;
786 access = extract_access(expr);
787 allow_nested = true;
788 if (!access) {
789 unsupported(expr);
790 return NULL;
792 isl_map_free(access);
794 id = isl_id_alloc(ctx, NULL, expr);
795 dim = isl_space_params_alloc(ctx, 1);
797 dim = isl_space_set_dim_id(dim, isl_dim_param, 0, id);
799 dom = isl_set_universe(isl_space_copy(dim));
800 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
801 aff = isl_aff_add_coefficient_si(aff, isl_dim_param, 0, 1);
803 return isl_pw_aff_alloc(dom, aff);
806 /* Affine expressions are not supposed to contain array accesses,
807 * but if nesting is allowed, we return a parameter corresponding
808 * to the array access.
810 __isl_give isl_pw_aff *PetScan::extract_affine(ArraySubscriptExpr *expr)
812 return nested_access(expr);
815 /* Extract an affine expression from a conditional operation.
817 __isl_give isl_pw_aff *PetScan::extract_affine(ConditionalOperator *expr)
819 isl_pw_aff *cond, *lhs, *rhs, *res;
821 cond = extract_condition(expr->getCond());
822 lhs = extract_affine(expr->getTrueExpr());
823 rhs = extract_affine(expr->getFalseExpr());
825 return isl_pw_aff_cond(cond, lhs, rhs);
828 /* Extract an affine expression, if possible, from "expr".
829 * Otherwise return NULL.
831 __isl_give isl_pw_aff *PetScan::extract_affine(Expr *expr)
833 switch (expr->getStmtClass()) {
834 case Stmt::ImplicitCastExprClass:
835 return extract_affine(cast<ImplicitCastExpr>(expr));
836 case Stmt::IntegerLiteralClass:
837 return extract_affine(cast<IntegerLiteral>(expr));
838 case Stmt::DeclRefExprClass:
839 return extract_affine(cast<DeclRefExpr>(expr));
840 case Stmt::BinaryOperatorClass:
841 return extract_affine(cast<BinaryOperator>(expr));
842 case Stmt::UnaryOperatorClass:
843 return extract_affine(cast<UnaryOperator>(expr));
844 case Stmt::ParenExprClass:
845 return extract_affine(cast<ParenExpr>(expr));
846 case Stmt::CallExprClass:
847 return extract_affine(cast<CallExpr>(expr));
848 case Stmt::ArraySubscriptExprClass:
849 return extract_affine(cast<ArraySubscriptExpr>(expr));
850 case Stmt::ConditionalOperatorClass:
851 return extract_affine(cast<ConditionalOperator>(expr));
852 default:
853 unsupported(expr);
855 return NULL;
858 __isl_give isl_map *PetScan::extract_access(ImplicitCastExpr *expr)
860 return extract_access(expr->getSubExpr());
863 /* Return the depth of an array of the given type.
865 static int array_depth(const Type *type)
867 if (type->isPointerType())
868 return 1 + array_depth(type->getPointeeType().getTypePtr());
869 if (type->isArrayType()) {
870 const ArrayType *atype;
871 type = type->getCanonicalTypeInternal().getTypePtr();
872 atype = cast<ArrayType>(type);
873 return 1 + array_depth(atype->getElementType().getTypePtr());
875 return 0;
878 /* Return the element type of the given array type.
880 static QualType base_type(QualType qt)
882 const Type *type = qt.getTypePtr();
884 if (type->isPointerType())
885 return base_type(type->getPointeeType());
886 if (type->isArrayType()) {
887 const ArrayType *atype;
888 type = type->getCanonicalTypeInternal().getTypePtr();
889 atype = cast<ArrayType>(type);
890 return base_type(atype->getElementType());
892 return qt;
895 /* Extract an access relation from a reference to a variable.
896 * If the variable has name "A" and its type corresponds to an
897 * array of depth d, then the returned access relation is of the
898 * form
900 * { [] -> A[i_1,...,i_d] }
902 __isl_give isl_map *PetScan::extract_access(DeclRefExpr *expr)
904 return extract_access(expr->getDecl());
907 /* Extract an access relation from a variable.
908 * If the variable has name "A" and its type corresponds to an
909 * array of depth d, then the returned access relation is of the
910 * form
912 * { [] -> A[i_1,...,i_d] }
914 __isl_give isl_map *PetScan::extract_access(ValueDecl *decl)
916 int depth = array_depth(decl->getType().getTypePtr());
917 isl_id *id = isl_id_alloc(ctx, decl->getName().str().c_str(), decl);
918 isl_space *dim = isl_space_alloc(ctx, 0, 0, depth);
919 isl_map *access_rel;
921 dim = isl_space_set_tuple_id(dim, isl_dim_out, id);
923 access_rel = isl_map_universe(dim);
925 return access_rel;
928 /* Extract an access relation from an integer contant.
929 * If the value of the constant is "v", then the returned access relation
930 * is
932 * { [] -> [v] }
934 __isl_give isl_map *PetScan::extract_access(IntegerLiteral *expr)
936 return isl_map_from_range(isl_set_from_pw_aff(extract_affine(expr)));
939 /* Try and extract an access relation from the given Expr.
940 * Return NULL if it doesn't work out.
942 __isl_give isl_map *PetScan::extract_access(Expr *expr)
944 switch (expr->getStmtClass()) {
945 case Stmt::ImplicitCastExprClass:
946 return extract_access(cast<ImplicitCastExpr>(expr));
947 case Stmt::DeclRefExprClass:
948 return extract_access(cast<DeclRefExpr>(expr));
949 case Stmt::ArraySubscriptExprClass:
950 return extract_access(cast<ArraySubscriptExpr>(expr));
951 case Stmt::IntegerLiteralClass:
952 return extract_access(cast<IntegerLiteral>(expr));
953 default:
954 unsupported(expr);
956 return NULL;
959 /* Assign the affine expression "index" to the output dimension "pos" of "map",
960 * restrict the domain to those values that result in a non-negative index
961 * and return the result.
963 __isl_give isl_map *set_index(__isl_take isl_map *map, int pos,
964 __isl_take isl_pw_aff *index)
966 isl_map *index_map;
967 int len = isl_map_dim(map, isl_dim_out);
968 isl_id *id;
969 isl_set *domain;
971 domain = isl_pw_aff_nonneg_set(isl_pw_aff_copy(index));
972 index = isl_pw_aff_intersect_domain(index, domain);
973 index_map = isl_map_from_range(isl_set_from_pw_aff(index));
974 index_map = isl_map_insert_dims(index_map, isl_dim_out, 0, pos);
975 index_map = isl_map_add_dims(index_map, isl_dim_out, len - pos - 1);
976 id = isl_map_get_tuple_id(map, isl_dim_out);
977 index_map = isl_map_set_tuple_id(index_map, isl_dim_out, id);
979 map = isl_map_intersect(map, index_map);
981 return map;
984 /* Extract an access relation from the given array subscript expression.
985 * If nesting is allowed in general, then we turn it on while
986 * examining the index expression.
988 * We first extract an access relation from the base.
989 * This will result in an access relation with a range that corresponds
990 * to the array being accessed and with earlier indices filled in already.
991 * We then extract the current index and fill that in as well.
992 * The position of the current index is based on the type of base.
993 * If base is the actual array variable, then the depth of this type
994 * will be the same as the depth of the array and we will fill in
995 * the first array index.
996 * Otherwise, the depth of the base type will be smaller and we will fill
997 * in a later index.
999 __isl_give isl_map *PetScan::extract_access(ArraySubscriptExpr *expr)
1001 Expr *base = expr->getBase();
1002 Expr *idx = expr->getIdx();
1003 isl_pw_aff *index;
1004 isl_map *base_access;
1005 isl_map *access;
1006 int depth = array_depth(base->getType().getTypePtr());
1007 int pos;
1008 bool save_nesting = nesting_enabled;
1010 nesting_enabled = allow_nested;
1012 base_access = extract_access(base);
1013 index = extract_affine(idx);
1015 nesting_enabled = save_nesting;
1017 pos = isl_map_dim(base_access, isl_dim_out) - depth;
1018 access = set_index(base_access, pos, index);
1020 return access;
1023 /* Check if "expr" calls function "minmax" with two arguments and if so
1024 * make lhs and rhs refer to these two arguments.
1026 static bool is_minmax(Expr *expr, const char *minmax, Expr *&lhs, Expr *&rhs)
1028 CallExpr *call;
1029 FunctionDecl *fd;
1030 string name;
1032 if (expr->getStmtClass() != Stmt::CallExprClass)
1033 return false;
1035 call = cast<CallExpr>(expr);
1036 fd = call->getDirectCallee();
1037 if (!fd)
1038 return false;
1040 if (call->getNumArgs() != 2)
1041 return false;
1043 name = fd->getDeclName().getAsString();
1044 if (name != minmax)
1045 return false;
1047 lhs = call->getArg(0);
1048 rhs = call->getArg(1);
1050 return true;
1053 /* Check if "expr" is of the form min(lhs, rhs) and if so make
1054 * lhs and rhs refer to the two arguments.
1056 static bool is_min(Expr *expr, Expr *&lhs, Expr *&rhs)
1058 return is_minmax(expr, "min", lhs, rhs);
1061 /* Check if "expr" is of the form max(lhs, rhs) and if so make
1062 * lhs and rhs refer to the two arguments.
1064 static bool is_max(Expr *expr, Expr *&lhs, Expr *&rhs)
1066 return is_minmax(expr, "max", lhs, rhs);
1069 /* Return "lhs && rhs", defined on the shared definition domain.
1071 static __isl_give isl_pw_aff *pw_aff_and(__isl_take isl_pw_aff *lhs,
1072 __isl_take isl_pw_aff *rhs)
1074 isl_set *cond;
1075 isl_set *dom;
1077 dom = isl_set_intersect(isl_pw_aff_domain(isl_pw_aff_copy(lhs)),
1078 isl_pw_aff_domain(isl_pw_aff_copy(rhs)));
1079 cond = isl_set_intersect(isl_pw_aff_non_zero_set(lhs),
1080 isl_pw_aff_non_zero_set(rhs));
1081 return indicator_function(cond, dom);
1084 /* Return "lhs && rhs", with shortcut semantics.
1085 * That is, if lhs is false, then the result is defined even if rhs is not.
1086 * In practice, we compute lhs ? rhs : lhs.
1088 static __isl_give isl_pw_aff *pw_aff_and_then(__isl_take isl_pw_aff *lhs,
1089 __isl_take isl_pw_aff *rhs)
1091 return isl_pw_aff_cond(isl_pw_aff_copy(lhs), rhs, lhs);
1094 /* Return "lhs || rhs", with shortcut semantics.
1095 * That is, if lhs is true, then the result is defined even if rhs is not.
1096 * In practice, we compute lhs ? lhs : rhs.
1098 static __isl_give isl_pw_aff *pw_aff_or_else(__isl_take isl_pw_aff *lhs,
1099 __isl_take isl_pw_aff *rhs)
1101 return isl_pw_aff_cond(isl_pw_aff_copy(lhs), lhs, rhs);
1104 /* Extract an affine expressions representing the comparison "LHS op RHS"
1105 * "comp" is the original statement that "LHS op RHS" is derived from
1106 * and is used for diagnostics.
1108 * If the comparison is of the form
1110 * a <= min(b,c)
1112 * then the expression is constructed as the conjunction of
1113 * the comparisons
1115 * a <= b and a <= c
1117 * A similar optimization is performed for max(a,b) <= c.
1118 * We do this because that will lead to simpler representations
1119 * of the expression.
1120 * If isl is ever enhanced to explicitly deal with min and max expressions,
1121 * this optimization can be removed.
1123 __isl_give isl_pw_aff *PetScan::extract_comparison(BinaryOperatorKind op,
1124 Expr *LHS, Expr *RHS, Stmt *comp)
1126 isl_pw_aff *lhs;
1127 isl_pw_aff *rhs;
1128 isl_pw_aff *res;
1129 isl_set *cond;
1130 isl_set *dom;
1132 if (op == BO_GT)
1133 return extract_comparison(BO_LT, RHS, LHS, comp);
1134 if (op == BO_GE)
1135 return extract_comparison(BO_LE, RHS, LHS, comp);
1137 if (op == BO_LT || op == BO_LE) {
1138 Expr *expr1, *expr2;
1139 if (is_min(RHS, expr1, expr2)) {
1140 lhs = extract_comparison(op, LHS, expr1, comp);
1141 rhs = extract_comparison(op, LHS, expr2, comp);
1142 return pw_aff_and(lhs, rhs);
1144 if (is_max(LHS, expr1, expr2)) {
1145 lhs = extract_comparison(op, expr1, RHS, comp);
1146 rhs = extract_comparison(op, expr2, RHS, comp);
1147 return pw_aff_and(lhs, rhs);
1151 lhs = extract_affine(LHS);
1152 rhs = extract_affine(RHS);
1154 dom = isl_pw_aff_domain(isl_pw_aff_copy(lhs));
1155 dom = isl_set_intersect(dom, isl_pw_aff_domain(isl_pw_aff_copy(rhs)));
1157 switch (op) {
1158 case BO_LT:
1159 cond = isl_pw_aff_lt_set(lhs, rhs);
1160 break;
1161 case BO_LE:
1162 cond = isl_pw_aff_le_set(lhs, rhs);
1163 break;
1164 case BO_EQ:
1165 cond = isl_pw_aff_eq_set(lhs, rhs);
1166 break;
1167 case BO_NE:
1168 cond = isl_pw_aff_ne_set(lhs, rhs);
1169 break;
1170 default:
1171 isl_pw_aff_free(lhs);
1172 isl_pw_aff_free(rhs);
1173 isl_set_free(dom);
1174 unsupported(comp);
1175 return NULL;
1178 cond = isl_set_coalesce(cond);
1179 res = indicator_function(cond, dom);
1181 return res;
1184 __isl_give isl_pw_aff *PetScan::extract_comparison(BinaryOperator *comp)
1186 return extract_comparison(comp->getOpcode(), comp->getLHS(),
1187 comp->getRHS(), comp);
1190 /* Extract an affine expression representing the negation (logical not)
1191 * of a subexpression.
1193 __isl_give isl_pw_aff *PetScan::extract_boolean(UnaryOperator *op)
1195 isl_set *set_cond, *dom;
1196 isl_pw_aff *cond, *res;
1198 cond = extract_condition(op->getSubExpr());
1200 dom = isl_pw_aff_domain(isl_pw_aff_copy(cond));
1202 set_cond = isl_pw_aff_zero_set(cond);
1204 res = indicator_function(set_cond, dom);
1206 return res;
1209 /* Extract an affine expression representing the disjunction (logical or)
1210 * or conjunction (logical and) of two subexpressions.
1212 __isl_give isl_pw_aff *PetScan::extract_boolean(BinaryOperator *comp)
1214 isl_pw_aff *lhs, *rhs;
1216 lhs = extract_condition(comp->getLHS());
1217 rhs = extract_condition(comp->getRHS());
1219 switch (comp->getOpcode()) {
1220 case BO_LAnd:
1221 return pw_aff_and_then(lhs, rhs);
1222 case BO_LOr:
1223 return pw_aff_or_else(lhs, rhs);
1224 default:
1225 isl_pw_aff_free(lhs);
1226 isl_pw_aff_free(rhs);
1229 unsupported(comp);
1230 return NULL;
1233 __isl_give isl_pw_aff *PetScan::extract_condition(UnaryOperator *expr)
1235 switch (expr->getOpcode()) {
1236 case UO_LNot:
1237 return extract_boolean(expr);
1238 default:
1239 unsupported(expr);
1240 return NULL;
1244 /* Extract the affine expression "expr != 0 ? 1 : 0".
1246 __isl_give isl_pw_aff *PetScan::extract_implicit_condition(Expr *expr)
1248 isl_pw_aff *res;
1249 isl_set *set, *dom;
1251 res = extract_affine(expr);
1253 dom = isl_pw_aff_domain(isl_pw_aff_copy(res));
1254 set = isl_pw_aff_non_zero_set(res);
1256 res = indicator_function(set, dom);
1258 return res;
1261 /* Extract an affine expression from a boolean expression.
1262 * In particular, return the expression "expr ? 1 : 0".
1264 * If the expression doesn't look like a condition, we assume it
1265 * is an affine expression and return the condition "expr != 0 ? 1 : 0".
1267 __isl_give isl_pw_aff *PetScan::extract_condition(Expr *expr)
1269 BinaryOperator *comp;
1271 if (!expr) {
1272 isl_set *u = isl_set_universe(isl_space_params_alloc(ctx, 0));
1273 return indicator_function(u, isl_set_copy(u));
1276 if (expr->getStmtClass() == Stmt::ParenExprClass)
1277 return extract_condition(cast<ParenExpr>(expr)->getSubExpr());
1279 if (expr->getStmtClass() == Stmt::UnaryOperatorClass)
1280 return extract_condition(cast<UnaryOperator>(expr));
1282 if (expr->getStmtClass() != Stmt::BinaryOperatorClass)
1283 return extract_implicit_condition(expr);
1285 comp = cast<BinaryOperator>(expr);
1286 switch (comp->getOpcode()) {
1287 case BO_LT:
1288 case BO_LE:
1289 case BO_GT:
1290 case BO_GE:
1291 case BO_EQ:
1292 case BO_NE:
1293 return extract_comparison(comp);
1294 case BO_LAnd:
1295 case BO_LOr:
1296 return extract_boolean(comp);
1297 default:
1298 return extract_implicit_condition(expr);
1302 static enum pet_op_type UnaryOperatorKind2pet_op_type(UnaryOperatorKind kind)
1304 switch (kind) {
1305 case UO_Minus:
1306 return pet_op_minus;
1307 case UO_PostInc:
1308 return pet_op_post_inc;
1309 case UO_PostDec:
1310 return pet_op_post_dec;
1311 case UO_PreInc:
1312 return pet_op_pre_inc;
1313 case UO_PreDec:
1314 return pet_op_pre_dec;
1315 default:
1316 return pet_op_last;
1320 static enum pet_op_type BinaryOperatorKind2pet_op_type(BinaryOperatorKind kind)
1322 switch (kind) {
1323 case BO_AddAssign:
1324 return pet_op_add_assign;
1325 case BO_SubAssign:
1326 return pet_op_sub_assign;
1327 case BO_MulAssign:
1328 return pet_op_mul_assign;
1329 case BO_DivAssign:
1330 return pet_op_div_assign;
1331 case BO_Assign:
1332 return pet_op_assign;
1333 case BO_Add:
1334 return pet_op_add;
1335 case BO_Sub:
1336 return pet_op_sub;
1337 case BO_Mul:
1338 return pet_op_mul;
1339 case BO_Div:
1340 return pet_op_div;
1341 case BO_Rem:
1342 return pet_op_mod;
1343 case BO_EQ:
1344 return pet_op_eq;
1345 case BO_LE:
1346 return pet_op_le;
1347 case BO_LT:
1348 return pet_op_lt;
1349 case BO_GT:
1350 return pet_op_gt;
1351 default:
1352 return pet_op_last;
1356 /* Construct a pet_expr representing a unary operator expression.
1358 struct pet_expr *PetScan::extract_expr(UnaryOperator *expr)
1360 struct pet_expr *arg;
1361 enum pet_op_type op;
1363 op = UnaryOperatorKind2pet_op_type(expr->getOpcode());
1364 if (op == pet_op_last) {
1365 unsupported(expr);
1366 return NULL;
1369 arg = extract_expr(expr->getSubExpr());
1371 if (expr->isIncrementDecrementOp() &&
1372 arg && arg->type == pet_expr_access) {
1373 mark_write(arg);
1374 arg->acc.read = 1;
1377 return pet_expr_new_unary(ctx, op, arg);
1380 /* Mark the given access pet_expr as a write.
1381 * If a scalar is being accessed, then mark its value
1382 * as unknown in assigned_value.
1384 void PetScan::mark_write(struct pet_expr *access)
1386 isl_id *id;
1387 ValueDecl *decl;
1389 if (!access)
1390 return;
1392 access->acc.write = 1;
1393 access->acc.read = 0;
1395 if (!pet_expr_is_scalar_access(access))
1396 return;
1398 id = pet_expr_access_get_id(access);
1399 decl = (ValueDecl *) isl_id_get_user(id);
1400 clear_assignment(assigned_value, decl);
1401 isl_id_free(id);
1404 /* Assign "rhs" to "lhs".
1406 * In particular, if "lhs" is a scalar variable, then mark
1407 * the variable as having been assigned. If, furthermore, "rhs"
1408 * is an affine expression, then keep track of this value in assigned_value
1409 * so that we can plug it in when we later come across the same variable.
1411 void PetScan::assign(struct pet_expr *lhs, Expr *rhs)
1413 isl_id *id;
1414 ValueDecl *decl;
1415 isl_pw_aff *pa;
1417 if (!lhs)
1418 return;
1419 if (!pet_expr_is_scalar_access(lhs))
1420 return;
1422 id = pet_expr_access_get_id(lhs);
1423 decl = (ValueDecl *) isl_id_get_user(id);
1424 isl_id_free(id);
1426 pa = try_extract_affine(rhs);
1427 clear_assignment(assigned_value, decl);
1428 if (!pa)
1429 return;
1430 assigned_value[decl] = pa;
1431 insert_expression(pa);
1434 /* Construct a pet_expr representing a binary operator expression.
1436 * If the top level operator is an assignment and the LHS is an access,
1437 * then we mark that access as a write. If the operator is a compound
1438 * assignment, the access is marked as both a read and a write.
1440 * If "expr" assigns something to a scalar variable, then we mark
1441 * the variable as having been assigned. If, furthermore, the expression
1442 * is affine, then keep track of this value in assigned_value
1443 * so that we can plug it in when we later come across the same variable.
1445 struct pet_expr *PetScan::extract_expr(BinaryOperator *expr)
1447 struct pet_expr *lhs, *rhs;
1448 enum pet_op_type op;
1450 op = BinaryOperatorKind2pet_op_type(expr->getOpcode());
1451 if (op == pet_op_last) {
1452 unsupported(expr);
1453 return NULL;
1456 lhs = extract_expr(expr->getLHS());
1457 rhs = extract_expr(expr->getRHS());
1459 if (expr->isAssignmentOp() && lhs && lhs->type == pet_expr_access) {
1460 mark_write(lhs);
1461 if (expr->isCompoundAssignmentOp())
1462 lhs->acc.read = 1;
1465 if (expr->getOpcode() == BO_Assign)
1466 assign(lhs, expr->getRHS());
1468 return pet_expr_new_binary(ctx, op, lhs, rhs);
1471 /* Construct a pet_scop with a single statement killing the entire
1472 * array "array".
1474 struct pet_scop *PetScan::kill(Stmt *stmt, struct pet_array *array)
1476 isl_map *access;
1477 struct pet_expr *expr;
1479 if (!array)
1480 return NULL;
1481 access = isl_map_from_range(isl_set_copy(array->extent));
1482 expr = pet_expr_kill_from_access(access);
1483 return extract(stmt, expr);
1486 /* Construct a pet_scop for a (single) variable declaration.
1488 * The scop contains the variable being declared (as an array)
1489 * and a statement killing the array.
1491 * If the variable is initialized in the AST, then the scop
1492 * also contains an assignment to the variable.
1494 struct pet_scop *PetScan::extract(DeclStmt *stmt)
1496 Decl *decl;
1497 VarDecl *vd;
1498 struct pet_expr *lhs, *rhs, *pe;
1499 struct pet_scop *scop_decl, *scop;
1500 struct pet_array *array;
1502 if (!stmt->isSingleDecl()) {
1503 unsupported(stmt);
1504 return NULL;
1507 decl = stmt->getSingleDecl();
1508 vd = cast<VarDecl>(decl);
1510 array = extract_array(ctx, vd);
1511 if (array)
1512 array->declared = 1;
1513 scop_decl = kill(stmt, array);
1514 scop_decl = pet_scop_add_array(scop_decl, array);
1516 if (!vd->getInit())
1517 return scop_decl;
1519 lhs = pet_expr_from_access(extract_access(vd));
1520 rhs = extract_expr(vd->getInit());
1522 mark_write(lhs);
1523 assign(lhs, vd->getInit());
1525 pe = pet_expr_new_binary(ctx, pet_op_assign, lhs, rhs);
1526 scop = extract(stmt, pe);
1528 scop_decl = pet_scop_prefix(scop_decl, 0);
1529 scop = pet_scop_prefix(scop, 1);
1531 scop = pet_scop_add_seq(ctx, scop_decl, scop);
1533 return scop;
1536 /* Construct a pet_expr representing a conditional operation.
1538 * We first try to extract the condition as an affine expression.
1539 * If that fails, we construct a pet_expr tree representing the condition.
1541 struct pet_expr *PetScan::extract_expr(ConditionalOperator *expr)
1543 struct pet_expr *cond, *lhs, *rhs;
1544 isl_pw_aff *pa;
1546 pa = try_extract_affine(expr->getCond());
1547 if (pa) {
1548 isl_set *test = isl_set_from_pw_aff(pa);
1549 cond = pet_expr_from_access(isl_map_from_range(test));
1550 } else
1551 cond = extract_expr(expr->getCond());
1552 lhs = extract_expr(expr->getTrueExpr());
1553 rhs = extract_expr(expr->getFalseExpr());
1555 return pet_expr_new_ternary(ctx, cond, lhs, rhs);
1558 struct pet_expr *PetScan::extract_expr(ImplicitCastExpr *expr)
1560 return extract_expr(expr->getSubExpr());
1563 /* Construct a pet_expr representing a floating point value.
1565 * If the floating point literal does not appear in a macro,
1566 * then we use the original representation in the source code
1567 * as the string representation. Otherwise, we use the pretty
1568 * printer to produce a string representation.
1570 struct pet_expr *PetScan::extract_expr(FloatingLiteral *expr)
1572 double d;
1573 string s;
1574 const LangOptions &LO = PP.getLangOpts();
1575 SourceLocation loc = expr->getLocation();
1577 if (!loc.isMacroID()) {
1578 SourceManager &SM = PP.getSourceManager();
1579 unsigned len = Lexer::MeasureTokenLength(loc, SM, LO);
1580 s = string(SM.getCharacterData(loc), len);
1581 } else {
1582 llvm::raw_string_ostream S(s);
1583 expr->printPretty(S, 0, PrintingPolicy(LO));
1584 S.str();
1586 d = expr->getValueAsApproximateDouble();
1587 return pet_expr_new_double(ctx, d, s.c_str());
1590 /* Extract an access relation from "expr" and then convert it into
1591 * a pet_expr.
1593 struct pet_expr *PetScan::extract_access_expr(Expr *expr)
1595 isl_map *access;
1596 struct pet_expr *pe;
1598 access = extract_access(expr);
1600 pe = pet_expr_from_access(access);
1602 return pe;
1605 struct pet_expr *PetScan::extract_expr(ParenExpr *expr)
1607 return extract_expr(expr->getSubExpr());
1610 /* Construct a pet_expr representing a function call.
1612 * If we are passing along a pointer to an array element
1613 * or an entire row or even higher dimensional slice of an array,
1614 * then the function being called may write into the array.
1616 * We assume here that if the function is declared to take a pointer
1617 * to a const type, then the function will perform a read
1618 * and that otherwise, it will perform a write.
1620 struct pet_expr *PetScan::extract_expr(CallExpr *expr)
1622 struct pet_expr *res = NULL;
1623 FunctionDecl *fd;
1624 string name;
1626 fd = expr->getDirectCallee();
1627 if (!fd) {
1628 unsupported(expr);
1629 return NULL;
1632 name = fd->getDeclName().getAsString();
1633 res = pet_expr_new_call(ctx, name.c_str(), expr->getNumArgs());
1634 if (!res)
1635 return NULL;
1637 for (int i = 0; i < expr->getNumArgs(); ++i) {
1638 Expr *arg = expr->getArg(i);
1639 int is_addr = 0;
1640 pet_expr *main_arg;
1642 if (arg->getStmtClass() == Stmt::ImplicitCastExprClass) {
1643 ImplicitCastExpr *ice = cast<ImplicitCastExpr>(arg);
1644 arg = ice->getSubExpr();
1646 if (arg->getStmtClass() == Stmt::UnaryOperatorClass) {
1647 UnaryOperator *op = cast<UnaryOperator>(arg);
1648 if (op->getOpcode() == UO_AddrOf) {
1649 is_addr = 1;
1650 arg = op->getSubExpr();
1653 res->args[i] = PetScan::extract_expr(arg);
1654 main_arg = res->args[i];
1655 if (is_addr)
1656 res->args[i] = pet_expr_new_unary(ctx,
1657 pet_op_address_of, res->args[i]);
1658 if (!res->args[i])
1659 goto error;
1660 if (arg->getStmtClass() == Stmt::ArraySubscriptExprClass &&
1661 array_depth(arg->getType().getTypePtr()) > 0)
1662 is_addr = 1;
1663 if (is_addr && main_arg->type == pet_expr_access) {
1664 ParmVarDecl *parm;
1665 if (!fd->hasPrototype()) {
1666 unsupported(expr, "prototype required");
1667 goto error;
1669 parm = fd->getParamDecl(i);
1670 if (!const_base(parm->getType()))
1671 mark_write(main_arg);
1675 return res;
1676 error:
1677 pet_expr_free(res);
1678 return NULL;
1681 /* Construct a pet_expr representing a (C style) cast.
1683 struct pet_expr *PetScan::extract_expr(CStyleCastExpr *expr)
1685 struct pet_expr *arg;
1686 QualType type;
1688 arg = extract_expr(expr->getSubExpr());
1689 if (!arg)
1690 return NULL;
1692 type = expr->getTypeAsWritten();
1693 return pet_expr_new_cast(ctx, type.getAsString().c_str(), arg);
1696 /* Try and onstruct a pet_expr representing "expr".
1698 struct pet_expr *PetScan::extract_expr(Expr *expr)
1700 switch (expr->getStmtClass()) {
1701 case Stmt::UnaryOperatorClass:
1702 return extract_expr(cast<UnaryOperator>(expr));
1703 case Stmt::CompoundAssignOperatorClass:
1704 case Stmt::BinaryOperatorClass:
1705 return extract_expr(cast<BinaryOperator>(expr));
1706 case Stmt::ImplicitCastExprClass:
1707 return extract_expr(cast<ImplicitCastExpr>(expr));
1708 case Stmt::ArraySubscriptExprClass:
1709 case Stmt::DeclRefExprClass:
1710 case Stmt::IntegerLiteralClass:
1711 return extract_access_expr(expr);
1712 case Stmt::FloatingLiteralClass:
1713 return extract_expr(cast<FloatingLiteral>(expr));
1714 case Stmt::ParenExprClass:
1715 return extract_expr(cast<ParenExpr>(expr));
1716 case Stmt::ConditionalOperatorClass:
1717 return extract_expr(cast<ConditionalOperator>(expr));
1718 case Stmt::CallExprClass:
1719 return extract_expr(cast<CallExpr>(expr));
1720 case Stmt::CStyleCastExprClass:
1721 return extract_expr(cast<CStyleCastExpr>(expr));
1722 default:
1723 unsupported(expr);
1725 return NULL;
1728 /* Check if the given initialization statement is an assignment.
1729 * If so, return that assignment. Otherwise return NULL.
1731 BinaryOperator *PetScan::initialization_assignment(Stmt *init)
1733 BinaryOperator *ass;
1735 if (init->getStmtClass() != Stmt::BinaryOperatorClass)
1736 return NULL;
1738 ass = cast<BinaryOperator>(init);
1739 if (ass->getOpcode() != BO_Assign)
1740 return NULL;
1742 return ass;
1745 /* Check if the given initialization statement is a declaration
1746 * of a single variable.
1747 * If so, return that declaration. Otherwise return NULL.
1749 Decl *PetScan::initialization_declaration(Stmt *init)
1751 DeclStmt *decl;
1753 if (init->getStmtClass() != Stmt::DeclStmtClass)
1754 return NULL;
1756 decl = cast<DeclStmt>(init);
1758 if (!decl->isSingleDecl())
1759 return NULL;
1761 return decl->getSingleDecl();
1764 /* Given the assignment operator in the initialization of a for loop,
1765 * extract the induction variable, i.e., the (integer)variable being
1766 * assigned.
1768 ValueDecl *PetScan::extract_induction_variable(BinaryOperator *init)
1770 Expr *lhs;
1771 DeclRefExpr *ref;
1772 ValueDecl *decl;
1773 const Type *type;
1775 lhs = init->getLHS();
1776 if (lhs->getStmtClass() != Stmt::DeclRefExprClass) {
1777 unsupported(init);
1778 return NULL;
1781 ref = cast<DeclRefExpr>(lhs);
1782 decl = ref->getDecl();
1783 type = decl->getType().getTypePtr();
1785 if (!type->isIntegerType()) {
1786 unsupported(lhs);
1787 return NULL;
1790 return decl;
1793 /* Given the initialization statement of a for loop and the single
1794 * declaration in this initialization statement,
1795 * extract the induction variable, i.e., the (integer) variable being
1796 * declared.
1798 VarDecl *PetScan::extract_induction_variable(Stmt *init, Decl *decl)
1800 VarDecl *vd;
1802 vd = cast<VarDecl>(decl);
1804 const QualType type = vd->getType();
1805 if (!type->isIntegerType()) {
1806 unsupported(init);
1807 return NULL;
1810 if (!vd->getInit()) {
1811 unsupported(init);
1812 return NULL;
1815 return vd;
1818 /* Check that op is of the form iv++ or iv--.
1819 * Return an affine expression "1" or "-1" accordingly.
1821 __isl_give isl_pw_aff *PetScan::extract_unary_increment(
1822 clang::UnaryOperator *op, clang::ValueDecl *iv)
1824 Expr *sub;
1825 DeclRefExpr *ref;
1826 isl_space *space;
1827 isl_aff *aff;
1829 if (!op->isIncrementDecrementOp()) {
1830 unsupported(op);
1831 return NULL;
1834 sub = op->getSubExpr();
1835 if (sub->getStmtClass() != Stmt::DeclRefExprClass) {
1836 unsupported(op);
1837 return NULL;
1840 ref = cast<DeclRefExpr>(sub);
1841 if (ref->getDecl() != iv) {
1842 unsupported(op);
1843 return NULL;
1846 space = isl_space_params_alloc(ctx, 0);
1847 aff = isl_aff_zero_on_domain(isl_local_space_from_space(space));
1849 if (op->isIncrementOp())
1850 aff = isl_aff_add_constant_si(aff, 1);
1851 else
1852 aff = isl_aff_add_constant_si(aff, -1);
1854 return isl_pw_aff_from_aff(aff);
1857 /* If the isl_pw_aff on which isl_pw_aff_foreach_piece is called
1858 * has a single constant expression, then put this constant in *user.
1859 * The caller is assumed to have checked that this function will
1860 * be called exactly once.
1862 static int extract_cst(__isl_take isl_set *set, __isl_take isl_aff *aff,
1863 void *user)
1865 isl_val **inc = (isl_val **)user;
1866 int res = 0;
1868 if (isl_aff_is_cst(aff))
1869 *inc = isl_aff_get_constant_val(aff);
1870 else
1871 res = -1;
1873 isl_set_free(set);
1874 isl_aff_free(aff);
1876 return res;
1879 /* Check if op is of the form
1881 * iv = iv + inc
1883 * and return inc as an affine expression.
1885 * We extract an affine expression from the RHS, subtract iv and return
1886 * the result.
1888 __isl_give isl_pw_aff *PetScan::extract_binary_increment(BinaryOperator *op,
1889 clang::ValueDecl *iv)
1891 Expr *lhs;
1892 DeclRefExpr *ref;
1893 isl_id *id;
1894 isl_space *dim;
1895 isl_aff *aff;
1896 isl_pw_aff *val;
1898 if (op->getOpcode() != BO_Assign) {
1899 unsupported(op);
1900 return NULL;
1903 lhs = op->getLHS();
1904 if (lhs->getStmtClass() != Stmt::DeclRefExprClass) {
1905 unsupported(op);
1906 return NULL;
1909 ref = cast<DeclRefExpr>(lhs);
1910 if (ref->getDecl() != iv) {
1911 unsupported(op);
1912 return NULL;
1915 val = extract_affine(op->getRHS());
1917 id = isl_id_alloc(ctx, iv->getName().str().c_str(), iv);
1919 dim = isl_space_params_alloc(ctx, 1);
1920 dim = isl_space_set_dim_id(dim, isl_dim_param, 0, id);
1921 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
1922 aff = isl_aff_add_coefficient_si(aff, isl_dim_param, 0, 1);
1924 val = isl_pw_aff_sub(val, isl_pw_aff_from_aff(aff));
1926 return val;
1929 /* Check that op is of the form iv += cst or iv -= cst
1930 * and return an affine expression corresponding oto cst or -cst accordingly.
1932 __isl_give isl_pw_aff *PetScan::extract_compound_increment(
1933 CompoundAssignOperator *op, clang::ValueDecl *iv)
1935 Expr *lhs;
1936 DeclRefExpr *ref;
1937 bool neg = false;
1938 isl_pw_aff *val;
1939 BinaryOperatorKind opcode;
1941 opcode = op->getOpcode();
1942 if (opcode != BO_AddAssign && opcode != BO_SubAssign) {
1943 unsupported(op);
1944 return NULL;
1946 if (opcode == BO_SubAssign)
1947 neg = true;
1949 lhs = op->getLHS();
1950 if (lhs->getStmtClass() != Stmt::DeclRefExprClass) {
1951 unsupported(op);
1952 return NULL;
1955 ref = cast<DeclRefExpr>(lhs);
1956 if (ref->getDecl() != iv) {
1957 unsupported(op);
1958 return NULL;
1961 val = extract_affine(op->getRHS());
1962 if (neg)
1963 val = isl_pw_aff_neg(val);
1965 return val;
1968 /* Check that the increment of the given for loop increments
1969 * (or decrements) the induction variable "iv" and return
1970 * the increment as an affine expression if successful.
1972 __isl_give isl_pw_aff *PetScan::extract_increment(clang::ForStmt *stmt,
1973 ValueDecl *iv)
1975 Stmt *inc = stmt->getInc();
1977 if (!inc) {
1978 unsupported(stmt);
1979 return NULL;
1982 if (inc->getStmtClass() == Stmt::UnaryOperatorClass)
1983 return extract_unary_increment(cast<UnaryOperator>(inc), iv);
1984 if (inc->getStmtClass() == Stmt::CompoundAssignOperatorClass)
1985 return extract_compound_increment(
1986 cast<CompoundAssignOperator>(inc), iv);
1987 if (inc->getStmtClass() == Stmt::BinaryOperatorClass)
1988 return extract_binary_increment(cast<BinaryOperator>(inc), iv);
1990 unsupported(inc);
1991 return NULL;
1994 /* Embed the given iteration domain in an extra outer loop
1995 * with induction variable "var".
1996 * If this variable appeared as a parameter in the constraints,
1997 * it is replaced by the new outermost dimension.
1999 static __isl_give isl_set *embed(__isl_take isl_set *set,
2000 __isl_take isl_id *var)
2002 int pos;
2004 set = isl_set_insert_dims(set, isl_dim_set, 0, 1);
2005 pos = isl_set_find_dim_by_id(set, isl_dim_param, var);
2006 if (pos >= 0) {
2007 set = isl_set_equate(set, isl_dim_param, pos, isl_dim_set, 0);
2008 set = isl_set_project_out(set, isl_dim_param, pos, 1);
2011 isl_id_free(var);
2012 return set;
2015 /* Return those elements in the space of "cond" that come after
2016 * (based on "sign") an element in "cond".
2018 static __isl_give isl_set *after(__isl_take isl_set *cond, int sign)
2020 isl_map *previous_to_this;
2022 if (sign > 0)
2023 previous_to_this = isl_map_lex_lt(isl_set_get_space(cond));
2024 else
2025 previous_to_this = isl_map_lex_gt(isl_set_get_space(cond));
2027 cond = isl_set_apply(cond, previous_to_this);
2029 return cond;
2032 /* Create the infinite iteration domain
2034 * { [id] : id >= 0 }
2036 * If "scop" has an affine skip of type pet_skip_later,
2037 * then remove those iterations i that have an earlier iteration
2038 * where the skip condition is satisfied, meaning that iteration i
2039 * is not executed.
2040 * Since we are dealing with a loop without loop iterator,
2041 * the skip condition cannot refer to the current loop iterator and
2042 * so effectively, the returned set is of the form
2044 * { [0]; [id] : id >= 1 and not skip }
2046 static __isl_give isl_set *infinite_domain(__isl_take isl_id *id,
2047 struct pet_scop *scop)
2049 isl_ctx *ctx = isl_id_get_ctx(id);
2050 isl_set *domain;
2051 isl_set *skip;
2053 domain = isl_set_nat_universe(isl_space_set_alloc(ctx, 0, 1));
2054 domain = isl_set_set_dim_id(domain, isl_dim_set, 0, id);
2056 if (!pet_scop_has_affine_skip(scop, pet_skip_later))
2057 return domain;
2059 skip = pet_scop_get_skip(scop, pet_skip_later);
2060 skip = isl_set_fix_si(skip, isl_dim_set, 0, 1);
2061 skip = isl_set_params(skip);
2062 skip = embed(skip, isl_id_copy(id));
2063 skip = isl_set_intersect(skip , isl_set_copy(domain));
2064 domain = isl_set_subtract(domain, after(skip, 1));
2066 return domain;
2069 /* Create an identity mapping on the space containing "domain".
2071 static __isl_give isl_map *identity_map(__isl_keep isl_set *domain)
2073 isl_space *space;
2074 isl_map *id;
2076 space = isl_space_map_from_set(isl_set_get_space(domain));
2077 id = isl_map_identity(space);
2079 return id;
2082 /* Add a filter to "scop" that imposes that it is only executed
2083 * when "break_access" has a zero value for all previous iterations
2084 * of "domain".
2086 * The input "break_access" has a zero-dimensional domain and range.
2088 static struct pet_scop *scop_add_break(struct pet_scop *scop,
2089 __isl_take isl_map *break_access, __isl_take isl_set *domain, int sign)
2091 isl_ctx *ctx = isl_set_get_ctx(domain);
2092 isl_id *id_test;
2093 isl_map *prev;
2095 id_test = isl_map_get_tuple_id(break_access, isl_dim_out);
2096 break_access = isl_map_add_dims(break_access, isl_dim_in, 1);
2097 break_access = isl_map_add_dims(break_access, isl_dim_out, 1);
2098 break_access = isl_map_intersect_range(break_access, domain);
2099 break_access = isl_map_set_tuple_id(break_access, isl_dim_out, id_test);
2100 if (sign > 0)
2101 prev = isl_map_lex_gt_first(isl_map_get_space(break_access), 1);
2102 else
2103 prev = isl_map_lex_lt_first(isl_map_get_space(break_access), 1);
2104 break_access = isl_map_intersect(break_access, prev);
2105 scop = pet_scop_filter(scop, break_access, 0);
2106 scop = pet_scop_merge_filters(scop);
2108 return scop;
2111 /* Construct a pet_scop for an infinite loop around the given body.
2113 * We extract a pet_scop for the body and then embed it in a loop with
2114 * iteration domain
2116 * { [t] : t >= 0 }
2118 * and schedule
2120 * { [t] -> [t] }
2122 * If the body contains any break, then it is taken into
2123 * account in infinite_domain (if the skip condition is affine)
2124 * or in scop_add_break (if the skip condition is not affine).
2126 struct pet_scop *PetScan::extract_infinite_loop(Stmt *body)
2128 isl_id *id;
2129 isl_set *domain;
2130 isl_map *ident;
2131 isl_map *access;
2132 struct pet_scop *scop;
2133 bool has_var_break;
2135 scop = extract(body);
2136 if (!scop)
2137 return NULL;
2139 id = isl_id_alloc(ctx, "t", NULL);
2140 domain = infinite_domain(isl_id_copy(id), scop);
2141 ident = identity_map(domain);
2143 has_var_break = pet_scop_has_var_skip(scop, pet_skip_later);
2144 if (has_var_break)
2145 access = pet_scop_get_skip_map(scop, pet_skip_later);
2147 scop = pet_scop_embed(scop, isl_set_copy(domain),
2148 isl_map_copy(ident), ident, id);
2149 if (has_var_break)
2150 scop = scop_add_break(scop, access, domain, 1);
2151 else
2152 isl_set_free(domain);
2154 return scop;
2157 /* Construct a pet_scop for an infinite loop, i.e., a loop of the form
2159 * for (;;)
2160 * body
2163 struct pet_scop *PetScan::extract_infinite_for(ForStmt *stmt)
2165 return extract_infinite_loop(stmt->getBody());
2168 /* Create an access to a virtual array representing the result
2169 * of a condition.
2170 * Unlike other accessed data, the id of the array is NULL as
2171 * there is no ValueDecl in the program corresponding to the virtual
2172 * array.
2173 * The array starts out as a scalar, but grows along with the
2174 * statement writing to the array in pet_scop_embed.
2176 static __isl_give isl_map *create_test_access(isl_ctx *ctx, int test_nr)
2178 isl_space *dim = isl_space_alloc(ctx, 0, 0, 0);
2179 isl_id *id;
2180 char name[50];
2182 snprintf(name, sizeof(name), "__pet_test_%d", test_nr);
2183 id = isl_id_alloc(ctx, name, NULL);
2184 dim = isl_space_set_tuple_id(dim, isl_dim_out, id);
2185 return isl_map_universe(dim);
2188 /* Add an array with the given extent ("access") to the list
2189 * of arrays in "scop" and return the extended pet_scop.
2190 * The array is marked as attaining values 0 and 1 only and
2191 * as each element being assigned at most once.
2193 static struct pet_scop *scop_add_array(struct pet_scop *scop,
2194 __isl_keep isl_map *access, clang::ASTContext &ast_ctx)
2196 isl_ctx *ctx = isl_map_get_ctx(access);
2197 isl_space *dim;
2198 struct pet_array *array;
2200 if (!scop)
2201 return NULL;
2202 if (!ctx)
2203 goto error;
2205 array = isl_calloc_type(ctx, struct pet_array);
2206 if (!array)
2207 goto error;
2209 array->extent = isl_map_range(isl_map_copy(access));
2210 dim = isl_space_params_alloc(ctx, 0);
2211 array->context = isl_set_universe(dim);
2212 dim = isl_space_set_alloc(ctx, 0, 1);
2213 array->value_bounds = isl_set_universe(dim);
2214 array->value_bounds = isl_set_lower_bound_si(array->value_bounds,
2215 isl_dim_set, 0, 0);
2216 array->value_bounds = isl_set_upper_bound_si(array->value_bounds,
2217 isl_dim_set, 0, 1);
2218 array->element_type = strdup("int");
2219 array->element_size = ast_ctx.getTypeInfo(ast_ctx.IntTy).first / 8;
2220 array->uniquely_defined = 1;
2222 if (!array->extent || !array->context)
2223 array = pet_array_free(array);
2225 scop = pet_scop_add_array(scop, array);
2227 return scop;
2228 error:
2229 pet_scop_free(scop);
2230 return NULL;
2233 /* Construct a pet_scop for a while loop of the form
2235 * while (pa)
2236 * body
2238 * In particular, construct a scop for an infinite loop around body and
2239 * intersect the domain with the affine expression.
2240 * Note that this intersection may result in an empty loop.
2242 struct pet_scop *PetScan::extract_affine_while(__isl_take isl_pw_aff *pa,
2243 Stmt *body)
2245 struct pet_scop *scop;
2246 isl_set *dom;
2247 isl_set *valid;
2249 valid = isl_pw_aff_domain(isl_pw_aff_copy(pa));
2250 dom = isl_pw_aff_non_zero_set(pa);
2251 scop = extract_infinite_loop(body);
2252 scop = pet_scop_restrict(scop, dom);
2253 scop = pet_scop_restrict_context(scop, valid);
2255 return scop;
2258 /* Construct a scop for a while, given the scops for the condition
2259 * and the body, the filter access and the iteration domain of
2260 * the while loop.
2262 * In particular, the scop for the condition is filtered to depend
2263 * on "test_access" evaluating to true for all previous iterations
2264 * of the loop, while the scop for the body is filtered to depend
2265 * on "test_access" evaluating to true for all iterations up to the
2266 * current iteration.
2268 * These filtered scops are then combined into a single scop.
2270 * "sign" is positive if the iterator increases and negative
2271 * if it decreases.
2273 static struct pet_scop *scop_add_while(struct pet_scop *scop_cond,
2274 struct pet_scop *scop_body, __isl_take isl_map *test_access,
2275 __isl_take isl_set *domain, int sign)
2277 isl_ctx *ctx = isl_set_get_ctx(domain);
2278 isl_id *id_test;
2279 isl_map *prev;
2281 id_test = isl_map_get_tuple_id(test_access, isl_dim_out);
2282 test_access = isl_map_add_dims(test_access, isl_dim_in, 1);
2283 test_access = isl_map_add_dims(test_access, isl_dim_out, 1);
2284 test_access = isl_map_intersect_range(test_access, domain);
2285 test_access = isl_map_set_tuple_id(test_access, isl_dim_out, id_test);
2286 if (sign > 0)
2287 prev = isl_map_lex_ge_first(isl_map_get_space(test_access), 1);
2288 else
2289 prev = isl_map_lex_le_first(isl_map_get_space(test_access), 1);
2290 test_access = isl_map_intersect(test_access, prev);
2291 scop_body = pet_scop_filter(scop_body, isl_map_copy(test_access), 1);
2292 if (sign > 0)
2293 prev = isl_map_lex_gt_first(isl_map_get_space(test_access), 1);
2294 else
2295 prev = isl_map_lex_lt_first(isl_map_get_space(test_access), 1);
2296 test_access = isl_map_intersect(test_access, prev);
2297 scop_cond = pet_scop_filter(scop_cond, test_access, 1);
2299 return pet_scop_add_seq(ctx, scop_cond, scop_body);
2302 /* Check if the while loop is of the form
2304 * while (affine expression)
2305 * body
2307 * If so, call extract_affine_while to construct a scop.
2309 * Otherwise, construct a generic while scop, with iteration domain
2310 * { [t] : t >= 0 }. The scop consists of two parts, one for
2311 * evaluating the condition and one for the body.
2312 * The schedule is adjusted to reflect that the condition is evaluated
2313 * before the body is executed and the body is filtered to depend
2314 * on the result of the condition evaluating to true on all iterations
2315 * up to the current iteration, while the evaluation the condition itself
2316 * is filtered to depend on the result of the condition evaluating to true
2317 * on all previous iterations.
2318 * The context of the scop representing the body is dropped
2319 * because we don't know how many times the body will be executed,
2320 * if at all.
2322 * If the body contains any break, then it is taken into
2323 * account in infinite_domain (if the skip condition is affine)
2324 * or in scop_add_break (if the skip condition is not affine).
2326 struct pet_scop *PetScan::extract(WhileStmt *stmt)
2328 Expr *cond;
2329 isl_id *id;
2330 isl_map *test_access;
2331 isl_set *domain;
2332 isl_map *ident;
2333 isl_pw_aff *pa;
2334 struct pet_scop *scop, *scop_body;
2335 bool has_var_break;
2336 isl_map *break_access;
2338 cond = stmt->getCond();
2339 if (!cond) {
2340 unsupported(stmt);
2341 return NULL;
2344 clear_assignments clear(assigned_value);
2345 clear.TraverseStmt(stmt->getBody());
2347 pa = try_extract_affine_condition(cond);
2348 if (pa)
2349 return extract_affine_while(pa, stmt->getBody());
2351 if (!allow_nested) {
2352 unsupported(stmt);
2353 return NULL;
2356 test_access = create_test_access(ctx, n_test++);
2357 scop = extract_non_affine_condition(cond, isl_map_copy(test_access));
2358 scop = scop_add_array(scop, test_access, ast_context);
2359 scop_body = extract(stmt->getBody());
2361 id = isl_id_alloc(ctx, "t", NULL);
2362 domain = infinite_domain(isl_id_copy(id), scop_body);
2363 ident = identity_map(domain);
2365 has_var_break = pet_scop_has_var_skip(scop_body, pet_skip_later);
2366 if (has_var_break)
2367 break_access = pet_scop_get_skip_map(scop_body, pet_skip_later);
2369 scop = pet_scop_prefix(scop, 0);
2370 scop = pet_scop_embed(scop, isl_set_copy(domain), isl_map_copy(ident),
2371 isl_map_copy(ident), isl_id_copy(id));
2372 scop_body = pet_scop_reset_context(scop_body);
2373 scop_body = pet_scop_prefix(scop_body, 1);
2374 scop_body = pet_scop_embed(scop_body, isl_set_copy(domain),
2375 isl_map_copy(ident), ident, id);
2377 if (has_var_break) {
2378 scop = scop_add_break(scop, isl_map_copy(break_access),
2379 isl_set_copy(domain), 1);
2380 scop_body = scop_add_break(scop_body, break_access,
2381 isl_set_copy(domain), 1);
2383 scop = scop_add_while(scop, scop_body, test_access, domain, 1);
2385 return scop;
2388 /* Check whether "cond" expresses a simple loop bound
2389 * on the only set dimension.
2390 * In particular, if "up" is set then "cond" should contain only
2391 * upper bounds on the set dimension.
2392 * Otherwise, it should contain only lower bounds.
2394 static bool is_simple_bound(__isl_keep isl_set *cond, __isl_keep isl_val *inc)
2396 if (isl_val_is_pos(inc))
2397 return !isl_set_dim_has_any_lower_bound(cond, isl_dim_set, 0);
2398 else
2399 return !isl_set_dim_has_any_upper_bound(cond, isl_dim_set, 0);
2402 /* Extend a condition on a given iteration of a loop to one that
2403 * imposes the same condition on all previous iterations.
2404 * "domain" expresses the lower [upper] bound on the iterations
2405 * when inc is positive [negative].
2407 * In particular, we construct the condition (when inc is positive)
2409 * forall i' : (domain(i') and i' <= i) => cond(i')
2411 * which is equivalent to
2413 * not exists i' : domain(i') and i' <= i and not cond(i')
2415 * We construct this set by negating cond, applying a map
2417 * { [i'] -> [i] : domain(i') and i' <= i }
2419 * and then negating the result again.
2421 static __isl_give isl_set *valid_for_each_iteration(__isl_take isl_set *cond,
2422 __isl_take isl_set *domain, __isl_take isl_val *inc)
2424 isl_map *previous_to_this;
2426 if (isl_val_is_pos(inc))
2427 previous_to_this = isl_map_lex_le(isl_set_get_space(domain));
2428 else
2429 previous_to_this = isl_map_lex_ge(isl_set_get_space(domain));
2431 previous_to_this = isl_map_intersect_domain(previous_to_this, domain);
2433 cond = isl_set_complement(cond);
2434 cond = isl_set_apply(cond, previous_to_this);
2435 cond = isl_set_complement(cond);
2437 isl_val_free(inc);
2439 return cond;
2442 /* Construct a domain of the form
2444 * [id] -> { : exists a: id = init + a * inc and a >= 0 }
2446 static __isl_give isl_set *strided_domain(__isl_take isl_id *id,
2447 __isl_take isl_pw_aff *init, __isl_take isl_val *inc)
2449 isl_aff *aff;
2450 isl_space *dim;
2451 isl_set *set;
2453 init = isl_pw_aff_insert_dims(init, isl_dim_in, 0, 1);
2454 dim = isl_pw_aff_get_domain_space(init);
2455 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
2456 aff = isl_aff_add_coefficient_val(aff, isl_dim_in, 0, inc);
2457 init = isl_pw_aff_add(init, isl_pw_aff_from_aff(aff));
2459 dim = isl_space_set_alloc(isl_pw_aff_get_ctx(init), 1, 1);
2460 dim = isl_space_set_dim_id(dim, isl_dim_param, 0, id);
2461 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
2462 aff = isl_aff_add_coefficient_si(aff, isl_dim_param, 0, 1);
2464 set = isl_pw_aff_eq_set(isl_pw_aff_from_aff(aff), init);
2466 set = isl_set_lower_bound_si(set, isl_dim_set, 0, 0);
2468 return isl_set_params(set);
2471 /* Assuming "cond" represents a bound on a loop where the loop
2472 * iterator "iv" is incremented (or decremented) by one, check if wrapping
2473 * is possible.
2475 * Under the given assumptions, wrapping is only possible if "cond" allows
2476 * for the last value before wrapping, i.e., 2^width - 1 in case of an
2477 * increasing iterator and 0 in case of a decreasing iterator.
2479 static bool can_wrap(__isl_keep isl_set *cond, ValueDecl *iv,
2480 __isl_keep isl_val *inc)
2482 bool cw;
2483 isl_ctx *ctx;
2484 isl_val *limit;
2485 isl_set *test;
2487 test = isl_set_copy(cond);
2489 ctx = isl_set_get_ctx(test);
2490 if (isl_val_is_neg(inc))
2491 limit = isl_val_zero(ctx);
2492 else {
2493 limit = isl_val_int_from_ui(ctx, get_type_size(iv));
2494 limit = isl_val_2exp(limit);
2495 limit = isl_val_sub_ui(limit, 1);
2498 test = isl_set_fix_val(cond, isl_dim_set, 0, limit);
2499 cw = !isl_set_is_empty(test);
2500 isl_set_free(test);
2502 return cw;
2505 /* Given a one-dimensional space, construct the following mapping on this
2506 * space
2508 * { [v] -> [v mod 2^width] }
2510 * where width is the number of bits used to represent the values
2511 * of the unsigned variable "iv".
2513 static __isl_give isl_map *compute_wrapping(__isl_take isl_space *dim,
2514 ValueDecl *iv)
2516 isl_ctx *ctx;
2517 isl_val *mod;
2518 isl_aff *aff;
2519 isl_map *map;
2521 ctx = isl_space_get_ctx(dim);
2522 mod = isl_val_int_from_ui(ctx, get_type_size(iv));
2523 mod = isl_val_2exp(mod);
2525 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
2526 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, 0, 1);
2527 aff = isl_aff_mod_val(aff, mod);
2529 return isl_map_from_basic_map(isl_basic_map_from_aff(aff));
2530 map = isl_map_reverse(map);
2533 /* Project out the parameter "id" from "set".
2535 static __isl_give isl_set *set_project_out_by_id(__isl_take isl_set *set,
2536 __isl_keep isl_id *id)
2538 int pos;
2540 pos = isl_set_find_dim_by_id(set, isl_dim_param, id);
2541 if (pos >= 0)
2542 set = isl_set_project_out(set, isl_dim_param, pos, 1);
2544 return set;
2547 /* Compute the set of parameters for which "set1" is a subset of "set2".
2549 * set1 is a subset of set2 if
2551 * forall i in set1 : i in set2
2553 * or
2555 * not exists i in set1 and i not in set2
2557 * i.e.,
2559 * not exists i in set1 \ set2
2561 static __isl_give isl_set *enforce_subset(__isl_take isl_set *set1,
2562 __isl_take isl_set *set2)
2564 return isl_set_complement(isl_set_params(isl_set_subtract(set1, set2)));
2567 /* Compute the set of parameter values for which "cond" holds
2568 * on the next iteration for each element of "dom".
2570 * We first construct mapping { [i] -> [i + inc] }, apply that to "dom"
2571 * and then compute the set of parameters for which the result is a subset
2572 * of "cond".
2574 static __isl_give isl_set *valid_on_next(__isl_take isl_set *cond,
2575 __isl_take isl_set *dom, __isl_take isl_val *inc)
2577 isl_space *space;
2578 isl_aff *aff;
2579 isl_map *next;
2581 space = isl_set_get_space(dom);
2582 aff = isl_aff_zero_on_domain(isl_local_space_from_space(space));
2583 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, 0, 1);
2584 aff = isl_aff_add_constant_val(aff, inc);
2585 next = isl_map_from_basic_map(isl_basic_map_from_aff(aff));
2587 dom = isl_set_apply(dom, next);
2589 return enforce_subset(dom, cond);
2592 /* Does "id" refer to a nested access?
2594 static bool is_nested_parameter(__isl_keep isl_id *id)
2596 return id && isl_id_get_user(id) && !isl_id_get_name(id);
2599 /* Does parameter "pos" of "space" refer to a nested access?
2601 static bool is_nested_parameter(__isl_keep isl_space *space, int pos)
2603 bool nested;
2604 isl_id *id;
2606 id = isl_space_get_dim_id(space, isl_dim_param, pos);
2607 nested = is_nested_parameter(id);
2608 isl_id_free(id);
2610 return nested;
2613 /* Does "space" involve any parameters that refer to nested
2614 * accesses, i.e., parameters with no name?
2616 static bool has_nested(__isl_keep isl_space *space)
2618 int nparam;
2620 nparam = isl_space_dim(space, isl_dim_param);
2621 for (int i = 0; i < nparam; ++i)
2622 if (is_nested_parameter(space, i))
2623 return true;
2625 return false;
2628 /* Does "pa" involve any parameters that refer to nested
2629 * accesses, i.e., parameters with no name?
2631 static bool has_nested(__isl_keep isl_pw_aff *pa)
2633 isl_space *space;
2634 bool nested;
2636 space = isl_pw_aff_get_space(pa);
2637 nested = has_nested(space);
2638 isl_space_free(space);
2640 return nested;
2643 /* Construct a pet_scop for a for statement.
2644 * The for loop is required to be of the form
2646 * for (i = init; condition; ++i)
2648 * or
2650 * for (i = init; condition; --i)
2652 * The initialization of the for loop should either be an assignment
2653 * to an integer variable, or a declaration of such a variable with
2654 * initialization.
2656 * The condition is allowed to contain nested accesses, provided
2657 * they are not being written to inside the body of the loop.
2658 * Otherwise, or if the condition is otherwise non-affine, the for loop is
2659 * essentially treated as a while loop, with iteration domain
2660 * { [i] : i >= init }.
2662 * We extract a pet_scop for the body and then embed it in a loop with
2663 * iteration domain and schedule
2665 * { [i] : i >= init and condition' }
2666 * { [i] -> [i] }
2668 * or
2670 * { [i] : i <= init and condition' }
2671 * { [i] -> [-i] }
2673 * Where condition' is equal to condition if the latter is
2674 * a simple upper [lower] bound and a condition that is extended
2675 * to apply to all previous iterations otherwise.
2677 * If the condition is non-affine, then we drop the condition from the
2678 * iteration domain and instead create a separate statement
2679 * for evaluating the condition. The body is then filtered to depend
2680 * on the result of the condition evaluating to true on all iterations
2681 * up to the current iteration, while the evaluation the condition itself
2682 * is filtered to depend on the result of the condition evaluating to true
2683 * on all previous iterations.
2684 * The context of the scop representing the body is dropped
2685 * because we don't know how many times the body will be executed,
2686 * if at all.
2688 * If the stride of the loop is not 1, then "i >= init" is replaced by
2690 * (exists a: i = init + stride * a and a >= 0)
2692 * If the loop iterator i is unsigned, then wrapping may occur.
2693 * During the computation, we work with a virtual iterator that
2694 * does not wrap. However, the condition in the code applies
2695 * to the wrapped value, so we need to change condition(i)
2696 * into condition([i % 2^width]).
2697 * After computing the virtual domain and schedule, we apply
2698 * the function { [v] -> [v % 2^width] } to the domain and the domain
2699 * of the schedule. In order not to lose any information, we also
2700 * need to intersect the domain of the schedule with the virtual domain
2701 * first, since some iterations in the wrapped domain may be scheduled
2702 * several times, typically an infinite number of times.
2703 * Note that there may be no need to perform this final wrapping
2704 * if the loop condition (after wrapping) satisfies certain conditions.
2705 * However, the is_simple_bound condition is not enough since it doesn't
2706 * check if there even is an upper bound.
2708 * If the loop condition is non-affine, then we keep the virtual
2709 * iterator in the iteration domain and instead replace all accesses
2710 * to the original iterator by the wrapping of the virtual iterator.
2712 * Wrapping on unsigned iterators can be avoided entirely if
2713 * loop condition is simple, the loop iterator is incremented
2714 * [decremented] by one and the last value before wrapping cannot
2715 * possibly satisfy the loop condition.
2717 * Before extracting a pet_scop from the body we remove all
2718 * assignments in assigned_value to variables that are assigned
2719 * somewhere in the body of the loop.
2721 * Valid parameters for a for loop are those for which the initial
2722 * value itself, the increment on each domain iteration and
2723 * the condition on both the initial value and
2724 * the result of incrementing the iterator for each iteration of the domain
2725 * can be evaluated.
2726 * If the loop condition is non-affine, then we only consider validity
2727 * of the initial value.
2729 * If the body contains any break, then we keep track of it in "skip"
2730 * (if the skip condition is affine) or it is handled in scop_add_break
2731 * (if the skip condition is not affine).
2732 * Note that the affine break condition needs to be considered with
2733 * respect to previous iterations in the virtual domain (if any)
2734 * and that the domain needs to be kept virtual if there is a non-affine
2735 * break condition.
2737 struct pet_scop *PetScan::extract_for(ForStmt *stmt)
2739 BinaryOperator *ass;
2740 Decl *decl;
2741 Stmt *init;
2742 Expr *lhs, *rhs;
2743 ValueDecl *iv;
2744 isl_space *space;
2745 isl_set *domain;
2746 isl_map *sched;
2747 isl_set *cond = NULL;
2748 isl_set *skip = NULL;
2749 isl_id *id;
2750 struct pet_scop *scop, *scop_cond = NULL;
2751 assigned_value_cache cache(assigned_value);
2752 isl_val *inc;
2753 bool is_one;
2754 bool is_unsigned;
2755 bool is_simple;
2756 bool is_virtual;
2757 bool keep_virtual = false;
2758 bool has_affine_break;
2759 bool has_var_break;
2760 isl_map *wrap = NULL;
2761 isl_pw_aff *pa, *pa_inc, *init_val;
2762 isl_set *valid_init;
2763 isl_set *valid_cond;
2764 isl_set *valid_cond_init;
2765 isl_set *valid_cond_next;
2766 isl_set *valid_inc;
2767 isl_map *test_access = NULL, *break_access = NULL;
2768 int stmt_id;
2770 if (!stmt->getInit() && !stmt->getCond() && !stmt->getInc())
2771 return extract_infinite_for(stmt);
2773 init = stmt->getInit();
2774 if (!init) {
2775 unsupported(stmt);
2776 return NULL;
2778 if ((ass = initialization_assignment(init)) != NULL) {
2779 iv = extract_induction_variable(ass);
2780 if (!iv)
2781 return NULL;
2782 lhs = ass->getLHS();
2783 rhs = ass->getRHS();
2784 } else if ((decl = initialization_declaration(init)) != NULL) {
2785 VarDecl *var = extract_induction_variable(init, decl);
2786 if (!var)
2787 return NULL;
2788 iv = var;
2789 rhs = var->getInit();
2790 lhs = create_DeclRefExpr(var);
2791 } else {
2792 unsupported(stmt->getInit());
2793 return NULL;
2796 pa_inc = extract_increment(stmt, iv);
2797 if (!pa_inc)
2798 return NULL;
2800 inc = NULL;
2801 if (isl_pw_aff_n_piece(pa_inc) != 1 ||
2802 isl_pw_aff_foreach_piece(pa_inc, &extract_cst, &inc) < 0) {
2803 isl_pw_aff_free(pa_inc);
2804 unsupported(stmt->getInc());
2805 isl_val_free(inc);
2806 return NULL;
2808 valid_inc = isl_pw_aff_domain(pa_inc);
2810 is_unsigned = iv->getType()->isUnsignedIntegerType();
2812 assigned_value.erase(iv);
2813 clear_assignments clear(assigned_value);
2814 clear.TraverseStmt(stmt->getBody());
2816 id = isl_id_alloc(ctx, iv->getName().str().c_str(), iv);
2818 pa = try_extract_nested_condition(stmt->getCond());
2819 if (allow_nested && (!pa || has_nested(pa)))
2820 stmt_id = n_stmt++;
2822 scop = extract(stmt->getBody());
2824 has_affine_break = scop &&
2825 pet_scop_has_affine_skip(scop, pet_skip_later);
2826 if (has_affine_break) {
2827 skip = pet_scop_get_skip(scop, pet_skip_later);
2828 skip = isl_set_fix_si(skip, isl_dim_set, 0, 1);
2829 skip = isl_set_params(skip);
2831 has_var_break = scop && pet_scop_has_var_skip(scop, pet_skip_later);
2832 if (has_var_break) {
2833 break_access = pet_scop_get_skip_map(scop, pet_skip_later);
2834 keep_virtual = true;
2837 if (pa && !is_nested_allowed(pa, scop)) {
2838 isl_pw_aff_free(pa);
2839 pa = NULL;
2842 if (!allow_nested && !pa)
2843 pa = try_extract_affine_condition(stmt->getCond());
2844 valid_cond = isl_pw_aff_domain(isl_pw_aff_copy(pa));
2845 cond = isl_pw_aff_non_zero_set(pa);
2846 if (allow_nested && !cond) {
2847 int save_n_stmt = n_stmt;
2848 test_access = create_test_access(ctx, n_test++);
2849 n_stmt = stmt_id;
2850 scop_cond = extract_non_affine_condition(stmt->getCond(),
2851 isl_map_copy(test_access));
2852 n_stmt = save_n_stmt;
2853 scop_cond = scop_add_array(scop_cond, test_access, ast_context);
2854 scop_cond = pet_scop_prefix(scop_cond, 0);
2855 scop = pet_scop_reset_context(scop);
2856 scop = pet_scop_prefix(scop, 1);
2857 keep_virtual = true;
2858 cond = isl_set_universe(isl_space_set_alloc(ctx, 0, 0));
2861 cond = embed(cond, isl_id_copy(id));
2862 skip = embed(skip, isl_id_copy(id));
2863 valid_cond = isl_set_coalesce(valid_cond);
2864 valid_cond = embed(valid_cond, isl_id_copy(id));
2865 valid_inc = embed(valid_inc, isl_id_copy(id));
2866 is_one = isl_val_is_one(inc) || isl_val_is_negone(inc);
2867 is_virtual = is_unsigned && (!is_one || can_wrap(cond, iv, inc));
2869 init_val = extract_affine(rhs);
2870 valid_cond_init = enforce_subset(
2871 isl_set_from_pw_aff(isl_pw_aff_copy(init_val)),
2872 isl_set_copy(valid_cond));
2873 if (is_one && !is_virtual) {
2874 isl_pw_aff_free(init_val);
2875 pa = extract_comparison(isl_val_is_pos(inc) ? BO_GE : BO_LE,
2876 lhs, rhs, init);
2877 valid_init = isl_pw_aff_domain(isl_pw_aff_copy(pa));
2878 valid_init = set_project_out_by_id(valid_init, id);
2879 domain = isl_pw_aff_non_zero_set(pa);
2880 } else {
2881 valid_init = isl_pw_aff_domain(isl_pw_aff_copy(init_val));
2882 domain = strided_domain(isl_id_copy(id), init_val,
2883 isl_val_copy(inc));
2886 domain = embed(domain, isl_id_copy(id));
2887 if (is_virtual) {
2888 isl_map *rev_wrap;
2889 wrap = compute_wrapping(isl_set_get_space(cond), iv);
2890 rev_wrap = isl_map_reverse(isl_map_copy(wrap));
2891 cond = isl_set_apply(cond, isl_map_copy(rev_wrap));
2892 skip = isl_set_apply(skip, isl_map_copy(rev_wrap));
2893 valid_cond = isl_set_apply(valid_cond, isl_map_copy(rev_wrap));
2894 valid_inc = isl_set_apply(valid_inc, rev_wrap);
2896 is_simple = is_simple_bound(cond, inc);
2897 if (!is_simple) {
2898 cond = isl_set_gist(cond, isl_set_copy(domain));
2899 is_simple = is_simple_bound(cond, inc);
2901 if (!is_simple)
2902 cond = valid_for_each_iteration(cond,
2903 isl_set_copy(domain), isl_val_copy(inc));
2904 domain = isl_set_intersect(domain, cond);
2905 if (has_affine_break) {
2906 skip = isl_set_intersect(skip , isl_set_copy(domain));
2907 skip = after(skip, isl_val_sgn(inc));
2908 domain = isl_set_subtract(domain, skip);
2910 domain = isl_set_set_dim_id(domain, isl_dim_set, 0, isl_id_copy(id));
2911 space = isl_space_from_domain(isl_set_get_space(domain));
2912 space = isl_space_add_dims(space, isl_dim_out, 1);
2913 sched = isl_map_universe(space);
2914 if (isl_val_is_pos(inc))
2915 sched = isl_map_equate(sched, isl_dim_in, 0, isl_dim_out, 0);
2916 else
2917 sched = isl_map_oppose(sched, isl_dim_in, 0, isl_dim_out, 0);
2919 valid_cond_next = valid_on_next(valid_cond, isl_set_copy(domain),
2920 isl_val_copy(inc));
2921 valid_inc = enforce_subset(isl_set_copy(domain), valid_inc);
2923 if (is_virtual && !keep_virtual) {
2924 wrap = isl_map_set_dim_id(wrap,
2925 isl_dim_out, 0, isl_id_copy(id));
2926 sched = isl_map_intersect_domain(sched, isl_set_copy(domain));
2927 domain = isl_set_apply(domain, isl_map_copy(wrap));
2928 sched = isl_map_apply_domain(sched, wrap);
2930 if (!(is_virtual && keep_virtual)) {
2931 space = isl_set_get_space(domain);
2932 wrap = isl_map_identity(isl_space_map_from_set(space));
2935 scop_cond = pet_scop_embed(scop_cond, isl_set_copy(domain),
2936 isl_map_copy(sched), isl_map_copy(wrap), isl_id_copy(id));
2937 scop = pet_scop_embed(scop, isl_set_copy(domain), sched, wrap, id);
2938 scop = resolve_nested(scop);
2939 if (has_var_break)
2940 scop = scop_add_break(scop, break_access, isl_set_copy(domain),
2941 isl_val_sgn(inc));
2942 if (test_access) {
2943 scop = scop_add_while(scop_cond, scop, test_access, domain,
2944 isl_val_sgn(inc));
2945 isl_set_free(valid_inc);
2946 } else {
2947 scop = pet_scop_restrict_context(scop, valid_inc);
2948 scop = pet_scop_restrict_context(scop, valid_cond_next);
2949 scop = pet_scop_restrict_context(scop, valid_cond_init);
2950 isl_set_free(domain);
2952 clear_assignment(assigned_value, iv);
2954 isl_val_free(inc);
2956 scop = pet_scop_restrict_context(scop, valid_init);
2958 return scop;
2961 struct pet_scop *PetScan::extract(CompoundStmt *stmt, bool skip_declarations)
2963 return extract(stmt->children(), true, skip_declarations);
2966 /* Does parameter "pos" of "map" refer to a nested access?
2968 static bool is_nested_parameter(__isl_keep isl_map *map, int pos)
2970 bool nested;
2971 isl_id *id;
2973 id = isl_map_get_dim_id(map, isl_dim_param, pos);
2974 nested = is_nested_parameter(id);
2975 isl_id_free(id);
2977 return nested;
2980 /* How many parameters of "space" refer to nested accesses, i.e., have no name?
2982 static int n_nested_parameter(__isl_keep isl_space *space)
2984 int n = 0;
2985 int nparam;
2987 nparam = isl_space_dim(space, isl_dim_param);
2988 for (int i = 0; i < nparam; ++i)
2989 if (is_nested_parameter(space, i))
2990 ++n;
2992 return n;
2995 /* How many parameters of "map" refer to nested accesses, i.e., have no name?
2997 static int n_nested_parameter(__isl_keep isl_map *map)
2999 isl_space *space;
3000 int n;
3002 space = isl_map_get_space(map);
3003 n = n_nested_parameter(space);
3004 isl_space_free(space);
3006 return n;
3009 /* For each nested access parameter in "space",
3010 * construct a corresponding pet_expr, place it in args and
3011 * record its position in "param2pos".
3012 * "n_arg" is the number of elements that are already in args.
3013 * The position recorded in "param2pos" takes this number into account.
3014 * If the pet_expr corresponding to a parameter is identical to
3015 * the pet_expr corresponding to an earlier parameter, then these two
3016 * parameters are made to refer to the same element in args.
3018 * Return the final number of elements in args or -1 if an error has occurred.
3020 int PetScan::extract_nested(__isl_keep isl_space *space,
3021 int n_arg, struct pet_expr **args, std::map<int,int> &param2pos)
3023 int nparam;
3025 nparam = isl_space_dim(space, isl_dim_param);
3026 for (int i = 0; i < nparam; ++i) {
3027 int j;
3028 isl_id *id = isl_space_get_dim_id(space, isl_dim_param, i);
3029 Expr *nested;
3031 if (!is_nested_parameter(id)) {
3032 isl_id_free(id);
3033 continue;
3036 nested = (Expr *) isl_id_get_user(id);
3037 args[n_arg] = extract_expr(nested);
3038 if (!args[n_arg])
3039 return -1;
3041 for (j = 0; j < n_arg; ++j)
3042 if (pet_expr_is_equal(args[j], args[n_arg]))
3043 break;
3045 if (j < n_arg) {
3046 pet_expr_free(args[n_arg]);
3047 args[n_arg] = NULL;
3048 param2pos[i] = j;
3049 } else
3050 param2pos[i] = n_arg++;
3052 isl_id_free(id);
3055 return n_arg;
3058 /* For each nested access parameter in the access relations in "expr",
3059 * construct a corresponding pet_expr, place it in expr->args and
3060 * record its position in "param2pos".
3061 * n is the number of nested access parameters.
3063 struct pet_expr *PetScan::extract_nested(struct pet_expr *expr, int n,
3064 std::map<int,int> &param2pos)
3066 isl_space *space;
3068 expr->args = isl_calloc_array(ctx, struct pet_expr *, n);
3069 expr->n_arg = n;
3070 if (!expr->args)
3071 goto error;
3073 space = isl_map_get_space(expr->acc.access);
3074 n = extract_nested(space, 0, expr->args, param2pos);
3075 isl_space_free(space);
3077 if (n < 0)
3078 goto error;
3080 expr->n_arg = n;
3081 return expr;
3082 error:
3083 pet_expr_free(expr);
3084 return NULL;
3087 /* Look for parameters in any access relation in "expr" that
3088 * refer to nested accesses. In particular, these are
3089 * parameters with no name.
3091 * If there are any such parameters, then the domain of the access
3092 * relation, which is still [] at this point, is replaced by
3093 * [[] -> [t_1,...,t_n]], with n the number of these parameters
3094 * (after identifying identical nested accesses).
3095 * The parameters are then equated to the corresponding t dimensions
3096 * and subsequently projected out.
3097 * param2pos maps the position of the parameter to the position
3098 * of the corresponding t dimension.
3100 struct pet_expr *PetScan::resolve_nested(struct pet_expr *expr)
3102 int n;
3103 int nparam;
3104 int n_in;
3105 isl_space *dim;
3106 isl_map *map;
3107 std::map<int,int> param2pos;
3109 if (!expr)
3110 return expr;
3112 for (int i = 0; i < expr->n_arg; ++i) {
3113 expr->args[i] = resolve_nested(expr->args[i]);
3114 if (!expr->args[i]) {
3115 pet_expr_free(expr);
3116 return NULL;
3120 if (expr->type != pet_expr_access)
3121 return expr;
3123 n = n_nested_parameter(expr->acc.access);
3124 if (n == 0)
3125 return expr;
3127 expr = extract_nested(expr, n, param2pos);
3128 if (!expr)
3129 return NULL;
3131 n = expr->n_arg;
3132 nparam = isl_map_dim(expr->acc.access, isl_dim_param);
3133 n_in = isl_map_dim(expr->acc.access, isl_dim_in);
3134 dim = isl_map_get_space(expr->acc.access);
3135 dim = isl_space_domain(dim);
3136 dim = isl_space_from_domain(dim);
3137 dim = isl_space_add_dims(dim, isl_dim_out, n);
3138 map = isl_map_universe(dim);
3139 map = isl_map_domain_map(map);
3140 map = isl_map_reverse(map);
3141 expr->acc.access = isl_map_apply_domain(expr->acc.access, map);
3143 for (int i = nparam - 1; i >= 0; --i) {
3144 isl_id *id = isl_map_get_dim_id(expr->acc.access,
3145 isl_dim_param, i);
3146 if (!is_nested_parameter(id)) {
3147 isl_id_free(id);
3148 continue;
3151 expr->acc.access = isl_map_equate(expr->acc.access,
3152 isl_dim_param, i, isl_dim_in,
3153 n_in + param2pos[i]);
3154 expr->acc.access = isl_map_project_out(expr->acc.access,
3155 isl_dim_param, i, 1);
3157 isl_id_free(id);
3160 return expr;
3161 error:
3162 pet_expr_free(expr);
3163 return NULL;
3166 /* Return the file offset of the expansion location of "Loc".
3168 static unsigned getExpansionOffset(SourceManager &SM, SourceLocation Loc)
3170 return SM.getFileOffset(SM.getExpansionLoc(Loc));
3173 #ifdef HAVE_FINDLOCATIONAFTERTOKEN
3175 /* Return a SourceLocation for the location after the first semicolon
3176 * after "loc". If Lexer::findLocationAfterToken is available, we simply
3177 * call it and also skip trailing spaces and newline.
3179 static SourceLocation location_after_semi(SourceLocation loc, SourceManager &SM,
3180 const LangOptions &LO)
3182 return Lexer::findLocationAfterToken(loc, tok::semi, SM, LO, true);
3185 #else
3187 /* Return a SourceLocation for the location after the first semicolon
3188 * after "loc". If Lexer::findLocationAfterToken is not available,
3189 * we look in the underlying character data for the first semicolon.
3191 static SourceLocation location_after_semi(SourceLocation loc, SourceManager &SM,
3192 const LangOptions &LO)
3194 const char *semi;
3195 const char *s = SM.getCharacterData(loc);
3197 semi = strchr(s, ';');
3198 if (!semi)
3199 return SourceLocation();
3200 return loc.getFileLocWithOffset(semi + 1 - s);
3203 #endif
3205 /* If the token at "loc" is the first token on the line, then return
3206 * a location referring to the start of the line.
3207 * Otherwise, return "loc".
3209 * This function is used to extend a scop to the start of the line
3210 * if the first token of the scop is also the first token on the line.
3212 * We look for the first token on the line. If its location is equal to "loc",
3213 * then the latter is the location of the first token on the line.
3215 static SourceLocation move_to_start_of_line_if_first_token(SourceLocation loc,
3216 SourceManager &SM, const LangOptions &LO)
3218 std::pair<FileID, unsigned> file_offset_pair;
3219 llvm::StringRef file;
3220 const char *pos;
3221 Token tok;
3222 SourceLocation token_loc, line_loc;
3223 int col;
3225 loc = SM.getExpansionLoc(loc);
3226 col = SM.getExpansionColumnNumber(loc);
3227 line_loc = loc.getLocWithOffset(1 - col);
3228 file_offset_pair = SM.getDecomposedLoc(line_loc);
3229 file = SM.getBufferData(file_offset_pair.first, NULL);
3230 pos = file.data() + file_offset_pair.second;
3232 Lexer lexer(SM.getLocForStartOfFile(file_offset_pair.first), LO,
3233 file.begin(), pos, file.end());
3234 lexer.LexFromRawLexer(tok);
3235 token_loc = tok.getLocation();
3237 if (token_loc == loc)
3238 return line_loc;
3239 else
3240 return loc;
3243 /* Convert a top-level pet_expr to a pet_scop with one statement.
3244 * This mainly involves resolving nested expression parameters
3245 * and setting the name of the iteration space.
3246 * The name is given by "label" if it is non-NULL. Otherwise,
3247 * it is of the form S_<n_stmt>.
3248 * start and end of the pet_scop are derived from those of "stmt".
3250 struct pet_scop *PetScan::extract(Stmt *stmt, struct pet_expr *expr,
3251 __isl_take isl_id *label)
3253 struct pet_stmt *ps;
3254 struct pet_scop *scop;
3255 SourceLocation loc = stmt->getLocStart();
3256 SourceManager &SM = PP.getSourceManager();
3257 const LangOptions &LO = PP.getLangOpts();
3258 int line = PP.getSourceManager().getExpansionLineNumber(loc);
3259 unsigned start, end;
3261 expr = resolve_nested(expr);
3262 ps = pet_stmt_from_pet_expr(ctx, line, label, n_stmt++, expr);
3263 scop = pet_scop_from_pet_stmt(ctx, ps);
3265 loc = move_to_start_of_line_if_first_token(loc, SM, LO);
3266 start = getExpansionOffset(SM, loc);
3267 loc = stmt->getLocEnd();
3268 loc = location_after_semi(loc, SM, LO);
3269 end = getExpansionOffset(SM, loc);
3271 scop = pet_scop_update_start_end(scop, start, end);
3272 return scop;
3275 /* Check if we can extract an affine expression from "expr".
3276 * Return the expressions as an isl_pw_aff if we can and NULL otherwise.
3277 * We turn on autodetection so that we won't generate any warnings
3278 * and turn off nesting, so that we won't accept any non-affine constructs.
3280 __isl_give isl_pw_aff *PetScan::try_extract_affine(Expr *expr)
3282 isl_pw_aff *pwaff;
3283 int save_autodetect = options->autodetect;
3284 bool save_nesting = nesting_enabled;
3286 options->autodetect = 1;
3287 nesting_enabled = false;
3289 pwaff = extract_affine(expr);
3291 options->autodetect = save_autodetect;
3292 nesting_enabled = save_nesting;
3294 return pwaff;
3297 /* Check whether "expr" is an affine expression.
3299 bool PetScan::is_affine(Expr *expr)
3301 isl_pw_aff *pwaff;
3303 pwaff = try_extract_affine(expr);
3304 isl_pw_aff_free(pwaff);
3306 return pwaff != NULL;
3309 /* Check if we can extract an affine constraint from "expr".
3310 * Return the constraint as an isl_set if we can and NULL otherwise.
3311 * We turn on autodetection so that we won't generate any warnings
3312 * and turn off nesting, so that we won't accept any non-affine constructs.
3314 __isl_give isl_pw_aff *PetScan::try_extract_affine_condition(Expr *expr)
3316 isl_pw_aff *cond;
3317 int save_autodetect = options->autodetect;
3318 bool save_nesting = nesting_enabled;
3320 options->autodetect = 1;
3321 nesting_enabled = false;
3323 cond = extract_condition(expr);
3325 options->autodetect = save_autodetect;
3326 nesting_enabled = save_nesting;
3328 return cond;
3331 /* Check whether "expr" is an affine constraint.
3333 bool PetScan::is_affine_condition(Expr *expr)
3335 isl_pw_aff *cond;
3337 cond = try_extract_affine_condition(expr);
3338 isl_pw_aff_free(cond);
3340 return cond != NULL;
3343 /* Check if we can extract a condition from "expr".
3344 * Return the condition as an isl_pw_aff if we can and NULL otherwise.
3345 * If allow_nested is set, then the condition may involve parameters
3346 * corresponding to nested accesses.
3347 * We turn on autodetection so that we won't generate any warnings.
3349 __isl_give isl_pw_aff *PetScan::try_extract_nested_condition(Expr *expr)
3351 isl_pw_aff *cond;
3352 int save_autodetect = options->autodetect;
3353 bool save_nesting = nesting_enabled;
3355 options->autodetect = 1;
3356 nesting_enabled = allow_nested;
3357 cond = extract_condition(expr);
3359 options->autodetect = save_autodetect;
3360 nesting_enabled = save_nesting;
3362 return cond;
3365 /* If the top-level expression of "stmt" is an assignment, then
3366 * return that assignment as a BinaryOperator.
3367 * Otherwise return NULL.
3369 static BinaryOperator *top_assignment_or_null(Stmt *stmt)
3371 BinaryOperator *ass;
3373 if (!stmt)
3374 return NULL;
3375 if (stmt->getStmtClass() != Stmt::BinaryOperatorClass)
3376 return NULL;
3378 ass = cast<BinaryOperator>(stmt);
3379 if(ass->getOpcode() != BO_Assign)
3380 return NULL;
3382 return ass;
3385 /* Check if the given if statement is a conditional assignement
3386 * with a non-affine condition. If so, construct a pet_scop
3387 * corresponding to this conditional assignment. Otherwise return NULL.
3389 * In particular we check if "stmt" is of the form
3391 * if (condition)
3392 * a = f(...);
3393 * else
3394 * a = g(...);
3396 * where a is some array or scalar access.
3397 * The constructed pet_scop then corresponds to the expression
3399 * a = condition ? f(...) : g(...)
3401 * All access relations in f(...) are intersected with condition
3402 * while all access relation in g(...) are intersected with the complement.
3404 struct pet_scop *PetScan::extract_conditional_assignment(IfStmt *stmt)
3406 BinaryOperator *ass_then, *ass_else;
3407 isl_map *write_then, *write_else;
3408 isl_set *cond, *comp;
3409 isl_map *map;
3410 isl_pw_aff *pa;
3411 int equal;
3412 struct pet_expr *pe_cond, *pe_then, *pe_else, *pe, *pe_write;
3413 bool save_nesting = nesting_enabled;
3415 if (!options->detect_conditional_assignment)
3416 return NULL;
3418 ass_then = top_assignment_or_null(stmt->getThen());
3419 ass_else = top_assignment_or_null(stmt->getElse());
3421 if (!ass_then || !ass_else)
3422 return NULL;
3424 if (is_affine_condition(stmt->getCond()))
3425 return NULL;
3427 write_then = extract_access(ass_then->getLHS());
3428 write_else = extract_access(ass_else->getLHS());
3430 equal = isl_map_is_equal(write_then, write_else);
3431 isl_map_free(write_else);
3432 if (equal < 0 || !equal) {
3433 isl_map_free(write_then);
3434 return NULL;
3437 nesting_enabled = allow_nested;
3438 pa = extract_condition(stmt->getCond());
3439 nesting_enabled = save_nesting;
3440 cond = isl_pw_aff_non_zero_set(isl_pw_aff_copy(pa));
3441 comp = isl_pw_aff_zero_set(isl_pw_aff_copy(pa));
3442 map = isl_map_from_range(isl_set_from_pw_aff(pa));
3444 pe_cond = pet_expr_from_access(map);
3446 pe_then = extract_expr(ass_then->getRHS());
3447 pe_then = pet_expr_restrict(pe_then, cond);
3448 pe_else = extract_expr(ass_else->getRHS());
3449 pe_else = pet_expr_restrict(pe_else, comp);
3451 pe = pet_expr_new_ternary(ctx, pe_cond, pe_then, pe_else);
3452 pe_write = pet_expr_from_access(write_then);
3453 if (pe_write) {
3454 pe_write->acc.write = 1;
3455 pe_write->acc.read = 0;
3457 pe = pet_expr_new_binary(ctx, pet_op_assign, pe_write, pe);
3458 return extract(stmt, pe);
3461 /* Create a pet_scop with a single statement evaluating "cond"
3462 * and writing the result to a virtual scalar, as expressed by
3463 * "access".
3465 struct pet_scop *PetScan::extract_non_affine_condition(Expr *cond,
3466 __isl_take isl_map *access)
3468 struct pet_expr *expr, *write;
3469 struct pet_stmt *ps;
3470 struct pet_scop *scop;
3471 SourceLocation loc = cond->getLocStart();
3472 int line = PP.getSourceManager().getExpansionLineNumber(loc);
3474 write = pet_expr_from_access(access);
3475 if (write) {
3476 write->acc.write = 1;
3477 write->acc.read = 0;
3479 expr = extract_expr(cond);
3480 expr = resolve_nested(expr);
3481 expr = pet_expr_new_binary(ctx, pet_op_assign, write, expr);
3482 ps = pet_stmt_from_pet_expr(ctx, line, NULL, n_stmt++, expr);
3483 scop = pet_scop_from_pet_stmt(ctx, ps);
3484 scop = resolve_nested(scop);
3486 return scop;
3489 extern "C" {
3490 static struct pet_expr *embed_access(struct pet_expr *expr, void *user);
3493 /* Apply the map pointed to by "user" to the domain of the access
3494 * relation associated to "expr", thereby embedding it in the range of the map.
3495 * The domain of both relations is the zero-dimensional domain.
3497 static struct pet_expr *embed_access(struct pet_expr *expr, void *user)
3499 isl_map *map = (isl_map *) user;
3501 expr->acc.access = isl_map_apply_domain(expr->acc.access,
3502 isl_map_copy(map));
3503 if (!expr->acc.access)
3504 goto error;
3506 return expr;
3507 error:
3508 pet_expr_free(expr);
3509 return NULL;
3512 /* Apply "map" to all access relations in "expr".
3514 static struct pet_expr *embed(struct pet_expr *expr, __isl_keep isl_map *map)
3516 return pet_expr_map_access(expr, &embed_access, map);
3519 /* How many parameters of "set" refer to nested accesses, i.e., have no name?
3521 static int n_nested_parameter(__isl_keep isl_set *set)
3523 isl_space *space;
3524 int n;
3526 space = isl_set_get_space(set);
3527 n = n_nested_parameter(space);
3528 isl_space_free(space);
3530 return n;
3533 /* Remove all parameters from "map" that refer to nested accesses.
3535 static __isl_give isl_map *remove_nested_parameters(__isl_take isl_map *map)
3537 int nparam;
3538 isl_space *space;
3540 space = isl_map_get_space(map);
3541 nparam = isl_space_dim(space, isl_dim_param);
3542 for (int i = nparam - 1; i >= 0; --i)
3543 if (is_nested_parameter(space, i))
3544 map = isl_map_project_out(map, isl_dim_param, i, 1);
3545 isl_space_free(space);
3547 return map;
3550 /* Remove all parameters from the access relation of "expr"
3551 * that refer to nested accesses.
3553 static struct pet_expr *remove_nested_parameters(struct pet_expr *expr)
3555 expr->acc.access = remove_nested_parameters(expr->acc.access);
3556 if (!expr->acc.access)
3557 goto error;
3559 return expr;
3560 error:
3561 pet_expr_free(expr);
3562 return NULL;
3565 extern "C" {
3566 static struct pet_expr *expr_remove_nested_parameters(
3567 struct pet_expr *expr, void *user);
3570 static struct pet_expr *expr_remove_nested_parameters(
3571 struct pet_expr *expr, void *user)
3573 return remove_nested_parameters(expr);
3576 /* Remove all nested access parameters from the schedule and all
3577 * accesses of "stmt".
3578 * There is no need to remove them from the domain as these parameters
3579 * have already been removed from the domain when this function is called.
3581 static struct pet_stmt *remove_nested_parameters(struct pet_stmt *stmt)
3583 if (!stmt)
3584 return NULL;
3585 stmt->schedule = remove_nested_parameters(stmt->schedule);
3586 stmt->body = pet_expr_map_access(stmt->body,
3587 &expr_remove_nested_parameters, NULL);
3588 if (!stmt->schedule || !stmt->body)
3589 goto error;
3590 for (int i = 0; i < stmt->n_arg; ++i) {
3591 stmt->args[i] = pet_expr_map_access(stmt->args[i],
3592 &expr_remove_nested_parameters, NULL);
3593 if (!stmt->args[i])
3594 goto error;
3597 return stmt;
3598 error:
3599 pet_stmt_free(stmt);
3600 return NULL;
3603 /* For each nested access parameter in the domain of "stmt",
3604 * construct a corresponding pet_expr, place it before the original
3605 * elements in stmt->args and record its position in "param2pos".
3606 * n is the number of nested access parameters.
3608 struct pet_stmt *PetScan::extract_nested(struct pet_stmt *stmt, int n,
3609 std::map<int,int> &param2pos)
3611 int i;
3612 isl_space *space;
3613 int n_arg;
3614 struct pet_expr **args;
3616 n_arg = stmt->n_arg;
3617 args = isl_calloc_array(ctx, struct pet_expr *, n + n_arg);
3618 if (!args)
3619 goto error;
3621 space = isl_set_get_space(stmt->domain);
3622 n_arg = extract_nested(space, 0, args, param2pos);
3623 isl_space_free(space);
3625 if (n_arg < 0)
3626 goto error;
3628 for (i = 0; i < stmt->n_arg; ++i)
3629 args[n_arg + i] = stmt->args[i];
3630 free(stmt->args);
3631 stmt->args = args;
3632 stmt->n_arg += n_arg;
3634 return stmt;
3635 error:
3636 if (args) {
3637 for (i = 0; i < n; ++i)
3638 pet_expr_free(args[i]);
3639 free(args);
3641 pet_stmt_free(stmt);
3642 return NULL;
3645 /* Check whether any of the arguments i of "stmt" starting at position "n"
3646 * is equal to one of the first "n" arguments j.
3647 * If so, combine the constraints on arguments i and j and remove
3648 * argument i.
3650 static struct pet_stmt *remove_duplicate_arguments(struct pet_stmt *stmt, int n)
3652 int i, j;
3653 isl_map *map;
3655 if (!stmt)
3656 return NULL;
3657 if (n == 0)
3658 return stmt;
3659 if (n == stmt->n_arg)
3660 return stmt;
3662 map = isl_set_unwrap(stmt->domain);
3664 for (i = stmt->n_arg - 1; i >= n; --i) {
3665 for (j = 0; j < n; ++j)
3666 if (pet_expr_is_equal(stmt->args[i], stmt->args[j]))
3667 break;
3668 if (j >= n)
3669 continue;
3671 map = isl_map_equate(map, isl_dim_out, i, isl_dim_out, j);
3672 map = isl_map_project_out(map, isl_dim_out, i, 1);
3674 pet_expr_free(stmt->args[i]);
3675 for (j = i; j + 1 < stmt->n_arg; ++j)
3676 stmt->args[j] = stmt->args[j + 1];
3677 stmt->n_arg--;
3680 stmt->domain = isl_map_wrap(map);
3681 if (!stmt->domain)
3682 goto error;
3683 return stmt;
3684 error:
3685 pet_stmt_free(stmt);
3686 return NULL;
3689 /* Look for parameters in the iteration domain of "stmt" that
3690 * refer to nested accesses. In particular, these are
3691 * parameters with no name.
3693 * If there are any such parameters, then as many extra variables
3694 * (after identifying identical nested accesses) are inserted in the
3695 * range of the map wrapped inside the domain, before the original variables.
3696 * If the original domain is not a wrapped map, then a new wrapped
3697 * map is created with zero output dimensions.
3698 * The parameters are then equated to the corresponding output dimensions
3699 * and subsequently projected out, from the iteration domain,
3700 * the schedule and the access relations.
3701 * For each of the output dimensions, a corresponding argument
3702 * expression is inserted. Initially they are created with
3703 * a zero-dimensional domain, so they have to be embedded
3704 * in the current iteration domain.
3705 * param2pos maps the position of the parameter to the position
3706 * of the corresponding output dimension in the wrapped map.
3708 struct pet_stmt *PetScan::resolve_nested(struct pet_stmt *stmt)
3710 int n;
3711 int nparam;
3712 unsigned n_arg;
3713 isl_map *map;
3714 std::map<int,int> param2pos;
3716 if (!stmt)
3717 return NULL;
3719 n = n_nested_parameter(stmt->domain);
3720 if (n == 0)
3721 return stmt;
3723 n_arg = stmt->n_arg;
3724 stmt = extract_nested(stmt, n, param2pos);
3725 if (!stmt)
3726 return NULL;
3728 n = stmt->n_arg - n_arg;
3729 nparam = isl_set_dim(stmt->domain, isl_dim_param);
3730 if (isl_set_is_wrapping(stmt->domain))
3731 map = isl_set_unwrap(stmt->domain);
3732 else
3733 map = isl_map_from_domain(stmt->domain);
3734 map = isl_map_insert_dims(map, isl_dim_out, 0, n);
3736 for (int i = nparam - 1; i >= 0; --i) {
3737 isl_id *id;
3739 if (!is_nested_parameter(map, i))
3740 continue;
3742 id = pet_expr_access_get_id(stmt->args[param2pos[i]]);
3743 map = isl_map_set_dim_id(map, isl_dim_out, param2pos[i], id);
3744 map = isl_map_equate(map, isl_dim_param, i, isl_dim_out,
3745 param2pos[i]);
3746 map = isl_map_project_out(map, isl_dim_param, i, 1);
3749 stmt->domain = isl_map_wrap(map);
3751 map = isl_set_unwrap(isl_set_copy(stmt->domain));
3752 map = isl_map_from_range(isl_map_domain(map));
3753 for (int pos = 0; pos < n; ++pos)
3754 stmt->args[pos] = embed(stmt->args[pos], map);
3755 isl_map_free(map);
3757 stmt = remove_nested_parameters(stmt);
3758 stmt = remove_duplicate_arguments(stmt, n);
3760 return stmt;
3761 error:
3762 pet_stmt_free(stmt);
3763 return NULL;
3766 /* For each statement in "scop", move the parameters that correspond
3767 * to nested access into the ranges of the domains and create
3768 * corresponding argument expressions.
3770 struct pet_scop *PetScan::resolve_nested(struct pet_scop *scop)
3772 if (!scop)
3773 return NULL;
3775 for (int i = 0; i < scop->n_stmt; ++i) {
3776 scop->stmts[i] = resolve_nested(scop->stmts[i]);
3777 if (!scop->stmts[i])
3778 goto error;
3781 return scop;
3782 error:
3783 pet_scop_free(scop);
3784 return NULL;
3787 /* Given an access expression "expr", is the variable accessed by
3788 * "expr" assigned anywhere inside "scop"?
3790 static bool is_assigned(pet_expr *expr, pet_scop *scop)
3792 bool assigned = false;
3793 isl_id *id;
3795 id = pet_expr_access_get_id(expr);
3796 assigned = pet_scop_writes(scop, id);
3797 isl_id_free(id);
3799 return assigned;
3802 /* Are all nested access parameters in "pa" allowed given "scop".
3803 * In particular, is none of them written by anywhere inside "scop".
3805 * If "scop" has any skip conditions, then no nested access parameters
3806 * are allowed. In particular, if there is any nested access in a guard
3807 * for a piece of code containing a "continue", then we want to introduce
3808 * a separate statement for evaluating this guard so that we can express
3809 * that the result is false for all previous iterations.
3811 bool PetScan::is_nested_allowed(__isl_keep isl_pw_aff *pa, pet_scop *scop)
3813 int nparam;
3815 if (!scop)
3816 return true;
3818 nparam = isl_pw_aff_dim(pa, isl_dim_param);
3819 for (int i = 0; i < nparam; ++i) {
3820 Expr *nested;
3821 isl_id *id = isl_pw_aff_get_dim_id(pa, isl_dim_param, i);
3822 pet_expr *expr;
3823 bool allowed;
3825 if (!is_nested_parameter(id)) {
3826 isl_id_free(id);
3827 continue;
3830 if (pet_scop_has_skip(scop, pet_skip_now)) {
3831 isl_id_free(id);
3832 return false;
3835 nested = (Expr *) isl_id_get_user(id);
3836 expr = extract_expr(nested);
3837 allowed = expr && expr->type == pet_expr_access &&
3838 !is_assigned(expr, scop);
3840 pet_expr_free(expr);
3841 isl_id_free(id);
3843 if (!allowed)
3844 return false;
3847 return true;
3850 /* Do we need to construct a skip condition of the given type
3851 * on an if statement, given that the if condition is non-affine?
3853 * pet_scop_filter_skip can only handle the case where the if condition
3854 * holds (the then branch) and the skip condition is universal.
3855 * In any other case, we need to construct a new skip condition.
3857 static bool need_skip(struct pet_scop *scop_then, struct pet_scop *scop_else,
3858 bool have_else, enum pet_skip type)
3860 if (have_else && scop_else && pet_scop_has_skip(scop_else, type))
3861 return true;
3862 if (scop_then && pet_scop_has_skip(scop_then, type) &&
3863 !pet_scop_has_universal_skip(scop_then, type))
3864 return true;
3865 return false;
3868 /* Do we need to construct a skip condition of the given type
3869 * on an if statement, given that the if condition is affine?
3871 * There is no need to construct a new skip condition if all
3872 * the skip conditions are affine.
3874 static bool need_skip_aff(struct pet_scop *scop_then,
3875 struct pet_scop *scop_else, bool have_else, enum pet_skip type)
3877 if (scop_then && pet_scop_has_var_skip(scop_then, type))
3878 return true;
3879 if (have_else && scop_else && pet_scop_has_var_skip(scop_else, type))
3880 return true;
3881 return false;
3884 /* Do we need to construct a skip condition of the given type
3885 * on an if statement?
3887 static bool need_skip(struct pet_scop *scop_then, struct pet_scop *scop_else,
3888 bool have_else, enum pet_skip type, bool affine)
3890 if (affine)
3891 return need_skip_aff(scop_then, scop_else, have_else, type);
3892 else
3893 return need_skip(scop_then, scop_else, have_else, type);
3896 /* Construct an affine expression pet_expr that evaluates
3897 * to the constant "val".
3899 static struct pet_expr *universally(isl_ctx *ctx, int val)
3901 isl_space *space;
3902 isl_map *map;
3904 space = isl_space_alloc(ctx, 0, 0, 1);
3905 map = isl_map_universe(space);
3906 map = isl_map_fix_si(map, isl_dim_out, 0, val);
3908 return pet_expr_from_access(map);
3911 /* Construct an affine expression pet_expr that evaluates
3912 * to the constant 1.
3914 static struct pet_expr *universally_true(isl_ctx *ctx)
3916 return universally(ctx, 1);
3919 /* Construct an affine expression pet_expr that evaluates
3920 * to the constant 0.
3922 static struct pet_expr *universally_false(isl_ctx *ctx)
3924 return universally(ctx, 0);
3927 /* Given an access relation "test_access" for the if condition,
3928 * an access relation "skip_access" for the skip condition and
3929 * scops for the then and else branches, construct a scop for
3930 * computing "skip_access".
3932 * The computed scop contains a single statement that essentially does
3934 * skip_cond = test_cond ? skip_cond_then : skip_cond_else
3936 * If the skip conditions of the then and/or else branch are not affine,
3937 * then they need to be filtered by test_access.
3938 * If they are missing, then this means the skip condition is false.
3940 * Since we are constructing a skip condition for the if statement,
3941 * the skip conditions on the then and else branches are removed.
3943 static struct pet_scop *extract_skip(PetScan *scan,
3944 __isl_take isl_map *test_access, __isl_take isl_map *skip_access,
3945 struct pet_scop *scop_then, struct pet_scop *scop_else, bool have_else,
3946 enum pet_skip type)
3948 struct pet_expr *expr_then, *expr_else, *expr, *expr_skip;
3949 struct pet_stmt *stmt;
3950 struct pet_scop *scop;
3951 isl_ctx *ctx = scan->ctx;
3953 if (!scop_then)
3954 goto error;
3955 if (have_else && !scop_else)
3956 goto error;
3958 if (pet_scop_has_skip(scop_then, type)) {
3959 expr_then = pet_scop_get_skip_expr(scop_then, type);
3960 pet_scop_reset_skip(scop_then, type);
3961 if (!pet_expr_is_affine(expr_then))
3962 expr_then = pet_expr_filter(expr_then,
3963 isl_map_copy(test_access), 1);
3964 } else
3965 expr_then = universally_false(ctx);
3967 if (have_else && pet_scop_has_skip(scop_else, type)) {
3968 expr_else = pet_scop_get_skip_expr(scop_else, type);
3969 pet_scop_reset_skip(scop_else, type);
3970 if (!pet_expr_is_affine(expr_else))
3971 expr_else = pet_expr_filter(expr_else,
3972 isl_map_copy(test_access), 0);
3973 } else
3974 expr_else = universally_false(ctx);
3976 expr = pet_expr_from_access(test_access);
3977 expr = pet_expr_new_ternary(ctx, expr, expr_then, expr_else);
3978 expr_skip = pet_expr_from_access(isl_map_copy(skip_access));
3979 if (expr_skip) {
3980 expr_skip->acc.write = 1;
3981 expr_skip->acc.read = 0;
3983 expr = pet_expr_new_binary(ctx, pet_op_assign, expr_skip, expr);
3984 stmt = pet_stmt_from_pet_expr(ctx, -1, NULL, scan->n_stmt++, expr);
3986 scop = pet_scop_from_pet_stmt(ctx, stmt);
3987 scop = scop_add_array(scop, skip_access, scan->ast_context);
3988 isl_map_free(skip_access);
3990 return scop;
3991 error:
3992 isl_map_free(test_access);
3993 isl_map_free(skip_access);
3994 return NULL;
3997 /* Is scop's skip_now condition equal to its skip_later condition?
3998 * In particular, this means that it either has no skip_now condition
3999 * or both a skip_now and a skip_later condition (that are equal to each other).
4001 static bool skip_equals_skip_later(struct pet_scop *scop)
4003 int has_skip_now, has_skip_later;
4004 int equal;
4005 isl_set *skip_now, *skip_later;
4007 if (!scop)
4008 return false;
4009 has_skip_now = pet_scop_has_skip(scop, pet_skip_now);
4010 has_skip_later = pet_scop_has_skip(scop, pet_skip_later);
4011 if (has_skip_now != has_skip_later)
4012 return false;
4013 if (!has_skip_now)
4014 return true;
4016 skip_now = pet_scop_get_skip(scop, pet_skip_now);
4017 skip_later = pet_scop_get_skip(scop, pet_skip_later);
4018 equal = isl_set_is_equal(skip_now, skip_later);
4019 isl_set_free(skip_now);
4020 isl_set_free(skip_later);
4022 return equal;
4025 /* Drop the skip conditions of type pet_skip_later from scop1 and scop2.
4027 static void drop_skip_later(struct pet_scop *scop1, struct pet_scop *scop2)
4029 pet_scop_reset_skip(scop1, pet_skip_later);
4030 pet_scop_reset_skip(scop2, pet_skip_later);
4033 /* Structure that handles the construction of skip conditions.
4035 * scop_then and scop_else represent the then and else branches
4036 * of the if statement
4038 * skip[type] is true if we need to construct a skip condition of that type
4039 * equal is set if the skip conditions of types pet_skip_now and pet_skip_later
4040 * are equal to each other
4041 * access[type] is the virtual array representing the skip condition
4042 * scop[type] is a scop for computing the skip condition
4044 struct pet_skip_info {
4045 isl_ctx *ctx;
4047 bool skip[2];
4048 bool equal;
4049 isl_map *access[2];
4050 struct pet_scop *scop[2];
4052 pet_skip_info(isl_ctx *ctx) : ctx(ctx) {}
4054 operator bool() { return skip[pet_skip_now] || skip[pet_skip_later]; }
4057 /* Structure that handles the construction of skip conditions on if statements.
4059 * scop_then and scop_else represent the then and else branches
4060 * of the if statement
4062 struct pet_skip_info_if : public pet_skip_info {
4063 struct pet_scop *scop_then, *scop_else;
4064 bool have_else;
4066 pet_skip_info_if(isl_ctx *ctx, struct pet_scop *scop_then,
4067 struct pet_scop *scop_else, bool have_else, bool affine);
4068 void extract(PetScan *scan, __isl_keep isl_map *access,
4069 enum pet_skip type);
4070 void extract(PetScan *scan, __isl_keep isl_map *access);
4071 void extract(PetScan *scan, __isl_keep isl_pw_aff *cond);
4072 struct pet_scop *add(struct pet_scop *scop, enum pet_skip type,
4073 int offset);
4074 struct pet_scop *add(struct pet_scop *scop, int offset);
4077 /* Initialize a pet_skip_info_if structure based on the then and else branches
4078 * and based on whether the if condition is affine or not.
4080 pet_skip_info_if::pet_skip_info_if(isl_ctx *ctx, struct pet_scop *scop_then,
4081 struct pet_scop *scop_else, bool have_else, bool affine) :
4082 pet_skip_info(ctx), scop_then(scop_then), scop_else(scop_else),
4083 have_else(have_else)
4085 skip[pet_skip_now] =
4086 need_skip(scop_then, scop_else, have_else, pet_skip_now, affine);
4087 equal = skip[pet_skip_now] && skip_equals_skip_later(scop_then) &&
4088 (!have_else || skip_equals_skip_later(scop_else));
4089 skip[pet_skip_later] = skip[pet_skip_now] && !equal &&
4090 need_skip(scop_then, scop_else, have_else, pet_skip_later, affine);
4093 /* If we need to construct a skip condition of the given type,
4094 * then do so now.
4096 * "map" represents the if condition.
4098 void pet_skip_info_if::extract(PetScan *scan, __isl_keep isl_map *map,
4099 enum pet_skip type)
4101 if (!skip[type])
4102 return;
4104 access[type] = create_test_access(isl_map_get_ctx(map), scan->n_test++);
4105 scop[type] = extract_skip(scan, isl_map_copy(map),
4106 isl_map_copy(access[type]),
4107 scop_then, scop_else, have_else, type);
4110 /* Construct the required skip conditions, given the if condition "map".
4112 void pet_skip_info_if::extract(PetScan *scan, __isl_keep isl_map *map)
4114 extract(scan, map, pet_skip_now);
4115 extract(scan, map, pet_skip_later);
4116 if (equal)
4117 drop_skip_later(scop_then, scop_else);
4120 /* Construct the required skip conditions, given the if condition "cond".
4122 void pet_skip_info_if::extract(PetScan *scan, __isl_keep isl_pw_aff *cond)
4124 isl_set *test_set;
4125 isl_map *test;
4127 if (!skip[pet_skip_now] && !skip[pet_skip_later])
4128 return;
4130 test_set = isl_set_from_pw_aff(isl_pw_aff_copy(cond));
4131 test = isl_map_from_range(test_set);
4132 extract(scan, test);
4133 isl_map_free(test);
4136 /* Add the computed skip condition of the give type to "main" and
4137 * add the scop for computing the condition at the given offset.
4139 * If equal is set, then we only computed a skip condition for pet_skip_now,
4140 * but we also need to set it as main's pet_skip_later.
4142 struct pet_scop *pet_skip_info_if::add(struct pet_scop *main,
4143 enum pet_skip type, int offset)
4145 isl_set *skip_set;
4147 if (!skip[type])
4148 return main;
4150 skip_set = isl_map_range(access[type]);
4151 access[type] = NULL;
4152 scop[type] = pet_scop_prefix(scop[type], offset);
4153 main = pet_scop_add_par(ctx, main, scop[type]);
4154 scop[type] = NULL;
4156 if (equal)
4157 main = pet_scop_set_skip(main, pet_skip_later,
4158 isl_set_copy(skip_set));
4160 main = pet_scop_set_skip(main, type, skip_set);
4162 return main;
4165 /* Add the computed skip conditions to "main" and
4166 * add the scops for computing the conditions at the given offset.
4168 struct pet_scop *pet_skip_info_if::add(struct pet_scop *scop, int offset)
4170 scop = add(scop, pet_skip_now, offset);
4171 scop = add(scop, pet_skip_later, offset);
4173 return scop;
4176 /* Construct a pet_scop for a non-affine if statement.
4178 * We create a separate statement that writes the result
4179 * of the non-affine condition to a virtual scalar.
4180 * A constraint requiring the value of this virtual scalar to be one
4181 * is added to the iteration domains of the then branch.
4182 * Similarly, a constraint requiring the value of this virtual scalar
4183 * to be zero is added to the iteration domains of the else branch, if any.
4184 * We adjust the schedules to ensure that the virtual scalar is written
4185 * before it is read.
4187 * If there are any breaks or continues in the then and/or else
4188 * branches, then we may have to compute a new skip condition.
4189 * This is handled using a pet_skip_info_if object.
4190 * On initialization, the object checks if skip conditions need
4191 * to be computed. If so, it does so in "extract" and adds them in "add".
4193 struct pet_scop *PetScan::extract_non_affine_if(Expr *cond,
4194 struct pet_scop *scop_then, struct pet_scop *scop_else,
4195 bool have_else, int stmt_id)
4197 struct pet_scop *scop;
4198 isl_map *test_access;
4199 int save_n_stmt = n_stmt;
4201 test_access = create_test_access(ctx, n_test++);
4202 n_stmt = stmt_id;
4203 scop = extract_non_affine_condition(cond, isl_map_copy(test_access));
4204 n_stmt = save_n_stmt;
4205 scop = scop_add_array(scop, test_access, ast_context);
4207 pet_skip_info_if skip(ctx, scop_then, scop_else, have_else, false);
4208 skip.extract(this, test_access);
4210 scop = pet_scop_prefix(scop, 0);
4211 scop_then = pet_scop_prefix(scop_then, 1);
4212 scop_then = pet_scop_filter(scop_then, isl_map_copy(test_access), 1);
4213 if (have_else) {
4214 scop_else = pet_scop_prefix(scop_else, 1);
4215 scop_else = pet_scop_filter(scop_else, test_access, 0);
4216 scop_then = pet_scop_add_par(ctx, scop_then, scop_else);
4217 } else
4218 isl_map_free(test_access);
4220 scop = pet_scop_add_seq(ctx, scop, scop_then);
4222 scop = skip.add(scop, 2);
4224 return scop;
4227 /* Construct a pet_scop for an if statement.
4229 * If the condition fits the pattern of a conditional assignment,
4230 * then it is handled by extract_conditional_assignment.
4231 * Otherwise, we do the following.
4233 * If the condition is affine, then the condition is added
4234 * to the iteration domains of the then branch, while the
4235 * opposite of the condition in added to the iteration domains
4236 * of the else branch, if any.
4237 * We allow the condition to be dynamic, i.e., to refer to
4238 * scalars or array elements that may be written to outside
4239 * of the given if statement. These nested accesses are then represented
4240 * as output dimensions in the wrapping iteration domain.
4241 * If it also written _inside_ the then or else branch, then
4242 * we treat the condition as non-affine.
4243 * As explained in extract_non_affine_if, this will introduce
4244 * an extra statement.
4245 * For aesthetic reasons, we want this statement to have a statement
4246 * number that is lower than those of the then and else branches.
4247 * In order to evaluate if will need such a statement, however, we
4248 * first construct scops for the then and else branches.
4249 * We therefore reserve a statement number if we might have to
4250 * introduce such an extra statement.
4252 * If the condition is not affine, then the scop is created in
4253 * extract_non_affine_if.
4255 * If there are any breaks or continues in the then and/or else
4256 * branches, then we may have to compute a new skip condition.
4257 * This is handled using a pet_skip_info_if object.
4258 * On initialization, the object checks if skip conditions need
4259 * to be computed. If so, it does so in "extract" and adds them in "add".
4261 struct pet_scop *PetScan::extract(IfStmt *stmt)
4263 struct pet_scop *scop_then, *scop_else = NULL, *scop;
4264 isl_pw_aff *cond;
4265 int stmt_id;
4266 isl_set *set;
4267 isl_set *valid;
4269 scop = extract_conditional_assignment(stmt);
4270 if (scop)
4271 return scop;
4273 cond = try_extract_nested_condition(stmt->getCond());
4274 if (allow_nested && (!cond || has_nested(cond)))
4275 stmt_id = n_stmt++;
4278 assigned_value_cache cache(assigned_value);
4279 scop_then = extract(stmt->getThen());
4282 if (stmt->getElse()) {
4283 assigned_value_cache cache(assigned_value);
4284 scop_else = extract(stmt->getElse());
4285 if (options->autodetect) {
4286 if (scop_then && !scop_else) {
4287 partial = true;
4288 isl_pw_aff_free(cond);
4289 return scop_then;
4291 if (!scop_then && scop_else) {
4292 partial = true;
4293 isl_pw_aff_free(cond);
4294 return scop_else;
4299 if (cond &&
4300 (!is_nested_allowed(cond, scop_then) ||
4301 (stmt->getElse() && !is_nested_allowed(cond, scop_else)))) {
4302 isl_pw_aff_free(cond);
4303 cond = NULL;
4305 if (allow_nested && !cond)
4306 return extract_non_affine_if(stmt->getCond(), scop_then,
4307 scop_else, stmt->getElse(), stmt_id);
4309 if (!cond)
4310 cond = extract_condition(stmt->getCond());
4312 pet_skip_info_if skip(ctx, scop_then, scop_else, stmt->getElse(), true);
4313 skip.extract(this, cond);
4315 valid = isl_pw_aff_domain(isl_pw_aff_copy(cond));
4316 set = isl_pw_aff_non_zero_set(cond);
4317 scop = pet_scop_restrict(scop_then, isl_set_copy(set));
4319 if (stmt->getElse()) {
4320 set = isl_set_subtract(isl_set_copy(valid), set);
4321 scop_else = pet_scop_restrict(scop_else, set);
4322 scop = pet_scop_add_par(ctx, scop, scop_else);
4323 } else
4324 isl_set_free(set);
4325 scop = resolve_nested(scop);
4326 scop = pet_scop_restrict_context(scop, valid);
4328 if (skip)
4329 scop = pet_scop_prefix(scop, 0);
4330 scop = skip.add(scop, 1);
4332 return scop;
4335 /* Try and construct a pet_scop for a label statement.
4336 * We currently only allow labels on expression statements.
4338 struct pet_scop *PetScan::extract(LabelStmt *stmt)
4340 isl_id *label;
4341 Stmt *sub;
4343 sub = stmt->getSubStmt();
4344 if (!isa<Expr>(sub)) {
4345 unsupported(stmt);
4346 return NULL;
4349 label = isl_id_alloc(ctx, stmt->getName(), NULL);
4351 return extract(sub, extract_expr(cast<Expr>(sub)), label);
4354 /* Construct a pet_scop for a continue statement.
4356 * We simply create an empty scop with a universal pet_skip_now
4357 * skip condition. This skip condition will then be taken into
4358 * account by the enclosing loop construct, possibly after
4359 * being incorporated into outer skip conditions.
4361 struct pet_scop *PetScan::extract(ContinueStmt *stmt)
4363 pet_scop *scop;
4364 isl_space *space;
4365 isl_set *set;
4367 scop = pet_scop_empty(ctx);
4368 if (!scop)
4369 return NULL;
4371 space = isl_space_set_alloc(ctx, 0, 1);
4372 set = isl_set_universe(space);
4373 set = isl_set_fix_si(set, isl_dim_set, 0, 1);
4374 scop = pet_scop_set_skip(scop, pet_skip_now, set);
4376 return scop;
4379 /* Construct a pet_scop for a break statement.
4381 * We simply create an empty scop with both a universal pet_skip_now
4382 * skip condition and a universal pet_skip_later skip condition.
4383 * These skip conditions will then be taken into
4384 * account by the enclosing loop construct, possibly after
4385 * being incorporated into outer skip conditions.
4387 struct pet_scop *PetScan::extract(BreakStmt *stmt)
4389 pet_scop *scop;
4390 isl_space *space;
4391 isl_set *set;
4393 scop = pet_scop_empty(ctx);
4394 if (!scop)
4395 return NULL;
4397 space = isl_space_set_alloc(ctx, 0, 1);
4398 set = isl_set_universe(space);
4399 set = isl_set_fix_si(set, isl_dim_set, 0, 1);
4400 scop = pet_scop_set_skip(scop, pet_skip_now, isl_set_copy(set));
4401 scop = pet_scop_set_skip(scop, pet_skip_later, set);
4403 return scop;
4406 /* Try and construct a pet_scop corresponding to "stmt".
4408 * If "stmt" is a compound statement, then "skip_declarations"
4409 * indicates whether we should skip initial declarations in the
4410 * compound statement.
4412 * If the constructed pet_scop is not a (possibly) partial representation
4413 * of "stmt", we update start and end of the pet_scop to those of "stmt".
4414 * In particular, if skip_declarations, then we may have skipped declarations
4415 * inside "stmt" and so the pet_scop may not represent the entire "stmt".
4416 * Note that this function may be called with "stmt" referring to the entire
4417 * body of the function, including the outer braces. In such cases,
4418 * skip_declarations will be set and the braces will not be taken into
4419 * account in scop->start and scop->end.
4421 struct pet_scop *PetScan::extract(Stmt *stmt, bool skip_declarations)
4423 struct pet_scop *scop;
4424 unsigned start, end;
4425 SourceLocation loc;
4426 SourceManager &SM = PP.getSourceManager();
4427 const LangOptions &LO = PP.getLangOpts();
4429 if (isa<Expr>(stmt))
4430 return extract(stmt, extract_expr(cast<Expr>(stmt)));
4432 switch (stmt->getStmtClass()) {
4433 case Stmt::WhileStmtClass:
4434 scop = extract(cast<WhileStmt>(stmt));
4435 break;
4436 case Stmt::ForStmtClass:
4437 scop = extract_for(cast<ForStmt>(stmt));
4438 break;
4439 case Stmt::IfStmtClass:
4440 scop = extract(cast<IfStmt>(stmt));
4441 break;
4442 case Stmt::CompoundStmtClass:
4443 scop = extract(cast<CompoundStmt>(stmt), skip_declarations);
4444 break;
4445 case Stmt::LabelStmtClass:
4446 scop = extract(cast<LabelStmt>(stmt));
4447 break;
4448 case Stmt::ContinueStmtClass:
4449 scop = extract(cast<ContinueStmt>(stmt));
4450 break;
4451 case Stmt::BreakStmtClass:
4452 scop = extract(cast<BreakStmt>(stmt));
4453 break;
4454 case Stmt::DeclStmtClass:
4455 scop = extract(cast<DeclStmt>(stmt));
4456 break;
4457 default:
4458 unsupported(stmt);
4459 return NULL;
4462 if (partial || skip_declarations)
4463 return scop;
4465 loc = stmt->getLocStart();
4466 loc = move_to_start_of_line_if_first_token(loc, SM, LO);
4467 start = getExpansionOffset(SM, loc);
4468 loc = PP.getLocForEndOfToken(stmt->getLocEnd());
4469 end = getExpansionOffset(SM, loc);
4470 scop = pet_scop_update_start_end(scop, start, end);
4472 return scop;
4475 /* Do we need to construct a skip condition of the given type
4476 * on a sequence of statements?
4478 * There is no need to construct a new skip condition if only
4479 * only of the two statements has a skip condition or if both
4480 * of their skip conditions are affine.
4482 * In principle we also don't need a new continuation variable if
4483 * the continuation of scop2 is affine, but then we would need
4484 * to allow more complicated forms of continuations.
4486 static bool need_skip_seq(struct pet_scop *scop1, struct pet_scop *scop2,
4487 enum pet_skip type)
4489 if (!scop1 || !pet_scop_has_skip(scop1, type))
4490 return false;
4491 if (!scop2 || !pet_scop_has_skip(scop2, type))
4492 return false;
4493 if (pet_scop_has_affine_skip(scop1, type) &&
4494 pet_scop_has_affine_skip(scop2, type))
4495 return false;
4496 return true;
4499 /* Construct a scop for computing the skip condition of the given type and
4500 * with access relation "skip_access" for a sequence of two scops "scop1"
4501 * and "scop2".
4503 * The computed scop contains a single statement that essentially does
4505 * skip_cond = skip_cond_1 ? 1 : skip_cond_2
4507 * or, in other words, skip_cond1 || skip_cond2.
4508 * In this expression, skip_cond_2 is filtered to reflect that it is
4509 * only evaluated when skip_cond_1 is false.
4511 * The skip condition on scop1 is not removed because it still needs
4512 * to be applied to scop2 when these two scops are combined.
4514 static struct pet_scop *extract_skip_seq(PetScan *ps,
4515 __isl_take isl_map *skip_access,
4516 struct pet_scop *scop1, struct pet_scop *scop2, enum pet_skip type)
4518 isl_map *access;
4519 struct pet_expr *expr1, *expr2, *expr, *expr_skip;
4520 struct pet_stmt *stmt;
4521 struct pet_scop *scop;
4522 isl_ctx *ctx = ps->ctx;
4524 if (!scop1 || !scop2)
4525 goto error;
4527 expr1 = pet_scop_get_skip_expr(scop1, type);
4528 expr2 = pet_scop_get_skip_expr(scop2, type);
4529 pet_scop_reset_skip(scop2, type);
4531 expr2 = pet_expr_filter(expr2, isl_map_copy(expr1->acc.access), 0);
4533 expr = universally_true(ctx);
4534 expr = pet_expr_new_ternary(ctx, expr1, expr, expr2);
4535 expr_skip = pet_expr_from_access(isl_map_copy(skip_access));
4536 if (expr_skip) {
4537 expr_skip->acc.write = 1;
4538 expr_skip->acc.read = 0;
4540 expr = pet_expr_new_binary(ctx, pet_op_assign, expr_skip, expr);
4541 stmt = pet_stmt_from_pet_expr(ctx, -1, NULL, ps->n_stmt++, expr);
4543 scop = pet_scop_from_pet_stmt(ctx, stmt);
4544 scop = scop_add_array(scop, skip_access, ps->ast_context);
4545 isl_map_free(skip_access);
4547 return scop;
4548 error:
4549 isl_map_free(skip_access);
4550 return NULL;
4553 /* Structure that handles the construction of skip conditions
4554 * on sequences of statements.
4556 * scop1 and scop2 represent the two statements that are combined
4558 struct pet_skip_info_seq : public pet_skip_info {
4559 struct pet_scop *scop1, *scop2;
4561 pet_skip_info_seq(isl_ctx *ctx, struct pet_scop *scop1,
4562 struct pet_scop *scop2);
4563 void extract(PetScan *scan, enum pet_skip type);
4564 void extract(PetScan *scan);
4565 struct pet_scop *add(struct pet_scop *scop, enum pet_skip type,
4566 int offset);
4567 struct pet_scop *add(struct pet_scop *scop, int offset);
4570 /* Initialize a pet_skip_info_seq structure based on
4571 * on the two statements that are going to be combined.
4573 pet_skip_info_seq::pet_skip_info_seq(isl_ctx *ctx, struct pet_scop *scop1,
4574 struct pet_scop *scop2) : pet_skip_info(ctx), scop1(scop1), scop2(scop2)
4576 skip[pet_skip_now] = need_skip_seq(scop1, scop2, pet_skip_now);
4577 equal = skip[pet_skip_now] && skip_equals_skip_later(scop1) &&
4578 skip_equals_skip_later(scop2);
4579 skip[pet_skip_later] = skip[pet_skip_now] && !equal &&
4580 need_skip_seq(scop1, scop2, pet_skip_later);
4583 /* If we need to construct a skip condition of the given type,
4584 * then do so now.
4586 void pet_skip_info_seq::extract(PetScan *scan, enum pet_skip type)
4588 if (!skip[type])
4589 return;
4591 access[type] = create_test_access(ctx, scan->n_test++);
4592 scop[type] = extract_skip_seq(scan, isl_map_copy(access[type]),
4593 scop1, scop2, type);
4596 /* Construct the required skip conditions.
4598 void pet_skip_info_seq::extract(PetScan *scan)
4600 extract(scan, pet_skip_now);
4601 extract(scan, pet_skip_later);
4602 if (equal)
4603 drop_skip_later(scop1, scop2);
4606 /* Add the computed skip condition of the given type to "main" and
4607 * add the scop for computing the condition at the given offset (the statement
4608 * number). Within this offset, the condition is computed at position 1
4609 * to ensure that it is computed after the corresponding statement.
4611 * If equal is set, then we only computed a skip condition for pet_skip_now,
4612 * but we also need to set it as main's pet_skip_later.
4614 struct pet_scop *pet_skip_info_seq::add(struct pet_scop *main,
4615 enum pet_skip type, int offset)
4617 isl_set *skip_set;
4619 if (!skip[type])
4620 return main;
4622 skip_set = isl_map_range(access[type]);
4623 access[type] = NULL;
4624 scop[type] = pet_scop_prefix(scop[type], 1);
4625 scop[type] = pet_scop_prefix(scop[type], offset);
4626 main = pet_scop_add_par(ctx, main, scop[type]);
4627 scop[type] = NULL;
4629 if (equal)
4630 main = pet_scop_set_skip(main, pet_skip_later,
4631 isl_set_copy(skip_set));
4633 main = pet_scop_set_skip(main, type, skip_set);
4635 return main;
4638 /* Add the computed skip conditions to "main" and
4639 * add the scops for computing the conditions at the given offset.
4641 struct pet_scop *pet_skip_info_seq::add(struct pet_scop *scop, int offset)
4643 scop = add(scop, pet_skip_now, offset);
4644 scop = add(scop, pet_skip_later, offset);
4646 return scop;
4649 /* Extract a clone of the kill statement in "scop".
4650 * "scop" is expected to have been created from a DeclStmt
4651 * and should have the kill as its first statement.
4653 struct pet_stmt *PetScan::extract_kill(struct pet_scop *scop)
4655 struct pet_expr *kill;
4656 struct pet_stmt *stmt;
4657 isl_map *access;
4659 if (!scop)
4660 return NULL;
4661 if (scop->n_stmt < 1)
4662 isl_die(ctx, isl_error_internal,
4663 "expecting at least one statement", return NULL);
4664 stmt = scop->stmts[0];
4665 if (stmt->body->type != pet_expr_unary ||
4666 stmt->body->op != pet_op_kill)
4667 isl_die(ctx, isl_error_internal,
4668 "expecting kill statement", return NULL);
4670 access = isl_map_copy(stmt->body->args[0]->acc.access);
4671 access = isl_map_reset_tuple_id(access, isl_dim_in);
4672 kill = pet_expr_kill_from_access(access);
4673 return pet_stmt_from_pet_expr(ctx, stmt->line, NULL, n_stmt++, kill);
4676 /* Mark all arrays in "scop" as being exposed.
4678 static struct pet_scop *mark_exposed(struct pet_scop *scop)
4680 if (!scop)
4681 return NULL;
4682 for (int i = 0; i < scop->n_array; ++i)
4683 scop->arrays[i]->exposed = 1;
4684 return scop;
4687 /* Try and construct a pet_scop corresponding to (part of)
4688 * a sequence of statements.
4690 * "block" is set if the sequence respresents the children of
4691 * a compound statement.
4692 * "skip_declarations" is set if we should skip initial declarations
4693 * in the sequence of statements.
4695 * If there are any breaks or continues in the individual statements,
4696 * then we may have to compute a new skip condition.
4697 * This is handled using a pet_skip_info_seq object.
4698 * On initialization, the object checks if skip conditions need
4699 * to be computed. If so, it does so in "extract" and adds them in "add".
4701 * If "block" is set, then we need to insert kill statements at
4702 * the end of the block for any array that has been declared by
4703 * one of the statements in the sequence. Each of these declarations
4704 * results in the construction of a kill statement at the place
4705 * of the declaration, so we simply collect duplicates of
4706 * those kill statements and append these duplicates to the constructed scop.
4708 * If "block" is not set, then any array declared by one of the statements
4709 * in the sequence is marked as being exposed.
4711 struct pet_scop *PetScan::extract(StmtRange stmt_range, bool block,
4712 bool skip_declarations)
4714 pet_scop *scop;
4715 StmtIterator i;
4716 int j;
4717 bool partial_range = false;
4718 set<struct pet_stmt *> kills;
4719 set<struct pet_stmt *>::iterator it;
4721 scop = pet_scop_empty(ctx);
4722 for (i = stmt_range.first, j = 0; i != stmt_range.second; ++i, ++j) {
4723 Stmt *child = *i;
4724 struct pet_scop *scop_i;
4726 if (skip_declarations &&
4727 child->getStmtClass() == Stmt::DeclStmtClass)
4728 continue;
4730 scop_i = extract(child);
4731 if (scop && partial) {
4732 pet_scop_free(scop_i);
4733 break;
4735 pet_skip_info_seq skip(ctx, scop, scop_i);
4736 skip.extract(this);
4737 if (skip)
4738 scop_i = pet_scop_prefix(scop_i, 0);
4739 if (scop_i && child->getStmtClass() == Stmt::DeclStmtClass) {
4740 if (block)
4741 kills.insert(extract_kill(scop_i));
4742 else
4743 scop_i = mark_exposed(scop_i);
4745 scop_i = pet_scop_prefix(scop_i, j);
4746 if (options->autodetect) {
4747 if (scop_i)
4748 scop = pet_scop_add_seq(ctx, scop, scop_i);
4749 else
4750 partial_range = true;
4751 if (scop->n_stmt != 0 && !scop_i)
4752 partial = true;
4753 } else {
4754 scop = pet_scop_add_seq(ctx, scop, scop_i);
4757 scop = skip.add(scop, j);
4759 if (partial)
4760 break;
4763 for (it = kills.begin(); it != kills.end(); ++it) {
4764 pet_scop *scop_j;
4765 scop_j = pet_scop_from_pet_stmt(ctx, *it);
4766 scop_j = pet_scop_prefix(scop_j, j);
4767 scop = pet_scop_add_seq(ctx, scop, scop_j);
4770 if (scop && partial_range) {
4771 if (scop->n_stmt == 0) {
4772 pet_scop_free(scop);
4773 return NULL;
4775 partial = true;
4778 return scop;
4781 /* Check if the scop marked by the user is exactly this Stmt
4782 * or part of this Stmt.
4783 * If so, return a pet_scop corresponding to the marked region.
4784 * Otherwise, return NULL.
4786 struct pet_scop *PetScan::scan(Stmt *stmt)
4788 SourceManager &SM = PP.getSourceManager();
4789 unsigned start_off, end_off;
4791 start_off = getExpansionOffset(SM, stmt->getLocStart());
4792 end_off = getExpansionOffset(SM, stmt->getLocEnd());
4794 if (start_off > loc.end)
4795 return NULL;
4796 if (end_off < loc.start)
4797 return NULL;
4798 if (start_off >= loc.start && end_off <= loc.end) {
4799 return extract(stmt);
4802 StmtIterator start;
4803 for (start = stmt->child_begin(); start != stmt->child_end(); ++start) {
4804 Stmt *child = *start;
4805 if (!child)
4806 continue;
4807 start_off = getExpansionOffset(SM, child->getLocStart());
4808 end_off = getExpansionOffset(SM, child->getLocEnd());
4809 if (start_off < loc.start && end_off >= loc.end)
4810 return scan(child);
4811 if (start_off >= loc.start)
4812 break;
4815 StmtIterator end;
4816 for (end = start; end != stmt->child_end(); ++end) {
4817 Stmt *child = *end;
4818 start_off = SM.getFileOffset(child->getLocStart());
4819 if (start_off >= loc.end)
4820 break;
4823 return extract(StmtRange(start, end), false, false);
4826 /* Set the size of index "pos" of "array" to "size".
4827 * In particular, add a constraint of the form
4829 * i_pos < size
4831 * to array->extent and a constraint of the form
4833 * size >= 0
4835 * to array->context.
4837 static struct pet_array *update_size(struct pet_array *array, int pos,
4838 __isl_take isl_pw_aff *size)
4840 isl_set *valid;
4841 isl_set *univ;
4842 isl_set *bound;
4843 isl_space *dim;
4844 isl_aff *aff;
4845 isl_pw_aff *index;
4846 isl_id *id;
4848 valid = isl_pw_aff_nonneg_set(isl_pw_aff_copy(size));
4849 array->context = isl_set_intersect(array->context, valid);
4851 dim = isl_set_get_space(array->extent);
4852 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
4853 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, pos, 1);
4854 univ = isl_set_universe(isl_aff_get_domain_space(aff));
4855 index = isl_pw_aff_alloc(univ, aff);
4857 size = isl_pw_aff_add_dims(size, isl_dim_in,
4858 isl_set_dim(array->extent, isl_dim_set));
4859 id = isl_set_get_tuple_id(array->extent);
4860 size = isl_pw_aff_set_tuple_id(size, isl_dim_in, id);
4861 bound = isl_pw_aff_lt_set(index, size);
4863 array->extent = isl_set_intersect(array->extent, bound);
4865 if (!array->context || !array->extent)
4866 goto error;
4868 return array;
4869 error:
4870 pet_array_free(array);
4871 return NULL;
4874 /* Figure out the size of the array at position "pos" and all
4875 * subsequent positions from "type" and update "array" accordingly.
4877 struct pet_array *PetScan::set_upper_bounds(struct pet_array *array,
4878 const Type *type, int pos)
4880 const ArrayType *atype;
4881 isl_pw_aff *size;
4883 if (!array)
4884 return NULL;
4886 if (type->isPointerType()) {
4887 type = type->getPointeeType().getTypePtr();
4888 return set_upper_bounds(array, type, pos + 1);
4890 if (!type->isArrayType())
4891 return array;
4893 type = type->getCanonicalTypeInternal().getTypePtr();
4894 atype = cast<ArrayType>(type);
4896 if (type->isConstantArrayType()) {
4897 const ConstantArrayType *ca = cast<ConstantArrayType>(atype);
4898 size = extract_affine(ca->getSize());
4899 array = update_size(array, pos, size);
4900 } else if (type->isVariableArrayType()) {
4901 const VariableArrayType *vla = cast<VariableArrayType>(atype);
4902 size = extract_affine(vla->getSizeExpr());
4903 array = update_size(array, pos, size);
4906 type = atype->getElementType().getTypePtr();
4908 return set_upper_bounds(array, type, pos + 1);
4911 /* Is "T" the type of a variable length array with static size?
4913 static bool is_vla_with_static_size(QualType T)
4915 const VariableArrayType *vlatype;
4917 if (!T->isVariableArrayType())
4918 return false;
4919 vlatype = cast<VariableArrayType>(T);
4920 return vlatype->getSizeModifier() == VariableArrayType::Static;
4923 /* Return the type of "decl" as an array.
4925 * In particular, if "decl" is a parameter declaration that
4926 * is a variable length array with a static size, then
4927 * return the original type (i.e., the variable length array).
4928 * Otherwise, return the type of decl.
4930 static QualType get_array_type(ValueDecl *decl)
4932 ParmVarDecl *parm;
4933 QualType T;
4935 parm = dyn_cast<ParmVarDecl>(decl);
4936 if (!parm)
4937 return decl->getType();
4939 T = parm->getOriginalType();
4940 if (!is_vla_with_static_size(T))
4941 return decl->getType();
4942 return T;
4945 /* Construct and return a pet_array corresponding to the variable "decl".
4946 * In particular, initialize array->extent to
4948 * { name[i_1,...,i_d] : i_1,...,i_d >= 0 }
4950 * and then call set_upper_bounds to set the upper bounds on the indices
4951 * based on the type of the variable.
4953 struct pet_array *PetScan::extract_array(isl_ctx *ctx, ValueDecl *decl)
4955 struct pet_array *array;
4956 QualType qt = get_array_type(decl);
4957 const Type *type = qt.getTypePtr();
4958 int depth = array_depth(type);
4959 QualType base = base_type(qt);
4960 string name;
4961 isl_id *id;
4962 isl_space *dim;
4964 array = isl_calloc_type(ctx, struct pet_array);
4965 if (!array)
4966 return NULL;
4968 id = isl_id_alloc(ctx, decl->getName().str().c_str(), decl);
4969 dim = isl_space_set_alloc(ctx, 0, depth);
4970 dim = isl_space_set_tuple_id(dim, isl_dim_set, id);
4972 array->extent = isl_set_nat_universe(dim);
4974 dim = isl_space_params_alloc(ctx, 0);
4975 array->context = isl_set_universe(dim);
4977 array = set_upper_bounds(array, type, 0);
4978 if (!array)
4979 return NULL;
4981 name = base.getAsString();
4982 array->element_type = strdup(name.c_str());
4983 array->element_size = decl->getASTContext().getTypeInfo(base).first / 8;
4985 return array;
4988 /* Construct a list of pet_arrays, one for each array (or scalar)
4989 * accessed inside "scop", add this list to "scop" and return the result.
4991 * The context of "scop" is updated with the intersection of
4992 * the contexts of all arrays, i.e., constraints on the parameters
4993 * that ensure that the arrays have a valid (non-negative) size.
4995 struct pet_scop *PetScan::scan_arrays(struct pet_scop *scop)
4997 int i;
4998 set<ValueDecl *> arrays;
4999 set<ValueDecl *>::iterator it;
5000 int n_array;
5001 struct pet_array **scop_arrays;
5003 if (!scop)
5004 return NULL;
5006 pet_scop_collect_arrays(scop, arrays);
5007 if (arrays.size() == 0)
5008 return scop;
5010 n_array = scop->n_array;
5012 scop_arrays = isl_realloc_array(ctx, scop->arrays, struct pet_array *,
5013 n_array + arrays.size());
5014 if (!scop_arrays)
5015 goto error;
5016 scop->arrays = scop_arrays;
5018 for (it = arrays.begin(), i = 0; it != arrays.end(); ++it, ++i) {
5019 struct pet_array *array;
5020 scop->arrays[n_array + i] = array = extract_array(ctx, *it);
5021 if (!scop->arrays[n_array + i])
5022 goto error;
5023 scop->n_array++;
5024 scop->context = isl_set_intersect(scop->context,
5025 isl_set_copy(array->context));
5026 if (!scop->context)
5027 goto error;
5030 return scop;
5031 error:
5032 pet_scop_free(scop);
5033 return NULL;
5036 /* Bound all parameters in scop->context to the possible values
5037 * of the corresponding C variable.
5039 static struct pet_scop *add_parameter_bounds(struct pet_scop *scop)
5041 int n;
5043 if (!scop)
5044 return NULL;
5046 n = isl_set_dim(scop->context, isl_dim_param);
5047 for (int i = 0; i < n; ++i) {
5048 isl_id *id;
5049 ValueDecl *decl;
5051 id = isl_set_get_dim_id(scop->context, isl_dim_param, i);
5052 if (is_nested_parameter(id)) {
5053 isl_id_free(id);
5054 isl_die(isl_set_get_ctx(scop->context),
5055 isl_error_internal,
5056 "unresolved nested parameter", goto error);
5058 decl = (ValueDecl *) isl_id_get_user(id);
5059 isl_id_free(id);
5061 scop->context = set_parameter_bounds(scop->context, i, decl);
5063 if (!scop->context)
5064 goto error;
5067 return scop;
5068 error:
5069 pet_scop_free(scop);
5070 return NULL;
5073 /* Construct a pet_scop from the given function.
5075 * If the scop was delimited by scop and endscop pragmas, then we override
5076 * the file offsets by those derived from the pragmas.
5078 struct pet_scop *PetScan::scan(FunctionDecl *fd)
5080 pet_scop *scop;
5081 Stmt *stmt;
5083 stmt = fd->getBody();
5085 if (options->autodetect)
5086 scop = extract(stmt, true);
5087 else {
5088 scop = scan(stmt);
5089 scop = pet_scop_update_start_end(scop, loc.start, loc.end);
5091 scop = pet_scop_detect_parameter_accesses(scop);
5092 scop = scan_arrays(scop);
5093 scop = add_parameter_bounds(scop);
5094 scop = pet_scop_gist(scop, value_bounds);
5096 return scop;