PetScan::extract_for: always keep virtual iterator if we use one
[pet.git] / scan.cc
blob74af06ff9e31ea03cc2ce9ac6c4672f41c82a37e
1 /*
2 * Copyright 2011 Leiden University. All rights reserved.
3 * Copyright 2012-2014 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 "clang.h"
51 #include "options.h"
52 #include "scan.h"
53 #include "scop.h"
54 #include "scop_plus.h"
56 #include "config.h"
58 using namespace std;
59 using namespace clang;
61 #if defined(DECLREFEXPR_CREATE_REQUIRES_BOOL)
62 static DeclRefExpr *create_DeclRefExpr(VarDecl *var)
64 return DeclRefExpr::Create(var->getASTContext(), var->getQualifierLoc(),
65 SourceLocation(), var, false, var->getInnerLocStart(),
66 var->getType(), VK_LValue);
68 #elif defined(DECLREFEXPR_CREATE_REQUIRES_SOURCELOCATION)
69 static DeclRefExpr *create_DeclRefExpr(VarDecl *var)
71 return DeclRefExpr::Create(var->getASTContext(), var->getQualifierLoc(),
72 SourceLocation(), var, var->getInnerLocStart(), var->getType(),
73 VK_LValue);
75 #else
76 static DeclRefExpr *create_DeclRefExpr(VarDecl *var)
78 return DeclRefExpr::Create(var->getASTContext(), var->getQualifierLoc(),
79 var, var->getInnerLocStart(), var->getType(), VK_LValue);
81 #endif
83 /* Check if the element type corresponding to the given array type
84 * has a const qualifier.
86 static bool const_base(QualType qt)
88 const Type *type = qt.getTypePtr();
90 if (type->isPointerType())
91 return const_base(type->getPointeeType());
92 if (type->isArrayType()) {
93 const ArrayType *atype;
94 type = type->getCanonicalTypeInternal().getTypePtr();
95 atype = cast<ArrayType>(type);
96 return const_base(atype->getElementType());
99 return qt.isConstQualified();
102 /* Mark "decl" as having an unknown value in "assigned_value".
104 * If no (known or unknown) value was assigned to "decl" before,
105 * then it may have been treated as a parameter before and may
106 * therefore appear in a value assigned to another variable.
107 * If so, this assignment needs to be turned into an unknown value too.
109 static void clear_assignment(map<ValueDecl *, isl_pw_aff *> &assigned_value,
110 ValueDecl *decl)
112 map<ValueDecl *, isl_pw_aff *>::iterator it;
114 it = assigned_value.find(decl);
116 assigned_value[decl] = NULL;
118 if (it == assigned_value.end())
119 return;
121 for (it = assigned_value.begin(); it != assigned_value.end(); ++it) {
122 isl_pw_aff *pa = it->second;
123 int nparam = isl_pw_aff_dim(pa, isl_dim_param);
125 for (int i = 0; i < nparam; ++i) {
126 isl_id *id;
128 if (!isl_pw_aff_has_dim_id(pa, isl_dim_param, i))
129 continue;
130 id = isl_pw_aff_get_dim_id(pa, isl_dim_param, i);
131 if (isl_id_get_user(id) == decl)
132 it->second = NULL;
133 isl_id_free(id);
138 /* Look for any assignments to scalar variables in part of the parse
139 * tree and set assigned_value to NULL for each of them.
140 * Also reset assigned_value if the address of a scalar variable
141 * is being taken. As an exception, if the address is passed to a function
142 * that is declared to receive a const pointer, then assigned_value is
143 * not reset.
145 * This ensures that we won't use any previously stored value
146 * in the current subtree and its parents.
148 struct clear_assignments : RecursiveASTVisitor<clear_assignments> {
149 map<ValueDecl *, isl_pw_aff *> &assigned_value;
150 set<UnaryOperator *> skip;
152 clear_assignments(map<ValueDecl *, isl_pw_aff *> &assigned_value) :
153 assigned_value(assigned_value) {}
155 /* Check for "address of" operators whose value is passed
156 * to a const pointer argument and add them to "skip", so that
157 * we can skip them in VisitUnaryOperator.
159 bool VisitCallExpr(CallExpr *expr) {
160 FunctionDecl *fd;
161 fd = expr->getDirectCallee();
162 if (!fd)
163 return true;
164 for (int i = 0; i < expr->getNumArgs(); ++i) {
165 Expr *arg = expr->getArg(i);
166 UnaryOperator *op;
167 if (arg->getStmtClass() == Stmt::ImplicitCastExprClass) {
168 ImplicitCastExpr *ice;
169 ice = cast<ImplicitCastExpr>(arg);
170 arg = ice->getSubExpr();
172 if (arg->getStmtClass() != Stmt::UnaryOperatorClass)
173 continue;
174 op = cast<UnaryOperator>(arg);
175 if (op->getOpcode() != UO_AddrOf)
176 continue;
177 if (const_base(fd->getParamDecl(i)->getType()))
178 skip.insert(op);
180 return true;
183 bool VisitUnaryOperator(UnaryOperator *expr) {
184 Expr *arg;
185 DeclRefExpr *ref;
186 ValueDecl *decl;
188 switch (expr->getOpcode()) {
189 case UO_AddrOf:
190 case UO_PostInc:
191 case UO_PostDec:
192 case UO_PreInc:
193 case UO_PreDec:
194 break;
195 default:
196 return true;
198 if (skip.find(expr) != skip.end())
199 return true;
201 arg = expr->getSubExpr();
202 if (arg->getStmtClass() != Stmt::DeclRefExprClass)
203 return true;
204 ref = cast<DeclRefExpr>(arg);
205 decl = ref->getDecl();
206 clear_assignment(assigned_value, decl);
207 return true;
210 bool VisitBinaryOperator(BinaryOperator *expr) {
211 Expr *lhs;
212 DeclRefExpr *ref;
213 ValueDecl *decl;
215 if (!expr->isAssignmentOp())
216 return true;
217 lhs = expr->getLHS();
218 if (lhs->getStmtClass() != Stmt::DeclRefExprClass)
219 return true;
220 ref = cast<DeclRefExpr>(lhs);
221 decl = ref->getDecl();
222 clear_assignment(assigned_value, decl);
223 return true;
227 /* Keep a copy of the currently assigned values.
229 * Any variable that is assigned a value inside the current scope
230 * is removed again when we leave the scope (either because it wasn't
231 * stored in the cache or because it has a different value in the cache).
233 struct assigned_value_cache {
234 map<ValueDecl *, isl_pw_aff *> &assigned_value;
235 map<ValueDecl *, isl_pw_aff *> cache;
237 assigned_value_cache(map<ValueDecl *, isl_pw_aff *> &assigned_value) :
238 assigned_value(assigned_value), cache(assigned_value) {}
239 ~assigned_value_cache() {
240 map<ValueDecl *, isl_pw_aff *>::iterator it = cache.begin();
241 for (it = assigned_value.begin(); it != assigned_value.end();
242 ++it) {
243 if (!it->second ||
244 (cache.find(it->first) != cache.end() &&
245 cache[it->first] != it->second))
246 cache[it->first] = NULL;
248 assigned_value = cache;
252 /* Insert an expression into the collection of expressions,
253 * provided it is not already in there.
254 * The isl_pw_affs are freed in the destructor.
256 void PetScan::insert_expression(__isl_take isl_pw_aff *expr)
258 std::set<isl_pw_aff *>::iterator it;
260 if (expressions.find(expr) == expressions.end())
261 expressions.insert(expr);
262 else
263 isl_pw_aff_free(expr);
266 PetScan::~PetScan()
268 std::set<isl_pw_aff *>::iterator it;
270 for (it = expressions.begin(); it != expressions.end(); ++it)
271 isl_pw_aff_free(*it);
273 isl_union_map_free(value_bounds);
276 /* Report a diagnostic, unless autodetect is set.
278 void PetScan::report(Stmt *stmt, unsigned id)
280 if (options->autodetect)
281 return;
283 SourceLocation loc = stmt->getLocStart();
284 DiagnosticsEngine &diag = PP.getDiagnostics();
285 DiagnosticBuilder B = diag.Report(loc, id) << stmt->getSourceRange();
288 /* Called if we found something we (currently) cannot handle.
289 * We'll provide more informative warnings later.
291 * We only actually complain if autodetect is false.
293 void PetScan::unsupported(Stmt *stmt)
295 DiagnosticsEngine &diag = PP.getDiagnostics();
296 unsigned id = diag.getCustomDiagID(DiagnosticsEngine::Warning,
297 "unsupported");
298 report(stmt, id);
301 /* Report a missing prototype, unless autodetect is set.
303 void PetScan::report_prototype_required(Stmt *stmt)
305 DiagnosticsEngine &diag = PP.getDiagnostics();
306 unsigned id = diag.getCustomDiagID(DiagnosticsEngine::Warning,
307 "prototype required");
308 report(stmt, id);
311 /* Extract an integer from "expr".
313 __isl_give isl_val *PetScan::extract_int(isl_ctx *ctx, IntegerLiteral *expr)
315 const Type *type = expr->getType().getTypePtr();
316 int is_signed = type->hasSignedIntegerRepresentation();
317 llvm::APInt val = expr->getValue();
318 int is_negative = is_signed && val.isNegative();
319 isl_val *v;
321 if (is_negative)
322 val = -val;
324 v = extract_unsigned(ctx, val);
326 if (is_negative)
327 v = isl_val_neg(v);
328 return v;
331 /* Extract an integer from "val", which assumed to be non-negative.
333 __isl_give isl_val *PetScan::extract_unsigned(isl_ctx *ctx,
334 const llvm::APInt &val)
336 unsigned n;
337 const uint64_t *data;
339 data = val.getRawData();
340 n = val.getNumWords();
341 return isl_val_int_from_chunks(ctx, n, sizeof(uint64_t), data);
344 /* Extract an integer from "expr".
345 * Return NULL if "expr" does not (obviously) represent an integer.
347 __isl_give isl_val *PetScan::extract_int(clang::ParenExpr *expr)
349 return extract_int(expr->getSubExpr());
352 /* Extract an integer from "expr".
353 * Return NULL if "expr" does not (obviously) represent an integer.
355 __isl_give isl_val *PetScan::extract_int(clang::Expr *expr)
357 if (expr->getStmtClass() == Stmt::IntegerLiteralClass)
358 return extract_int(ctx, cast<IntegerLiteral>(expr));
359 if (expr->getStmtClass() == Stmt::ParenExprClass)
360 return extract_int(cast<ParenExpr>(expr));
362 unsupported(expr);
363 return NULL;
366 /* Extract an affine expression from the IntegerLiteral "expr".
368 __isl_give isl_pw_aff *PetScan::extract_affine(IntegerLiteral *expr)
370 isl_space *dim = isl_space_params_alloc(ctx, 0);
371 isl_local_space *ls = isl_local_space_from_space(isl_space_copy(dim));
372 isl_aff *aff = isl_aff_zero_on_domain(ls);
373 isl_set *dom = isl_set_universe(dim);
374 isl_val *v;
376 v = extract_int(expr);
377 aff = isl_aff_add_constant_val(aff, v);
379 return isl_pw_aff_alloc(dom, aff);
382 /* Extract an affine expression from the APInt "val", which is assumed
383 * to be non-negative.
385 __isl_give isl_pw_aff *PetScan::extract_affine(const llvm::APInt &val)
387 isl_space *dim = isl_space_params_alloc(ctx, 0);
388 isl_local_space *ls = isl_local_space_from_space(isl_space_copy(dim));
389 isl_aff *aff = isl_aff_zero_on_domain(ls);
390 isl_set *dom = isl_set_universe(dim);
391 isl_val *v;
393 v = extract_unsigned(ctx, val);
394 aff = isl_aff_add_constant_val(aff, v);
396 return isl_pw_aff_alloc(dom, aff);
399 __isl_give isl_pw_aff *PetScan::extract_affine(ImplicitCastExpr *expr)
401 return extract_affine(expr->getSubExpr());
404 static unsigned get_type_size(ValueDecl *decl)
406 return decl->getASTContext().getIntWidth(decl->getType());
409 /* Bound parameter "pos" of "set" to the possible values of "decl".
411 static __isl_give isl_set *set_parameter_bounds(__isl_take isl_set *set,
412 unsigned pos, ValueDecl *decl)
414 unsigned width;
415 isl_ctx *ctx;
416 isl_val *bound;
418 ctx = isl_set_get_ctx(set);
419 width = get_type_size(decl);
420 if (decl->getType()->isUnsignedIntegerType()) {
421 set = isl_set_lower_bound_si(set, isl_dim_param, pos, 0);
422 bound = isl_val_int_from_ui(ctx, width);
423 bound = isl_val_2exp(bound);
424 bound = isl_val_sub_ui(bound, 1);
425 set = isl_set_upper_bound_val(set, isl_dim_param, pos, bound);
426 } else {
427 bound = isl_val_int_from_ui(ctx, width - 1);
428 bound = isl_val_2exp(bound);
429 bound = isl_val_sub_ui(bound, 1);
430 set = isl_set_upper_bound_val(set, isl_dim_param, pos,
431 isl_val_copy(bound));
432 bound = isl_val_neg(bound);
433 bound = isl_val_sub_ui(bound, 1);
434 set = isl_set_lower_bound_val(set, isl_dim_param, pos, bound);
437 return set;
440 /* Extract an affine expression from the DeclRefExpr "expr".
442 * If the variable has been assigned a value, then we check whether
443 * we know what (affine) value was assigned.
444 * If so, we return this value. Otherwise we convert "expr"
445 * to an extra parameter (provided nesting_enabled is set).
447 * Otherwise, we simply return an expression that is equal
448 * to a parameter corresponding to the referenced variable.
450 __isl_give isl_pw_aff *PetScan::extract_affine(DeclRefExpr *expr)
452 ValueDecl *decl = expr->getDecl();
453 const Type *type = decl->getType().getTypePtr();
454 isl_id *id;
455 isl_space *dim;
456 isl_aff *aff;
457 isl_set *dom;
459 if (!type->isIntegerType()) {
460 unsupported(expr);
461 return NULL;
464 if (assigned_value.find(decl) != assigned_value.end()) {
465 if (assigned_value[decl])
466 return isl_pw_aff_copy(assigned_value[decl]);
467 else
468 return nested_access(expr);
471 id = isl_id_alloc(ctx, decl->getName().str().c_str(), decl);
472 dim = isl_space_params_alloc(ctx, 1);
474 dim = isl_space_set_dim_id(dim, isl_dim_param, 0, id);
476 dom = isl_set_universe(isl_space_copy(dim));
477 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
478 aff = isl_aff_add_coefficient_si(aff, isl_dim_param, 0, 1);
480 return isl_pw_aff_alloc(dom, aff);
483 /* Extract an affine expression from an integer division operation.
484 * In particular, if "expr" is lhs/rhs, then return
486 * lhs >= 0 ? floor(lhs/rhs) : ceil(lhs/rhs)
488 * The second argument (rhs) is required to be a (positive) integer constant.
490 __isl_give isl_pw_aff *PetScan::extract_affine_div(BinaryOperator *expr)
492 int is_cst;
493 isl_pw_aff *rhs, *lhs;
495 rhs = extract_affine(expr->getRHS());
496 is_cst = isl_pw_aff_is_cst(rhs);
497 if (is_cst < 0 || !is_cst) {
498 isl_pw_aff_free(rhs);
499 if (!is_cst)
500 unsupported(expr);
501 return NULL;
504 lhs = extract_affine(expr->getLHS());
506 return isl_pw_aff_tdiv_q(lhs, rhs);
509 /* Extract an affine expression from a modulo operation.
510 * In particular, if "expr" is lhs/rhs, then return
512 * lhs - rhs * (lhs >= 0 ? floor(lhs/rhs) : ceil(lhs/rhs))
514 * The second argument (rhs) is required to be a (positive) integer constant.
516 __isl_give isl_pw_aff *PetScan::extract_affine_mod(BinaryOperator *expr)
518 int is_cst;
519 isl_pw_aff *rhs, *lhs;
521 rhs = extract_affine(expr->getRHS());
522 is_cst = isl_pw_aff_is_cst(rhs);
523 if (is_cst < 0 || !is_cst) {
524 isl_pw_aff_free(rhs);
525 if (!is_cst)
526 unsupported(expr);
527 return NULL;
530 lhs = extract_affine(expr->getLHS());
532 return isl_pw_aff_tdiv_r(lhs, rhs);
535 /* Extract an affine expression from a multiplication operation.
536 * This is only allowed if at least one of the two arguments
537 * is a (piecewise) constant.
539 __isl_give isl_pw_aff *PetScan::extract_affine_mul(BinaryOperator *expr)
541 isl_pw_aff *lhs;
542 isl_pw_aff *rhs;
544 lhs = extract_affine(expr->getLHS());
545 rhs = extract_affine(expr->getRHS());
547 if (!isl_pw_aff_is_cst(lhs) && !isl_pw_aff_is_cst(rhs)) {
548 isl_pw_aff_free(lhs);
549 isl_pw_aff_free(rhs);
550 unsupported(expr);
551 return NULL;
554 return isl_pw_aff_mul(lhs, rhs);
557 /* Extract an affine expression from an addition or subtraction operation.
559 __isl_give isl_pw_aff *PetScan::extract_affine_add(BinaryOperator *expr)
561 isl_pw_aff *lhs;
562 isl_pw_aff *rhs;
564 lhs = extract_affine(expr->getLHS());
565 rhs = extract_affine(expr->getRHS());
567 switch (expr->getOpcode()) {
568 case BO_Add:
569 return isl_pw_aff_add(lhs, rhs);
570 case BO_Sub:
571 return isl_pw_aff_sub(lhs, rhs);
572 default:
573 isl_pw_aff_free(lhs);
574 isl_pw_aff_free(rhs);
575 return NULL;
580 /* Compute
582 * pwaff mod 2^width
584 static __isl_give isl_pw_aff *wrap(__isl_take isl_pw_aff *pwaff,
585 unsigned width)
587 isl_ctx *ctx;
588 isl_val *mod;
590 ctx = isl_pw_aff_get_ctx(pwaff);
591 mod = isl_val_int_from_ui(ctx, width);
592 mod = isl_val_2exp(mod);
594 pwaff = isl_pw_aff_mod_val(pwaff, mod);
596 return pwaff;
599 /* Limit the domain of "pwaff" to those elements where the function
600 * value satisfies
602 * 2^{width-1} <= pwaff < 2^{width-1}
604 static __isl_give isl_pw_aff *avoid_overflow(__isl_take isl_pw_aff *pwaff,
605 unsigned width)
607 isl_ctx *ctx;
608 isl_val *v;
609 isl_space *space = isl_pw_aff_get_domain_space(pwaff);
610 isl_local_space *ls = isl_local_space_from_space(space);
611 isl_aff *bound;
612 isl_set *dom;
613 isl_pw_aff *b;
615 ctx = isl_pw_aff_get_ctx(pwaff);
616 v = isl_val_int_from_ui(ctx, width - 1);
617 v = isl_val_2exp(v);
619 bound = isl_aff_zero_on_domain(ls);
620 bound = isl_aff_add_constant_val(bound, v);
621 b = isl_pw_aff_from_aff(bound);
623 dom = isl_pw_aff_lt_set(isl_pw_aff_copy(pwaff), isl_pw_aff_copy(b));
624 pwaff = isl_pw_aff_intersect_domain(pwaff, dom);
626 b = isl_pw_aff_neg(b);
627 dom = isl_pw_aff_ge_set(isl_pw_aff_copy(pwaff), b);
628 pwaff = isl_pw_aff_intersect_domain(pwaff, dom);
630 return pwaff;
633 /* Handle potential overflows on signed computations.
635 * If options->signed_overflow is set to PET_OVERFLOW_AVOID,
636 * the we adjust the domain of "pa" to avoid overflows.
638 __isl_give isl_pw_aff *PetScan::signed_overflow(__isl_take isl_pw_aff *pa,
639 unsigned width)
641 if (options->signed_overflow == PET_OVERFLOW_AVOID)
642 pa = avoid_overflow(pa, width);
644 return pa;
647 /* Return the piecewise affine expression "set ? 1 : 0" defined on "dom".
649 static __isl_give isl_pw_aff *indicator_function(__isl_take isl_set *set,
650 __isl_take isl_set *dom)
652 isl_pw_aff *pa;
653 pa = isl_set_indicator_function(set);
654 pa = isl_pw_aff_intersect_domain(pa, dom);
655 return pa;
658 /* Extract an affine expression from some binary operations.
659 * If the result of the expression is unsigned, then we wrap it
660 * based on the size of the type. Otherwise, we ensure that
661 * no overflow occurs.
663 __isl_give isl_pw_aff *PetScan::extract_affine(BinaryOperator *expr)
665 isl_pw_aff *res;
666 unsigned width;
668 switch (expr->getOpcode()) {
669 case BO_Add:
670 case BO_Sub:
671 res = extract_affine_add(expr);
672 break;
673 case BO_Div:
674 res = extract_affine_div(expr);
675 break;
676 case BO_Rem:
677 res = extract_affine_mod(expr);
678 break;
679 case BO_Mul:
680 res = extract_affine_mul(expr);
681 break;
682 case BO_LT:
683 case BO_LE:
684 case BO_GT:
685 case BO_GE:
686 case BO_EQ:
687 case BO_NE:
688 case BO_LAnd:
689 case BO_LOr:
690 return extract_condition(expr);
691 default:
692 unsupported(expr);
693 return NULL;
696 width = ast_context.getIntWidth(expr->getType());
697 if (expr->getType()->isUnsignedIntegerType())
698 res = wrap(res, width);
699 else
700 res = signed_overflow(res, width);
702 return res;
705 /* Extract an affine expression from a negation operation.
707 __isl_give isl_pw_aff *PetScan::extract_affine(UnaryOperator *expr)
709 if (expr->getOpcode() == UO_Minus)
710 return isl_pw_aff_neg(extract_affine(expr->getSubExpr()));
711 if (expr->getOpcode() == UO_LNot)
712 return extract_condition(expr);
714 unsupported(expr);
715 return NULL;
718 __isl_give isl_pw_aff *PetScan::extract_affine(ParenExpr *expr)
720 return extract_affine(expr->getSubExpr());
723 /* Extract an affine expression from some special function calls.
724 * In particular, we handle "min", "max", "ceild" and "floord".
725 * In case of the latter two, the second argument needs to be
726 * a (positive) integer constant.
728 __isl_give isl_pw_aff *PetScan::extract_affine(CallExpr *expr)
730 FunctionDecl *fd;
731 string name;
732 isl_pw_aff *aff1, *aff2;
734 fd = expr->getDirectCallee();
735 if (!fd) {
736 unsupported(expr);
737 return NULL;
740 name = fd->getDeclName().getAsString();
741 if (!(expr->getNumArgs() == 2 && name == "min") &&
742 !(expr->getNumArgs() == 2 && name == "max") &&
743 !(expr->getNumArgs() == 2 && name == "floord") &&
744 !(expr->getNumArgs() == 2 && name == "ceild")) {
745 unsupported(expr);
746 return NULL;
749 if (name == "min" || name == "max") {
750 aff1 = extract_affine(expr->getArg(0));
751 aff2 = extract_affine(expr->getArg(1));
753 if (name == "min")
754 aff1 = isl_pw_aff_min(aff1, aff2);
755 else
756 aff1 = isl_pw_aff_max(aff1, aff2);
757 } else if (name == "floord" || name == "ceild") {
758 isl_val *v;
759 Expr *arg2 = expr->getArg(1);
761 if (arg2->getStmtClass() != Stmt::IntegerLiteralClass) {
762 unsupported(expr);
763 return NULL;
765 aff1 = extract_affine(expr->getArg(0));
766 v = extract_int(cast<IntegerLiteral>(arg2));
767 aff1 = isl_pw_aff_scale_down_val(aff1, v);
768 if (name == "floord")
769 aff1 = isl_pw_aff_floor(aff1);
770 else
771 aff1 = isl_pw_aff_ceil(aff1);
772 } else {
773 unsupported(expr);
774 return NULL;
777 return aff1;
780 /* This method is called when we come across an access that is
781 * nested in what is supposed to be an affine expression.
782 * If nesting is allowed, we return a new parameter that corresponds
783 * to this nested access. Otherwise, we simply complain.
785 * Note that we currently don't allow nested accesses themselves
786 * to contain any nested accesses, so we check if we can extract
787 * the access without any nesting and complain if we can't.
789 * The new parameter is resolved in resolve_nested.
791 isl_pw_aff *PetScan::nested_access(Expr *expr)
793 isl_id *id;
794 isl_space *dim;
795 isl_aff *aff;
796 isl_set *dom;
797 isl_multi_pw_aff *index;
799 if (!nesting_enabled) {
800 unsupported(expr);
801 return NULL;
804 allow_nested = false;
805 index = extract_index(expr);
806 allow_nested = true;
807 if (!index) {
808 unsupported(expr);
809 return NULL;
811 isl_multi_pw_aff_free(index);
813 id = isl_id_alloc(ctx, NULL, expr);
814 dim = isl_space_params_alloc(ctx, 1);
816 dim = isl_space_set_dim_id(dim, isl_dim_param, 0, id);
818 dom = isl_set_universe(isl_space_copy(dim));
819 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
820 aff = isl_aff_add_coefficient_si(aff, isl_dim_param, 0, 1);
822 return isl_pw_aff_alloc(dom, aff);
825 /* Affine expressions are not supposed to contain array accesses,
826 * but if nesting is allowed, we return a parameter corresponding
827 * to the array access.
829 __isl_give isl_pw_aff *PetScan::extract_affine(ArraySubscriptExpr *expr)
831 return nested_access(expr);
834 /* Affine expressions are not supposed to contain member accesses,
835 * but if nesting is allowed, we return a parameter corresponding
836 * to the member access.
838 __isl_give isl_pw_aff *PetScan::extract_affine(MemberExpr *expr)
840 return nested_access(expr);
843 /* Extract an affine expression from a conditional operation.
845 __isl_give isl_pw_aff *PetScan::extract_affine(ConditionalOperator *expr)
847 isl_pw_aff *cond, *lhs, *rhs;
849 cond = extract_condition(expr->getCond());
850 lhs = extract_affine(expr->getTrueExpr());
851 rhs = extract_affine(expr->getFalseExpr());
853 return isl_pw_aff_cond(cond, lhs, rhs);
856 /* Extract an affine expression, if possible, from "expr".
857 * Otherwise return NULL.
859 __isl_give isl_pw_aff *PetScan::extract_affine(Expr *expr)
861 switch (expr->getStmtClass()) {
862 case Stmt::ImplicitCastExprClass:
863 return extract_affine(cast<ImplicitCastExpr>(expr));
864 case Stmt::IntegerLiteralClass:
865 return extract_affine(cast<IntegerLiteral>(expr));
866 case Stmt::DeclRefExprClass:
867 return extract_affine(cast<DeclRefExpr>(expr));
868 case Stmt::BinaryOperatorClass:
869 return extract_affine(cast<BinaryOperator>(expr));
870 case Stmt::UnaryOperatorClass:
871 return extract_affine(cast<UnaryOperator>(expr));
872 case Stmt::ParenExprClass:
873 return extract_affine(cast<ParenExpr>(expr));
874 case Stmt::CallExprClass:
875 return extract_affine(cast<CallExpr>(expr));
876 case Stmt::ArraySubscriptExprClass:
877 return extract_affine(cast<ArraySubscriptExpr>(expr));
878 case Stmt::MemberExprClass:
879 return extract_affine(cast<MemberExpr>(expr));
880 case Stmt::ConditionalOperatorClass:
881 return extract_affine(cast<ConditionalOperator>(expr));
882 default:
883 unsupported(expr);
885 return NULL;
888 __isl_give isl_multi_pw_aff *PetScan::extract_index(ImplicitCastExpr *expr)
890 return extract_index(expr->getSubExpr());
893 /* Return the depth of an array of the given type.
895 static int array_depth(const Type *type)
897 if (type->isPointerType())
898 return 1 + array_depth(type->getPointeeType().getTypePtr());
899 if (type->isArrayType()) {
900 const ArrayType *atype;
901 type = type->getCanonicalTypeInternal().getTypePtr();
902 atype = cast<ArrayType>(type);
903 return 1 + array_depth(atype->getElementType().getTypePtr());
905 return 0;
908 /* Return the depth of the array accessed by the index expression "index".
909 * If "index" is an affine expression, i.e., if it does not access
910 * any array, then return 1.
911 * If "index" represent a member access, i.e., if its range is a wrapped
912 * relation, then return the sum of the depth of the array of structures
913 * and that of the member inside the structure.
915 static int extract_depth(__isl_keep isl_multi_pw_aff *index)
917 isl_id *id;
918 ValueDecl *decl;
920 if (!index)
921 return -1;
923 if (isl_multi_pw_aff_range_is_wrapping(index)) {
924 int domain_depth, range_depth;
925 isl_multi_pw_aff *domain, *range;
927 domain = isl_multi_pw_aff_copy(index);
928 domain = isl_multi_pw_aff_range_factor_domain(domain);
929 domain_depth = extract_depth(domain);
930 isl_multi_pw_aff_free(domain);
931 range = isl_multi_pw_aff_copy(index);
932 range = isl_multi_pw_aff_range_factor_range(range);
933 range_depth = extract_depth(range);
934 isl_multi_pw_aff_free(range);
936 return domain_depth + range_depth;
939 if (!isl_multi_pw_aff_has_tuple_id(index, isl_dim_out))
940 return 1;
942 id = isl_multi_pw_aff_get_tuple_id(index, isl_dim_out);
943 if (!id)
944 return -1;
945 decl = (ValueDecl *) isl_id_get_user(id);
946 isl_id_free(id);
948 return array_depth(decl->getType().getTypePtr());
951 /* Extract an index expression from a reference to a variable.
952 * If the variable has name "A", then the returned index expression
953 * is of the form
955 * { [] -> A[] }
957 __isl_give isl_multi_pw_aff *PetScan::extract_index(DeclRefExpr *expr)
959 return extract_index(expr->getDecl());
962 /* Extract an index expression from a variable.
963 * If the variable has name "A", then the returned index expression
964 * is of the form
966 * { [] -> A[] }
968 __isl_give isl_multi_pw_aff *PetScan::extract_index(ValueDecl *decl)
970 isl_id *id = isl_id_alloc(ctx, decl->getName().str().c_str(), decl);
971 isl_space *space = isl_space_alloc(ctx, 0, 0, 0);
973 space = isl_space_set_tuple_id(space, isl_dim_out, id);
975 return isl_multi_pw_aff_zero(space);
978 /* Extract an index expression from an integer contant.
979 * If the value of the constant is "v", then the returned access relation
980 * is
982 * { [] -> [v] }
984 __isl_give isl_multi_pw_aff *PetScan::extract_index(IntegerLiteral *expr)
986 isl_multi_pw_aff *mpa;
988 mpa = isl_multi_pw_aff_from_pw_aff(extract_affine(expr));
989 mpa = isl_multi_pw_aff_from_range(mpa);
990 return mpa;
993 /* Try and extract an index expression from the given Expr.
994 * Return NULL if it doesn't work out.
996 __isl_give isl_multi_pw_aff *PetScan::extract_index(Expr *expr)
998 switch (expr->getStmtClass()) {
999 case Stmt::ImplicitCastExprClass:
1000 return extract_index(cast<ImplicitCastExpr>(expr));
1001 case Stmt::DeclRefExprClass:
1002 return extract_index(cast<DeclRefExpr>(expr));
1003 case Stmt::ArraySubscriptExprClass:
1004 return extract_index(cast<ArraySubscriptExpr>(expr));
1005 case Stmt::IntegerLiteralClass:
1006 return extract_index(cast<IntegerLiteral>(expr));
1007 case Stmt::MemberExprClass:
1008 return extract_index(cast<MemberExpr>(expr));
1009 default:
1010 unsupported(expr);
1012 return NULL;
1015 /* Given a partial index expression "base" and an extra index "index",
1016 * append the extra index to "base" and return the result.
1017 * Additionally, add the constraints that the extra index is non-negative.
1018 * If "index" represent a member access, i.e., if its range is a wrapped
1019 * relation, then we recursively extend the range of this nested relation.
1021 static __isl_give isl_multi_pw_aff *subscript(__isl_take isl_multi_pw_aff *base,
1022 __isl_take isl_pw_aff *index)
1024 isl_id *id;
1025 isl_set *domain;
1026 isl_multi_pw_aff *access;
1027 int member_access;
1029 member_access = isl_multi_pw_aff_range_is_wrapping(base);
1030 if (member_access < 0)
1031 goto error;
1032 if (member_access) {
1033 isl_multi_pw_aff *domain, *range;
1034 isl_id *id;
1036 id = isl_multi_pw_aff_get_tuple_id(base, isl_dim_out);
1037 domain = isl_multi_pw_aff_copy(base);
1038 domain = isl_multi_pw_aff_range_factor_domain(domain);
1039 range = isl_multi_pw_aff_range_factor_range(base);
1040 range = subscript(range, index);
1041 access = isl_multi_pw_aff_range_product(domain, range);
1042 access = isl_multi_pw_aff_set_tuple_id(access, isl_dim_out, id);
1043 return access;
1046 id = isl_multi_pw_aff_get_tuple_id(base, isl_dim_set);
1047 index = isl_pw_aff_from_range(index);
1048 domain = isl_pw_aff_nonneg_set(isl_pw_aff_copy(index));
1049 index = isl_pw_aff_intersect_domain(index, domain);
1050 access = isl_multi_pw_aff_from_pw_aff(index);
1051 access = isl_multi_pw_aff_flat_range_product(base, access);
1052 access = isl_multi_pw_aff_set_tuple_id(access, isl_dim_set, id);
1054 return access;
1055 error:
1056 isl_multi_pw_aff_free(base);
1057 isl_pw_aff_free(index);
1058 return NULL;
1061 /* Extract an index expression from the given array subscript expression.
1062 * If nesting is allowed in general, then we turn it on while
1063 * examining the index expression.
1065 * We first extract an index expression from the base.
1066 * This will result in an index expression with a range that corresponds
1067 * to the earlier indices.
1068 * We then extract the current index, restrict its domain
1069 * to those values that result in a non-negative index and
1070 * append the index to the base index expression.
1072 __isl_give isl_multi_pw_aff *PetScan::extract_index(ArraySubscriptExpr *expr)
1074 Expr *base = expr->getBase();
1075 Expr *idx = expr->getIdx();
1076 isl_pw_aff *index;
1077 isl_multi_pw_aff *base_access;
1078 isl_multi_pw_aff *access;
1079 bool save_nesting = nesting_enabled;
1081 nesting_enabled = allow_nested;
1083 base_access = extract_index(base);
1084 index = extract_affine(idx);
1086 nesting_enabled = save_nesting;
1088 access = subscript(base_access, index);
1090 return access;
1093 /* Construct a name for a member access by concatenating the name
1094 * of the array of structures and the member, separated by an underscore.
1096 * The caller is responsible for freeing the result.
1098 static char *member_access_name(isl_ctx *ctx, const char *base,
1099 const char *field)
1101 int len;
1102 char *name;
1104 len = strlen(base) + 1 + strlen(field);
1105 name = isl_alloc_array(ctx, char, len + 1);
1106 if (!name)
1107 return NULL;
1108 snprintf(name, len + 1, "%s_%s", base, field);
1110 return name;
1113 /* Given an index expression "base" for an element of an array of structures
1114 * and an expression "field" for the field member being accessed, construct
1115 * an index expression for an access to that member of the given structure.
1116 * In particular, take the range product of "base" and "field" and
1117 * attach a name to the result.
1119 static __isl_give isl_multi_pw_aff *member(__isl_take isl_multi_pw_aff *base,
1120 __isl_take isl_multi_pw_aff *field)
1122 isl_ctx *ctx;
1123 isl_multi_pw_aff *access;
1124 const char *base_name, *field_name;
1125 char *name;
1127 ctx = isl_multi_pw_aff_get_ctx(base);
1129 base_name = isl_multi_pw_aff_get_tuple_name(base, isl_dim_out);
1130 field_name = isl_multi_pw_aff_get_tuple_name(field, isl_dim_out);
1131 name = member_access_name(ctx, base_name, field_name);
1133 access = isl_multi_pw_aff_range_product(base, field);
1135 access = isl_multi_pw_aff_set_tuple_name(access, isl_dim_out, name);
1136 free(name);
1138 return access;
1141 /* Extract an index expression from a member expression.
1143 * If the base access (to the structure containing the member)
1144 * is of the form
1146 * [] -> A[..]
1148 * and the member is called "f", then the member access is of
1149 * the form
1151 * [] -> A_f[A[..] -> f[]]
1153 * If the member access is to an anonymous struct, then simply return
1155 * [] -> A[..]
1157 * If the member access in the source code is of the form
1159 * A->f
1161 * then it is treated as
1163 * A[0].f
1165 __isl_give isl_multi_pw_aff *PetScan::extract_index(MemberExpr *expr)
1167 Expr *base = expr->getBase();
1168 FieldDecl *field = cast<FieldDecl>(expr->getMemberDecl());
1169 isl_multi_pw_aff *base_access, *field_access;
1170 isl_id *id;
1171 isl_space *space;
1173 base_access = extract_index(base);
1175 if (expr->isArrow()) {
1176 isl_space *space = isl_space_params_alloc(ctx, 0);
1177 isl_local_space *ls = isl_local_space_from_space(space);
1178 isl_aff *aff = isl_aff_zero_on_domain(ls);
1179 isl_pw_aff *index = isl_pw_aff_from_aff(aff);
1180 base_access = subscript(base_access, index);
1183 if (field->isAnonymousStructOrUnion())
1184 return base_access;
1186 id = isl_id_alloc(ctx, field->getName().str().c_str(), field);
1187 space = isl_multi_pw_aff_get_domain_space(base_access);
1188 space = isl_space_from_domain(space);
1189 space = isl_space_set_tuple_id(space, isl_dim_out, id);
1190 field_access = isl_multi_pw_aff_zero(space);
1192 return member(base_access, field_access);
1195 /* Check if "expr" calls function "minmax" with two arguments and if so
1196 * make lhs and rhs refer to these two arguments.
1198 static bool is_minmax(Expr *expr, const char *minmax, Expr *&lhs, Expr *&rhs)
1200 CallExpr *call;
1201 FunctionDecl *fd;
1202 string name;
1204 if (expr->getStmtClass() != Stmt::CallExprClass)
1205 return false;
1207 call = cast<CallExpr>(expr);
1208 fd = call->getDirectCallee();
1209 if (!fd)
1210 return false;
1212 if (call->getNumArgs() != 2)
1213 return false;
1215 name = fd->getDeclName().getAsString();
1216 if (name != minmax)
1217 return false;
1219 lhs = call->getArg(0);
1220 rhs = call->getArg(1);
1222 return true;
1225 /* Check if "expr" is of the form min(lhs, rhs) and if so make
1226 * lhs and rhs refer to the two arguments.
1228 static bool is_min(Expr *expr, Expr *&lhs, Expr *&rhs)
1230 return is_minmax(expr, "min", lhs, rhs);
1233 /* Check if "expr" is of the form max(lhs, rhs) and if so make
1234 * lhs and rhs refer to the two arguments.
1236 static bool is_max(Expr *expr, Expr *&lhs, Expr *&rhs)
1238 return is_minmax(expr, "max", lhs, rhs);
1241 /* Return "lhs && rhs", defined on the shared definition domain.
1243 static __isl_give isl_pw_aff *pw_aff_and(__isl_take isl_pw_aff *lhs,
1244 __isl_take isl_pw_aff *rhs)
1246 isl_set *cond;
1247 isl_set *dom;
1249 dom = isl_set_intersect(isl_pw_aff_domain(isl_pw_aff_copy(lhs)),
1250 isl_pw_aff_domain(isl_pw_aff_copy(rhs)));
1251 cond = isl_set_intersect(isl_pw_aff_non_zero_set(lhs),
1252 isl_pw_aff_non_zero_set(rhs));
1253 return indicator_function(cond, dom);
1256 /* Return "lhs && rhs", with shortcut semantics.
1257 * That is, if lhs is false, then the result is defined even if rhs is not.
1258 * In practice, we compute lhs ? rhs : lhs.
1260 static __isl_give isl_pw_aff *pw_aff_and_then(__isl_take isl_pw_aff *lhs,
1261 __isl_take isl_pw_aff *rhs)
1263 return isl_pw_aff_cond(isl_pw_aff_copy(lhs), rhs, lhs);
1266 /* Return "lhs || rhs", with shortcut semantics.
1267 * That is, if lhs is true, then the result is defined even if rhs is not.
1268 * In practice, we compute lhs ? lhs : rhs.
1270 static __isl_give isl_pw_aff *pw_aff_or_else(__isl_take isl_pw_aff *lhs,
1271 __isl_take isl_pw_aff *rhs)
1273 return isl_pw_aff_cond(isl_pw_aff_copy(lhs), lhs, rhs);
1276 /* Extract an affine expressions representing the comparison "LHS op RHS"
1277 * "comp" is the original statement that "LHS op RHS" is derived from
1278 * and is used for diagnostics.
1280 * If the comparison is of the form
1282 * a <= min(b,c)
1284 * then the expression is constructed as the conjunction of
1285 * the comparisons
1287 * a <= b and a <= c
1289 * A similar optimization is performed for max(a,b) <= c.
1290 * We do this because that will lead to simpler representations
1291 * of the expression.
1292 * If isl is ever enhanced to explicitly deal with min and max expressions,
1293 * this optimization can be removed.
1295 __isl_give isl_pw_aff *PetScan::extract_comparison(BinaryOperatorKind op,
1296 Expr *LHS, Expr *RHS, Stmt *comp)
1298 isl_pw_aff *lhs;
1299 isl_pw_aff *rhs;
1300 isl_pw_aff *res;
1301 isl_set *cond;
1302 isl_set *dom;
1304 if (op == BO_GT)
1305 return extract_comparison(BO_LT, RHS, LHS, comp);
1306 if (op == BO_GE)
1307 return extract_comparison(BO_LE, RHS, LHS, comp);
1309 if (op == BO_LT || op == BO_LE) {
1310 Expr *expr1, *expr2;
1311 if (is_min(RHS, expr1, expr2)) {
1312 lhs = extract_comparison(op, LHS, expr1, comp);
1313 rhs = extract_comparison(op, LHS, expr2, comp);
1314 return pw_aff_and(lhs, rhs);
1316 if (is_max(LHS, expr1, expr2)) {
1317 lhs = extract_comparison(op, expr1, RHS, comp);
1318 rhs = extract_comparison(op, expr2, RHS, comp);
1319 return pw_aff_and(lhs, rhs);
1323 lhs = extract_affine(LHS);
1324 rhs = extract_affine(RHS);
1326 dom = isl_pw_aff_domain(isl_pw_aff_copy(lhs));
1327 dom = isl_set_intersect(dom, isl_pw_aff_domain(isl_pw_aff_copy(rhs)));
1329 switch (op) {
1330 case BO_LT:
1331 cond = isl_pw_aff_lt_set(lhs, rhs);
1332 break;
1333 case BO_LE:
1334 cond = isl_pw_aff_le_set(lhs, rhs);
1335 break;
1336 case BO_EQ:
1337 cond = isl_pw_aff_eq_set(lhs, rhs);
1338 break;
1339 case BO_NE:
1340 cond = isl_pw_aff_ne_set(lhs, rhs);
1341 break;
1342 default:
1343 isl_pw_aff_free(lhs);
1344 isl_pw_aff_free(rhs);
1345 isl_set_free(dom);
1346 unsupported(comp);
1347 return NULL;
1350 cond = isl_set_coalesce(cond);
1351 res = indicator_function(cond, dom);
1353 return res;
1356 __isl_give isl_pw_aff *PetScan::extract_comparison(BinaryOperator *comp)
1358 return extract_comparison(comp->getOpcode(), comp->getLHS(),
1359 comp->getRHS(), comp);
1362 /* Extract an affine expression representing the negation (logical not)
1363 * of a subexpression.
1365 __isl_give isl_pw_aff *PetScan::extract_boolean(UnaryOperator *op)
1367 isl_set *set_cond, *dom;
1368 isl_pw_aff *cond, *res;
1370 cond = extract_condition(op->getSubExpr());
1372 dom = isl_pw_aff_domain(isl_pw_aff_copy(cond));
1374 set_cond = isl_pw_aff_zero_set(cond);
1376 res = indicator_function(set_cond, dom);
1378 return res;
1381 /* Extract an affine expression representing the disjunction (logical or)
1382 * or conjunction (logical and) of two subexpressions.
1384 __isl_give isl_pw_aff *PetScan::extract_boolean(BinaryOperator *comp)
1386 isl_pw_aff *lhs, *rhs;
1388 lhs = extract_condition(comp->getLHS());
1389 rhs = extract_condition(comp->getRHS());
1391 switch (comp->getOpcode()) {
1392 case BO_LAnd:
1393 return pw_aff_and_then(lhs, rhs);
1394 case BO_LOr:
1395 return pw_aff_or_else(lhs, rhs);
1396 default:
1397 isl_pw_aff_free(lhs);
1398 isl_pw_aff_free(rhs);
1401 unsupported(comp);
1402 return NULL;
1405 __isl_give isl_pw_aff *PetScan::extract_condition(UnaryOperator *expr)
1407 switch (expr->getOpcode()) {
1408 case UO_LNot:
1409 return extract_boolean(expr);
1410 default:
1411 unsupported(expr);
1412 return NULL;
1416 /* Extract the affine expression "expr != 0 ? 1 : 0".
1418 __isl_give isl_pw_aff *PetScan::extract_implicit_condition(Expr *expr)
1420 isl_pw_aff *res;
1421 isl_set *set, *dom;
1423 res = extract_affine(expr);
1425 dom = isl_pw_aff_domain(isl_pw_aff_copy(res));
1426 set = isl_pw_aff_non_zero_set(res);
1428 res = indicator_function(set, dom);
1430 return res;
1433 /* Extract an affine expression from a boolean expression.
1434 * In particular, return the expression "expr ? 1 : 0".
1436 * If the expression doesn't look like a condition, we assume it
1437 * is an affine expression and return the condition "expr != 0 ? 1 : 0".
1439 __isl_give isl_pw_aff *PetScan::extract_condition(Expr *expr)
1441 BinaryOperator *comp;
1443 if (!expr) {
1444 isl_set *u = isl_set_universe(isl_space_params_alloc(ctx, 0));
1445 return indicator_function(u, isl_set_copy(u));
1448 if (expr->getStmtClass() == Stmt::ParenExprClass)
1449 return extract_condition(cast<ParenExpr>(expr)->getSubExpr());
1451 if (expr->getStmtClass() == Stmt::UnaryOperatorClass)
1452 return extract_condition(cast<UnaryOperator>(expr));
1454 if (expr->getStmtClass() != Stmt::BinaryOperatorClass)
1455 return extract_implicit_condition(expr);
1457 comp = cast<BinaryOperator>(expr);
1458 switch (comp->getOpcode()) {
1459 case BO_LT:
1460 case BO_LE:
1461 case BO_GT:
1462 case BO_GE:
1463 case BO_EQ:
1464 case BO_NE:
1465 return extract_comparison(comp);
1466 case BO_LAnd:
1467 case BO_LOr:
1468 return extract_boolean(comp);
1469 default:
1470 return extract_implicit_condition(expr);
1474 static enum pet_op_type UnaryOperatorKind2pet_op_type(UnaryOperatorKind kind)
1476 switch (kind) {
1477 case UO_Minus:
1478 return pet_op_minus;
1479 case UO_Not:
1480 return pet_op_not;
1481 case UO_PostInc:
1482 return pet_op_post_inc;
1483 case UO_PostDec:
1484 return pet_op_post_dec;
1485 case UO_PreInc:
1486 return pet_op_pre_inc;
1487 case UO_PreDec:
1488 return pet_op_pre_dec;
1489 default:
1490 return pet_op_last;
1494 static enum pet_op_type BinaryOperatorKind2pet_op_type(BinaryOperatorKind kind)
1496 switch (kind) {
1497 case BO_AddAssign:
1498 return pet_op_add_assign;
1499 case BO_SubAssign:
1500 return pet_op_sub_assign;
1501 case BO_MulAssign:
1502 return pet_op_mul_assign;
1503 case BO_DivAssign:
1504 return pet_op_div_assign;
1505 case BO_Assign:
1506 return pet_op_assign;
1507 case BO_Add:
1508 return pet_op_add;
1509 case BO_Sub:
1510 return pet_op_sub;
1511 case BO_Mul:
1512 return pet_op_mul;
1513 case BO_Div:
1514 return pet_op_div;
1515 case BO_Rem:
1516 return pet_op_mod;
1517 case BO_Shl:
1518 return pet_op_shl;
1519 case BO_Shr:
1520 return pet_op_shr;
1521 case BO_EQ:
1522 return pet_op_eq;
1523 case BO_NE:
1524 return pet_op_ne;
1525 case BO_LE:
1526 return pet_op_le;
1527 case BO_GE:
1528 return pet_op_ge;
1529 case BO_LT:
1530 return pet_op_lt;
1531 case BO_GT:
1532 return pet_op_gt;
1533 case BO_And:
1534 return pet_op_and;
1535 case BO_Xor:
1536 return pet_op_xor;
1537 case BO_Or:
1538 return pet_op_or;
1539 default:
1540 return pet_op_last;
1544 /* Construct a pet_expr representing a unary operator expression.
1546 struct pet_expr *PetScan::extract_expr(UnaryOperator *expr)
1548 struct pet_expr *arg;
1549 enum pet_op_type op;
1551 op = UnaryOperatorKind2pet_op_type(expr->getOpcode());
1552 if (op == pet_op_last) {
1553 unsupported(expr);
1554 return NULL;
1557 arg = extract_expr(expr->getSubExpr());
1559 if (expr->isIncrementDecrementOp() &&
1560 arg && arg->type == pet_expr_access) {
1561 mark_write(arg);
1562 arg->acc.read = 1;
1565 return pet_expr_new_unary(ctx, op, arg);
1568 /* Mark the given access pet_expr as a write.
1569 * If a scalar is being accessed, then mark its value
1570 * as unknown in assigned_value.
1572 void PetScan::mark_write(struct pet_expr *access)
1574 isl_id *id;
1575 ValueDecl *decl;
1577 if (!access)
1578 return;
1580 access->acc.write = 1;
1581 access->acc.read = 0;
1583 if (!pet_expr_is_scalar_access(access))
1584 return;
1586 id = pet_expr_access_get_id(access);
1587 decl = (ValueDecl *) isl_id_get_user(id);
1588 clear_assignment(assigned_value, decl);
1589 isl_id_free(id);
1592 /* Assign "rhs" to "lhs".
1594 * In particular, if "lhs" is a scalar variable, then mark
1595 * the variable as having been assigned. If, furthermore, "rhs"
1596 * is an affine expression, then keep track of this value in assigned_value
1597 * so that we can plug it in when we later come across the same variable.
1599 void PetScan::assign(struct pet_expr *lhs, Expr *rhs)
1601 isl_id *id;
1602 ValueDecl *decl;
1603 isl_pw_aff *pa;
1605 if (!lhs)
1606 return;
1607 if (!pet_expr_is_scalar_access(lhs))
1608 return;
1610 id = pet_expr_access_get_id(lhs);
1611 decl = (ValueDecl *) isl_id_get_user(id);
1612 isl_id_free(id);
1614 pa = try_extract_affine(rhs);
1615 clear_assignment(assigned_value, decl);
1616 if (!pa)
1617 return;
1618 assigned_value[decl] = pa;
1619 insert_expression(pa);
1622 /* Construct a pet_expr representing a binary operator expression.
1624 * If the top level operator is an assignment and the LHS is an access,
1625 * then we mark that access as a write. If the operator is a compound
1626 * assignment, the access is marked as both a read and a write.
1628 * If "expr" assigns something to a scalar variable, then we mark
1629 * the variable as having been assigned. If, furthermore, the expression
1630 * is affine, then keep track of this value in assigned_value
1631 * so that we can plug it in when we later come across the same variable.
1633 struct pet_expr *PetScan::extract_expr(BinaryOperator *expr)
1635 struct pet_expr *lhs, *rhs;
1636 enum pet_op_type op;
1638 op = BinaryOperatorKind2pet_op_type(expr->getOpcode());
1639 if (op == pet_op_last) {
1640 unsupported(expr);
1641 return NULL;
1644 lhs = extract_expr(expr->getLHS());
1645 rhs = extract_expr(expr->getRHS());
1647 if (expr->isAssignmentOp() && lhs && lhs->type == pet_expr_access) {
1648 mark_write(lhs);
1649 if (expr->isCompoundAssignmentOp())
1650 lhs->acc.read = 1;
1653 if (expr->getOpcode() == BO_Assign)
1654 assign(lhs, expr->getRHS());
1656 return pet_expr_new_binary(ctx, op, lhs, rhs);
1659 /* Construct a pet_scop with a single statement killing the entire
1660 * array "array".
1662 struct pet_scop *PetScan::kill(Stmt *stmt, struct pet_array *array)
1664 isl_id *id;
1665 isl_space *space;
1666 isl_multi_pw_aff *index;
1667 isl_map *access;
1668 struct pet_expr *expr;
1670 if (!array)
1671 return NULL;
1672 access = isl_map_from_range(isl_set_copy(array->extent));
1673 id = isl_set_get_tuple_id(array->extent);
1674 space = isl_space_alloc(ctx, 0, 0, 0);
1675 space = isl_space_set_tuple_id(space, isl_dim_out, id);
1676 index = isl_multi_pw_aff_zero(space);
1677 expr = pet_expr_kill_from_access_and_index(access, index);
1678 return extract(stmt, expr);
1681 /* Construct a pet_scop for a (single) variable declaration.
1683 * The scop contains the variable being declared (as an array)
1684 * and a statement killing the array.
1686 * If the variable is initialized in the AST, then the scop
1687 * also contains an assignment to the variable.
1689 struct pet_scop *PetScan::extract(DeclStmt *stmt)
1691 Decl *decl;
1692 VarDecl *vd;
1693 struct pet_expr *lhs, *rhs, *pe;
1694 struct pet_scop *scop_decl, *scop;
1695 struct pet_array *array;
1697 if (!stmt->isSingleDecl()) {
1698 unsupported(stmt);
1699 return NULL;
1702 decl = stmt->getSingleDecl();
1703 vd = cast<VarDecl>(decl);
1705 array = extract_array(ctx, vd, NULL);
1706 if (array)
1707 array->declared = 1;
1708 scop_decl = kill(stmt, array);
1709 scop_decl = pet_scop_add_array(scop_decl, array);
1711 if (!vd->getInit())
1712 return scop_decl;
1714 lhs = extract_access_expr(vd);
1715 rhs = extract_expr(vd->getInit());
1717 mark_write(lhs);
1718 assign(lhs, vd->getInit());
1720 pe = pet_expr_new_binary(ctx, pet_op_assign, lhs, rhs);
1721 scop = extract(stmt, pe);
1723 scop_decl = pet_scop_prefix(scop_decl, 0);
1724 scop = pet_scop_prefix(scop, 1);
1726 scop = pet_scop_add_seq(ctx, scop_decl, scop);
1728 return scop;
1731 /* Construct a pet_expr representing a conditional operation.
1733 * We first try to extract the condition as an affine expression.
1734 * If that fails, we construct a pet_expr tree representing the condition.
1736 struct pet_expr *PetScan::extract_expr(ConditionalOperator *expr)
1738 struct pet_expr *cond, *lhs, *rhs;
1739 isl_pw_aff *pa;
1741 pa = try_extract_affine(expr->getCond());
1742 if (pa) {
1743 isl_multi_pw_aff *test = isl_multi_pw_aff_from_pw_aff(pa);
1744 test = isl_multi_pw_aff_from_range(test);
1745 cond = pet_expr_from_index(test);
1746 } else
1747 cond = extract_expr(expr->getCond());
1748 lhs = extract_expr(expr->getTrueExpr());
1749 rhs = extract_expr(expr->getFalseExpr());
1751 return pet_expr_new_ternary(ctx, cond, lhs, rhs);
1754 struct pet_expr *PetScan::extract_expr(ImplicitCastExpr *expr)
1756 return extract_expr(expr->getSubExpr());
1759 /* Construct a pet_expr representing a floating point value.
1761 * If the floating point literal does not appear in a macro,
1762 * then we use the original representation in the source code
1763 * as the string representation. Otherwise, we use the pretty
1764 * printer to produce a string representation.
1766 struct pet_expr *PetScan::extract_expr(FloatingLiteral *expr)
1768 double d;
1769 string s;
1770 const LangOptions &LO = PP.getLangOpts();
1771 SourceLocation loc = expr->getLocation();
1773 if (!loc.isMacroID()) {
1774 SourceManager &SM = PP.getSourceManager();
1775 unsigned len = Lexer::MeasureTokenLength(loc, SM, LO);
1776 s = string(SM.getCharacterData(loc), len);
1777 } else {
1778 llvm::raw_string_ostream S(s);
1779 expr->printPretty(S, 0, PrintingPolicy(LO));
1780 S.str();
1782 d = expr->getValueAsApproximateDouble();
1783 return pet_expr_new_double(ctx, d, s.c_str());
1786 /* Extract an index expression from "expr" and then convert it into
1787 * an access pet_expr.
1789 struct pet_expr *PetScan::extract_access_expr(Expr *expr)
1791 isl_multi_pw_aff *index;
1792 struct pet_expr *pe;
1793 int depth;
1795 index = extract_index(expr);
1796 depth = extract_depth(index);
1798 pe = pet_expr_from_index_and_depth(index, depth);
1800 return pe;
1803 /* Extract an index expression from "decl" and then convert it into
1804 * an access pet_expr.
1806 struct pet_expr *PetScan::extract_access_expr(ValueDecl *decl)
1808 isl_multi_pw_aff *index;
1809 struct pet_expr *pe;
1810 int depth;
1812 index = extract_index(decl);
1813 depth = extract_depth(index);
1815 pe = pet_expr_from_index_and_depth(index, depth);
1817 return pe;
1820 struct pet_expr *PetScan::extract_expr(ParenExpr *expr)
1822 return extract_expr(expr->getSubExpr());
1825 /* Extract an assume statement from the argument "expr"
1826 * of a __pencil_assume statement.
1828 struct pet_expr *PetScan::extract_assume(Expr *expr)
1830 isl_pw_aff *cond;
1831 struct pet_expr *res;
1833 cond = try_extract_affine_condition(expr);
1834 if (!cond) {
1835 res = extract_expr(expr);
1836 } else {
1837 isl_multi_pw_aff *index;
1838 index = isl_multi_pw_aff_from_pw_aff(cond);
1839 index = isl_multi_pw_aff_from_range(index);
1840 res = pet_expr_from_index(index);
1842 return pet_expr_new_unary(ctx, pet_op_assume, res);
1845 /* Construct a pet_expr corresponding to the function call argument "expr".
1846 * The argument appears in position "pos" of a call to function "fd".
1848 * If we are passing along a pointer to an array element
1849 * or an entire row or even higher dimensional slice of an array,
1850 * then the function being called may write into the array.
1852 * We assume here that if the function is declared to take a pointer
1853 * to a const type, then the function will perform a read
1854 * and that otherwise, it will perform a write.
1856 struct pet_expr *PetScan::extract_argument(FunctionDecl *fd, int pos,
1857 Expr *expr)
1859 struct pet_expr *res;
1860 int is_addr = 0;
1861 pet_expr *main_arg;
1862 Stmt::StmtClass sc;
1864 if (expr->getStmtClass() == Stmt::ImplicitCastExprClass) {
1865 ImplicitCastExpr *ice = cast<ImplicitCastExpr>(expr);
1866 expr = ice->getSubExpr();
1868 if (expr->getStmtClass() == Stmt::UnaryOperatorClass) {
1869 UnaryOperator *op = cast<UnaryOperator>(expr);
1870 if (op->getOpcode() == UO_AddrOf) {
1871 is_addr = 1;
1872 expr = op->getSubExpr();
1875 res = extract_expr(expr);
1876 main_arg = res;
1877 if (is_addr)
1878 res = pet_expr_new_unary(ctx, pet_op_address_of, res);
1879 if (!res)
1880 return NULL;
1881 sc = expr->getStmtClass();
1882 if ((sc == Stmt::ArraySubscriptExprClass ||
1883 sc == Stmt::MemberExprClass) &&
1884 array_depth(expr->getType().getTypePtr()) > 0)
1885 is_addr = 1;
1886 if (is_addr && main_arg->type == pet_expr_access) {
1887 ParmVarDecl *parm;
1888 if (!fd->hasPrototype()) {
1889 report_prototype_required(expr);
1890 return pet_expr_free(res);
1892 parm = fd->getParamDecl(pos);
1893 if (!const_base(parm->getType()))
1894 mark_write(main_arg);
1897 return res;
1900 /* Construct a pet_expr representing a function call.
1902 * In the special case of a "call" to __pencil_assume,
1903 * construct an assume expression instead.
1905 struct pet_expr *PetScan::extract_expr(CallExpr *expr)
1907 struct pet_expr *res = NULL;
1908 FunctionDecl *fd;
1909 string name;
1910 unsigned n_arg;
1912 fd = expr->getDirectCallee();
1913 if (!fd) {
1914 unsupported(expr);
1915 return NULL;
1918 name = fd->getDeclName().getAsString();
1919 n_arg = expr->getNumArgs();
1921 if (n_arg == 1 && name == "__pencil_assume")
1922 return extract_assume(expr->getArg(0));
1924 res = pet_expr_new_call(ctx, name.c_str(), n_arg);
1925 if (!res)
1926 return NULL;
1928 for (int i = 0; i < n_arg; ++i) {
1929 Expr *arg = expr->getArg(i);
1930 res->args[i] = PetScan::extract_argument(fd, i, arg);
1931 if (!res->args[i])
1932 goto error;
1935 return res;
1936 error:
1937 pet_expr_free(res);
1938 return NULL;
1941 /* Construct a pet_expr representing a (C style) cast.
1943 struct pet_expr *PetScan::extract_expr(CStyleCastExpr *expr)
1945 struct pet_expr *arg;
1946 QualType type;
1948 arg = extract_expr(expr->getSubExpr());
1949 if (!arg)
1950 return NULL;
1952 type = expr->getTypeAsWritten();
1953 return pet_expr_new_cast(ctx, type.getAsString().c_str(), arg);
1956 /* Try and onstruct a pet_expr representing "expr".
1958 struct pet_expr *PetScan::extract_expr(Expr *expr)
1960 switch (expr->getStmtClass()) {
1961 case Stmt::UnaryOperatorClass:
1962 return extract_expr(cast<UnaryOperator>(expr));
1963 case Stmt::CompoundAssignOperatorClass:
1964 case Stmt::BinaryOperatorClass:
1965 return extract_expr(cast<BinaryOperator>(expr));
1966 case Stmt::ImplicitCastExprClass:
1967 return extract_expr(cast<ImplicitCastExpr>(expr));
1968 case Stmt::ArraySubscriptExprClass:
1969 case Stmt::DeclRefExprClass:
1970 case Stmt::IntegerLiteralClass:
1971 case Stmt::MemberExprClass:
1972 return extract_access_expr(expr);
1973 case Stmt::FloatingLiteralClass:
1974 return extract_expr(cast<FloatingLiteral>(expr));
1975 case Stmt::ParenExprClass:
1976 return extract_expr(cast<ParenExpr>(expr));
1977 case Stmt::ConditionalOperatorClass:
1978 return extract_expr(cast<ConditionalOperator>(expr));
1979 case Stmt::CallExprClass:
1980 return extract_expr(cast<CallExpr>(expr));
1981 case Stmt::CStyleCastExprClass:
1982 return extract_expr(cast<CStyleCastExpr>(expr));
1983 default:
1984 unsupported(expr);
1986 return NULL;
1989 /* Check if the given initialization statement is an assignment.
1990 * If so, return that assignment. Otherwise return NULL.
1992 BinaryOperator *PetScan::initialization_assignment(Stmt *init)
1994 BinaryOperator *ass;
1996 if (init->getStmtClass() != Stmt::BinaryOperatorClass)
1997 return NULL;
1999 ass = cast<BinaryOperator>(init);
2000 if (ass->getOpcode() != BO_Assign)
2001 return NULL;
2003 return ass;
2006 /* Check if the given initialization statement is a declaration
2007 * of a single variable.
2008 * If so, return that declaration. Otherwise return NULL.
2010 Decl *PetScan::initialization_declaration(Stmt *init)
2012 DeclStmt *decl;
2014 if (init->getStmtClass() != Stmt::DeclStmtClass)
2015 return NULL;
2017 decl = cast<DeclStmt>(init);
2019 if (!decl->isSingleDecl())
2020 return NULL;
2022 return decl->getSingleDecl();
2025 /* Given the assignment operator in the initialization of a for loop,
2026 * extract the induction variable, i.e., the (integer)variable being
2027 * assigned.
2029 ValueDecl *PetScan::extract_induction_variable(BinaryOperator *init)
2031 Expr *lhs;
2032 DeclRefExpr *ref;
2033 ValueDecl *decl;
2034 const Type *type;
2036 lhs = init->getLHS();
2037 if (lhs->getStmtClass() != Stmt::DeclRefExprClass) {
2038 unsupported(init);
2039 return NULL;
2042 ref = cast<DeclRefExpr>(lhs);
2043 decl = ref->getDecl();
2044 type = decl->getType().getTypePtr();
2046 if (!type->isIntegerType()) {
2047 unsupported(lhs);
2048 return NULL;
2051 return decl;
2054 /* Given the initialization statement of a for loop and the single
2055 * declaration in this initialization statement,
2056 * extract the induction variable, i.e., the (integer) variable being
2057 * declared.
2059 VarDecl *PetScan::extract_induction_variable(Stmt *init, Decl *decl)
2061 VarDecl *vd;
2063 vd = cast<VarDecl>(decl);
2065 const QualType type = vd->getType();
2066 if (!type->isIntegerType()) {
2067 unsupported(init);
2068 return NULL;
2071 if (!vd->getInit()) {
2072 unsupported(init);
2073 return NULL;
2076 return vd;
2079 /* Check that op is of the form iv++ or iv--.
2080 * Return an affine expression "1" or "-1" accordingly.
2082 __isl_give isl_pw_aff *PetScan::extract_unary_increment(
2083 clang::UnaryOperator *op, clang::ValueDecl *iv)
2085 Expr *sub;
2086 DeclRefExpr *ref;
2087 isl_space *space;
2088 isl_aff *aff;
2090 if (!op->isIncrementDecrementOp()) {
2091 unsupported(op);
2092 return NULL;
2095 sub = op->getSubExpr();
2096 if (sub->getStmtClass() != Stmt::DeclRefExprClass) {
2097 unsupported(op);
2098 return NULL;
2101 ref = cast<DeclRefExpr>(sub);
2102 if (ref->getDecl() != iv) {
2103 unsupported(op);
2104 return NULL;
2107 space = isl_space_params_alloc(ctx, 0);
2108 aff = isl_aff_zero_on_domain(isl_local_space_from_space(space));
2110 if (op->isIncrementOp())
2111 aff = isl_aff_add_constant_si(aff, 1);
2112 else
2113 aff = isl_aff_add_constant_si(aff, -1);
2115 return isl_pw_aff_from_aff(aff);
2118 /* If the isl_pw_aff on which isl_pw_aff_foreach_piece is called
2119 * has a single constant expression, then put this constant in *user.
2120 * The caller is assumed to have checked that this function will
2121 * be called exactly once.
2123 static int extract_cst(__isl_take isl_set *set, __isl_take isl_aff *aff,
2124 void *user)
2126 isl_val **inc = (isl_val **)user;
2127 int res = 0;
2129 if (isl_aff_is_cst(aff))
2130 *inc = isl_aff_get_constant_val(aff);
2131 else
2132 res = -1;
2134 isl_set_free(set);
2135 isl_aff_free(aff);
2137 return res;
2140 /* Check if op is of the form
2142 * iv = iv + inc
2144 * and return inc as an affine expression.
2146 * We extract an affine expression from the RHS, subtract iv and return
2147 * the result.
2149 __isl_give isl_pw_aff *PetScan::extract_binary_increment(BinaryOperator *op,
2150 clang::ValueDecl *iv)
2152 Expr *lhs;
2153 DeclRefExpr *ref;
2154 isl_id *id;
2155 isl_space *dim;
2156 isl_aff *aff;
2157 isl_pw_aff *val;
2159 if (op->getOpcode() != BO_Assign) {
2160 unsupported(op);
2161 return NULL;
2164 lhs = op->getLHS();
2165 if (lhs->getStmtClass() != Stmt::DeclRefExprClass) {
2166 unsupported(op);
2167 return NULL;
2170 ref = cast<DeclRefExpr>(lhs);
2171 if (ref->getDecl() != iv) {
2172 unsupported(op);
2173 return NULL;
2176 val = extract_affine(op->getRHS());
2178 id = isl_id_alloc(ctx, iv->getName().str().c_str(), iv);
2180 dim = isl_space_params_alloc(ctx, 1);
2181 dim = isl_space_set_dim_id(dim, isl_dim_param, 0, id);
2182 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
2183 aff = isl_aff_add_coefficient_si(aff, isl_dim_param, 0, 1);
2185 val = isl_pw_aff_sub(val, isl_pw_aff_from_aff(aff));
2187 return val;
2190 /* Check that op is of the form iv += cst or iv -= cst
2191 * and return an affine expression corresponding oto cst or -cst accordingly.
2193 __isl_give isl_pw_aff *PetScan::extract_compound_increment(
2194 CompoundAssignOperator *op, clang::ValueDecl *iv)
2196 Expr *lhs;
2197 DeclRefExpr *ref;
2198 bool neg = false;
2199 isl_pw_aff *val;
2200 BinaryOperatorKind opcode;
2202 opcode = op->getOpcode();
2203 if (opcode != BO_AddAssign && opcode != BO_SubAssign) {
2204 unsupported(op);
2205 return NULL;
2207 if (opcode == BO_SubAssign)
2208 neg = true;
2210 lhs = op->getLHS();
2211 if (lhs->getStmtClass() != Stmt::DeclRefExprClass) {
2212 unsupported(op);
2213 return NULL;
2216 ref = cast<DeclRefExpr>(lhs);
2217 if (ref->getDecl() != iv) {
2218 unsupported(op);
2219 return NULL;
2222 val = extract_affine(op->getRHS());
2223 if (neg)
2224 val = isl_pw_aff_neg(val);
2226 return val;
2229 /* Check that the increment of the given for loop increments
2230 * (or decrements) the induction variable "iv" and return
2231 * the increment as an affine expression if successful.
2233 __isl_give isl_pw_aff *PetScan::extract_increment(clang::ForStmt *stmt,
2234 ValueDecl *iv)
2236 Stmt *inc = stmt->getInc();
2238 if (!inc) {
2239 unsupported(stmt);
2240 return NULL;
2243 if (inc->getStmtClass() == Stmt::UnaryOperatorClass)
2244 return extract_unary_increment(cast<UnaryOperator>(inc), iv);
2245 if (inc->getStmtClass() == Stmt::CompoundAssignOperatorClass)
2246 return extract_compound_increment(
2247 cast<CompoundAssignOperator>(inc), iv);
2248 if (inc->getStmtClass() == Stmt::BinaryOperatorClass)
2249 return extract_binary_increment(cast<BinaryOperator>(inc), iv);
2251 unsupported(inc);
2252 return NULL;
2255 /* Embed the given iteration domain in an extra outer loop
2256 * with induction variable "var".
2257 * If this variable appeared as a parameter in the constraints,
2258 * it is replaced by the new outermost dimension.
2260 static __isl_give isl_set *embed(__isl_take isl_set *set,
2261 __isl_take isl_id *var)
2263 int pos;
2265 set = isl_set_insert_dims(set, isl_dim_set, 0, 1);
2266 pos = isl_set_find_dim_by_id(set, isl_dim_param, var);
2267 if (pos >= 0) {
2268 set = isl_set_equate(set, isl_dim_param, pos, isl_dim_set, 0);
2269 set = isl_set_project_out(set, isl_dim_param, pos, 1);
2272 isl_id_free(var);
2273 return set;
2276 /* Return those elements in the space of "cond" that come after
2277 * (based on "sign") an element in "cond".
2279 static __isl_give isl_set *after(__isl_take isl_set *cond, int sign)
2281 isl_map *previous_to_this;
2283 if (sign > 0)
2284 previous_to_this = isl_map_lex_lt(isl_set_get_space(cond));
2285 else
2286 previous_to_this = isl_map_lex_gt(isl_set_get_space(cond));
2288 cond = isl_set_apply(cond, previous_to_this);
2290 return cond;
2293 /* Create the infinite iteration domain
2295 * { [id] : id >= 0 }
2297 * If "scop" has an affine skip of type pet_skip_later,
2298 * then remove those iterations i that have an earlier iteration
2299 * where the skip condition is satisfied, meaning that iteration i
2300 * is not executed.
2301 * Since we are dealing with a loop without loop iterator,
2302 * the skip condition cannot refer to the current loop iterator and
2303 * so effectively, the returned set is of the form
2305 * { [0]; [id] : id >= 1 and not skip }
2307 static __isl_give isl_set *infinite_domain(__isl_take isl_id *id,
2308 struct pet_scop *scop)
2310 isl_ctx *ctx = isl_id_get_ctx(id);
2311 isl_set *domain;
2312 isl_set *skip;
2314 domain = isl_set_nat_universe(isl_space_set_alloc(ctx, 0, 1));
2315 domain = isl_set_set_dim_id(domain, isl_dim_set, 0, id);
2317 if (!pet_scop_has_affine_skip(scop, pet_skip_later))
2318 return domain;
2320 skip = pet_scop_get_affine_skip_domain(scop, pet_skip_later);
2321 skip = embed(skip, isl_id_copy(id));
2322 skip = isl_set_intersect(skip , isl_set_copy(domain));
2323 domain = isl_set_subtract(domain, after(skip, 1));
2325 return domain;
2328 /* Create an identity affine expression on the space containing "domain",
2329 * which is assumed to be one-dimensional.
2331 static __isl_give isl_aff *identity_aff(__isl_keep isl_set *domain)
2333 isl_local_space *ls;
2335 ls = isl_local_space_from_space(isl_set_get_space(domain));
2336 return isl_aff_var_on_domain(ls, isl_dim_set, 0);
2339 /* Create an affine expression that maps elements
2340 * of a single-dimensional array "id_test" to the previous element
2341 * (according to "inc"), provided this element belongs to "domain".
2342 * That is, create the affine expression
2344 * { id[x] -> id[x - inc] : x - inc in domain }
2346 static __isl_give isl_multi_pw_aff *map_to_previous(__isl_take isl_id *id_test,
2347 __isl_take isl_set *domain, __isl_take isl_val *inc)
2349 isl_space *space;
2350 isl_local_space *ls;
2351 isl_aff *aff;
2352 isl_multi_pw_aff *prev;
2354 space = isl_set_get_space(domain);
2355 ls = isl_local_space_from_space(space);
2356 aff = isl_aff_var_on_domain(ls, isl_dim_set, 0);
2357 aff = isl_aff_add_constant_val(aff, isl_val_neg(inc));
2358 prev = isl_multi_pw_aff_from_pw_aff(isl_pw_aff_from_aff(aff));
2359 domain = isl_set_preimage_multi_pw_aff(domain,
2360 isl_multi_pw_aff_copy(prev));
2361 prev = isl_multi_pw_aff_intersect_domain(prev, domain);
2362 prev = isl_multi_pw_aff_set_tuple_id(prev, isl_dim_out, id_test);
2364 return prev;
2367 /* Add an implication to "scop" expressing that if an element of
2368 * virtual array "id_test" has value "satisfied" then all previous elements
2369 * of this array also have that value. The set of previous elements
2370 * is bounded by "domain". If "sign" is negative then iterator
2371 * is decreasing and we express that all subsequent array elements
2372 * (but still defined previously) have the same value.
2374 static struct pet_scop *add_implication(struct pet_scop *scop,
2375 __isl_take isl_id *id_test, __isl_take isl_set *domain, int sign,
2376 int satisfied)
2378 isl_space *space;
2379 isl_map *map;
2381 domain = isl_set_set_tuple_id(domain, id_test);
2382 space = isl_set_get_space(domain);
2383 if (sign > 0)
2384 map = isl_map_lex_ge(space);
2385 else
2386 map = isl_map_lex_le(space);
2387 map = isl_map_intersect_range(map, domain);
2388 scop = pet_scop_add_implication(scop, map, satisfied);
2390 return scop;
2393 /* Add a filter to "scop" that imposes that it is only executed
2394 * when the variable identified by "id_test" has a zero value
2395 * for all previous iterations of "domain".
2397 * In particular, add a filter that imposes that the array
2398 * has a zero value at the previous iteration of domain and
2399 * add an implication that implies that it then has that
2400 * value for all previous iterations.
2402 static struct pet_scop *scop_add_break(struct pet_scop *scop,
2403 __isl_take isl_id *id_test, __isl_take isl_set *domain,
2404 __isl_take isl_val *inc)
2406 isl_multi_pw_aff *prev;
2407 int sign = isl_val_sgn(inc);
2409 prev = map_to_previous(isl_id_copy(id_test), isl_set_copy(domain), inc);
2410 scop = add_implication(scop, id_test, domain, sign, 0);
2411 scop = pet_scop_filter(scop, prev, 0);
2413 return scop;
2416 /* Construct a pet_scop for an infinite loop around the given body.
2418 * We extract a pet_scop for the body and then embed it in a loop with
2419 * iteration domain
2421 * { [t] : t >= 0 }
2423 * and schedule
2425 * { [t] -> [t] }
2427 * If the body contains any break, then it is taken into
2428 * account in infinite_domain (if the skip condition is affine)
2429 * or in scop_add_break (if the skip condition is not affine).
2431 * If we were only able to extract part of the body, then simply
2432 * return that part.
2434 struct pet_scop *PetScan::extract_infinite_loop(Stmt *body)
2436 isl_id *id, *id_test;
2437 isl_set *domain;
2438 isl_aff *ident;
2439 struct pet_scop *scop;
2440 bool has_var_break;
2442 scop = extract(body);
2443 if (!scop)
2444 return NULL;
2445 if (partial)
2446 return scop;
2448 id = isl_id_alloc(ctx, "t", NULL);
2449 domain = infinite_domain(isl_id_copy(id), scop);
2450 ident = identity_aff(domain);
2452 has_var_break = pet_scop_has_var_skip(scop, pet_skip_later);
2453 if (has_var_break)
2454 id_test = pet_scop_get_skip_id(scop, pet_skip_later);
2456 scop = pet_scop_embed(scop, isl_set_copy(domain),
2457 isl_map_from_aff(isl_aff_copy(ident)), ident, id);
2458 if (has_var_break)
2459 scop = scop_add_break(scop, id_test, domain, isl_val_one(ctx));
2460 else
2461 isl_set_free(domain);
2463 return scop;
2466 /* Construct a pet_scop for an infinite loop, i.e., a loop of the form
2468 * for (;;)
2469 * body
2472 struct pet_scop *PetScan::extract_infinite_for(ForStmt *stmt)
2474 return extract_infinite_loop(stmt->getBody());
2477 /* Create an index expression for an access to a virtual array
2478 * representing the result of a condition.
2479 * Unlike other accessed data, the id of the array is NULL as
2480 * there is no ValueDecl in the program corresponding to the virtual
2481 * array.
2482 * The array starts out as a scalar, but grows along with the
2483 * statement writing to the array in pet_scop_embed.
2485 static __isl_give isl_multi_pw_aff *create_test_index(isl_ctx *ctx, int test_nr)
2487 isl_space *dim = isl_space_alloc(ctx, 0, 0, 0);
2488 isl_id *id;
2489 char name[50];
2491 snprintf(name, sizeof(name), "__pet_test_%d", test_nr);
2492 id = isl_id_alloc(ctx, name, NULL);
2493 dim = isl_space_set_tuple_id(dim, isl_dim_out, id);
2494 return isl_multi_pw_aff_zero(dim);
2497 /* Add an array with the given extent (range of "index") to the list
2498 * of arrays in "scop" and return the extended pet_scop.
2499 * The array is marked as attaining values 0 and 1 only and
2500 * as each element being assigned at most once.
2502 static struct pet_scop *scop_add_array(struct pet_scop *scop,
2503 __isl_keep isl_multi_pw_aff *index, clang::ASTContext &ast_ctx)
2505 isl_ctx *ctx = isl_multi_pw_aff_get_ctx(index);
2506 isl_space *dim;
2507 struct pet_array *array;
2508 isl_map *access;
2510 if (!scop)
2511 return NULL;
2512 if (!ctx)
2513 goto error;
2515 array = isl_calloc_type(ctx, struct pet_array);
2516 if (!array)
2517 goto error;
2519 access = isl_map_from_multi_pw_aff(isl_multi_pw_aff_copy(index));
2520 array->extent = isl_map_range(access);
2521 dim = isl_space_params_alloc(ctx, 0);
2522 array->context = isl_set_universe(dim);
2523 dim = isl_space_set_alloc(ctx, 0, 1);
2524 array->value_bounds = isl_set_universe(dim);
2525 array->value_bounds = isl_set_lower_bound_si(array->value_bounds,
2526 isl_dim_set, 0, 0);
2527 array->value_bounds = isl_set_upper_bound_si(array->value_bounds,
2528 isl_dim_set, 0, 1);
2529 array->element_type = strdup("int");
2530 array->element_size = ast_ctx.getTypeInfo(ast_ctx.IntTy).first / 8;
2531 array->uniquely_defined = 1;
2533 if (!array->extent || !array->context)
2534 array = pet_array_free(array);
2536 scop = pet_scop_add_array(scop, array);
2538 return scop;
2539 error:
2540 pet_scop_free(scop);
2541 return NULL;
2544 /* Construct a pet_scop for a while loop of the form
2546 * while (pa)
2547 * body
2549 * In particular, construct a scop for an infinite loop around body and
2550 * intersect the domain with the affine expression.
2551 * Note that this intersection may result in an empty loop.
2553 struct pet_scop *PetScan::extract_affine_while(__isl_take isl_pw_aff *pa,
2554 Stmt *body)
2556 struct pet_scop *scop;
2557 isl_set *dom;
2558 isl_set *valid;
2560 valid = isl_pw_aff_domain(isl_pw_aff_copy(pa));
2561 dom = isl_pw_aff_non_zero_set(pa);
2562 scop = extract_infinite_loop(body);
2563 scop = pet_scop_restrict(scop, dom);
2564 scop = pet_scop_restrict_context(scop, valid);
2566 return scop;
2569 /* Construct a scop for a while, given the scops for the condition
2570 * and the body, the filter identifier and the iteration domain of
2571 * the while loop.
2573 * In particular, the scop for the condition is filtered to depend
2574 * on "id_test" evaluating to true for all previous iterations
2575 * of the loop, while the scop for the body is filtered to depend
2576 * on "id_test" evaluating to true for all iterations up to the
2577 * current iteration.
2578 * The actual filter only imposes that this virtual array has
2579 * value one on the previous or the current iteration.
2580 * The fact that this condition also applies to the previous
2581 * iterations is enforced by an implication.
2583 * These filtered scops are then combined into a single scop.
2585 * "sign" is positive if the iterator increases and negative
2586 * if it decreases.
2588 static struct pet_scop *scop_add_while(struct pet_scop *scop_cond,
2589 struct pet_scop *scop_body, __isl_take isl_id *id_test,
2590 __isl_take isl_set *domain, __isl_take isl_val *inc)
2592 isl_ctx *ctx = isl_set_get_ctx(domain);
2593 isl_space *space;
2594 isl_multi_pw_aff *test_index;
2595 isl_multi_pw_aff *prev;
2596 int sign = isl_val_sgn(inc);
2597 struct pet_scop *scop;
2599 prev = map_to_previous(isl_id_copy(id_test), isl_set_copy(domain), inc);
2600 scop_cond = pet_scop_filter(scop_cond, prev, 1);
2602 space = isl_space_map_from_set(isl_set_get_space(domain));
2603 test_index = isl_multi_pw_aff_identity(space);
2604 test_index = isl_multi_pw_aff_set_tuple_id(test_index, isl_dim_out,
2605 isl_id_copy(id_test));
2606 scop_body = pet_scop_filter(scop_body, test_index, 1);
2608 scop = pet_scop_add_seq(ctx, scop_cond, scop_body);
2609 scop = add_implication(scop, id_test, domain, sign, 1);
2611 return scop;
2614 /* Check if the while loop is of the form
2616 * while (affine expression)
2617 * body
2619 * If so, call extract_affine_while to construct a scop.
2621 * Otherwise, construct a generic while scop, with iteration domain
2622 * { [t] : t >= 0 }. The scop consists of two parts, one for
2623 * evaluating the condition and one for the body.
2624 * The schedule is adjusted to reflect that the condition is evaluated
2625 * before the body is executed and the body is filtered to depend
2626 * on the result of the condition evaluating to true on all iterations
2627 * up to the current iteration, while the evaluation the condition itself
2628 * is filtered to depend on the result of the condition evaluating to true
2629 * on all previous iterations.
2630 * The context of the scop representing the body is dropped
2631 * because we don't know how many times the body will be executed,
2632 * if at all.
2634 * If the body contains any break, then it is taken into
2635 * account in infinite_domain (if the skip condition is affine)
2636 * or in scop_add_break (if the skip condition is not affine).
2638 * If we were only able to extract part of the body, then simply
2639 * return that part.
2641 struct pet_scop *PetScan::extract(WhileStmt *stmt)
2643 Expr *cond;
2644 int test_nr, stmt_nr;
2645 isl_id *id, *id_test, *id_break_test;
2646 isl_multi_pw_aff *test_index;
2647 isl_set *domain;
2648 isl_aff *ident;
2649 isl_pw_aff *pa;
2650 struct pet_scop *scop, *scop_body;
2651 bool has_var_break;
2653 cond = stmt->getCond();
2654 if (!cond) {
2655 unsupported(stmt);
2656 return NULL;
2659 clear_assignments clear(assigned_value);
2660 clear.TraverseStmt(stmt->getBody());
2662 pa = try_extract_affine_condition(cond);
2663 if (pa)
2664 return extract_affine_while(pa, stmt->getBody());
2666 if (!allow_nested) {
2667 unsupported(stmt);
2668 return NULL;
2671 test_nr = n_test++;
2672 stmt_nr = n_stmt++;
2673 scop_body = extract(stmt->getBody());
2674 if (partial)
2675 return scop_body;
2677 test_index = create_test_index(ctx, test_nr);
2678 scop = extract_non_affine_condition(cond, stmt_nr,
2679 isl_multi_pw_aff_copy(test_index));
2680 scop = scop_add_array(scop, test_index, ast_context);
2681 id_test = isl_multi_pw_aff_get_tuple_id(test_index, isl_dim_out);
2682 isl_multi_pw_aff_free(test_index);
2684 id = isl_id_alloc(ctx, "t", NULL);
2685 domain = infinite_domain(isl_id_copy(id), scop_body);
2686 ident = identity_aff(domain);
2688 has_var_break = pet_scop_has_var_skip(scop_body, pet_skip_later);
2689 if (has_var_break)
2690 id_break_test = pet_scop_get_skip_id(scop_body, pet_skip_later);
2692 scop = pet_scop_prefix(scop, 0);
2693 scop = pet_scop_embed(scop, isl_set_copy(domain),
2694 isl_map_from_aff(isl_aff_copy(ident)),
2695 isl_aff_copy(ident), isl_id_copy(id));
2696 scop_body = pet_scop_reset_context(scop_body);
2697 scop_body = pet_scop_prefix(scop_body, 1);
2698 scop_body = pet_scop_embed(scop_body, isl_set_copy(domain),
2699 isl_map_from_aff(isl_aff_copy(ident)), ident, id);
2701 if (has_var_break) {
2702 scop = scop_add_break(scop, isl_id_copy(id_break_test),
2703 isl_set_copy(domain), isl_val_one(ctx));
2704 scop_body = scop_add_break(scop_body, id_break_test,
2705 isl_set_copy(domain), isl_val_one(ctx));
2707 scop = scop_add_while(scop, scop_body, id_test, domain,
2708 isl_val_one(ctx));
2710 return scop;
2713 /* Check whether "cond" expresses a simple loop bound
2714 * on the only set dimension.
2715 * In particular, if "up" is set then "cond" should contain only
2716 * upper bounds on the set dimension.
2717 * Otherwise, it should contain only lower bounds.
2719 static bool is_simple_bound(__isl_keep isl_set *cond, __isl_keep isl_val *inc)
2721 if (isl_val_is_pos(inc))
2722 return !isl_set_dim_has_any_lower_bound(cond, isl_dim_set, 0);
2723 else
2724 return !isl_set_dim_has_any_upper_bound(cond, isl_dim_set, 0);
2727 /* Extend a condition on a given iteration of a loop to one that
2728 * imposes the same condition on all previous iterations.
2729 * "domain" expresses the lower [upper] bound on the iterations
2730 * when inc is positive [negative].
2732 * In particular, we construct the condition (when inc is positive)
2734 * forall i' : (domain(i') and i' <= i) => cond(i')
2736 * which is equivalent to
2738 * not exists i' : domain(i') and i' <= i and not cond(i')
2740 * We construct this set by negating cond, applying a map
2742 * { [i'] -> [i] : domain(i') and i' <= i }
2744 * and then negating the result again.
2746 static __isl_give isl_set *valid_for_each_iteration(__isl_take isl_set *cond,
2747 __isl_take isl_set *domain, __isl_take isl_val *inc)
2749 isl_map *previous_to_this;
2751 if (isl_val_is_pos(inc))
2752 previous_to_this = isl_map_lex_le(isl_set_get_space(domain));
2753 else
2754 previous_to_this = isl_map_lex_ge(isl_set_get_space(domain));
2756 previous_to_this = isl_map_intersect_domain(previous_to_this, domain);
2758 cond = isl_set_complement(cond);
2759 cond = isl_set_apply(cond, previous_to_this);
2760 cond = isl_set_complement(cond);
2762 isl_val_free(inc);
2764 return cond;
2767 /* Construct a domain of the form
2769 * [id] -> { : exists a: id = init + a * inc and a >= 0 }
2771 static __isl_give isl_set *strided_domain(__isl_take isl_id *id,
2772 __isl_take isl_pw_aff *init, __isl_take isl_val *inc)
2774 isl_aff *aff;
2775 isl_space *dim;
2776 isl_set *set;
2778 init = isl_pw_aff_insert_dims(init, isl_dim_in, 0, 1);
2779 dim = isl_pw_aff_get_domain_space(init);
2780 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
2781 aff = isl_aff_add_coefficient_val(aff, isl_dim_in, 0, inc);
2782 init = isl_pw_aff_add(init, isl_pw_aff_from_aff(aff));
2784 dim = isl_space_set_alloc(isl_pw_aff_get_ctx(init), 1, 1);
2785 dim = isl_space_set_dim_id(dim, isl_dim_param, 0, id);
2786 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
2787 aff = isl_aff_add_coefficient_si(aff, isl_dim_param, 0, 1);
2789 set = isl_pw_aff_eq_set(isl_pw_aff_from_aff(aff), init);
2791 set = isl_set_lower_bound_si(set, isl_dim_set, 0, 0);
2793 return isl_set_params(set);
2796 /* Assuming "cond" represents a bound on a loop where the loop
2797 * iterator "iv" is incremented (or decremented) by one, check if wrapping
2798 * is possible.
2800 * Under the given assumptions, wrapping is only possible if "cond" allows
2801 * for the last value before wrapping, i.e., 2^width - 1 in case of an
2802 * increasing iterator and 0 in case of a decreasing iterator.
2804 static bool can_wrap(__isl_keep isl_set *cond, ValueDecl *iv,
2805 __isl_keep isl_val *inc)
2807 bool cw;
2808 isl_ctx *ctx;
2809 isl_val *limit;
2810 isl_set *test;
2812 test = isl_set_copy(cond);
2814 ctx = isl_set_get_ctx(test);
2815 if (isl_val_is_neg(inc))
2816 limit = isl_val_zero(ctx);
2817 else {
2818 limit = isl_val_int_from_ui(ctx, get_type_size(iv));
2819 limit = isl_val_2exp(limit);
2820 limit = isl_val_sub_ui(limit, 1);
2823 test = isl_set_fix_val(cond, isl_dim_set, 0, limit);
2824 cw = !isl_set_is_empty(test);
2825 isl_set_free(test);
2827 return cw;
2830 /* Given a one-dimensional space, construct the following affine expression
2831 * on this space
2833 * { [v] -> [v mod 2^width] }
2835 * where width is the number of bits used to represent the values
2836 * of the unsigned variable "iv".
2838 static __isl_give isl_aff *compute_wrapping(__isl_take isl_space *dim,
2839 ValueDecl *iv)
2841 isl_ctx *ctx;
2842 isl_val *mod;
2843 isl_aff *aff;
2845 ctx = isl_space_get_ctx(dim);
2846 mod = isl_val_int_from_ui(ctx, get_type_size(iv));
2847 mod = isl_val_2exp(mod);
2849 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
2850 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, 0, 1);
2851 aff = isl_aff_mod_val(aff, mod);
2853 return aff;
2856 /* Project out the parameter "id" from "set".
2858 static __isl_give isl_set *set_project_out_by_id(__isl_take isl_set *set,
2859 __isl_keep isl_id *id)
2861 int pos;
2863 pos = isl_set_find_dim_by_id(set, isl_dim_param, id);
2864 if (pos >= 0)
2865 set = isl_set_project_out(set, isl_dim_param, pos, 1);
2867 return set;
2870 /* Compute the set of parameters for which "set1" is a subset of "set2".
2872 * set1 is a subset of set2 if
2874 * forall i in set1 : i in set2
2876 * or
2878 * not exists i in set1 and i not in set2
2880 * i.e.,
2882 * not exists i in set1 \ set2
2884 static __isl_give isl_set *enforce_subset(__isl_take isl_set *set1,
2885 __isl_take isl_set *set2)
2887 return isl_set_complement(isl_set_params(isl_set_subtract(set1, set2)));
2890 /* Compute the set of parameter values for which "cond" holds
2891 * on the next iteration for each element of "dom".
2893 * We first construct mapping { [i] -> [i + inc] }, apply that to "dom"
2894 * and then compute the set of parameters for which the result is a subset
2895 * of "cond".
2897 static __isl_give isl_set *valid_on_next(__isl_take isl_set *cond,
2898 __isl_take isl_set *dom, __isl_take isl_val *inc)
2900 isl_space *space;
2901 isl_aff *aff;
2902 isl_map *next;
2904 space = isl_set_get_space(dom);
2905 aff = isl_aff_zero_on_domain(isl_local_space_from_space(space));
2906 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, 0, 1);
2907 aff = isl_aff_add_constant_val(aff, inc);
2908 next = isl_map_from_basic_map(isl_basic_map_from_aff(aff));
2910 dom = isl_set_apply(dom, next);
2912 return enforce_subset(dom, cond);
2915 /* Does "id" refer to a nested access?
2917 static bool is_nested_parameter(__isl_keep isl_id *id)
2919 return id && isl_id_get_user(id) && !isl_id_get_name(id);
2922 /* Does parameter "pos" of "space" refer to a nested access?
2924 static bool is_nested_parameter(__isl_keep isl_space *space, int pos)
2926 bool nested;
2927 isl_id *id;
2929 id = isl_space_get_dim_id(space, isl_dim_param, pos);
2930 nested = is_nested_parameter(id);
2931 isl_id_free(id);
2933 return nested;
2936 /* Does "space" involve any parameters that refer to nested
2937 * accesses, i.e., parameters with no name?
2939 static bool has_nested(__isl_keep isl_space *space)
2941 int nparam;
2943 nparam = isl_space_dim(space, isl_dim_param);
2944 for (int i = 0; i < nparam; ++i)
2945 if (is_nested_parameter(space, i))
2946 return true;
2948 return false;
2951 /* Does "pa" involve any parameters that refer to nested
2952 * accesses, i.e., parameters with no name?
2954 static bool has_nested(__isl_keep isl_pw_aff *pa)
2956 isl_space *space;
2957 bool nested;
2959 space = isl_pw_aff_get_space(pa);
2960 nested = has_nested(space);
2961 isl_space_free(space);
2963 return nested;
2966 /* Construct a pet_scop for a for statement.
2967 * The for loop is required to be of the form
2969 * for (i = init; condition; ++i)
2971 * or
2973 * for (i = init; condition; --i)
2975 * The initialization of the for loop should either be an assignment
2976 * to an integer variable, or a declaration of such a variable with
2977 * initialization.
2979 * The condition is allowed to contain nested accesses, provided
2980 * they are not being written to inside the body of the loop.
2981 * Otherwise, or if the condition is otherwise non-affine, the for loop is
2982 * essentially treated as a while loop, with iteration domain
2983 * { [i] : i >= init }.
2985 * We extract a pet_scop for the body and then embed it in a loop with
2986 * iteration domain and schedule
2988 * { [i] : i >= init and condition' }
2989 * { [i] -> [i] }
2991 * or
2993 * { [i] : i <= init and condition' }
2994 * { [i] -> [-i] }
2996 * Where condition' is equal to condition if the latter is
2997 * a simple upper [lower] bound and a condition that is extended
2998 * to apply to all previous iterations otherwise.
3000 * If the condition is non-affine, then we drop the condition from the
3001 * iteration domain and instead create a separate statement
3002 * for evaluating the condition. The body is then filtered to depend
3003 * on the result of the condition evaluating to true on all iterations
3004 * up to the current iteration, while the evaluation the condition itself
3005 * is filtered to depend on the result of the condition evaluating to true
3006 * on all previous iterations.
3007 * The context of the scop representing the body is dropped
3008 * because we don't know how many times the body will be executed,
3009 * if at all.
3011 * If the stride of the loop is not 1, then "i >= init" is replaced by
3013 * (exists a: i = init + stride * a and a >= 0)
3015 * If the loop iterator i is unsigned, then wrapping may occur.
3016 * We therefore use a virtual iterator instead that does not wrap.
3017 * However, the condition in the code applies
3018 * to the wrapped value, so we need to change condition(i)
3019 * into condition([i % 2^width]). Similarly, we replace all accesses
3020 * to the original iterator by the wrapping of the virtual iterator.
3021 * Note that there may be no need to perform this final wrapping
3022 * if the loop condition (after wrapping) satisfies certain conditions.
3023 * However, the is_simple_bound condition is not enough since it doesn't
3024 * check if there even is an upper bound.
3026 * Wrapping on unsigned iterators can be avoided entirely if
3027 * loop condition is simple, the loop iterator is incremented
3028 * [decremented] by one and the last value before wrapping cannot
3029 * possibly satisfy the loop condition.
3031 * Before extracting a pet_scop from the body we remove all
3032 * assignments in assigned_value to variables that are assigned
3033 * somewhere in the body of the loop.
3035 * Valid parameters for a for loop are those for which the initial
3036 * value itself, the increment on each domain iteration and
3037 * the condition on both the initial value and
3038 * the result of incrementing the iterator for each iteration of the domain
3039 * can be evaluated.
3040 * If the loop condition is non-affine, then we only consider validity
3041 * of the initial value.
3043 * If the body contains any break, then we keep track of it in "skip"
3044 * (if the skip condition is affine) or it is handled in scop_add_break
3045 * (if the skip condition is not affine).
3046 * Note that the affine break condition needs to be considered with
3047 * respect to previous iterations in the virtual domain (if any).
3049 * If we were only able to extract part of the body, then simply
3050 * return that part.
3052 struct pet_scop *PetScan::extract_for(ForStmt *stmt)
3054 BinaryOperator *ass;
3055 Decl *decl;
3056 Stmt *init;
3057 Expr *lhs, *rhs;
3058 ValueDecl *iv;
3059 isl_space *space;
3060 isl_set *domain;
3061 isl_map *sched;
3062 isl_set *cond = NULL;
3063 isl_set *skip = NULL;
3064 isl_id *id, *id_test = NULL, *id_break_test;
3065 struct pet_scop *scop, *scop_cond = NULL;
3066 assigned_value_cache cache(assigned_value);
3067 isl_val *inc;
3068 bool was_assigned;
3069 bool is_one;
3070 bool is_unsigned;
3071 bool is_simple;
3072 bool is_virtual;
3073 bool has_affine_break;
3074 bool has_var_break;
3075 isl_aff *wrap = NULL;
3076 isl_pw_aff *pa, *pa_inc, *init_val;
3077 isl_set *valid_init;
3078 isl_set *valid_cond;
3079 isl_set *valid_cond_init;
3080 isl_set *valid_cond_next;
3081 isl_set *valid_inc;
3082 int stmt_id;
3084 if (!stmt->getInit() && !stmt->getCond() && !stmt->getInc())
3085 return extract_infinite_for(stmt);
3087 init = stmt->getInit();
3088 if (!init) {
3089 unsupported(stmt);
3090 return NULL;
3092 if ((ass = initialization_assignment(init)) != NULL) {
3093 iv = extract_induction_variable(ass);
3094 if (!iv)
3095 return NULL;
3096 lhs = ass->getLHS();
3097 rhs = ass->getRHS();
3098 } else if ((decl = initialization_declaration(init)) != NULL) {
3099 VarDecl *var = extract_induction_variable(init, decl);
3100 if (!var)
3101 return NULL;
3102 iv = var;
3103 rhs = var->getInit();
3104 lhs = create_DeclRefExpr(var);
3105 } else {
3106 unsupported(stmt->getInit());
3107 return NULL;
3110 assigned_value.erase(iv);
3111 clear_assignments clear(assigned_value);
3112 clear.TraverseStmt(stmt->getBody());
3114 was_assigned = assigned_value.find(iv) != assigned_value.end();
3115 clear_assignment(assigned_value, iv);
3116 init_val = extract_affine(rhs);
3117 if (!was_assigned)
3118 assigned_value.erase(iv);
3119 if (!init_val)
3120 return NULL;
3122 pa_inc = extract_increment(stmt, iv);
3123 if (!pa_inc) {
3124 isl_pw_aff_free(init_val);
3125 return NULL;
3128 inc = NULL;
3129 if (isl_pw_aff_n_piece(pa_inc) != 1 ||
3130 isl_pw_aff_foreach_piece(pa_inc, &extract_cst, &inc) < 0) {
3131 isl_pw_aff_free(init_val);
3132 isl_pw_aff_free(pa_inc);
3133 unsupported(stmt->getInc());
3134 isl_val_free(inc);
3135 return NULL;
3138 pa = try_extract_nested_condition(stmt->getCond());
3139 if (allow_nested && (!pa || has_nested(pa)))
3140 stmt_id = n_stmt++;
3142 scop = extract(stmt->getBody());
3143 if (partial) {
3144 isl_pw_aff_free(init_val);
3145 isl_pw_aff_free(pa_inc);
3146 isl_pw_aff_free(pa);
3147 isl_val_free(inc);
3148 return scop;
3151 valid_inc = isl_pw_aff_domain(pa_inc);
3153 is_unsigned = iv->getType()->isUnsignedIntegerType();
3155 id = isl_id_alloc(ctx, iv->getName().str().c_str(), iv);
3157 has_affine_break = scop &&
3158 pet_scop_has_affine_skip(scop, pet_skip_later);
3159 if (has_affine_break)
3160 skip = pet_scop_get_affine_skip_domain(scop, pet_skip_later);
3161 has_var_break = scop && pet_scop_has_var_skip(scop, pet_skip_later);
3162 if (has_var_break)
3163 id_break_test = pet_scop_get_skip_id(scop, pet_skip_later);
3165 if (pa && !is_nested_allowed(pa, scop)) {
3166 isl_pw_aff_free(pa);
3167 pa = NULL;
3170 if (!allow_nested && !pa)
3171 pa = try_extract_affine_condition(stmt->getCond());
3172 valid_cond = isl_pw_aff_domain(isl_pw_aff_copy(pa));
3173 cond = isl_pw_aff_non_zero_set(pa);
3174 if (allow_nested && !cond) {
3175 isl_multi_pw_aff *test_index;
3176 int save_n_stmt = n_stmt;
3177 test_index = create_test_index(ctx, n_test++);
3178 n_stmt = stmt_id;
3179 scop_cond = extract_non_affine_condition(stmt->getCond(),
3180 n_stmt++, isl_multi_pw_aff_copy(test_index));
3181 n_stmt = save_n_stmt;
3182 scop_cond = scop_add_array(scop_cond, test_index, ast_context);
3183 id_test = isl_multi_pw_aff_get_tuple_id(test_index,
3184 isl_dim_out);
3185 isl_multi_pw_aff_free(test_index);
3186 scop_cond = pet_scop_prefix(scop_cond, 0);
3187 scop = pet_scop_reset_context(scop);
3188 scop = pet_scop_prefix(scop, 1);
3189 cond = isl_set_universe(isl_space_set_alloc(ctx, 0, 0));
3192 cond = embed(cond, isl_id_copy(id));
3193 skip = embed(skip, isl_id_copy(id));
3194 valid_cond = isl_set_coalesce(valid_cond);
3195 valid_cond = embed(valid_cond, isl_id_copy(id));
3196 valid_inc = embed(valid_inc, isl_id_copy(id));
3197 is_one = isl_val_is_one(inc) || isl_val_is_negone(inc);
3198 is_virtual = is_unsigned && (!is_one || can_wrap(cond, iv, inc));
3200 valid_cond_init = enforce_subset(
3201 isl_set_from_pw_aff(isl_pw_aff_copy(init_val)),
3202 isl_set_copy(valid_cond));
3203 if (is_one && !is_virtual) {
3204 isl_pw_aff_free(init_val);
3205 pa = extract_comparison(isl_val_is_pos(inc) ? BO_GE : BO_LE,
3206 lhs, rhs, init);
3207 valid_init = isl_pw_aff_domain(isl_pw_aff_copy(pa));
3208 valid_init = set_project_out_by_id(valid_init, id);
3209 domain = isl_pw_aff_non_zero_set(pa);
3210 } else {
3211 valid_init = isl_pw_aff_domain(isl_pw_aff_copy(init_val));
3212 domain = strided_domain(isl_id_copy(id), init_val,
3213 isl_val_copy(inc));
3216 domain = embed(domain, isl_id_copy(id));
3217 if (is_virtual) {
3218 isl_map *rev_wrap;
3219 wrap = compute_wrapping(isl_set_get_space(cond), iv);
3220 rev_wrap = isl_map_from_aff(isl_aff_copy(wrap));
3221 rev_wrap = isl_map_reverse(rev_wrap);
3222 cond = isl_set_apply(cond, isl_map_copy(rev_wrap));
3223 skip = isl_set_apply(skip, isl_map_copy(rev_wrap));
3224 valid_cond = isl_set_apply(valid_cond, isl_map_copy(rev_wrap));
3225 valid_inc = isl_set_apply(valid_inc, rev_wrap);
3227 is_simple = is_simple_bound(cond, inc);
3228 if (!is_simple) {
3229 cond = isl_set_gist(cond, isl_set_copy(domain));
3230 is_simple = is_simple_bound(cond, inc);
3232 if (!is_simple)
3233 cond = valid_for_each_iteration(cond,
3234 isl_set_copy(domain), isl_val_copy(inc));
3235 domain = isl_set_intersect(domain, cond);
3236 if (has_affine_break) {
3237 skip = isl_set_intersect(skip , isl_set_copy(domain));
3238 skip = after(skip, isl_val_sgn(inc));
3239 domain = isl_set_subtract(domain, skip);
3241 domain = isl_set_set_dim_id(domain, isl_dim_set, 0, isl_id_copy(id));
3242 space = isl_space_from_domain(isl_set_get_space(domain));
3243 space = isl_space_add_dims(space, isl_dim_out, 1);
3244 sched = isl_map_universe(space);
3245 if (isl_val_is_pos(inc))
3246 sched = isl_map_equate(sched, isl_dim_in, 0, isl_dim_out, 0);
3247 else
3248 sched = isl_map_oppose(sched, isl_dim_in, 0, isl_dim_out, 0);
3250 valid_cond_next = valid_on_next(valid_cond, isl_set_copy(domain),
3251 isl_val_copy(inc));
3252 valid_inc = enforce_subset(isl_set_copy(domain), valid_inc);
3254 if (!is_virtual)
3255 wrap = identity_aff(domain);
3257 scop_cond = pet_scop_embed(scop_cond, isl_set_copy(domain),
3258 isl_map_copy(sched), isl_aff_copy(wrap), isl_id_copy(id));
3259 scop = pet_scop_embed(scop, isl_set_copy(domain), sched, wrap, id);
3260 scop = resolve_nested(scop);
3261 if (has_var_break)
3262 scop = scop_add_break(scop, id_break_test, isl_set_copy(domain),
3263 isl_val_copy(inc));
3264 if (id_test) {
3265 scop = scop_add_while(scop_cond, scop, id_test, domain,
3266 isl_val_copy(inc));
3267 isl_set_free(valid_inc);
3268 } else {
3269 scop = pet_scop_restrict_context(scop, valid_inc);
3270 scop = pet_scop_restrict_context(scop, valid_cond_next);
3271 scop = pet_scop_restrict_context(scop, valid_cond_init);
3272 isl_set_free(domain);
3274 clear_assignment(assigned_value, iv);
3276 isl_val_free(inc);
3278 scop = pet_scop_restrict_context(scop, valid_init);
3280 return scop;
3283 /* Try and construct a pet_scop corresponding to a compound statement.
3285 * "skip_declarations" is set if we should skip initial declarations
3286 * in the children of the compound statements. This then implies
3287 * that this sequence of children should not be treated as a block
3288 * since the initial statements may be skipped.
3290 struct pet_scop *PetScan::extract(CompoundStmt *stmt, bool skip_declarations)
3292 return extract(stmt->children(), !skip_declarations, skip_declarations);
3295 /* Does parameter "pos" of "map" refer to a nested access?
3297 static bool is_nested_parameter(__isl_keep isl_map *map, int pos)
3299 bool nested;
3300 isl_id *id;
3302 id = isl_map_get_dim_id(map, isl_dim_param, pos);
3303 nested = is_nested_parameter(id);
3304 isl_id_free(id);
3306 return nested;
3309 /* How many parameters of "space" refer to nested accesses, i.e., have no name?
3311 static int n_nested_parameter(__isl_keep isl_space *space)
3313 int n = 0;
3314 int nparam;
3316 nparam = isl_space_dim(space, isl_dim_param);
3317 for (int i = 0; i < nparam; ++i)
3318 if (is_nested_parameter(space, i))
3319 ++n;
3321 return n;
3324 /* How many parameters of "map" refer to nested accesses, i.e., have no name?
3326 static int n_nested_parameter(__isl_keep isl_map *map)
3328 isl_space *space;
3329 int n;
3331 space = isl_map_get_space(map);
3332 n = n_nested_parameter(space);
3333 isl_space_free(space);
3335 return n;
3338 /* For each nested access parameter in "space",
3339 * construct a corresponding pet_expr, place it in args and
3340 * record its position in "param2pos".
3341 * "n_arg" is the number of elements that are already in args.
3342 * The position recorded in "param2pos" takes this number into account.
3343 * If the pet_expr corresponding to a parameter is identical to
3344 * the pet_expr corresponding to an earlier parameter, then these two
3345 * parameters are made to refer to the same element in args.
3347 * Return the final number of elements in args or -1 if an error has occurred.
3349 int PetScan::extract_nested(__isl_keep isl_space *space,
3350 int n_arg, struct pet_expr **args, std::map<int,int> &param2pos)
3352 int nparam;
3354 nparam = isl_space_dim(space, isl_dim_param);
3355 for (int i = 0; i < nparam; ++i) {
3356 int j;
3357 isl_id *id = isl_space_get_dim_id(space, isl_dim_param, i);
3358 Expr *nested;
3360 if (!is_nested_parameter(id)) {
3361 isl_id_free(id);
3362 continue;
3365 nested = (Expr *) isl_id_get_user(id);
3366 args[n_arg] = extract_expr(nested);
3367 if (!args[n_arg])
3368 return -1;
3370 for (j = 0; j < n_arg; ++j)
3371 if (pet_expr_is_equal(args[j], args[n_arg]))
3372 break;
3374 if (j < n_arg) {
3375 pet_expr_free(args[n_arg]);
3376 args[n_arg] = NULL;
3377 param2pos[i] = j;
3378 } else
3379 param2pos[i] = n_arg++;
3381 isl_id_free(id);
3384 return n_arg;
3387 /* For each nested access parameter in the access relations in "expr",
3388 * construct a corresponding pet_expr, place it in expr->args and
3389 * record its position in "param2pos".
3390 * n is the number of nested access parameters.
3392 struct pet_expr *PetScan::extract_nested(struct pet_expr *expr, int n,
3393 std::map<int,int> &param2pos)
3395 isl_space *space;
3397 expr->args = isl_calloc_array(ctx, struct pet_expr *, n);
3398 expr->n_arg = n;
3399 if (!expr->args)
3400 goto error;
3402 space = isl_map_get_space(expr->acc.access);
3403 n = extract_nested(space, 0, expr->args, param2pos);
3404 isl_space_free(space);
3406 if (n < 0)
3407 goto error;
3409 expr->n_arg = n;
3410 return expr;
3411 error:
3412 pet_expr_free(expr);
3413 return NULL;
3416 /* Look for parameters in any access relation in "expr" that
3417 * refer to nested accesses. In particular, these are
3418 * parameters with no name.
3420 * If there are any such parameters, then the domain of the index
3421 * expression and the access relation, which is still [] at this point,
3422 * is replaced by [[] -> [t_1,...,t_n]], with n the number of these parameters
3423 * (after identifying identical nested accesses).
3425 * This transformation is performed in several steps.
3426 * We first extract the arguments in extract_nested.
3427 * param2pos maps the original parameter position to the position
3428 * of the argument.
3429 * Then we move these parameters to input dimension.
3430 * t2pos maps the positions of these temporary input dimensions
3431 * to the positions of the corresponding arguments.
3432 * Finally, we express there temporary dimensions in term of the domain
3433 * [[] -> [t_1,...,t_n]] and precompose index expression and access
3434 * relations with this function.
3436 struct pet_expr *PetScan::resolve_nested(struct pet_expr *expr)
3438 int n;
3439 int nparam;
3440 isl_space *space;
3441 isl_local_space *ls;
3442 isl_aff *aff;
3443 isl_multi_aff *ma;
3444 std::map<int,int> param2pos;
3445 std::map<int,int> t2pos;
3447 if (!expr)
3448 return expr;
3450 for (int i = 0; i < expr->n_arg; ++i) {
3451 expr->args[i] = resolve_nested(expr->args[i]);
3452 if (!expr->args[i]) {
3453 pet_expr_free(expr);
3454 return NULL;
3458 if (expr->type != pet_expr_access)
3459 return expr;
3461 n = n_nested_parameter(expr->acc.access);
3462 if (n == 0)
3463 return expr;
3465 expr = extract_nested(expr, n, param2pos);
3466 if (!expr)
3467 return NULL;
3469 expr = pet_expr_access_align_params(expr);
3470 if (!expr)
3471 return NULL;
3472 nparam = isl_map_dim(expr->acc.access, isl_dim_param);
3474 n = 0;
3475 for (int i = nparam - 1; i >= 0; --i) {
3476 isl_id *id = isl_map_get_dim_id(expr->acc.access,
3477 isl_dim_param, i);
3478 if (!is_nested_parameter(id)) {
3479 isl_id_free(id);
3480 continue;
3483 expr->acc.access = isl_map_move_dims(expr->acc.access,
3484 isl_dim_in, n, isl_dim_param, i, 1);
3485 expr->acc.index = isl_multi_pw_aff_move_dims(expr->acc.index,
3486 isl_dim_in, n, isl_dim_param, i, 1);
3487 t2pos[n] = param2pos[i];
3488 n++;
3490 isl_id_free(id);
3493 space = isl_multi_pw_aff_get_space(expr->acc.index);
3494 space = isl_space_set_from_params(isl_space_params(space));
3495 space = isl_space_add_dims(space, isl_dim_set, expr->n_arg);
3496 space = isl_space_wrap(isl_space_from_range(space));
3497 ls = isl_local_space_from_space(isl_space_copy(space));
3498 space = isl_space_from_domain(space);
3499 space = isl_space_add_dims(space, isl_dim_out, n);
3500 ma = isl_multi_aff_zero(space);
3502 for (int i = 0; i < n; ++i) {
3503 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
3504 isl_dim_set, t2pos[i]);
3505 ma = isl_multi_aff_set_aff(ma, i, aff);
3507 isl_local_space_free(ls);
3509 expr->acc.access = isl_map_preimage_domain_multi_aff(expr->acc.access,
3510 isl_multi_aff_copy(ma));
3511 expr->acc.index = isl_multi_pw_aff_pullback_multi_aff(expr->acc.index,
3512 ma);
3514 return expr;
3517 /* Return the file offset of the expansion location of "Loc".
3519 static unsigned getExpansionOffset(SourceManager &SM, SourceLocation Loc)
3521 return SM.getFileOffset(SM.getExpansionLoc(Loc));
3524 #ifdef HAVE_FINDLOCATIONAFTERTOKEN
3526 /* Return a SourceLocation for the location after the first semicolon
3527 * after "loc". If Lexer::findLocationAfterToken is available, we simply
3528 * call it and also skip trailing spaces and newline.
3530 static SourceLocation location_after_semi(SourceLocation loc, SourceManager &SM,
3531 const LangOptions &LO)
3533 return Lexer::findLocationAfterToken(loc, tok::semi, SM, LO, true);
3536 #else
3538 /* Return a SourceLocation for the location after the first semicolon
3539 * after "loc". If Lexer::findLocationAfterToken is not available,
3540 * we look in the underlying character data for the first semicolon.
3542 static SourceLocation location_after_semi(SourceLocation loc, SourceManager &SM,
3543 const LangOptions &LO)
3545 const char *semi;
3546 const char *s = SM.getCharacterData(loc);
3548 semi = strchr(s, ';');
3549 if (!semi)
3550 return SourceLocation();
3551 return loc.getFileLocWithOffset(semi + 1 - s);
3554 #endif
3556 /* If the token at "loc" is the first token on the line, then return
3557 * a location referring to the start of the line.
3558 * Otherwise, return "loc".
3560 * This function is used to extend a scop to the start of the line
3561 * if the first token of the scop is also the first token on the line.
3563 * We look for the first token on the line. If its location is equal to "loc",
3564 * then the latter is the location of the first token on the line.
3566 static SourceLocation move_to_start_of_line_if_first_token(SourceLocation loc,
3567 SourceManager &SM, const LangOptions &LO)
3569 std::pair<FileID, unsigned> file_offset_pair;
3570 llvm::StringRef file;
3571 const char *pos;
3572 Token tok;
3573 SourceLocation token_loc, line_loc;
3574 int col;
3576 loc = SM.getExpansionLoc(loc);
3577 col = SM.getExpansionColumnNumber(loc);
3578 line_loc = loc.getLocWithOffset(1 - col);
3579 file_offset_pair = SM.getDecomposedLoc(line_loc);
3580 file = SM.getBufferData(file_offset_pair.first, NULL);
3581 pos = file.data() + file_offset_pair.second;
3583 Lexer lexer(SM.getLocForStartOfFile(file_offset_pair.first), LO,
3584 file.begin(), pos, file.end());
3585 lexer.LexFromRawLexer(tok);
3586 token_loc = tok.getLocation();
3588 if (token_loc == loc)
3589 return line_loc;
3590 else
3591 return loc;
3594 /* Convert a top-level pet_expr to a pet_scop with one statement.
3595 * This mainly involves resolving nested expression parameters
3596 * and setting the name of the iteration space.
3597 * The name is given by "label" if it is non-NULL. Otherwise,
3598 * it is of the form S_<n_stmt>.
3599 * start and end of the pet_scop are derived from those of "stmt".
3601 struct pet_scop *PetScan::extract(Stmt *stmt, struct pet_expr *expr,
3602 __isl_take isl_id *label)
3604 struct pet_stmt *ps;
3605 struct pet_scop *scop;
3606 SourceLocation loc = stmt->getLocStart();
3607 SourceManager &SM = PP.getSourceManager();
3608 const LangOptions &LO = PP.getLangOpts();
3609 int line = PP.getSourceManager().getExpansionLineNumber(loc);
3610 unsigned start, end;
3612 expr = resolve_nested(expr);
3613 ps = pet_stmt_from_pet_expr(ctx, line, label, n_stmt++, expr);
3614 scop = pet_scop_from_pet_stmt(ctx, ps);
3616 loc = move_to_start_of_line_if_first_token(loc, SM, LO);
3617 start = getExpansionOffset(SM, loc);
3618 loc = stmt->getLocEnd();
3619 loc = location_after_semi(loc, SM, LO);
3620 end = getExpansionOffset(SM, loc);
3622 scop = pet_scop_update_start_end(scop, start, end);
3623 return scop;
3626 /* Check if we can extract an affine expression from "expr".
3627 * Return the expressions as an isl_pw_aff if we can and NULL otherwise.
3628 * We turn on autodetection so that we won't generate any warnings
3629 * and turn off nesting, so that we won't accept any non-affine constructs.
3631 __isl_give isl_pw_aff *PetScan::try_extract_affine(Expr *expr)
3633 isl_pw_aff *pwaff;
3634 int save_autodetect = options->autodetect;
3635 bool save_nesting = nesting_enabled;
3637 options->autodetect = 1;
3638 nesting_enabled = false;
3640 pwaff = extract_affine(expr);
3642 options->autodetect = save_autodetect;
3643 nesting_enabled = save_nesting;
3645 return pwaff;
3648 /* Check whether "expr" is an affine expression.
3650 bool PetScan::is_affine(Expr *expr)
3652 isl_pw_aff *pwaff;
3654 pwaff = try_extract_affine(expr);
3655 isl_pw_aff_free(pwaff);
3657 return pwaff != NULL;
3660 /* Check if we can extract an affine constraint from "expr".
3661 * Return the constraint as an isl_set if we can and NULL otherwise.
3662 * We turn on autodetection so that we won't generate any warnings
3663 * and turn off nesting, so that we won't accept any non-affine constructs.
3665 __isl_give isl_pw_aff *PetScan::try_extract_affine_condition(Expr *expr)
3667 isl_pw_aff *cond;
3668 int save_autodetect = options->autodetect;
3669 bool save_nesting = nesting_enabled;
3671 options->autodetect = 1;
3672 nesting_enabled = false;
3674 cond = extract_condition(expr);
3676 options->autodetect = save_autodetect;
3677 nesting_enabled = save_nesting;
3679 return cond;
3682 /* Check whether "expr" is an affine constraint.
3684 bool PetScan::is_affine_condition(Expr *expr)
3686 isl_pw_aff *cond;
3688 cond = try_extract_affine_condition(expr);
3689 isl_pw_aff_free(cond);
3691 return cond != NULL;
3694 /* Check if we can extract a condition from "expr".
3695 * Return the condition as an isl_pw_aff if we can and NULL otherwise.
3696 * If allow_nested is set, then the condition may involve parameters
3697 * corresponding to nested accesses.
3698 * We turn on autodetection so that we won't generate any warnings.
3700 __isl_give isl_pw_aff *PetScan::try_extract_nested_condition(Expr *expr)
3702 isl_pw_aff *cond;
3703 int save_autodetect = options->autodetect;
3704 bool save_nesting = nesting_enabled;
3706 options->autodetect = 1;
3707 nesting_enabled = allow_nested;
3708 cond = extract_condition(expr);
3710 options->autodetect = save_autodetect;
3711 nesting_enabled = save_nesting;
3713 return cond;
3716 /* If the top-level expression of "stmt" is an assignment, then
3717 * return that assignment as a BinaryOperator.
3718 * Otherwise return NULL.
3720 static BinaryOperator *top_assignment_or_null(Stmt *stmt)
3722 BinaryOperator *ass;
3724 if (!stmt)
3725 return NULL;
3726 if (stmt->getStmtClass() != Stmt::BinaryOperatorClass)
3727 return NULL;
3729 ass = cast<BinaryOperator>(stmt);
3730 if(ass->getOpcode() != BO_Assign)
3731 return NULL;
3733 return ass;
3736 /* Check if the given if statement is a conditional assignement
3737 * with a non-affine condition. If so, construct a pet_scop
3738 * corresponding to this conditional assignment. Otherwise return NULL.
3740 * In particular we check if "stmt" is of the form
3742 * if (condition)
3743 * a = f(...);
3744 * else
3745 * a = g(...);
3747 * where a is some array or scalar access.
3748 * The constructed pet_scop then corresponds to the expression
3750 * a = condition ? f(...) : g(...)
3752 * All access relations in f(...) are intersected with condition
3753 * while all access relation in g(...) are intersected with the complement.
3755 struct pet_scop *PetScan::extract_conditional_assignment(IfStmt *stmt)
3757 BinaryOperator *ass_then, *ass_else;
3758 isl_multi_pw_aff *write_then, *write_else;
3759 isl_set *cond, *comp;
3760 isl_multi_pw_aff *index;
3761 isl_pw_aff *pa;
3762 int equal;
3763 struct pet_expr *pe_cond, *pe_then, *pe_else, *pe, *pe_write;
3764 bool save_nesting = nesting_enabled;
3766 if (!options->detect_conditional_assignment)
3767 return NULL;
3769 ass_then = top_assignment_or_null(stmt->getThen());
3770 ass_else = top_assignment_or_null(stmt->getElse());
3772 if (!ass_then || !ass_else)
3773 return NULL;
3775 if (is_affine_condition(stmt->getCond()))
3776 return NULL;
3778 write_then = extract_index(ass_then->getLHS());
3779 write_else = extract_index(ass_else->getLHS());
3781 equal = isl_multi_pw_aff_plain_is_equal(write_then, write_else);
3782 isl_multi_pw_aff_free(write_else);
3783 if (equal < 0 || !equal) {
3784 isl_multi_pw_aff_free(write_then);
3785 return NULL;
3788 nesting_enabled = allow_nested;
3789 pa = extract_condition(stmt->getCond());
3790 nesting_enabled = save_nesting;
3791 cond = isl_pw_aff_non_zero_set(isl_pw_aff_copy(pa));
3792 comp = isl_pw_aff_zero_set(isl_pw_aff_copy(pa));
3793 index = isl_multi_pw_aff_from_range(isl_multi_pw_aff_from_pw_aff(pa));
3795 pe_cond = pet_expr_from_index(index);
3797 pe_then = extract_expr(ass_then->getRHS());
3798 pe_then = pet_expr_restrict(pe_then, cond);
3799 pe_else = extract_expr(ass_else->getRHS());
3800 pe_else = pet_expr_restrict(pe_else, comp);
3802 pe = pet_expr_new_ternary(ctx, pe_cond, pe_then, pe_else);
3803 pe_write = pet_expr_from_index_and_depth(write_then,
3804 extract_depth(write_then));
3805 if (pe_write) {
3806 pe_write->acc.write = 1;
3807 pe_write->acc.read = 0;
3809 pe = pet_expr_new_binary(ctx, pet_op_assign, pe_write, pe);
3810 return extract(stmt, pe);
3813 /* Create a pet_scop with a single statement with name S_<stmt_nr>,
3814 * evaluating "cond" and writing the result to a virtual scalar,
3815 * as expressed by "index".
3817 struct pet_scop *PetScan::extract_non_affine_condition(Expr *cond, int stmt_nr,
3818 __isl_take isl_multi_pw_aff *index)
3820 struct pet_expr *expr, *write;
3821 struct pet_stmt *ps;
3822 struct pet_scop *scop;
3823 SourceLocation loc = cond->getLocStart();
3824 int line = PP.getSourceManager().getExpansionLineNumber(loc);
3826 write = pet_expr_from_index(index);
3827 if (write) {
3828 write->acc.write = 1;
3829 write->acc.read = 0;
3831 expr = extract_expr(cond);
3832 expr = resolve_nested(expr);
3833 expr = pet_expr_new_binary(ctx, pet_op_assign, write, expr);
3834 ps = pet_stmt_from_pet_expr(ctx, line, NULL, stmt_nr, expr);
3835 scop = pet_scop_from_pet_stmt(ctx, ps);
3836 scop = resolve_nested(scop);
3838 return scop;
3841 extern "C" {
3842 static struct pet_expr *embed_access(struct pet_expr *expr, void *user);
3845 /* Precompose the access relation and the index expression associated
3846 * to "expr" with the function pointed to by "user",
3847 * thereby embedding the access relation in the domain of this function.
3848 * The initial domain of the access relation and the index expression
3849 * is the zero-dimensional domain.
3851 static struct pet_expr *embed_access(struct pet_expr *expr, void *user)
3853 isl_multi_aff *ma = (isl_multi_aff *) user;
3855 expr->acc.access = isl_map_preimage_domain_multi_aff(expr->acc.access,
3856 isl_multi_aff_copy(ma));
3857 expr->acc.index = isl_multi_pw_aff_pullback_multi_aff(expr->acc.index,
3858 isl_multi_aff_copy(ma));
3859 if (!expr->acc.access || !expr->acc.index)
3860 goto error;
3862 return expr;
3863 error:
3864 pet_expr_free(expr);
3865 return NULL;
3868 /* Precompose all access relations in "expr" with "ma", thereby
3869 * embedding them in the domain of "ma".
3871 static struct pet_expr *embed(struct pet_expr *expr,
3872 __isl_keep isl_multi_aff *ma)
3874 return pet_expr_map_access(expr, &embed_access, ma);
3877 /* How many parameters of "set" refer to nested accesses, i.e., have no name?
3879 static int n_nested_parameter(__isl_keep isl_set *set)
3881 isl_space *space;
3882 int n;
3884 space = isl_set_get_space(set);
3885 n = n_nested_parameter(space);
3886 isl_space_free(space);
3888 return n;
3891 /* Remove all parameters from "map" that refer to nested accesses.
3893 static __isl_give isl_map *remove_nested_parameters(__isl_take isl_map *map)
3895 int nparam;
3896 isl_space *space;
3898 space = isl_map_get_space(map);
3899 nparam = isl_space_dim(space, isl_dim_param);
3900 for (int i = nparam - 1; i >= 0; --i)
3901 if (is_nested_parameter(space, i))
3902 map = isl_map_project_out(map, isl_dim_param, i, 1);
3903 isl_space_free(space);
3905 return map;
3908 /* Remove all parameters from "mpa" that refer to nested accesses.
3910 static __isl_give isl_multi_pw_aff *remove_nested_parameters(
3911 __isl_take isl_multi_pw_aff *mpa)
3913 int nparam;
3914 isl_space *space;
3916 space = isl_multi_pw_aff_get_space(mpa);
3917 nparam = isl_space_dim(space, isl_dim_param);
3918 for (int i = nparam - 1; i >= 0; --i) {
3919 if (!is_nested_parameter(space, i))
3920 continue;
3921 mpa = isl_multi_pw_aff_drop_dims(mpa, isl_dim_param, i, 1);
3923 isl_space_free(space);
3925 return mpa;
3928 /* Remove all parameters from the index expression and access relation of "expr"
3929 * that refer to nested accesses.
3931 static struct pet_expr *remove_nested_parameters(struct pet_expr *expr)
3933 expr->acc.access = remove_nested_parameters(expr->acc.access);
3934 expr->acc.index = remove_nested_parameters(expr->acc.index);
3935 if (!expr->acc.access || !expr->acc.index)
3936 goto error;
3938 return expr;
3939 error:
3940 pet_expr_free(expr);
3941 return NULL;
3944 extern "C" {
3945 static struct pet_expr *expr_remove_nested_parameters(
3946 struct pet_expr *expr, void *user);
3949 static struct pet_expr *expr_remove_nested_parameters(
3950 struct pet_expr *expr, void *user)
3952 return remove_nested_parameters(expr);
3955 /* Remove all nested access parameters from the schedule and all
3956 * accesses of "stmt".
3957 * There is no need to remove them from the domain as these parameters
3958 * have already been removed from the domain when this function is called.
3960 static struct pet_stmt *remove_nested_parameters(struct pet_stmt *stmt)
3962 if (!stmt)
3963 return NULL;
3964 stmt->schedule = remove_nested_parameters(stmt->schedule);
3965 stmt->body = pet_expr_map_access(stmt->body,
3966 &expr_remove_nested_parameters, NULL);
3967 if (!stmt->schedule || !stmt->body)
3968 goto error;
3969 for (int i = 0; i < stmt->n_arg; ++i) {
3970 stmt->args[i] = pet_expr_map_access(stmt->args[i],
3971 &expr_remove_nested_parameters, NULL);
3972 if (!stmt->args[i])
3973 goto error;
3976 return stmt;
3977 error:
3978 pet_stmt_free(stmt);
3979 return NULL;
3982 /* For each nested access parameter in the domain of "stmt",
3983 * construct a corresponding pet_expr, place it before the original
3984 * elements in stmt->args and record its position in "param2pos".
3985 * n is the number of nested access parameters.
3987 struct pet_stmt *PetScan::extract_nested(struct pet_stmt *stmt, int n,
3988 std::map<int,int> &param2pos)
3990 int i;
3991 isl_space *space;
3992 int n_arg;
3993 struct pet_expr **args;
3995 n_arg = stmt->n_arg;
3996 args = isl_calloc_array(ctx, struct pet_expr *, n + n_arg);
3997 if (!args)
3998 goto error;
4000 space = isl_set_get_space(stmt->domain);
4001 n_arg = extract_nested(space, 0, args, param2pos);
4002 isl_space_free(space);
4004 if (n_arg < 0)
4005 goto error;
4007 for (i = 0; i < stmt->n_arg; ++i)
4008 args[n_arg + i] = stmt->args[i];
4009 free(stmt->args);
4010 stmt->args = args;
4011 stmt->n_arg += n_arg;
4013 return stmt;
4014 error:
4015 if (args) {
4016 for (i = 0; i < n; ++i)
4017 pet_expr_free(args[i]);
4018 free(args);
4020 pet_stmt_free(stmt);
4021 return NULL;
4024 /* Check whether any of the arguments i of "stmt" starting at position "n"
4025 * is equal to one of the first "n" arguments j.
4026 * If so, combine the constraints on arguments i and j and remove
4027 * argument i.
4029 static struct pet_stmt *remove_duplicate_arguments(struct pet_stmt *stmt, int n)
4031 int i, j;
4032 isl_map *map;
4034 if (!stmt)
4035 return NULL;
4036 if (n == 0)
4037 return stmt;
4038 if (n == stmt->n_arg)
4039 return stmt;
4041 map = isl_set_unwrap(stmt->domain);
4043 for (i = stmt->n_arg - 1; i >= n; --i) {
4044 for (j = 0; j < n; ++j)
4045 if (pet_expr_is_equal(stmt->args[i], stmt->args[j]))
4046 break;
4047 if (j >= n)
4048 continue;
4050 map = isl_map_equate(map, isl_dim_out, i, isl_dim_out, j);
4051 map = isl_map_project_out(map, isl_dim_out, i, 1);
4053 pet_expr_free(stmt->args[i]);
4054 for (j = i; j + 1 < stmt->n_arg; ++j)
4055 stmt->args[j] = stmt->args[j + 1];
4056 stmt->n_arg--;
4059 stmt->domain = isl_map_wrap(map);
4060 if (!stmt->domain)
4061 goto error;
4062 return stmt;
4063 error:
4064 pet_stmt_free(stmt);
4065 return NULL;
4068 /* Look for parameters in the iteration domain of "stmt" that
4069 * refer to nested accesses. In particular, these are
4070 * parameters with no name.
4072 * If there are any such parameters, then as many extra variables
4073 * (after identifying identical nested accesses) are inserted in the
4074 * range of the map wrapped inside the domain, before the original variables.
4075 * If the original domain is not a wrapped map, then a new wrapped
4076 * map is created with zero output dimensions.
4077 * The parameters are then equated to the corresponding output dimensions
4078 * and subsequently projected out, from the iteration domain,
4079 * the schedule and the access relations.
4080 * For each of the output dimensions, a corresponding argument
4081 * expression is inserted. Initially they are created with
4082 * a zero-dimensional domain, so they have to be embedded
4083 * in the current iteration domain.
4084 * param2pos maps the position of the parameter to the position
4085 * of the corresponding output dimension in the wrapped map.
4087 struct pet_stmt *PetScan::resolve_nested(struct pet_stmt *stmt)
4089 int n;
4090 int nparam;
4091 unsigned n_arg;
4092 isl_map *map;
4093 isl_space *space;
4094 isl_multi_aff *ma;
4095 std::map<int,int> param2pos;
4097 if (!stmt)
4098 return NULL;
4100 n = n_nested_parameter(stmt->domain);
4101 if (n == 0)
4102 return stmt;
4104 n_arg = stmt->n_arg;
4105 stmt = extract_nested(stmt, n, param2pos);
4106 if (!stmt)
4107 return NULL;
4109 n = stmt->n_arg - n_arg;
4110 nparam = isl_set_dim(stmt->domain, isl_dim_param);
4111 if (isl_set_is_wrapping(stmt->domain))
4112 map = isl_set_unwrap(stmt->domain);
4113 else
4114 map = isl_map_from_domain(stmt->domain);
4115 map = isl_map_insert_dims(map, isl_dim_out, 0, n);
4117 for (int i = nparam - 1; i >= 0; --i) {
4118 isl_id *id;
4120 if (!is_nested_parameter(map, i))
4121 continue;
4123 id = pet_expr_access_get_id(stmt->args[param2pos[i]]);
4124 map = isl_map_set_dim_id(map, isl_dim_out, param2pos[i], id);
4125 map = isl_map_equate(map, isl_dim_param, i, isl_dim_out,
4126 param2pos[i]);
4127 map = isl_map_project_out(map, isl_dim_param, i, 1);
4130 stmt->domain = isl_map_wrap(map);
4132 space = isl_space_unwrap(isl_set_get_space(stmt->domain));
4133 space = isl_space_from_domain(isl_space_domain(space));
4134 ma = isl_multi_aff_zero(space);
4135 for (int pos = 0; pos < n; ++pos)
4136 stmt->args[pos] = embed(stmt->args[pos], ma);
4137 isl_multi_aff_free(ma);
4139 stmt = remove_nested_parameters(stmt);
4140 stmt = remove_duplicate_arguments(stmt, n);
4142 return stmt;
4145 /* For each statement in "scop", move the parameters that correspond
4146 * to nested access into the ranges of the domains and create
4147 * corresponding argument expressions.
4149 struct pet_scop *PetScan::resolve_nested(struct pet_scop *scop)
4151 if (!scop)
4152 return NULL;
4154 for (int i = 0; i < scop->n_stmt; ++i) {
4155 scop->stmts[i] = resolve_nested(scop->stmts[i]);
4156 if (!scop->stmts[i])
4157 goto error;
4160 return scop;
4161 error:
4162 pet_scop_free(scop);
4163 return NULL;
4166 /* Given an access expression "expr", is the variable accessed by
4167 * "expr" assigned anywhere inside "scop"?
4169 static bool is_assigned(pet_expr *expr, pet_scop *scop)
4171 bool assigned = false;
4172 isl_id *id;
4174 id = pet_expr_access_get_id(expr);
4175 assigned = pet_scop_writes(scop, id);
4176 isl_id_free(id);
4178 return assigned;
4181 /* Are all nested access parameters in "pa" allowed given "scop".
4182 * In particular, is none of them written by anywhere inside "scop".
4184 * If "scop" has any skip conditions, then no nested access parameters
4185 * are allowed. In particular, if there is any nested access in a guard
4186 * for a piece of code containing a "continue", then we want to introduce
4187 * a separate statement for evaluating this guard so that we can express
4188 * that the result is false for all previous iterations.
4190 bool PetScan::is_nested_allowed(__isl_keep isl_pw_aff *pa, pet_scop *scop)
4192 int nparam;
4194 if (!scop)
4195 return true;
4197 nparam = isl_pw_aff_dim(pa, isl_dim_param);
4198 for (int i = 0; i < nparam; ++i) {
4199 Expr *nested;
4200 isl_id *id = isl_pw_aff_get_dim_id(pa, isl_dim_param, i);
4201 pet_expr *expr;
4202 bool allowed;
4204 if (!is_nested_parameter(id)) {
4205 isl_id_free(id);
4206 continue;
4209 if (pet_scop_has_skip(scop, pet_skip_now)) {
4210 isl_id_free(id);
4211 return false;
4214 nested = (Expr *) isl_id_get_user(id);
4215 expr = extract_expr(nested);
4216 allowed = expr && expr->type == pet_expr_access &&
4217 !is_assigned(expr, scop);
4219 pet_expr_free(expr);
4220 isl_id_free(id);
4222 if (!allowed)
4223 return false;
4226 return true;
4229 /* Do we need to construct a skip condition of the given type
4230 * on an if statement, given that the if condition is non-affine?
4232 * pet_scop_filter_skip can only handle the case where the if condition
4233 * holds (the then branch) and the skip condition is universal.
4234 * In any other case, we need to construct a new skip condition.
4236 static bool need_skip(struct pet_scop *scop_then, struct pet_scop *scop_else,
4237 bool have_else, enum pet_skip type)
4239 if (have_else && scop_else && pet_scop_has_skip(scop_else, type))
4240 return true;
4241 if (scop_then && pet_scop_has_skip(scop_then, type) &&
4242 !pet_scop_has_universal_skip(scop_then, type))
4243 return true;
4244 return false;
4247 /* Do we need to construct a skip condition of the given type
4248 * on an if statement, given that the if condition is affine?
4250 * There is no need to construct a new skip condition if all
4251 * the skip conditions are affine.
4253 static bool need_skip_aff(struct pet_scop *scop_then,
4254 struct pet_scop *scop_else, bool have_else, enum pet_skip type)
4256 if (scop_then && pet_scop_has_var_skip(scop_then, type))
4257 return true;
4258 if (have_else && scop_else && pet_scop_has_var_skip(scop_else, type))
4259 return true;
4260 return false;
4263 /* Do we need to construct a skip condition of the given type
4264 * on an if statement?
4266 static bool need_skip(struct pet_scop *scop_then, struct pet_scop *scop_else,
4267 bool have_else, enum pet_skip type, bool affine)
4269 if (affine)
4270 return need_skip_aff(scop_then, scop_else, have_else, type);
4271 else
4272 return need_skip(scop_then, scop_else, have_else, type);
4275 /* Construct an affine expression pet_expr that evaluates
4276 * to the constant "val".
4278 static struct pet_expr *universally(isl_ctx *ctx, int val)
4280 isl_local_space *ls;
4281 isl_aff *aff;
4282 isl_multi_pw_aff *mpa;
4284 ls = isl_local_space_from_space(isl_space_set_alloc(ctx, 0, 0));
4285 aff = isl_aff_val_on_domain(ls, isl_val_int_from_si(ctx, val));
4286 mpa = isl_multi_pw_aff_from_pw_aff(isl_pw_aff_from_aff(aff));
4288 return pet_expr_from_index(mpa);
4291 /* Construct an affine expression pet_expr that evaluates
4292 * to the constant 1.
4294 static struct pet_expr *universally_true(isl_ctx *ctx)
4296 return universally(ctx, 1);
4299 /* Construct an affine expression pet_expr that evaluates
4300 * to the constant 0.
4302 static struct pet_expr *universally_false(isl_ctx *ctx)
4304 return universally(ctx, 0);
4307 /* Given an index expression "test_index" for the if condition,
4308 * an index expression "skip_index" for the skip condition and
4309 * scops for the then and else branches, construct a scop for
4310 * computing "skip_index".
4312 * The computed scop contains a single statement that essentially does
4314 * skip_index = test_cond ? skip_cond_then : skip_cond_else
4316 * If the skip conditions of the then and/or else branch are not affine,
4317 * then they need to be filtered by test_index.
4318 * If they are missing, then this means the skip condition is false.
4320 * Since we are constructing a skip condition for the if statement,
4321 * the skip conditions on the then and else branches are removed.
4323 static struct pet_scop *extract_skip(PetScan *scan,
4324 __isl_take isl_multi_pw_aff *test_index,
4325 __isl_take isl_multi_pw_aff *skip_index,
4326 struct pet_scop *scop_then, struct pet_scop *scop_else, bool have_else,
4327 enum pet_skip type)
4329 struct pet_expr *expr_then, *expr_else, *expr, *expr_skip;
4330 struct pet_stmt *stmt;
4331 struct pet_scop *scop;
4332 isl_ctx *ctx = scan->ctx;
4334 if (!scop_then)
4335 goto error;
4336 if (have_else && !scop_else)
4337 goto error;
4339 if (pet_scop_has_skip(scop_then, type)) {
4340 expr_then = pet_scop_get_skip_expr(scop_then, type);
4341 pet_scop_reset_skip(scop_then, type);
4342 if (!pet_expr_is_affine(expr_then))
4343 expr_then = pet_expr_filter(expr_then,
4344 isl_multi_pw_aff_copy(test_index), 1);
4345 } else
4346 expr_then = universally_false(ctx);
4348 if (have_else && pet_scop_has_skip(scop_else, type)) {
4349 expr_else = pet_scop_get_skip_expr(scop_else, type);
4350 pet_scop_reset_skip(scop_else, type);
4351 if (!pet_expr_is_affine(expr_else))
4352 expr_else = pet_expr_filter(expr_else,
4353 isl_multi_pw_aff_copy(test_index), 0);
4354 } else
4355 expr_else = universally_false(ctx);
4357 expr = pet_expr_from_index(test_index);
4358 expr = pet_expr_new_ternary(ctx, expr, expr_then, expr_else);
4359 expr_skip = pet_expr_from_index(isl_multi_pw_aff_copy(skip_index));
4360 if (expr_skip) {
4361 expr_skip->acc.write = 1;
4362 expr_skip->acc.read = 0;
4364 expr = pet_expr_new_binary(ctx, pet_op_assign, expr_skip, expr);
4365 stmt = pet_stmt_from_pet_expr(ctx, -1, NULL, scan->n_stmt++, expr);
4367 scop = pet_scop_from_pet_stmt(ctx, stmt);
4368 scop = scop_add_array(scop, skip_index, scan->ast_context);
4369 isl_multi_pw_aff_free(skip_index);
4371 return scop;
4372 error:
4373 isl_multi_pw_aff_free(test_index);
4374 isl_multi_pw_aff_free(skip_index);
4375 return NULL;
4378 /* Is scop's skip_now condition equal to its skip_later condition?
4379 * In particular, this means that it either has no skip_now condition
4380 * or both a skip_now and a skip_later condition (that are equal to each other).
4382 static bool skip_equals_skip_later(struct pet_scop *scop)
4384 int has_skip_now, has_skip_later;
4385 int equal;
4386 isl_multi_pw_aff *skip_now, *skip_later;
4388 if (!scop)
4389 return false;
4390 has_skip_now = pet_scop_has_skip(scop, pet_skip_now);
4391 has_skip_later = pet_scop_has_skip(scop, pet_skip_later);
4392 if (has_skip_now != has_skip_later)
4393 return false;
4394 if (!has_skip_now)
4395 return true;
4397 skip_now = pet_scop_get_skip(scop, pet_skip_now);
4398 skip_later = pet_scop_get_skip(scop, pet_skip_later);
4399 equal = isl_multi_pw_aff_is_equal(skip_now, skip_later);
4400 isl_multi_pw_aff_free(skip_now);
4401 isl_multi_pw_aff_free(skip_later);
4403 return equal;
4406 /* Drop the skip conditions of type pet_skip_later from scop1 and scop2.
4408 static void drop_skip_later(struct pet_scop *scop1, struct pet_scop *scop2)
4410 pet_scop_reset_skip(scop1, pet_skip_later);
4411 pet_scop_reset_skip(scop2, pet_skip_later);
4414 /* Structure that handles the construction of skip conditions.
4416 * scop_then and scop_else represent the then and else branches
4417 * of the if statement
4419 * skip[type] is true if we need to construct a skip condition of that type
4420 * equal is set if the skip conditions of types pet_skip_now and pet_skip_later
4421 * are equal to each other
4422 * index[type] is an index expression from a zero-dimension domain
4423 * to the virtual array representing the skip condition
4424 * scop[type] is a scop for computing the skip condition
4426 struct pet_skip_info {
4427 isl_ctx *ctx;
4429 bool skip[2];
4430 bool equal;
4431 isl_multi_pw_aff *index[2];
4432 struct pet_scop *scop[2];
4434 pet_skip_info(isl_ctx *ctx) : ctx(ctx) {}
4436 operator bool() { return skip[pet_skip_now] || skip[pet_skip_later]; }
4439 /* Structure that handles the construction of skip conditions on if statements.
4441 * scop_then and scop_else represent the then and else branches
4442 * of the if statement
4444 struct pet_skip_info_if : public pet_skip_info {
4445 struct pet_scop *scop_then, *scop_else;
4446 bool have_else;
4448 pet_skip_info_if(isl_ctx *ctx, struct pet_scop *scop_then,
4449 struct pet_scop *scop_else, bool have_else, bool affine);
4450 void extract(PetScan *scan, __isl_keep isl_multi_pw_aff *index,
4451 enum pet_skip type);
4452 void extract(PetScan *scan, __isl_keep isl_multi_pw_aff *index);
4453 void extract(PetScan *scan, __isl_keep isl_pw_aff *cond);
4454 struct pet_scop *add(struct pet_scop *scop, enum pet_skip type,
4455 int offset);
4456 struct pet_scop *add(struct pet_scop *scop, int offset);
4459 /* Initialize a pet_skip_info_if structure based on the then and else branches
4460 * and based on whether the if condition is affine or not.
4462 pet_skip_info_if::pet_skip_info_if(isl_ctx *ctx, struct pet_scop *scop_then,
4463 struct pet_scop *scop_else, bool have_else, bool affine) :
4464 pet_skip_info(ctx), scop_then(scop_then), scop_else(scop_else),
4465 have_else(have_else)
4467 skip[pet_skip_now] =
4468 need_skip(scop_then, scop_else, have_else, pet_skip_now, affine);
4469 equal = skip[pet_skip_now] && skip_equals_skip_later(scop_then) &&
4470 (!have_else || skip_equals_skip_later(scop_else));
4471 skip[pet_skip_later] = skip[pet_skip_now] && !equal &&
4472 need_skip(scop_then, scop_else, have_else, pet_skip_later, affine);
4475 /* If we need to construct a skip condition of the given type,
4476 * then do so now.
4478 * "mpa" represents the if condition.
4480 void pet_skip_info_if::extract(PetScan *scan,
4481 __isl_keep isl_multi_pw_aff *mpa, enum pet_skip type)
4483 isl_ctx *ctx;
4485 if (!skip[type])
4486 return;
4488 ctx = isl_multi_pw_aff_get_ctx(mpa);
4489 index[type] = create_test_index(ctx, scan->n_test++);
4490 scop[type] = extract_skip(scan, isl_multi_pw_aff_copy(mpa),
4491 isl_multi_pw_aff_copy(index[type]),
4492 scop_then, scop_else, have_else, type);
4495 /* Construct the required skip conditions, given the if condition "index".
4497 void pet_skip_info_if::extract(PetScan *scan,
4498 __isl_keep isl_multi_pw_aff *index)
4500 extract(scan, index, pet_skip_now);
4501 extract(scan, index, pet_skip_later);
4502 if (equal)
4503 drop_skip_later(scop_then, scop_else);
4506 /* Construct the required skip conditions, given the if condition "cond".
4508 void pet_skip_info_if::extract(PetScan *scan, __isl_keep isl_pw_aff *cond)
4510 isl_multi_pw_aff *test;
4512 if (!skip[pet_skip_now] && !skip[pet_skip_later])
4513 return;
4515 test = isl_multi_pw_aff_from_pw_aff(isl_pw_aff_copy(cond));
4516 test = isl_multi_pw_aff_from_range(test);
4517 extract(scan, test);
4518 isl_multi_pw_aff_free(test);
4521 /* Add the computed skip condition of the give type to "main" and
4522 * add the scop for computing the condition at the given offset.
4524 * If equal is set, then we only computed a skip condition for pet_skip_now,
4525 * but we also need to set it as main's pet_skip_later.
4527 struct pet_scop *pet_skip_info_if::add(struct pet_scop *main,
4528 enum pet_skip type, int offset)
4530 if (!skip[type])
4531 return main;
4533 scop[type] = pet_scop_prefix(scop[type], offset);
4534 main = pet_scop_add_par(ctx, main, scop[type]);
4535 scop[type] = NULL;
4537 if (equal)
4538 main = pet_scop_set_skip(main, pet_skip_later,
4539 isl_multi_pw_aff_copy(index[type]));
4541 main = pet_scop_set_skip(main, type, index[type]);
4542 index[type] = NULL;
4544 return main;
4547 /* Add the computed skip conditions to "main" and
4548 * add the scops for computing the conditions at the given offset.
4550 struct pet_scop *pet_skip_info_if::add(struct pet_scop *scop, int offset)
4552 scop = add(scop, pet_skip_now, offset);
4553 scop = add(scop, pet_skip_later, offset);
4555 return scop;
4558 /* Construct a pet_scop for a non-affine if statement.
4560 * We create a separate statement that writes the result
4561 * of the non-affine condition to a virtual scalar.
4562 * A constraint requiring the value of this virtual scalar to be one
4563 * is added to the iteration domains of the then branch.
4564 * Similarly, a constraint requiring the value of this virtual scalar
4565 * to be zero is added to the iteration domains of the else branch, if any.
4566 * We adjust the schedules to ensure that the virtual scalar is written
4567 * before it is read.
4569 * If there are any breaks or continues in the then and/or else
4570 * branches, then we may have to compute a new skip condition.
4571 * This is handled using a pet_skip_info_if object.
4572 * On initialization, the object checks if skip conditions need
4573 * to be computed. If so, it does so in "extract" and adds them in "add".
4575 struct pet_scop *PetScan::extract_non_affine_if(Expr *cond,
4576 struct pet_scop *scop_then, struct pet_scop *scop_else,
4577 bool have_else, int stmt_id)
4579 struct pet_scop *scop;
4580 isl_multi_pw_aff *test_index;
4581 int save_n_stmt = n_stmt;
4583 test_index = create_test_index(ctx, n_test++);
4584 n_stmt = stmt_id;
4585 scop = extract_non_affine_condition(cond, n_stmt++,
4586 isl_multi_pw_aff_copy(test_index));
4587 n_stmt = save_n_stmt;
4588 scop = scop_add_array(scop, test_index, ast_context);
4590 pet_skip_info_if skip(ctx, scop_then, scop_else, have_else, false);
4591 skip.extract(this, test_index);
4593 scop = pet_scop_prefix(scop, 0);
4594 scop_then = pet_scop_prefix(scop_then, 1);
4595 scop_then = pet_scop_filter(scop_then,
4596 isl_multi_pw_aff_copy(test_index), 1);
4597 if (have_else) {
4598 scop_else = pet_scop_prefix(scop_else, 1);
4599 scop_else = pet_scop_filter(scop_else, test_index, 0);
4600 scop_then = pet_scop_add_par(ctx, scop_then, scop_else);
4601 } else
4602 isl_multi_pw_aff_free(test_index);
4604 scop = pet_scop_add_seq(ctx, scop, scop_then);
4606 scop = skip.add(scop, 2);
4608 return scop;
4611 /* Construct a pet_scop for an if statement.
4613 * If the condition fits the pattern of a conditional assignment,
4614 * then it is handled by extract_conditional_assignment.
4615 * Otherwise, we do the following.
4617 * If the condition is affine, then the condition is added
4618 * to the iteration domains of the then branch, while the
4619 * opposite of the condition in added to the iteration domains
4620 * of the else branch, if any.
4621 * We allow the condition to be dynamic, i.e., to refer to
4622 * scalars or array elements that may be written to outside
4623 * of the given if statement. These nested accesses are then represented
4624 * as output dimensions in the wrapping iteration domain.
4625 * If it also written _inside_ the then or else branch, then
4626 * we treat the condition as non-affine.
4627 * As explained in extract_non_affine_if, this will introduce
4628 * an extra statement.
4629 * For aesthetic reasons, we want this statement to have a statement
4630 * number that is lower than those of the then and else branches.
4631 * In order to evaluate if will need such a statement, however, we
4632 * first construct scops for the then and else branches.
4633 * We therefore reserve a statement number if we might have to
4634 * introduce such an extra statement.
4636 * If the condition is not affine, then the scop is created in
4637 * extract_non_affine_if.
4639 * If there are any breaks or continues in the then and/or else
4640 * branches, then we may have to compute a new skip condition.
4641 * This is handled using a pet_skip_info_if object.
4642 * On initialization, the object checks if skip conditions need
4643 * to be computed. If so, it does so in "extract" and adds them in "add".
4645 struct pet_scop *PetScan::extract(IfStmt *stmt)
4647 struct pet_scop *scop_then, *scop_else = NULL, *scop;
4648 isl_pw_aff *cond;
4649 int stmt_id;
4650 isl_set *set;
4651 isl_set *valid;
4653 scop = extract_conditional_assignment(stmt);
4654 if (scop)
4655 return scop;
4657 cond = try_extract_nested_condition(stmt->getCond());
4658 if (allow_nested && (!cond || has_nested(cond)))
4659 stmt_id = n_stmt++;
4662 assigned_value_cache cache(assigned_value);
4663 scop_then = extract(stmt->getThen());
4666 if (stmt->getElse()) {
4667 assigned_value_cache cache(assigned_value);
4668 scop_else = extract(stmt->getElse());
4669 if (options->autodetect) {
4670 if (scop_then && !scop_else) {
4671 partial = true;
4672 isl_pw_aff_free(cond);
4673 return scop_then;
4675 if (!scop_then && scop_else) {
4676 partial = true;
4677 isl_pw_aff_free(cond);
4678 return scop_else;
4683 if (cond &&
4684 (!is_nested_allowed(cond, scop_then) ||
4685 (stmt->getElse() && !is_nested_allowed(cond, scop_else)))) {
4686 isl_pw_aff_free(cond);
4687 cond = NULL;
4689 if (allow_nested && !cond)
4690 return extract_non_affine_if(stmt->getCond(), scop_then,
4691 scop_else, stmt->getElse(), stmt_id);
4693 if (!cond)
4694 cond = extract_condition(stmt->getCond());
4696 pet_skip_info_if skip(ctx, scop_then, scop_else, stmt->getElse(), true);
4697 skip.extract(this, cond);
4699 valid = isl_pw_aff_domain(isl_pw_aff_copy(cond));
4700 set = isl_pw_aff_non_zero_set(cond);
4701 scop = pet_scop_restrict(scop_then, isl_set_copy(set));
4703 if (stmt->getElse()) {
4704 set = isl_set_subtract(isl_set_copy(valid), set);
4705 scop_else = pet_scop_restrict(scop_else, set);
4706 scop = pet_scop_add_par(ctx, scop, scop_else);
4707 } else
4708 isl_set_free(set);
4709 scop = resolve_nested(scop);
4710 scop = pet_scop_restrict_context(scop, valid);
4712 if (skip)
4713 scop = pet_scop_prefix(scop, 0);
4714 scop = skip.add(scop, 1);
4716 return scop;
4719 /* Try and construct a pet_scop for a label statement.
4720 * We currently only allow labels on expression statements.
4722 struct pet_scop *PetScan::extract(LabelStmt *stmt)
4724 isl_id *label;
4725 Stmt *sub;
4727 sub = stmt->getSubStmt();
4728 if (!isa<Expr>(sub)) {
4729 unsupported(stmt);
4730 return NULL;
4733 label = isl_id_alloc(ctx, stmt->getName(), NULL);
4735 return extract(sub, extract_expr(cast<Expr>(sub)), label);
4738 /* Return a one-dimensional multi piecewise affine expression that is equal
4739 * to the constant 1 and is defined over a zero-dimensional domain.
4741 static __isl_give isl_multi_pw_aff *one_mpa(isl_ctx *ctx)
4743 isl_space *space;
4744 isl_local_space *ls;
4745 isl_aff *aff;
4747 space = isl_space_set_alloc(ctx, 0, 0);
4748 ls = isl_local_space_from_space(space);
4749 aff = isl_aff_zero_on_domain(ls);
4750 aff = isl_aff_set_constant_si(aff, 1);
4752 return isl_multi_pw_aff_from_pw_aff(isl_pw_aff_from_aff(aff));
4755 /* Construct a pet_scop for a continue statement.
4757 * We simply create an empty scop with a universal pet_skip_now
4758 * skip condition. This skip condition will then be taken into
4759 * account by the enclosing loop construct, possibly after
4760 * being incorporated into outer skip conditions.
4762 struct pet_scop *PetScan::extract(ContinueStmt *stmt)
4764 pet_scop *scop;
4766 scop = pet_scop_empty(ctx);
4767 if (!scop)
4768 return NULL;
4770 scop = pet_scop_set_skip(scop, pet_skip_now, one_mpa(ctx));
4772 return scop;
4775 /* Construct a pet_scop for a break statement.
4777 * We simply create an empty scop with both a universal pet_skip_now
4778 * skip condition and a universal pet_skip_later skip condition.
4779 * These skip conditions will then be taken into
4780 * account by the enclosing loop construct, possibly after
4781 * being incorporated into outer skip conditions.
4783 struct pet_scop *PetScan::extract(BreakStmt *stmt)
4785 pet_scop *scop;
4786 isl_multi_pw_aff *skip;
4788 scop = pet_scop_empty(ctx);
4789 if (!scop)
4790 return NULL;
4792 skip = one_mpa(ctx);
4793 scop = pet_scop_set_skip(scop, pet_skip_now,
4794 isl_multi_pw_aff_copy(skip));
4795 scop = pet_scop_set_skip(scop, pet_skip_later, skip);
4797 return scop;
4800 /* Try and construct a pet_scop corresponding to "stmt".
4802 * If "stmt" is a compound statement, then "skip_declarations"
4803 * indicates whether we should skip initial declarations in the
4804 * compound statement.
4806 * If the constructed pet_scop is not a (possibly) partial representation
4807 * of "stmt", we update start and end of the pet_scop to those of "stmt".
4808 * In particular, if skip_declarations, then we may have skipped declarations
4809 * inside "stmt" and so the pet_scop may not represent the entire "stmt".
4810 * Note that this function may be called with "stmt" referring to the entire
4811 * body of the function, including the outer braces. In such cases,
4812 * skip_declarations will be set and the braces will not be taken into
4813 * account in scop->start and scop->end.
4815 struct pet_scop *PetScan::extract(Stmt *stmt, bool skip_declarations)
4817 struct pet_scop *scop;
4818 unsigned start, end;
4819 SourceLocation loc;
4820 SourceManager &SM = PP.getSourceManager();
4821 const LangOptions &LO = PP.getLangOpts();
4823 if (isa<Expr>(stmt))
4824 return extract(stmt, extract_expr(cast<Expr>(stmt)));
4826 switch (stmt->getStmtClass()) {
4827 case Stmt::WhileStmtClass:
4828 scop = extract(cast<WhileStmt>(stmt));
4829 break;
4830 case Stmt::ForStmtClass:
4831 scop = extract_for(cast<ForStmt>(stmt));
4832 break;
4833 case Stmt::IfStmtClass:
4834 scop = extract(cast<IfStmt>(stmt));
4835 break;
4836 case Stmt::CompoundStmtClass:
4837 scop = extract(cast<CompoundStmt>(stmt), skip_declarations);
4838 break;
4839 case Stmt::LabelStmtClass:
4840 scop = extract(cast<LabelStmt>(stmt));
4841 break;
4842 case Stmt::ContinueStmtClass:
4843 scop = extract(cast<ContinueStmt>(stmt));
4844 break;
4845 case Stmt::BreakStmtClass:
4846 scop = extract(cast<BreakStmt>(stmt));
4847 break;
4848 case Stmt::DeclStmtClass:
4849 scop = extract(cast<DeclStmt>(stmt));
4850 break;
4851 default:
4852 unsupported(stmt);
4853 return NULL;
4856 if (partial || skip_declarations)
4857 return scop;
4859 loc = stmt->getLocStart();
4860 loc = move_to_start_of_line_if_first_token(loc, SM, LO);
4861 start = getExpansionOffset(SM, loc);
4862 loc = PP.getLocForEndOfToken(stmt->getLocEnd());
4863 end = getExpansionOffset(SM, loc);
4864 scop = pet_scop_update_start_end(scop, start, end);
4866 return scop;
4869 /* Do we need to construct a skip condition of the given type
4870 * on a sequence of statements?
4872 * There is no need to construct a new skip condition if only
4873 * only of the two statements has a skip condition or if both
4874 * of their skip conditions are affine.
4876 * In principle we also don't need a new continuation variable if
4877 * the continuation of scop2 is affine, but then we would need
4878 * to allow more complicated forms of continuations.
4880 static bool need_skip_seq(struct pet_scop *scop1, struct pet_scop *scop2,
4881 enum pet_skip type)
4883 if (!scop1 || !pet_scop_has_skip(scop1, type))
4884 return false;
4885 if (!scop2 || !pet_scop_has_skip(scop2, type))
4886 return false;
4887 if (pet_scop_has_affine_skip(scop1, type) &&
4888 pet_scop_has_affine_skip(scop2, type))
4889 return false;
4890 return true;
4893 /* Construct a scop for computing the skip condition of the given type and
4894 * with index expression "skip_index" for a sequence of two scops "scop1"
4895 * and "scop2".
4897 * The computed scop contains a single statement that essentially does
4899 * skip_index = skip_cond_1 ? 1 : skip_cond_2
4901 * or, in other words, skip_cond1 || skip_cond2.
4902 * In this expression, skip_cond_2 is filtered to reflect that it is
4903 * only evaluated when skip_cond_1 is false.
4905 * The skip condition on scop1 is not removed because it still needs
4906 * to be applied to scop2 when these two scops are combined.
4908 static struct pet_scop *extract_skip_seq(PetScan *ps,
4909 __isl_take isl_multi_pw_aff *skip_index,
4910 struct pet_scop *scop1, struct pet_scop *scop2, enum pet_skip type)
4912 struct pet_expr *expr1, *expr2, *expr, *expr_skip;
4913 struct pet_stmt *stmt;
4914 struct pet_scop *scop;
4915 isl_ctx *ctx = ps->ctx;
4917 if (!scop1 || !scop2)
4918 goto error;
4920 expr1 = pet_scop_get_skip_expr(scop1, type);
4921 expr2 = pet_scop_get_skip_expr(scop2, type);
4922 pet_scop_reset_skip(scop2, type);
4924 expr2 = pet_expr_filter(expr2,
4925 isl_multi_pw_aff_copy(expr1->acc.index), 0);
4927 expr = universally_true(ctx);
4928 expr = pet_expr_new_ternary(ctx, expr1, expr, expr2);
4929 expr_skip = pet_expr_from_index(isl_multi_pw_aff_copy(skip_index));
4930 if (expr_skip) {
4931 expr_skip->acc.write = 1;
4932 expr_skip->acc.read = 0;
4934 expr = pet_expr_new_binary(ctx, pet_op_assign, expr_skip, expr);
4935 stmt = pet_stmt_from_pet_expr(ctx, -1, NULL, ps->n_stmt++, expr);
4937 scop = pet_scop_from_pet_stmt(ctx, stmt);
4938 scop = scop_add_array(scop, skip_index, ps->ast_context);
4939 isl_multi_pw_aff_free(skip_index);
4941 return scop;
4942 error:
4943 isl_multi_pw_aff_free(skip_index);
4944 return NULL;
4947 /* Structure that handles the construction of skip conditions
4948 * on sequences of statements.
4950 * scop1 and scop2 represent the two statements that are combined
4952 struct pet_skip_info_seq : public pet_skip_info {
4953 struct pet_scop *scop1, *scop2;
4955 pet_skip_info_seq(isl_ctx *ctx, struct pet_scop *scop1,
4956 struct pet_scop *scop2);
4957 void extract(PetScan *scan, enum pet_skip type);
4958 void extract(PetScan *scan);
4959 struct pet_scop *add(struct pet_scop *scop, enum pet_skip type,
4960 int offset);
4961 struct pet_scop *add(struct pet_scop *scop, int offset);
4964 /* Initialize a pet_skip_info_seq structure based on
4965 * on the two statements that are going to be combined.
4967 pet_skip_info_seq::pet_skip_info_seq(isl_ctx *ctx, struct pet_scop *scop1,
4968 struct pet_scop *scop2) : pet_skip_info(ctx), scop1(scop1), scop2(scop2)
4970 skip[pet_skip_now] = need_skip_seq(scop1, scop2, pet_skip_now);
4971 equal = skip[pet_skip_now] && skip_equals_skip_later(scop1) &&
4972 skip_equals_skip_later(scop2);
4973 skip[pet_skip_later] = skip[pet_skip_now] && !equal &&
4974 need_skip_seq(scop1, scop2, pet_skip_later);
4977 /* If we need to construct a skip condition of the given type,
4978 * then do so now.
4980 void pet_skip_info_seq::extract(PetScan *scan, enum pet_skip type)
4982 if (!skip[type])
4983 return;
4985 index[type] = create_test_index(ctx, scan->n_test++);
4986 scop[type] = extract_skip_seq(scan, isl_multi_pw_aff_copy(index[type]),
4987 scop1, scop2, type);
4990 /* Construct the required skip conditions.
4992 void pet_skip_info_seq::extract(PetScan *scan)
4994 extract(scan, pet_skip_now);
4995 extract(scan, pet_skip_later);
4996 if (equal)
4997 drop_skip_later(scop1, scop2);
5000 /* Add the computed skip condition of the given type to "main" and
5001 * add the scop for computing the condition at the given offset (the statement
5002 * number). Within this offset, the condition is computed at position 1
5003 * to ensure that it is computed after the corresponding statement.
5005 * If equal is set, then we only computed a skip condition for pet_skip_now,
5006 * but we also need to set it as main's pet_skip_later.
5008 struct pet_scop *pet_skip_info_seq::add(struct pet_scop *main,
5009 enum pet_skip type, int offset)
5011 if (!skip[type])
5012 return main;
5014 scop[type] = pet_scop_prefix(scop[type], 1);
5015 scop[type] = pet_scop_prefix(scop[type], offset);
5016 main = pet_scop_add_par(ctx, main, scop[type]);
5017 scop[type] = NULL;
5019 if (equal)
5020 main = pet_scop_set_skip(main, pet_skip_later,
5021 isl_multi_pw_aff_copy(index[type]));
5023 main = pet_scop_set_skip(main, type, index[type]);
5024 index[type] = NULL;
5026 return main;
5029 /* Add the computed skip conditions to "main" and
5030 * add the scops for computing the conditions at the given offset.
5032 struct pet_scop *pet_skip_info_seq::add(struct pet_scop *scop, int offset)
5034 scop = add(scop, pet_skip_now, offset);
5035 scop = add(scop, pet_skip_later, offset);
5037 return scop;
5040 /* Extract a clone of the kill statement in "scop".
5041 * "scop" is expected to have been created from a DeclStmt
5042 * and should have the kill as its first statement.
5044 struct pet_stmt *PetScan::extract_kill(struct pet_scop *scop)
5046 struct pet_expr *kill;
5047 struct pet_stmt *stmt;
5048 isl_multi_pw_aff *index;
5049 isl_map *access;
5051 if (!scop)
5052 return NULL;
5053 if (scop->n_stmt < 1)
5054 isl_die(ctx, isl_error_internal,
5055 "expecting at least one statement", return NULL);
5056 stmt = scop->stmts[0];
5057 if (stmt->body->type != pet_expr_unary ||
5058 stmt->body->op != pet_op_kill)
5059 isl_die(ctx, isl_error_internal,
5060 "expecting kill statement", return NULL);
5062 index = isl_multi_pw_aff_copy(stmt->body->args[0]->acc.index);
5063 access = isl_map_copy(stmt->body->args[0]->acc.access);
5064 index = isl_multi_pw_aff_reset_tuple_id(index, isl_dim_in);
5065 access = isl_map_reset_tuple_id(access, isl_dim_in);
5066 kill = pet_expr_kill_from_access_and_index(access, index);
5067 return pet_stmt_from_pet_expr(ctx, stmt->line, NULL, n_stmt++, kill);
5070 /* Mark all arrays in "scop" as being exposed.
5072 static struct pet_scop *mark_exposed(struct pet_scop *scop)
5074 if (!scop)
5075 return NULL;
5076 for (int i = 0; i < scop->n_array; ++i)
5077 scop->arrays[i]->exposed = 1;
5078 return scop;
5081 /* Try and construct a pet_scop corresponding to (part of)
5082 * a sequence of statements.
5084 * "block" is set if the sequence respresents the children of
5085 * a compound statement.
5086 * "skip_declarations" is set if we should skip initial declarations
5087 * in the sequence of statements.
5089 * If there are any breaks or continues in the individual statements,
5090 * then we may have to compute a new skip condition.
5091 * This is handled using a pet_skip_info_seq object.
5092 * On initialization, the object checks if skip conditions need
5093 * to be computed. If so, it does so in "extract" and adds them in "add".
5095 * If "block" is set, then we need to insert kill statements at
5096 * the end of the block for any array that has been declared by
5097 * one of the statements in the sequence. Each of these declarations
5098 * results in the construction of a kill statement at the place
5099 * of the declaration, so we simply collect duplicates of
5100 * those kill statements and append these duplicates to the constructed scop.
5102 * If "block" is not set, then any array declared by one of the statements
5103 * in the sequence is marked as being exposed.
5105 * If autodetect is set, then we allow the extraction of only a subrange
5106 * of the sequence of statements. However, if there is at least one statement
5107 * for which we could not construct a scop and the final range contains
5108 * either no statements or at least one kill, then we discard the entire
5109 * range.
5111 struct pet_scop *PetScan::extract(StmtRange stmt_range, bool block,
5112 bool skip_declarations)
5114 pet_scop *scop;
5115 StmtIterator i;
5116 int j;
5117 bool partial_range = false;
5118 set<struct pet_stmt *> kills;
5119 set<struct pet_stmt *>::iterator it;
5121 scop = pet_scop_empty(ctx);
5122 for (i = stmt_range.first, j = 0; i != stmt_range.second; ++i, ++j) {
5123 Stmt *child = *i;
5124 struct pet_scop *scop_i;
5126 if (scop->n_stmt == 0 && skip_declarations &&
5127 child->getStmtClass() == Stmt::DeclStmtClass)
5128 continue;
5130 scop_i = extract(child);
5131 if (scop->n_stmt != 0 && partial) {
5132 pet_scop_free(scop_i);
5133 break;
5135 pet_skip_info_seq skip(ctx, scop, scop_i);
5136 skip.extract(this);
5137 if (skip)
5138 scop_i = pet_scop_prefix(scop_i, 0);
5139 if (scop_i && child->getStmtClass() == Stmt::DeclStmtClass) {
5140 if (block)
5141 kills.insert(extract_kill(scop_i));
5142 else
5143 scop_i = mark_exposed(scop_i);
5145 scop_i = pet_scop_prefix(scop_i, j);
5146 if (options->autodetect) {
5147 if (scop_i)
5148 scop = pet_scop_add_seq(ctx, scop, scop_i);
5149 else
5150 partial_range = true;
5151 if (scop->n_stmt != 0 && !scop_i)
5152 partial = true;
5153 } else {
5154 scop = pet_scop_add_seq(ctx, scop, scop_i);
5157 scop = skip.add(scop, j);
5159 if (partial || !scop)
5160 break;
5163 for (it = kills.begin(); it != kills.end(); ++it) {
5164 pet_scop *scop_j;
5165 scop_j = pet_scop_from_pet_stmt(ctx, *it);
5166 scop_j = pet_scop_prefix(scop_j, j);
5167 scop = pet_scop_add_seq(ctx, scop, scop_j);
5170 if (scop && partial_range) {
5171 if (scop->n_stmt == 0 || kills.size() != 0) {
5172 pet_scop_free(scop);
5173 return NULL;
5175 partial = true;
5178 return scop;
5181 /* Check if the scop marked by the user is exactly this Stmt
5182 * or part of this Stmt.
5183 * If so, return a pet_scop corresponding to the marked region.
5184 * Otherwise, return NULL.
5186 struct pet_scop *PetScan::scan(Stmt *stmt)
5188 SourceManager &SM = PP.getSourceManager();
5189 unsigned start_off, end_off;
5191 start_off = getExpansionOffset(SM, stmt->getLocStart());
5192 end_off = getExpansionOffset(SM, stmt->getLocEnd());
5194 if (start_off > loc.end)
5195 return NULL;
5196 if (end_off < loc.start)
5197 return NULL;
5198 if (start_off >= loc.start && end_off <= loc.end) {
5199 return extract(stmt);
5202 StmtIterator start;
5203 for (start = stmt->child_begin(); start != stmt->child_end(); ++start) {
5204 Stmt *child = *start;
5205 if (!child)
5206 continue;
5207 start_off = getExpansionOffset(SM, child->getLocStart());
5208 end_off = getExpansionOffset(SM, child->getLocEnd());
5209 if (start_off < loc.start && end_off >= loc.end)
5210 return scan(child);
5211 if (start_off >= loc.start)
5212 break;
5215 StmtIterator end;
5216 for (end = start; end != stmt->child_end(); ++end) {
5217 Stmt *child = *end;
5218 start_off = SM.getFileOffset(child->getLocStart());
5219 if (start_off >= loc.end)
5220 break;
5223 return extract(StmtRange(start, end), false, false);
5226 /* Set the size of index "pos" of "array" to "size".
5227 * In particular, add a constraint of the form
5229 * i_pos < size
5231 * to array->extent and a constraint of the form
5233 * size >= 0
5235 * to array->context.
5237 static struct pet_array *update_size(struct pet_array *array, int pos,
5238 __isl_take isl_pw_aff *size)
5240 isl_set *valid;
5241 isl_set *univ;
5242 isl_set *bound;
5243 isl_space *dim;
5244 isl_aff *aff;
5245 isl_pw_aff *index;
5246 isl_id *id;
5248 valid = isl_pw_aff_nonneg_set(isl_pw_aff_copy(size));
5249 array->context = isl_set_intersect(array->context, valid);
5251 dim = isl_set_get_space(array->extent);
5252 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
5253 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, pos, 1);
5254 univ = isl_set_universe(isl_aff_get_domain_space(aff));
5255 index = isl_pw_aff_alloc(univ, aff);
5257 size = isl_pw_aff_add_dims(size, isl_dim_in,
5258 isl_set_dim(array->extent, isl_dim_set));
5259 id = isl_set_get_tuple_id(array->extent);
5260 size = isl_pw_aff_set_tuple_id(size, isl_dim_in, id);
5261 bound = isl_pw_aff_lt_set(index, size);
5263 array->extent = isl_set_intersect(array->extent, bound);
5265 if (!array->context || !array->extent)
5266 goto error;
5268 return array;
5269 error:
5270 pet_array_free(array);
5271 return NULL;
5274 /* Figure out the size of the array at position "pos" and all
5275 * subsequent positions from "type" and update "array" accordingly.
5277 struct pet_array *PetScan::set_upper_bounds(struct pet_array *array,
5278 const Type *type, int pos)
5280 const ArrayType *atype;
5281 isl_pw_aff *size;
5283 if (!array)
5284 return NULL;
5286 if (type->isPointerType()) {
5287 type = type->getPointeeType().getTypePtr();
5288 return set_upper_bounds(array, type, pos + 1);
5290 if (!type->isArrayType())
5291 return array;
5293 type = type->getCanonicalTypeInternal().getTypePtr();
5294 atype = cast<ArrayType>(type);
5296 if (type->isConstantArrayType()) {
5297 const ConstantArrayType *ca = cast<ConstantArrayType>(atype);
5298 size = extract_affine(ca->getSize());
5299 array = update_size(array, pos, size);
5300 } else if (type->isVariableArrayType()) {
5301 const VariableArrayType *vla = cast<VariableArrayType>(atype);
5302 size = extract_affine(vla->getSizeExpr());
5303 array = update_size(array, pos, size);
5306 type = atype->getElementType().getTypePtr();
5308 return set_upper_bounds(array, type, pos + 1);
5311 /* Is "T" the type of a variable length array with static size?
5313 static bool is_vla_with_static_size(QualType T)
5315 const VariableArrayType *vlatype;
5317 if (!T->isVariableArrayType())
5318 return false;
5319 vlatype = cast<VariableArrayType>(T);
5320 return vlatype->getSizeModifier() == VariableArrayType::Static;
5323 /* Return the type of "decl" as an array.
5325 * In particular, if "decl" is a parameter declaration that
5326 * is a variable length array with a static size, then
5327 * return the original type (i.e., the variable length array).
5328 * Otherwise, return the type of decl.
5330 static QualType get_array_type(ValueDecl *decl)
5332 ParmVarDecl *parm;
5333 QualType T;
5335 parm = dyn_cast<ParmVarDecl>(decl);
5336 if (!parm)
5337 return decl->getType();
5339 T = parm->getOriginalType();
5340 if (!is_vla_with_static_size(T))
5341 return decl->getType();
5342 return T;
5345 /* Does "decl" have definition that we can keep track of in a pet_type?
5347 static bool has_printable_definition(RecordDecl *decl)
5349 if (!decl->getDeclName())
5350 return false;
5351 return decl->getLexicalDeclContext() == decl->getDeclContext();
5354 /* Construct and return a pet_array corresponding to the variable "decl".
5355 * In particular, initialize array->extent to
5357 * { name[i_1,...,i_d] : i_1,...,i_d >= 0 }
5359 * and then call set_upper_bounds to set the upper bounds on the indices
5360 * based on the type of the variable.
5362 * If the base type is that of a record with a top-level definition and
5363 * if "types" is not null, then the RecordDecl corresponding to the type
5364 * is added to "types".
5366 * If the base type is that of a record with no top-level definition,
5367 * then we replace it by "<subfield>".
5369 struct pet_array *PetScan::extract_array(isl_ctx *ctx, ValueDecl *decl,
5370 lex_recorddecl_set *types)
5372 struct pet_array *array;
5373 QualType qt = get_array_type(decl);
5374 const Type *type = qt.getTypePtr();
5375 int depth = array_depth(type);
5376 QualType base = pet_clang_base_type(qt);
5377 string name;
5378 isl_id *id;
5379 isl_space *dim;
5381 array = isl_calloc_type(ctx, struct pet_array);
5382 if (!array)
5383 return NULL;
5385 id = isl_id_alloc(ctx, decl->getName().str().c_str(), decl);
5386 dim = isl_space_set_alloc(ctx, 0, depth);
5387 dim = isl_space_set_tuple_id(dim, isl_dim_set, id);
5389 array->extent = isl_set_nat_universe(dim);
5391 dim = isl_space_params_alloc(ctx, 0);
5392 array->context = isl_set_universe(dim);
5394 array = set_upper_bounds(array, type, 0);
5395 if (!array)
5396 return NULL;
5398 name = base.getAsString();
5400 if (types && base->isRecordType()) {
5401 RecordDecl *decl = pet_clang_record_decl(base);
5402 if (has_printable_definition(decl))
5403 types->insert(decl);
5404 else
5405 name = "<subfield>";
5408 array->element_type = strdup(name.c_str());
5409 array->element_is_record = base->isRecordType();
5410 array->element_size = decl->getASTContext().getTypeInfo(base).first / 8;
5412 return array;
5415 /* Construct and return a pet_array corresponding to the sequence
5416 * of declarations "decls".
5417 * If the sequence contains a single declaration, then it corresponds
5418 * to a simple array access. Otherwise, it corresponds to a member access,
5419 * with the declaration for the substructure following that of the containing
5420 * structure in the sequence of declarations.
5421 * We start with the outermost substructure and then combine it with
5422 * information from the inner structures.
5424 * Additionally, keep track of all required types in "types".
5426 struct pet_array *PetScan::extract_array(isl_ctx *ctx,
5427 vector<ValueDecl *> decls, lex_recorddecl_set *types)
5429 struct pet_array *array;
5430 vector<ValueDecl *>::iterator it;
5432 it = decls.begin();
5434 array = extract_array(ctx, *it, types);
5436 for (++it; it != decls.end(); ++it) {
5437 struct pet_array *parent;
5438 const char *base_name, *field_name;
5439 char *product_name;
5441 parent = array;
5442 array = extract_array(ctx, *it, types);
5443 if (!array)
5444 return pet_array_free(parent);
5446 base_name = isl_set_get_tuple_name(parent->extent);
5447 field_name = isl_set_get_tuple_name(array->extent);
5448 product_name = member_access_name(ctx, base_name, field_name);
5450 array->extent = isl_set_product(isl_set_copy(parent->extent),
5451 array->extent);
5452 if (product_name)
5453 array->extent = isl_set_set_tuple_name(array->extent,
5454 product_name);
5455 array->context = isl_set_intersect(array->context,
5456 isl_set_copy(parent->context));
5458 pet_array_free(parent);
5459 free(product_name);
5461 if (!array->extent || !array->context || !product_name)
5462 return pet_array_free(array);
5465 return array;
5468 /* Add a pet_type corresponding to "decl" to "scop, provided
5469 * it is a member of "types" and it has not been added before
5470 * (i.e., it is not a member of "types_done".
5472 * Since we want the user to be able to print the types
5473 * in the order in which they appear in the scop, we need to
5474 * make sure that types of fields in a structure appear before
5475 * that structure. We therefore call ourselves recursively
5476 * on the types of all record subfields.
5478 static struct pet_scop *add_type(isl_ctx *ctx, struct pet_scop *scop,
5479 RecordDecl *decl, Preprocessor &PP, lex_recorddecl_set &types,
5480 lex_recorddecl_set &types_done)
5482 string s;
5483 llvm::raw_string_ostream S(s);
5484 RecordDecl::field_iterator it;
5486 if (types.find(decl) == types.end())
5487 return scop;
5488 if (types_done.find(decl) != types_done.end())
5489 return scop;
5491 for (it = decl->field_begin(); it != decl->field_end(); ++it) {
5492 RecordDecl *record;
5493 QualType type = it->getType();
5495 if (!type->isRecordType())
5496 continue;
5497 record = pet_clang_record_decl(type);
5498 scop = add_type(ctx, scop, record, PP, types, types_done);
5501 if (strlen(decl->getName().str().c_str()) == 0)
5502 return scop;
5504 decl->print(S, PrintingPolicy(PP.getLangOpts()));
5505 S.str();
5507 scop->types[scop->n_type] = pet_type_alloc(ctx,
5508 decl->getName().str().c_str(), s.c_str());
5509 if (!scop->types[scop->n_type])
5510 return pet_scop_free(scop);
5512 types_done.insert(decl);
5514 scop->n_type++;
5516 return scop;
5519 /* Construct a list of pet_arrays, one for each array (or scalar)
5520 * accessed inside "scop", add this list to "scop" and return the result.
5522 * The context of "scop" is updated with the intersection of
5523 * the contexts of all arrays, i.e., constraints on the parameters
5524 * that ensure that the arrays have a valid (non-negative) size.
5526 * If the any of the extracted arrays refers to a member access,
5527 * then also add the required types to "scop".
5529 struct pet_scop *PetScan::scan_arrays(struct pet_scop *scop)
5531 int i;
5532 set<vector<ValueDecl *> > arrays;
5533 set<vector<ValueDecl *> >::iterator it;
5534 lex_recorddecl_set types;
5535 lex_recorddecl_set types_done;
5536 lex_recorddecl_set::iterator types_it;
5537 int n_array;
5538 struct pet_array **scop_arrays;
5540 if (!scop)
5541 return NULL;
5543 pet_scop_collect_arrays(scop, arrays);
5544 if (arrays.size() == 0)
5545 return scop;
5547 n_array = scop->n_array;
5549 scop_arrays = isl_realloc_array(ctx, scop->arrays, struct pet_array *,
5550 n_array + arrays.size());
5551 if (!scop_arrays)
5552 goto error;
5553 scop->arrays = scop_arrays;
5555 for (it = arrays.begin(), i = 0; it != arrays.end(); ++it, ++i) {
5556 struct pet_array *array;
5557 array = extract_array(ctx, *it, &types);
5558 scop->arrays[n_array + i] = array;
5559 if (!scop->arrays[n_array + i])
5560 goto error;
5561 scop->n_array++;
5562 scop->context = isl_set_intersect(scop->context,
5563 isl_set_copy(array->context));
5564 if (!scop->context)
5565 goto error;
5568 if (types.size() == 0)
5569 return scop;
5571 scop->types = isl_alloc_array(ctx, struct pet_type *, types.size());
5572 if (!scop->types)
5573 goto error;
5575 for (types_it = types.begin(); types_it != types.end(); ++types_it)
5576 scop = add_type(ctx, scop, *types_it, PP, types, types_done);
5578 return scop;
5579 error:
5580 pet_scop_free(scop);
5581 return NULL;
5584 /* Bound all parameters in scop->context to the possible values
5585 * of the corresponding C variable.
5587 static struct pet_scop *add_parameter_bounds(struct pet_scop *scop)
5589 int n;
5591 if (!scop)
5592 return NULL;
5594 n = isl_set_dim(scop->context, isl_dim_param);
5595 for (int i = 0; i < n; ++i) {
5596 isl_id *id;
5597 ValueDecl *decl;
5599 id = isl_set_get_dim_id(scop->context, isl_dim_param, i);
5600 if (is_nested_parameter(id)) {
5601 isl_id_free(id);
5602 isl_die(isl_set_get_ctx(scop->context),
5603 isl_error_internal,
5604 "unresolved nested parameter", goto error);
5606 decl = (ValueDecl *) isl_id_get_user(id);
5607 isl_id_free(id);
5609 scop->context = set_parameter_bounds(scop->context, i, decl);
5611 if (!scop->context)
5612 goto error;
5615 return scop;
5616 error:
5617 pet_scop_free(scop);
5618 return NULL;
5621 /* Construct a pet_scop from the given function.
5623 * If the scop was delimited by scop and endscop pragmas, then we override
5624 * the file offsets by those derived from the pragmas.
5626 struct pet_scop *PetScan::scan(FunctionDecl *fd)
5628 pet_scop *scop;
5629 Stmt *stmt;
5631 stmt = fd->getBody();
5633 if (options->autodetect)
5634 scop = extract(stmt, true);
5635 else {
5636 scop = scan(stmt);
5637 scop = pet_scop_update_start_end(scop, loc.start, loc.end);
5639 scop = pet_scop_detect_parameter_accesses(scop);
5640 scop = scan_arrays(scop);
5641 scop = add_parameter_bounds(scop);
5642 scop = pet_scop_gist(scop, value_bounds);
5644 return scop;