PetScan::extract_non_affine_condition: take statement number as argument
[pet.git] / scan.cc
blob005d768bfb2d46938f8ae9185218489e884c5114
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 struct pet_scop *PetScan::extract_infinite_loop(Stmt *body)
2433 isl_id *id, *id_test;
2434 isl_set *domain;
2435 isl_aff *ident;
2436 struct pet_scop *scop;
2437 bool has_var_break;
2439 scop = extract(body);
2440 if (!scop)
2441 return NULL;
2443 id = isl_id_alloc(ctx, "t", NULL);
2444 domain = infinite_domain(isl_id_copy(id), scop);
2445 ident = identity_aff(domain);
2447 has_var_break = pet_scop_has_var_skip(scop, pet_skip_later);
2448 if (has_var_break)
2449 id_test = pet_scop_get_skip_id(scop, pet_skip_later);
2451 scop = pet_scop_embed(scop, isl_set_copy(domain),
2452 isl_map_from_aff(isl_aff_copy(ident)), ident, id);
2453 if (has_var_break)
2454 scop = scop_add_break(scop, id_test, domain, isl_val_one(ctx));
2455 else
2456 isl_set_free(domain);
2458 return scop;
2461 /* Construct a pet_scop for an infinite loop, i.e., a loop of the form
2463 * for (;;)
2464 * body
2467 struct pet_scop *PetScan::extract_infinite_for(ForStmt *stmt)
2469 return extract_infinite_loop(stmt->getBody());
2472 /* Create an index expression for an access to a virtual array
2473 * representing the result of a condition.
2474 * Unlike other accessed data, the id of the array is NULL as
2475 * there is no ValueDecl in the program corresponding to the virtual
2476 * array.
2477 * The array starts out as a scalar, but grows along with the
2478 * statement writing to the array in pet_scop_embed.
2480 static __isl_give isl_multi_pw_aff *create_test_index(isl_ctx *ctx, int test_nr)
2482 isl_space *dim = isl_space_alloc(ctx, 0, 0, 0);
2483 isl_id *id;
2484 char name[50];
2486 snprintf(name, sizeof(name), "__pet_test_%d", test_nr);
2487 id = isl_id_alloc(ctx, name, NULL);
2488 dim = isl_space_set_tuple_id(dim, isl_dim_out, id);
2489 return isl_multi_pw_aff_zero(dim);
2492 /* Add an array with the given extent (range of "index") to the list
2493 * of arrays in "scop" and return the extended pet_scop.
2494 * The array is marked as attaining values 0 and 1 only and
2495 * as each element being assigned at most once.
2497 static struct pet_scop *scop_add_array(struct pet_scop *scop,
2498 __isl_keep isl_multi_pw_aff *index, clang::ASTContext &ast_ctx)
2500 isl_ctx *ctx = isl_multi_pw_aff_get_ctx(index);
2501 isl_space *dim;
2502 struct pet_array *array;
2503 isl_map *access;
2505 if (!scop)
2506 return NULL;
2507 if (!ctx)
2508 goto error;
2510 array = isl_calloc_type(ctx, struct pet_array);
2511 if (!array)
2512 goto error;
2514 access = isl_map_from_multi_pw_aff(isl_multi_pw_aff_copy(index));
2515 array->extent = isl_map_range(access);
2516 dim = isl_space_params_alloc(ctx, 0);
2517 array->context = isl_set_universe(dim);
2518 dim = isl_space_set_alloc(ctx, 0, 1);
2519 array->value_bounds = isl_set_universe(dim);
2520 array->value_bounds = isl_set_lower_bound_si(array->value_bounds,
2521 isl_dim_set, 0, 0);
2522 array->value_bounds = isl_set_upper_bound_si(array->value_bounds,
2523 isl_dim_set, 0, 1);
2524 array->element_type = strdup("int");
2525 array->element_size = ast_ctx.getTypeInfo(ast_ctx.IntTy).first / 8;
2526 array->uniquely_defined = 1;
2528 if (!array->extent || !array->context)
2529 array = pet_array_free(array);
2531 scop = pet_scop_add_array(scop, array);
2533 return scop;
2534 error:
2535 pet_scop_free(scop);
2536 return NULL;
2539 /* Construct a pet_scop for a while loop of the form
2541 * while (pa)
2542 * body
2544 * In particular, construct a scop for an infinite loop around body and
2545 * intersect the domain with the affine expression.
2546 * Note that this intersection may result in an empty loop.
2548 struct pet_scop *PetScan::extract_affine_while(__isl_take isl_pw_aff *pa,
2549 Stmt *body)
2551 struct pet_scop *scop;
2552 isl_set *dom;
2553 isl_set *valid;
2555 valid = isl_pw_aff_domain(isl_pw_aff_copy(pa));
2556 dom = isl_pw_aff_non_zero_set(pa);
2557 scop = extract_infinite_loop(body);
2558 scop = pet_scop_restrict(scop, dom);
2559 scop = pet_scop_restrict_context(scop, valid);
2561 return scop;
2564 /* Construct a scop for a while, given the scops for the condition
2565 * and the body, the filter identifier and the iteration domain of
2566 * the while loop.
2568 * In particular, the scop for the condition is filtered to depend
2569 * on "id_test" evaluating to true for all previous iterations
2570 * of the loop, while the scop for the body is filtered to depend
2571 * on "id_test" evaluating to true for all iterations up to the
2572 * current iteration.
2573 * The actual filter only imposes that this virtual array has
2574 * value one on the previous or the current iteration.
2575 * The fact that this condition also applies to the previous
2576 * iterations is enforced by an implication.
2578 * These filtered scops are then combined into a single scop.
2580 * "sign" is positive if the iterator increases and negative
2581 * if it decreases.
2583 static struct pet_scop *scop_add_while(struct pet_scop *scop_cond,
2584 struct pet_scop *scop_body, __isl_take isl_id *id_test,
2585 __isl_take isl_set *domain, __isl_take isl_val *inc)
2587 isl_ctx *ctx = isl_set_get_ctx(domain);
2588 isl_space *space;
2589 isl_multi_pw_aff *test_index;
2590 isl_multi_pw_aff *prev;
2591 int sign = isl_val_sgn(inc);
2592 struct pet_scop *scop;
2594 prev = map_to_previous(isl_id_copy(id_test), isl_set_copy(domain), inc);
2595 scop_cond = pet_scop_filter(scop_cond, prev, 1);
2597 space = isl_space_map_from_set(isl_set_get_space(domain));
2598 test_index = isl_multi_pw_aff_identity(space);
2599 test_index = isl_multi_pw_aff_set_tuple_id(test_index, isl_dim_out,
2600 isl_id_copy(id_test));
2601 scop_body = pet_scop_filter(scop_body, test_index, 1);
2603 scop = pet_scop_add_seq(ctx, scop_cond, scop_body);
2604 scop = add_implication(scop, id_test, domain, sign, 1);
2606 return scop;
2609 /* Check if the while loop is of the form
2611 * while (affine expression)
2612 * body
2614 * If so, call extract_affine_while to construct a scop.
2616 * Otherwise, construct a generic while scop, with iteration domain
2617 * { [t] : t >= 0 }. The scop consists of two parts, one for
2618 * evaluating the condition and one for the body.
2619 * The schedule is adjusted to reflect that the condition is evaluated
2620 * before the body is executed and the body is filtered to depend
2621 * on the result of the condition evaluating to true on all iterations
2622 * up to the current iteration, while the evaluation the condition itself
2623 * is filtered to depend on the result of the condition evaluating to true
2624 * on all previous iterations.
2625 * The context of the scop representing the body is dropped
2626 * because we don't know how many times the body will be executed,
2627 * if at all.
2629 * If the body contains any break, then it is taken into
2630 * account in infinite_domain (if the skip condition is affine)
2631 * or in scop_add_break (if the skip condition is not affine).
2633 struct pet_scop *PetScan::extract(WhileStmt *stmt)
2635 Expr *cond;
2636 isl_id *id, *id_test, *id_break_test;
2637 isl_multi_pw_aff *test_index;
2638 isl_set *domain;
2639 isl_aff *ident;
2640 isl_pw_aff *pa;
2641 struct pet_scop *scop, *scop_body;
2642 bool has_var_break;
2644 cond = stmt->getCond();
2645 if (!cond) {
2646 unsupported(stmt);
2647 return NULL;
2650 clear_assignments clear(assigned_value);
2651 clear.TraverseStmt(stmt->getBody());
2653 pa = try_extract_affine_condition(cond);
2654 if (pa)
2655 return extract_affine_while(pa, stmt->getBody());
2657 if (!allow_nested) {
2658 unsupported(stmt);
2659 return NULL;
2662 test_index = create_test_index(ctx, n_test++);
2663 scop = extract_non_affine_condition(cond, n_stmt++,
2664 isl_multi_pw_aff_copy(test_index));
2665 scop = scop_add_array(scop, test_index, ast_context);
2666 id_test = isl_multi_pw_aff_get_tuple_id(test_index, isl_dim_out);
2667 isl_multi_pw_aff_free(test_index);
2668 scop_body = extract(stmt->getBody());
2670 id = isl_id_alloc(ctx, "t", NULL);
2671 domain = infinite_domain(isl_id_copy(id), scop_body);
2672 ident = identity_aff(domain);
2674 has_var_break = pet_scop_has_var_skip(scop_body, pet_skip_later);
2675 if (has_var_break)
2676 id_break_test = pet_scop_get_skip_id(scop_body, pet_skip_later);
2678 scop = pet_scop_prefix(scop, 0);
2679 scop = pet_scop_embed(scop, isl_set_copy(domain),
2680 isl_map_from_aff(isl_aff_copy(ident)),
2681 isl_aff_copy(ident), isl_id_copy(id));
2682 scop_body = pet_scop_reset_context(scop_body);
2683 scop_body = pet_scop_prefix(scop_body, 1);
2684 scop_body = pet_scop_embed(scop_body, isl_set_copy(domain),
2685 isl_map_from_aff(isl_aff_copy(ident)), ident, id);
2687 if (has_var_break) {
2688 scop = scop_add_break(scop, isl_id_copy(id_break_test),
2689 isl_set_copy(domain), isl_val_one(ctx));
2690 scop_body = scop_add_break(scop_body, id_break_test,
2691 isl_set_copy(domain), isl_val_one(ctx));
2693 scop = scop_add_while(scop, scop_body, id_test, domain,
2694 isl_val_one(ctx));
2696 return scop;
2699 /* Check whether "cond" expresses a simple loop bound
2700 * on the only set dimension.
2701 * In particular, if "up" is set then "cond" should contain only
2702 * upper bounds on the set dimension.
2703 * Otherwise, it should contain only lower bounds.
2705 static bool is_simple_bound(__isl_keep isl_set *cond, __isl_keep isl_val *inc)
2707 if (isl_val_is_pos(inc))
2708 return !isl_set_dim_has_any_lower_bound(cond, isl_dim_set, 0);
2709 else
2710 return !isl_set_dim_has_any_upper_bound(cond, isl_dim_set, 0);
2713 /* Extend a condition on a given iteration of a loop to one that
2714 * imposes the same condition on all previous iterations.
2715 * "domain" expresses the lower [upper] bound on the iterations
2716 * when inc is positive [negative].
2718 * In particular, we construct the condition (when inc is positive)
2720 * forall i' : (domain(i') and i' <= i) => cond(i')
2722 * which is equivalent to
2724 * not exists i' : domain(i') and i' <= i and not cond(i')
2726 * We construct this set by negating cond, applying a map
2728 * { [i'] -> [i] : domain(i') and i' <= i }
2730 * and then negating the result again.
2732 static __isl_give isl_set *valid_for_each_iteration(__isl_take isl_set *cond,
2733 __isl_take isl_set *domain, __isl_take isl_val *inc)
2735 isl_map *previous_to_this;
2737 if (isl_val_is_pos(inc))
2738 previous_to_this = isl_map_lex_le(isl_set_get_space(domain));
2739 else
2740 previous_to_this = isl_map_lex_ge(isl_set_get_space(domain));
2742 previous_to_this = isl_map_intersect_domain(previous_to_this, domain);
2744 cond = isl_set_complement(cond);
2745 cond = isl_set_apply(cond, previous_to_this);
2746 cond = isl_set_complement(cond);
2748 isl_val_free(inc);
2750 return cond;
2753 /* Construct a domain of the form
2755 * [id] -> { : exists a: id = init + a * inc and a >= 0 }
2757 static __isl_give isl_set *strided_domain(__isl_take isl_id *id,
2758 __isl_take isl_pw_aff *init, __isl_take isl_val *inc)
2760 isl_aff *aff;
2761 isl_space *dim;
2762 isl_set *set;
2764 init = isl_pw_aff_insert_dims(init, isl_dim_in, 0, 1);
2765 dim = isl_pw_aff_get_domain_space(init);
2766 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
2767 aff = isl_aff_add_coefficient_val(aff, isl_dim_in, 0, inc);
2768 init = isl_pw_aff_add(init, isl_pw_aff_from_aff(aff));
2770 dim = isl_space_set_alloc(isl_pw_aff_get_ctx(init), 1, 1);
2771 dim = isl_space_set_dim_id(dim, isl_dim_param, 0, id);
2772 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
2773 aff = isl_aff_add_coefficient_si(aff, isl_dim_param, 0, 1);
2775 set = isl_pw_aff_eq_set(isl_pw_aff_from_aff(aff), init);
2777 set = isl_set_lower_bound_si(set, isl_dim_set, 0, 0);
2779 return isl_set_params(set);
2782 /* Assuming "cond" represents a bound on a loop where the loop
2783 * iterator "iv" is incremented (or decremented) by one, check if wrapping
2784 * is possible.
2786 * Under the given assumptions, wrapping is only possible if "cond" allows
2787 * for the last value before wrapping, i.e., 2^width - 1 in case of an
2788 * increasing iterator and 0 in case of a decreasing iterator.
2790 static bool can_wrap(__isl_keep isl_set *cond, ValueDecl *iv,
2791 __isl_keep isl_val *inc)
2793 bool cw;
2794 isl_ctx *ctx;
2795 isl_val *limit;
2796 isl_set *test;
2798 test = isl_set_copy(cond);
2800 ctx = isl_set_get_ctx(test);
2801 if (isl_val_is_neg(inc))
2802 limit = isl_val_zero(ctx);
2803 else {
2804 limit = isl_val_int_from_ui(ctx, get_type_size(iv));
2805 limit = isl_val_2exp(limit);
2806 limit = isl_val_sub_ui(limit, 1);
2809 test = isl_set_fix_val(cond, isl_dim_set, 0, limit);
2810 cw = !isl_set_is_empty(test);
2811 isl_set_free(test);
2813 return cw;
2816 /* Given a one-dimensional space, construct the following affine expression
2817 * on this space
2819 * { [v] -> [v mod 2^width] }
2821 * where width is the number of bits used to represent the values
2822 * of the unsigned variable "iv".
2824 static __isl_give isl_aff *compute_wrapping(__isl_take isl_space *dim,
2825 ValueDecl *iv)
2827 isl_ctx *ctx;
2828 isl_val *mod;
2829 isl_aff *aff;
2831 ctx = isl_space_get_ctx(dim);
2832 mod = isl_val_int_from_ui(ctx, get_type_size(iv));
2833 mod = isl_val_2exp(mod);
2835 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
2836 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, 0, 1);
2837 aff = isl_aff_mod_val(aff, mod);
2839 return aff;
2842 /* Project out the parameter "id" from "set".
2844 static __isl_give isl_set *set_project_out_by_id(__isl_take isl_set *set,
2845 __isl_keep isl_id *id)
2847 int pos;
2849 pos = isl_set_find_dim_by_id(set, isl_dim_param, id);
2850 if (pos >= 0)
2851 set = isl_set_project_out(set, isl_dim_param, pos, 1);
2853 return set;
2856 /* Compute the set of parameters for which "set1" is a subset of "set2".
2858 * set1 is a subset of set2 if
2860 * forall i in set1 : i in set2
2862 * or
2864 * not exists i in set1 and i not in set2
2866 * i.e.,
2868 * not exists i in set1 \ set2
2870 static __isl_give isl_set *enforce_subset(__isl_take isl_set *set1,
2871 __isl_take isl_set *set2)
2873 return isl_set_complement(isl_set_params(isl_set_subtract(set1, set2)));
2876 /* Compute the set of parameter values for which "cond" holds
2877 * on the next iteration for each element of "dom".
2879 * We first construct mapping { [i] -> [i + inc] }, apply that to "dom"
2880 * and then compute the set of parameters for which the result is a subset
2881 * of "cond".
2883 static __isl_give isl_set *valid_on_next(__isl_take isl_set *cond,
2884 __isl_take isl_set *dom, __isl_take isl_val *inc)
2886 isl_space *space;
2887 isl_aff *aff;
2888 isl_map *next;
2890 space = isl_set_get_space(dom);
2891 aff = isl_aff_zero_on_domain(isl_local_space_from_space(space));
2892 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, 0, 1);
2893 aff = isl_aff_add_constant_val(aff, inc);
2894 next = isl_map_from_basic_map(isl_basic_map_from_aff(aff));
2896 dom = isl_set_apply(dom, next);
2898 return enforce_subset(dom, cond);
2901 /* Does "id" refer to a nested access?
2903 static bool is_nested_parameter(__isl_keep isl_id *id)
2905 return id && isl_id_get_user(id) && !isl_id_get_name(id);
2908 /* Does parameter "pos" of "space" refer to a nested access?
2910 static bool is_nested_parameter(__isl_keep isl_space *space, int pos)
2912 bool nested;
2913 isl_id *id;
2915 id = isl_space_get_dim_id(space, isl_dim_param, pos);
2916 nested = is_nested_parameter(id);
2917 isl_id_free(id);
2919 return nested;
2922 /* Does "space" involve any parameters that refer to nested
2923 * accesses, i.e., parameters with no name?
2925 static bool has_nested(__isl_keep isl_space *space)
2927 int nparam;
2929 nparam = isl_space_dim(space, isl_dim_param);
2930 for (int i = 0; i < nparam; ++i)
2931 if (is_nested_parameter(space, i))
2932 return true;
2934 return false;
2937 /* Does "pa" involve any parameters that refer to nested
2938 * accesses, i.e., parameters with no name?
2940 static bool has_nested(__isl_keep isl_pw_aff *pa)
2942 isl_space *space;
2943 bool nested;
2945 space = isl_pw_aff_get_space(pa);
2946 nested = has_nested(space);
2947 isl_space_free(space);
2949 return nested;
2952 /* Construct a pet_scop for a for statement.
2953 * The for loop is required to be of the form
2955 * for (i = init; condition; ++i)
2957 * or
2959 * for (i = init; condition; --i)
2961 * The initialization of the for loop should either be an assignment
2962 * to an integer variable, or a declaration of such a variable with
2963 * initialization.
2965 * The condition is allowed to contain nested accesses, provided
2966 * they are not being written to inside the body of the loop.
2967 * Otherwise, or if the condition is otherwise non-affine, the for loop is
2968 * essentially treated as a while loop, with iteration domain
2969 * { [i] : i >= init }.
2971 * We extract a pet_scop for the body and then embed it in a loop with
2972 * iteration domain and schedule
2974 * { [i] : i >= init and condition' }
2975 * { [i] -> [i] }
2977 * or
2979 * { [i] : i <= init and condition' }
2980 * { [i] -> [-i] }
2982 * Where condition' is equal to condition if the latter is
2983 * a simple upper [lower] bound and a condition that is extended
2984 * to apply to all previous iterations otherwise.
2986 * If the condition is non-affine, then we drop the condition from the
2987 * iteration domain and instead create a separate statement
2988 * for evaluating the condition. The body is then filtered to depend
2989 * on the result of the condition evaluating to true on all iterations
2990 * up to the current iteration, while the evaluation the condition itself
2991 * is filtered to depend on the result of the condition evaluating to true
2992 * on all previous iterations.
2993 * The context of the scop representing the body is dropped
2994 * because we don't know how many times the body will be executed,
2995 * if at all.
2997 * If the stride of the loop is not 1, then "i >= init" is replaced by
2999 * (exists a: i = init + stride * a and a >= 0)
3001 * If the loop iterator i is unsigned, then wrapping may occur.
3002 * During the computation, we work with a virtual iterator that
3003 * does not wrap. However, the condition in the code applies
3004 * to the wrapped value, so we need to change condition(i)
3005 * into condition([i % 2^width]).
3006 * After computing the virtual domain and schedule, we apply
3007 * the function { [v] -> [v % 2^width] } to the domain and the domain
3008 * of the schedule. In order not to lose any information, we also
3009 * need to intersect the domain of the schedule with the virtual domain
3010 * first, since some iterations in the wrapped domain may be scheduled
3011 * several times, typically an infinite number of times.
3012 * Note that there may be no need to perform this final wrapping
3013 * if the loop condition (after wrapping) satisfies certain conditions.
3014 * However, the is_simple_bound condition is not enough since it doesn't
3015 * check if there even is an upper bound.
3017 * If the loop condition is non-affine, then we keep the virtual
3018 * iterator in the iteration domain and instead replace all accesses
3019 * to the original iterator by the wrapping of the virtual iterator.
3021 * Wrapping on unsigned iterators can be avoided entirely if
3022 * loop condition is simple, the loop iterator is incremented
3023 * [decremented] by one and the last value before wrapping cannot
3024 * possibly satisfy the loop condition.
3026 * Before extracting a pet_scop from the body we remove all
3027 * assignments in assigned_value to variables that are assigned
3028 * somewhere in the body of the loop.
3030 * Valid parameters for a for loop are those for which the initial
3031 * value itself, the increment on each domain iteration and
3032 * the condition on both the initial value and
3033 * the result of incrementing the iterator for each iteration of the domain
3034 * can be evaluated.
3035 * If the loop condition is non-affine, then we only consider validity
3036 * of the initial value.
3038 * If the body contains any break, then we keep track of it in "skip"
3039 * (if the skip condition is affine) or it is handled in scop_add_break
3040 * (if the skip condition is not affine).
3041 * Note that the affine break condition needs to be considered with
3042 * respect to previous iterations in the virtual domain (if any)
3043 * and that the domain needs to be kept virtual if there is a non-affine
3044 * break condition.
3046 struct pet_scop *PetScan::extract_for(ForStmt *stmt)
3048 BinaryOperator *ass;
3049 Decl *decl;
3050 Stmt *init;
3051 Expr *lhs, *rhs;
3052 ValueDecl *iv;
3053 isl_space *space;
3054 isl_set *domain;
3055 isl_map *sched;
3056 isl_set *cond = NULL;
3057 isl_set *skip = NULL;
3058 isl_id *id, *id_test = NULL, *id_break_test;
3059 struct pet_scop *scop, *scop_cond = NULL;
3060 assigned_value_cache cache(assigned_value);
3061 isl_val *inc;
3062 bool was_assigned;
3063 bool is_one;
3064 bool is_unsigned;
3065 bool is_simple;
3066 bool is_virtual;
3067 bool keep_virtual = false;
3068 bool has_affine_break;
3069 bool has_var_break;
3070 isl_aff *wrap = NULL;
3071 isl_pw_aff *pa, *pa_inc, *init_val;
3072 isl_set *valid_init;
3073 isl_set *valid_cond;
3074 isl_set *valid_cond_init;
3075 isl_set *valid_cond_next;
3076 isl_set *valid_inc;
3077 int stmt_id;
3079 if (!stmt->getInit() && !stmt->getCond() && !stmt->getInc())
3080 return extract_infinite_for(stmt);
3082 init = stmt->getInit();
3083 if (!init) {
3084 unsupported(stmt);
3085 return NULL;
3087 if ((ass = initialization_assignment(init)) != NULL) {
3088 iv = extract_induction_variable(ass);
3089 if (!iv)
3090 return NULL;
3091 lhs = ass->getLHS();
3092 rhs = ass->getRHS();
3093 } else if ((decl = initialization_declaration(init)) != NULL) {
3094 VarDecl *var = extract_induction_variable(init, decl);
3095 if (!var)
3096 return NULL;
3097 iv = var;
3098 rhs = var->getInit();
3099 lhs = create_DeclRefExpr(var);
3100 } else {
3101 unsupported(stmt->getInit());
3102 return NULL;
3105 assigned_value.erase(iv);
3106 clear_assignments clear(assigned_value);
3107 clear.TraverseStmt(stmt->getBody());
3109 was_assigned = assigned_value.find(iv) != assigned_value.end();
3110 clear_assignment(assigned_value, iv);
3111 init_val = extract_affine(rhs);
3112 if (!was_assigned)
3113 assigned_value.erase(iv);
3114 if (!init_val)
3115 return NULL;
3117 pa_inc = extract_increment(stmt, iv);
3118 if (!pa_inc) {
3119 isl_pw_aff_free(init_val);
3120 return NULL;
3123 inc = NULL;
3124 if (isl_pw_aff_n_piece(pa_inc) != 1 ||
3125 isl_pw_aff_foreach_piece(pa_inc, &extract_cst, &inc) < 0) {
3126 isl_pw_aff_free(init_val);
3127 isl_pw_aff_free(pa_inc);
3128 unsupported(stmt->getInc());
3129 isl_val_free(inc);
3130 return NULL;
3132 valid_inc = isl_pw_aff_domain(pa_inc);
3134 is_unsigned = iv->getType()->isUnsignedIntegerType();
3136 id = isl_id_alloc(ctx, iv->getName().str().c_str(), iv);
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());
3144 has_affine_break = scop &&
3145 pet_scop_has_affine_skip(scop, pet_skip_later);
3146 if (has_affine_break)
3147 skip = pet_scop_get_affine_skip_domain(scop, pet_skip_later);
3148 has_var_break = scop && pet_scop_has_var_skip(scop, pet_skip_later);
3149 if (has_var_break) {
3150 id_break_test = pet_scop_get_skip_id(scop, pet_skip_later);
3151 keep_virtual = true;
3154 if (pa && !is_nested_allowed(pa, scop)) {
3155 isl_pw_aff_free(pa);
3156 pa = NULL;
3159 if (!allow_nested && !pa)
3160 pa = try_extract_affine_condition(stmt->getCond());
3161 valid_cond = isl_pw_aff_domain(isl_pw_aff_copy(pa));
3162 cond = isl_pw_aff_non_zero_set(pa);
3163 if (allow_nested && !cond) {
3164 isl_multi_pw_aff *test_index;
3165 int save_n_stmt = n_stmt;
3166 test_index = create_test_index(ctx, n_test++);
3167 n_stmt = stmt_id;
3168 scop_cond = extract_non_affine_condition(stmt->getCond(),
3169 n_stmt++, isl_multi_pw_aff_copy(test_index));
3170 n_stmt = save_n_stmt;
3171 scop_cond = scop_add_array(scop_cond, test_index, ast_context);
3172 id_test = isl_multi_pw_aff_get_tuple_id(test_index,
3173 isl_dim_out);
3174 isl_multi_pw_aff_free(test_index);
3175 scop_cond = pet_scop_prefix(scop_cond, 0);
3176 scop = pet_scop_reset_context(scop);
3177 scop = pet_scop_prefix(scop, 1);
3178 keep_virtual = true;
3179 cond = isl_set_universe(isl_space_set_alloc(ctx, 0, 0));
3182 cond = embed(cond, isl_id_copy(id));
3183 skip = embed(skip, isl_id_copy(id));
3184 valid_cond = isl_set_coalesce(valid_cond);
3185 valid_cond = embed(valid_cond, isl_id_copy(id));
3186 valid_inc = embed(valid_inc, isl_id_copy(id));
3187 is_one = isl_val_is_one(inc) || isl_val_is_negone(inc);
3188 is_virtual = is_unsigned && (!is_one || can_wrap(cond, iv, inc));
3190 valid_cond_init = enforce_subset(
3191 isl_set_from_pw_aff(isl_pw_aff_copy(init_val)),
3192 isl_set_copy(valid_cond));
3193 if (is_one && !is_virtual) {
3194 isl_pw_aff_free(init_val);
3195 pa = extract_comparison(isl_val_is_pos(inc) ? BO_GE : BO_LE,
3196 lhs, rhs, init);
3197 valid_init = isl_pw_aff_domain(isl_pw_aff_copy(pa));
3198 valid_init = set_project_out_by_id(valid_init, id);
3199 domain = isl_pw_aff_non_zero_set(pa);
3200 } else {
3201 valid_init = isl_pw_aff_domain(isl_pw_aff_copy(init_val));
3202 domain = strided_domain(isl_id_copy(id), init_val,
3203 isl_val_copy(inc));
3206 domain = embed(domain, isl_id_copy(id));
3207 if (is_virtual) {
3208 isl_map *rev_wrap;
3209 wrap = compute_wrapping(isl_set_get_space(cond), iv);
3210 rev_wrap = isl_map_from_aff(isl_aff_copy(wrap));
3211 rev_wrap = isl_map_reverse(rev_wrap);
3212 cond = isl_set_apply(cond, isl_map_copy(rev_wrap));
3213 skip = isl_set_apply(skip, isl_map_copy(rev_wrap));
3214 valid_cond = isl_set_apply(valid_cond, isl_map_copy(rev_wrap));
3215 valid_inc = isl_set_apply(valid_inc, rev_wrap);
3217 is_simple = is_simple_bound(cond, inc);
3218 if (!is_simple) {
3219 cond = isl_set_gist(cond, isl_set_copy(domain));
3220 is_simple = is_simple_bound(cond, inc);
3222 if (!is_simple)
3223 cond = valid_for_each_iteration(cond,
3224 isl_set_copy(domain), isl_val_copy(inc));
3225 domain = isl_set_intersect(domain, cond);
3226 if (has_affine_break) {
3227 skip = isl_set_intersect(skip , isl_set_copy(domain));
3228 skip = after(skip, isl_val_sgn(inc));
3229 domain = isl_set_subtract(domain, skip);
3231 domain = isl_set_set_dim_id(domain, isl_dim_set, 0, isl_id_copy(id));
3232 space = isl_space_from_domain(isl_set_get_space(domain));
3233 space = isl_space_add_dims(space, isl_dim_out, 1);
3234 sched = isl_map_universe(space);
3235 if (isl_val_is_pos(inc))
3236 sched = isl_map_equate(sched, isl_dim_in, 0, isl_dim_out, 0);
3237 else
3238 sched = isl_map_oppose(sched, isl_dim_in, 0, isl_dim_out, 0);
3240 valid_cond_next = valid_on_next(valid_cond, isl_set_copy(domain),
3241 isl_val_copy(inc));
3242 valid_inc = enforce_subset(isl_set_copy(domain), valid_inc);
3244 if (is_virtual && !keep_virtual) {
3245 isl_map *wrap_map = isl_map_from_aff(wrap);
3246 wrap_map = isl_map_set_dim_id(wrap_map,
3247 isl_dim_out, 0, isl_id_copy(id));
3248 sched = isl_map_intersect_domain(sched, isl_set_copy(domain));
3249 domain = isl_set_apply(domain, isl_map_copy(wrap_map));
3250 sched = isl_map_apply_domain(sched, wrap_map);
3252 if (!(is_virtual && keep_virtual))
3253 wrap = identity_aff(domain);
3255 scop_cond = pet_scop_embed(scop_cond, isl_set_copy(domain),
3256 isl_map_copy(sched), isl_aff_copy(wrap), isl_id_copy(id));
3257 scop = pet_scop_embed(scop, isl_set_copy(domain), sched, wrap, id);
3258 scop = resolve_nested(scop);
3259 if (has_var_break)
3260 scop = scop_add_break(scop, id_break_test, isl_set_copy(domain),
3261 isl_val_copy(inc));
3262 if (id_test) {
3263 scop = scop_add_while(scop_cond, scop, id_test, domain,
3264 isl_val_copy(inc));
3265 isl_set_free(valid_inc);
3266 } else {
3267 scop = pet_scop_restrict_context(scop, valid_inc);
3268 scop = pet_scop_restrict_context(scop, valid_cond_next);
3269 scop = pet_scop_restrict_context(scop, valid_cond_init);
3270 isl_set_free(domain);
3272 clear_assignment(assigned_value, iv);
3274 isl_val_free(inc);
3276 scop = pet_scop_restrict_context(scop, valid_init);
3278 return scop;
3281 struct pet_scop *PetScan::extract(CompoundStmt *stmt, bool skip_declarations)
3283 return extract(stmt->children(), true, skip_declarations);
3286 /* Does parameter "pos" of "map" refer to a nested access?
3288 static bool is_nested_parameter(__isl_keep isl_map *map, int pos)
3290 bool nested;
3291 isl_id *id;
3293 id = isl_map_get_dim_id(map, isl_dim_param, pos);
3294 nested = is_nested_parameter(id);
3295 isl_id_free(id);
3297 return nested;
3300 /* How many parameters of "space" refer to nested accesses, i.e., have no name?
3302 static int n_nested_parameter(__isl_keep isl_space *space)
3304 int n = 0;
3305 int nparam;
3307 nparam = isl_space_dim(space, isl_dim_param);
3308 for (int i = 0; i < nparam; ++i)
3309 if (is_nested_parameter(space, i))
3310 ++n;
3312 return n;
3315 /* How many parameters of "map" refer to nested accesses, i.e., have no name?
3317 static int n_nested_parameter(__isl_keep isl_map *map)
3319 isl_space *space;
3320 int n;
3322 space = isl_map_get_space(map);
3323 n = n_nested_parameter(space);
3324 isl_space_free(space);
3326 return n;
3329 /* For each nested access parameter in "space",
3330 * construct a corresponding pet_expr, place it in args and
3331 * record its position in "param2pos".
3332 * "n_arg" is the number of elements that are already in args.
3333 * The position recorded in "param2pos" takes this number into account.
3334 * If the pet_expr corresponding to a parameter is identical to
3335 * the pet_expr corresponding to an earlier parameter, then these two
3336 * parameters are made to refer to the same element in args.
3338 * Return the final number of elements in args or -1 if an error has occurred.
3340 int PetScan::extract_nested(__isl_keep isl_space *space,
3341 int n_arg, struct pet_expr **args, std::map<int,int> &param2pos)
3343 int nparam;
3345 nparam = isl_space_dim(space, isl_dim_param);
3346 for (int i = 0; i < nparam; ++i) {
3347 int j;
3348 isl_id *id = isl_space_get_dim_id(space, isl_dim_param, i);
3349 Expr *nested;
3351 if (!is_nested_parameter(id)) {
3352 isl_id_free(id);
3353 continue;
3356 nested = (Expr *) isl_id_get_user(id);
3357 args[n_arg] = extract_expr(nested);
3358 if (!args[n_arg])
3359 return -1;
3361 for (j = 0; j < n_arg; ++j)
3362 if (pet_expr_is_equal(args[j], args[n_arg]))
3363 break;
3365 if (j < n_arg) {
3366 pet_expr_free(args[n_arg]);
3367 args[n_arg] = NULL;
3368 param2pos[i] = j;
3369 } else
3370 param2pos[i] = n_arg++;
3372 isl_id_free(id);
3375 return n_arg;
3378 /* For each nested access parameter in the access relations in "expr",
3379 * construct a corresponding pet_expr, place it in expr->args and
3380 * record its position in "param2pos".
3381 * n is the number of nested access parameters.
3383 struct pet_expr *PetScan::extract_nested(struct pet_expr *expr, int n,
3384 std::map<int,int> &param2pos)
3386 isl_space *space;
3388 expr->args = isl_calloc_array(ctx, struct pet_expr *, n);
3389 expr->n_arg = n;
3390 if (!expr->args)
3391 goto error;
3393 space = isl_map_get_space(expr->acc.access);
3394 n = extract_nested(space, 0, expr->args, param2pos);
3395 isl_space_free(space);
3397 if (n < 0)
3398 goto error;
3400 expr->n_arg = n;
3401 return expr;
3402 error:
3403 pet_expr_free(expr);
3404 return NULL;
3407 /* Look for parameters in any access relation in "expr" that
3408 * refer to nested accesses. In particular, these are
3409 * parameters with no name.
3411 * If there are any such parameters, then the domain of the index
3412 * expression and the access relation, which is still [] at this point,
3413 * is replaced by [[] -> [t_1,...,t_n]], with n the number of these parameters
3414 * (after identifying identical nested accesses).
3416 * This transformation is performed in several steps.
3417 * We first extract the arguments in extract_nested.
3418 * param2pos maps the original parameter position to the position
3419 * of the argument.
3420 * Then we move these parameters to input dimension.
3421 * t2pos maps the positions of these temporary input dimensions
3422 * to the positions of the corresponding arguments.
3423 * Finally, we express there temporary dimensions in term of the domain
3424 * [[] -> [t_1,...,t_n]] and precompose index expression and access
3425 * relations with this function.
3427 struct pet_expr *PetScan::resolve_nested(struct pet_expr *expr)
3429 int n;
3430 int nparam;
3431 isl_space *space;
3432 isl_local_space *ls;
3433 isl_aff *aff;
3434 isl_multi_aff *ma;
3435 std::map<int,int> param2pos;
3436 std::map<int,int> t2pos;
3438 if (!expr)
3439 return expr;
3441 for (int i = 0; i < expr->n_arg; ++i) {
3442 expr->args[i] = resolve_nested(expr->args[i]);
3443 if (!expr->args[i]) {
3444 pet_expr_free(expr);
3445 return NULL;
3449 if (expr->type != pet_expr_access)
3450 return expr;
3452 n = n_nested_parameter(expr->acc.access);
3453 if (n == 0)
3454 return expr;
3456 expr = extract_nested(expr, n, param2pos);
3457 if (!expr)
3458 return NULL;
3460 expr = pet_expr_access_align_params(expr);
3461 if (!expr)
3462 return NULL;
3463 nparam = isl_map_dim(expr->acc.access, isl_dim_param);
3465 n = 0;
3466 for (int i = nparam - 1; i >= 0; --i) {
3467 isl_id *id = isl_map_get_dim_id(expr->acc.access,
3468 isl_dim_param, i);
3469 if (!is_nested_parameter(id)) {
3470 isl_id_free(id);
3471 continue;
3474 expr->acc.access = isl_map_move_dims(expr->acc.access,
3475 isl_dim_in, n, isl_dim_param, i, 1);
3476 expr->acc.index = isl_multi_pw_aff_move_dims(expr->acc.index,
3477 isl_dim_in, n, isl_dim_param, i, 1);
3478 t2pos[n] = param2pos[i];
3479 n++;
3481 isl_id_free(id);
3484 space = isl_multi_pw_aff_get_space(expr->acc.index);
3485 space = isl_space_set_from_params(isl_space_params(space));
3486 space = isl_space_add_dims(space, isl_dim_set, expr->n_arg);
3487 space = isl_space_wrap(isl_space_from_range(space));
3488 ls = isl_local_space_from_space(isl_space_copy(space));
3489 space = isl_space_from_domain(space);
3490 space = isl_space_add_dims(space, isl_dim_out, n);
3491 ma = isl_multi_aff_zero(space);
3493 for (int i = 0; i < n; ++i) {
3494 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
3495 isl_dim_set, t2pos[i]);
3496 ma = isl_multi_aff_set_aff(ma, i, aff);
3498 isl_local_space_free(ls);
3500 expr->acc.access = isl_map_preimage_domain_multi_aff(expr->acc.access,
3501 isl_multi_aff_copy(ma));
3502 expr->acc.index = isl_multi_pw_aff_pullback_multi_aff(expr->acc.index,
3503 ma);
3505 return expr;
3508 /* Return the file offset of the expansion location of "Loc".
3510 static unsigned getExpansionOffset(SourceManager &SM, SourceLocation Loc)
3512 return SM.getFileOffset(SM.getExpansionLoc(Loc));
3515 #ifdef HAVE_FINDLOCATIONAFTERTOKEN
3517 /* Return a SourceLocation for the location after the first semicolon
3518 * after "loc". If Lexer::findLocationAfterToken is available, we simply
3519 * call it and also skip trailing spaces and newline.
3521 static SourceLocation location_after_semi(SourceLocation loc, SourceManager &SM,
3522 const LangOptions &LO)
3524 return Lexer::findLocationAfterToken(loc, tok::semi, SM, LO, true);
3527 #else
3529 /* Return a SourceLocation for the location after the first semicolon
3530 * after "loc". If Lexer::findLocationAfterToken is not available,
3531 * we look in the underlying character data for the first semicolon.
3533 static SourceLocation location_after_semi(SourceLocation loc, SourceManager &SM,
3534 const LangOptions &LO)
3536 const char *semi;
3537 const char *s = SM.getCharacterData(loc);
3539 semi = strchr(s, ';');
3540 if (!semi)
3541 return SourceLocation();
3542 return loc.getFileLocWithOffset(semi + 1 - s);
3545 #endif
3547 /* If the token at "loc" is the first token on the line, then return
3548 * a location referring to the start of the line.
3549 * Otherwise, return "loc".
3551 * This function is used to extend a scop to the start of the line
3552 * if the first token of the scop is also the first token on the line.
3554 * We look for the first token on the line. If its location is equal to "loc",
3555 * then the latter is the location of the first token on the line.
3557 static SourceLocation move_to_start_of_line_if_first_token(SourceLocation loc,
3558 SourceManager &SM, const LangOptions &LO)
3560 std::pair<FileID, unsigned> file_offset_pair;
3561 llvm::StringRef file;
3562 const char *pos;
3563 Token tok;
3564 SourceLocation token_loc, line_loc;
3565 int col;
3567 loc = SM.getExpansionLoc(loc);
3568 col = SM.getExpansionColumnNumber(loc);
3569 line_loc = loc.getLocWithOffset(1 - col);
3570 file_offset_pair = SM.getDecomposedLoc(line_loc);
3571 file = SM.getBufferData(file_offset_pair.first, NULL);
3572 pos = file.data() + file_offset_pair.second;
3574 Lexer lexer(SM.getLocForStartOfFile(file_offset_pair.first), LO,
3575 file.begin(), pos, file.end());
3576 lexer.LexFromRawLexer(tok);
3577 token_loc = tok.getLocation();
3579 if (token_loc == loc)
3580 return line_loc;
3581 else
3582 return loc;
3585 /* Convert a top-level pet_expr to a pet_scop with one statement.
3586 * This mainly involves resolving nested expression parameters
3587 * and setting the name of the iteration space.
3588 * The name is given by "label" if it is non-NULL. Otherwise,
3589 * it is of the form S_<n_stmt>.
3590 * start and end of the pet_scop are derived from those of "stmt".
3592 struct pet_scop *PetScan::extract(Stmt *stmt, struct pet_expr *expr,
3593 __isl_take isl_id *label)
3595 struct pet_stmt *ps;
3596 struct pet_scop *scop;
3597 SourceLocation loc = stmt->getLocStart();
3598 SourceManager &SM = PP.getSourceManager();
3599 const LangOptions &LO = PP.getLangOpts();
3600 int line = PP.getSourceManager().getExpansionLineNumber(loc);
3601 unsigned start, end;
3603 expr = resolve_nested(expr);
3604 ps = pet_stmt_from_pet_expr(ctx, line, label, n_stmt++, expr);
3605 scop = pet_scop_from_pet_stmt(ctx, ps);
3607 loc = move_to_start_of_line_if_first_token(loc, SM, LO);
3608 start = getExpansionOffset(SM, loc);
3609 loc = stmt->getLocEnd();
3610 loc = location_after_semi(loc, SM, LO);
3611 end = getExpansionOffset(SM, loc);
3613 scop = pet_scop_update_start_end(scop, start, end);
3614 return scop;
3617 /* Check if we can extract an affine expression from "expr".
3618 * Return the expressions as an isl_pw_aff if we can and NULL otherwise.
3619 * We turn on autodetection so that we won't generate any warnings
3620 * and turn off nesting, so that we won't accept any non-affine constructs.
3622 __isl_give isl_pw_aff *PetScan::try_extract_affine(Expr *expr)
3624 isl_pw_aff *pwaff;
3625 int save_autodetect = options->autodetect;
3626 bool save_nesting = nesting_enabled;
3628 options->autodetect = 1;
3629 nesting_enabled = false;
3631 pwaff = extract_affine(expr);
3633 options->autodetect = save_autodetect;
3634 nesting_enabled = save_nesting;
3636 return pwaff;
3639 /* Check whether "expr" is an affine expression.
3641 bool PetScan::is_affine(Expr *expr)
3643 isl_pw_aff *pwaff;
3645 pwaff = try_extract_affine(expr);
3646 isl_pw_aff_free(pwaff);
3648 return pwaff != NULL;
3651 /* Check if we can extract an affine constraint from "expr".
3652 * Return the constraint as an isl_set if we can and NULL otherwise.
3653 * We turn on autodetection so that we won't generate any warnings
3654 * and turn off nesting, so that we won't accept any non-affine constructs.
3656 __isl_give isl_pw_aff *PetScan::try_extract_affine_condition(Expr *expr)
3658 isl_pw_aff *cond;
3659 int save_autodetect = options->autodetect;
3660 bool save_nesting = nesting_enabled;
3662 options->autodetect = 1;
3663 nesting_enabled = false;
3665 cond = extract_condition(expr);
3667 options->autodetect = save_autodetect;
3668 nesting_enabled = save_nesting;
3670 return cond;
3673 /* Check whether "expr" is an affine constraint.
3675 bool PetScan::is_affine_condition(Expr *expr)
3677 isl_pw_aff *cond;
3679 cond = try_extract_affine_condition(expr);
3680 isl_pw_aff_free(cond);
3682 return cond != NULL;
3685 /* Check if we can extract a condition from "expr".
3686 * Return the condition as an isl_pw_aff if we can and NULL otherwise.
3687 * If allow_nested is set, then the condition may involve parameters
3688 * corresponding to nested accesses.
3689 * We turn on autodetection so that we won't generate any warnings.
3691 __isl_give isl_pw_aff *PetScan::try_extract_nested_condition(Expr *expr)
3693 isl_pw_aff *cond;
3694 int save_autodetect = options->autodetect;
3695 bool save_nesting = nesting_enabled;
3697 options->autodetect = 1;
3698 nesting_enabled = allow_nested;
3699 cond = extract_condition(expr);
3701 options->autodetect = save_autodetect;
3702 nesting_enabled = save_nesting;
3704 return cond;
3707 /* If the top-level expression of "stmt" is an assignment, then
3708 * return that assignment as a BinaryOperator.
3709 * Otherwise return NULL.
3711 static BinaryOperator *top_assignment_or_null(Stmt *stmt)
3713 BinaryOperator *ass;
3715 if (!stmt)
3716 return NULL;
3717 if (stmt->getStmtClass() != Stmt::BinaryOperatorClass)
3718 return NULL;
3720 ass = cast<BinaryOperator>(stmt);
3721 if(ass->getOpcode() != BO_Assign)
3722 return NULL;
3724 return ass;
3727 /* Check if the given if statement is a conditional assignement
3728 * with a non-affine condition. If so, construct a pet_scop
3729 * corresponding to this conditional assignment. Otherwise return NULL.
3731 * In particular we check if "stmt" is of the form
3733 * if (condition)
3734 * a = f(...);
3735 * else
3736 * a = g(...);
3738 * where a is some array or scalar access.
3739 * The constructed pet_scop then corresponds to the expression
3741 * a = condition ? f(...) : g(...)
3743 * All access relations in f(...) are intersected with condition
3744 * while all access relation in g(...) are intersected with the complement.
3746 struct pet_scop *PetScan::extract_conditional_assignment(IfStmt *stmt)
3748 BinaryOperator *ass_then, *ass_else;
3749 isl_multi_pw_aff *write_then, *write_else;
3750 isl_set *cond, *comp;
3751 isl_multi_pw_aff *index;
3752 isl_pw_aff *pa;
3753 int equal;
3754 struct pet_expr *pe_cond, *pe_then, *pe_else, *pe, *pe_write;
3755 bool save_nesting = nesting_enabled;
3757 if (!options->detect_conditional_assignment)
3758 return NULL;
3760 ass_then = top_assignment_or_null(stmt->getThen());
3761 ass_else = top_assignment_or_null(stmt->getElse());
3763 if (!ass_then || !ass_else)
3764 return NULL;
3766 if (is_affine_condition(stmt->getCond()))
3767 return NULL;
3769 write_then = extract_index(ass_then->getLHS());
3770 write_else = extract_index(ass_else->getLHS());
3772 equal = isl_multi_pw_aff_plain_is_equal(write_then, write_else);
3773 isl_multi_pw_aff_free(write_else);
3774 if (equal < 0 || !equal) {
3775 isl_multi_pw_aff_free(write_then);
3776 return NULL;
3779 nesting_enabled = allow_nested;
3780 pa = extract_condition(stmt->getCond());
3781 nesting_enabled = save_nesting;
3782 cond = isl_pw_aff_non_zero_set(isl_pw_aff_copy(pa));
3783 comp = isl_pw_aff_zero_set(isl_pw_aff_copy(pa));
3784 index = isl_multi_pw_aff_from_range(isl_multi_pw_aff_from_pw_aff(pa));
3786 pe_cond = pet_expr_from_index(index);
3788 pe_then = extract_expr(ass_then->getRHS());
3789 pe_then = pet_expr_restrict(pe_then, cond);
3790 pe_else = extract_expr(ass_else->getRHS());
3791 pe_else = pet_expr_restrict(pe_else, comp);
3793 pe = pet_expr_new_ternary(ctx, pe_cond, pe_then, pe_else);
3794 pe_write = pet_expr_from_index_and_depth(write_then,
3795 extract_depth(write_then));
3796 if (pe_write) {
3797 pe_write->acc.write = 1;
3798 pe_write->acc.read = 0;
3800 pe = pet_expr_new_binary(ctx, pet_op_assign, pe_write, pe);
3801 return extract(stmt, pe);
3804 /* Create a pet_scop with a single statement with name S_<stmt_nr>,
3805 * evaluating "cond" and writing the result to a virtual scalar,
3806 * as expressed by "index".
3808 struct pet_scop *PetScan::extract_non_affine_condition(Expr *cond, int stmt_nr,
3809 __isl_take isl_multi_pw_aff *index)
3811 struct pet_expr *expr, *write;
3812 struct pet_stmt *ps;
3813 struct pet_scop *scop;
3814 SourceLocation loc = cond->getLocStart();
3815 int line = PP.getSourceManager().getExpansionLineNumber(loc);
3817 write = pet_expr_from_index(index);
3818 if (write) {
3819 write->acc.write = 1;
3820 write->acc.read = 0;
3822 expr = extract_expr(cond);
3823 expr = resolve_nested(expr);
3824 expr = pet_expr_new_binary(ctx, pet_op_assign, write, expr);
3825 ps = pet_stmt_from_pet_expr(ctx, line, NULL, stmt_nr, expr);
3826 scop = pet_scop_from_pet_stmt(ctx, ps);
3827 scop = resolve_nested(scop);
3829 return scop;
3832 extern "C" {
3833 static struct pet_expr *embed_access(struct pet_expr *expr, void *user);
3836 /* Precompose the access relation and the index expression associated
3837 * to "expr" with the function pointed to by "user",
3838 * thereby embedding the access relation in the domain of this function.
3839 * The initial domain of the access relation and the index expression
3840 * is the zero-dimensional domain.
3842 static struct pet_expr *embed_access(struct pet_expr *expr, void *user)
3844 isl_multi_aff *ma = (isl_multi_aff *) user;
3846 expr->acc.access = isl_map_preimage_domain_multi_aff(expr->acc.access,
3847 isl_multi_aff_copy(ma));
3848 expr->acc.index = isl_multi_pw_aff_pullback_multi_aff(expr->acc.index,
3849 isl_multi_aff_copy(ma));
3850 if (!expr->acc.access || !expr->acc.index)
3851 goto error;
3853 return expr;
3854 error:
3855 pet_expr_free(expr);
3856 return NULL;
3859 /* Precompose all access relations in "expr" with "ma", thereby
3860 * embedding them in the domain of "ma".
3862 static struct pet_expr *embed(struct pet_expr *expr,
3863 __isl_keep isl_multi_aff *ma)
3865 return pet_expr_map_access(expr, &embed_access, ma);
3868 /* How many parameters of "set" refer to nested accesses, i.e., have no name?
3870 static int n_nested_parameter(__isl_keep isl_set *set)
3872 isl_space *space;
3873 int n;
3875 space = isl_set_get_space(set);
3876 n = n_nested_parameter(space);
3877 isl_space_free(space);
3879 return n;
3882 /* Remove all parameters from "map" that refer to nested accesses.
3884 static __isl_give isl_map *remove_nested_parameters(__isl_take isl_map *map)
3886 int nparam;
3887 isl_space *space;
3889 space = isl_map_get_space(map);
3890 nparam = isl_space_dim(space, isl_dim_param);
3891 for (int i = nparam - 1; i >= 0; --i)
3892 if (is_nested_parameter(space, i))
3893 map = isl_map_project_out(map, isl_dim_param, i, 1);
3894 isl_space_free(space);
3896 return map;
3899 /* Remove all parameters from "mpa" that refer to nested accesses.
3901 static __isl_give isl_multi_pw_aff *remove_nested_parameters(
3902 __isl_take isl_multi_pw_aff *mpa)
3904 int nparam;
3905 isl_space *space;
3907 space = isl_multi_pw_aff_get_space(mpa);
3908 nparam = isl_space_dim(space, isl_dim_param);
3909 for (int i = nparam - 1; i >= 0; --i) {
3910 if (!is_nested_parameter(space, i))
3911 continue;
3912 mpa = isl_multi_pw_aff_drop_dims(mpa, isl_dim_param, i, 1);
3914 isl_space_free(space);
3916 return mpa;
3919 /* Remove all parameters from the index expression and access relation of "expr"
3920 * that refer to nested accesses.
3922 static struct pet_expr *remove_nested_parameters(struct pet_expr *expr)
3924 expr->acc.access = remove_nested_parameters(expr->acc.access);
3925 expr->acc.index = remove_nested_parameters(expr->acc.index);
3926 if (!expr->acc.access || !expr->acc.index)
3927 goto error;
3929 return expr;
3930 error:
3931 pet_expr_free(expr);
3932 return NULL;
3935 extern "C" {
3936 static struct pet_expr *expr_remove_nested_parameters(
3937 struct pet_expr *expr, void *user);
3940 static struct pet_expr *expr_remove_nested_parameters(
3941 struct pet_expr *expr, void *user)
3943 return remove_nested_parameters(expr);
3946 /* Remove all nested access parameters from the schedule and all
3947 * accesses of "stmt".
3948 * There is no need to remove them from the domain as these parameters
3949 * have already been removed from the domain when this function is called.
3951 static struct pet_stmt *remove_nested_parameters(struct pet_stmt *stmt)
3953 if (!stmt)
3954 return NULL;
3955 stmt->schedule = remove_nested_parameters(stmt->schedule);
3956 stmt->body = pet_expr_map_access(stmt->body,
3957 &expr_remove_nested_parameters, NULL);
3958 if (!stmt->schedule || !stmt->body)
3959 goto error;
3960 for (int i = 0; i < stmt->n_arg; ++i) {
3961 stmt->args[i] = pet_expr_map_access(stmt->args[i],
3962 &expr_remove_nested_parameters, NULL);
3963 if (!stmt->args[i])
3964 goto error;
3967 return stmt;
3968 error:
3969 pet_stmt_free(stmt);
3970 return NULL;
3973 /* For each nested access parameter in the domain of "stmt",
3974 * construct a corresponding pet_expr, place it before the original
3975 * elements in stmt->args and record its position in "param2pos".
3976 * n is the number of nested access parameters.
3978 struct pet_stmt *PetScan::extract_nested(struct pet_stmt *stmt, int n,
3979 std::map<int,int> &param2pos)
3981 int i;
3982 isl_space *space;
3983 int n_arg;
3984 struct pet_expr **args;
3986 n_arg = stmt->n_arg;
3987 args = isl_calloc_array(ctx, struct pet_expr *, n + n_arg);
3988 if (!args)
3989 goto error;
3991 space = isl_set_get_space(stmt->domain);
3992 n_arg = extract_nested(space, 0, args, param2pos);
3993 isl_space_free(space);
3995 if (n_arg < 0)
3996 goto error;
3998 for (i = 0; i < stmt->n_arg; ++i)
3999 args[n_arg + i] = stmt->args[i];
4000 free(stmt->args);
4001 stmt->args = args;
4002 stmt->n_arg += n_arg;
4004 return stmt;
4005 error:
4006 if (args) {
4007 for (i = 0; i < n; ++i)
4008 pet_expr_free(args[i]);
4009 free(args);
4011 pet_stmt_free(stmt);
4012 return NULL;
4015 /* Check whether any of the arguments i of "stmt" starting at position "n"
4016 * is equal to one of the first "n" arguments j.
4017 * If so, combine the constraints on arguments i and j and remove
4018 * argument i.
4020 static struct pet_stmt *remove_duplicate_arguments(struct pet_stmt *stmt, int n)
4022 int i, j;
4023 isl_map *map;
4025 if (!stmt)
4026 return NULL;
4027 if (n == 0)
4028 return stmt;
4029 if (n == stmt->n_arg)
4030 return stmt;
4032 map = isl_set_unwrap(stmt->domain);
4034 for (i = stmt->n_arg - 1; i >= n; --i) {
4035 for (j = 0; j < n; ++j)
4036 if (pet_expr_is_equal(stmt->args[i], stmt->args[j]))
4037 break;
4038 if (j >= n)
4039 continue;
4041 map = isl_map_equate(map, isl_dim_out, i, isl_dim_out, j);
4042 map = isl_map_project_out(map, isl_dim_out, i, 1);
4044 pet_expr_free(stmt->args[i]);
4045 for (j = i; j + 1 < stmt->n_arg; ++j)
4046 stmt->args[j] = stmt->args[j + 1];
4047 stmt->n_arg--;
4050 stmt->domain = isl_map_wrap(map);
4051 if (!stmt->domain)
4052 goto error;
4053 return stmt;
4054 error:
4055 pet_stmt_free(stmt);
4056 return NULL;
4059 /* Look for parameters in the iteration domain of "stmt" that
4060 * refer to nested accesses. In particular, these are
4061 * parameters with no name.
4063 * If there are any such parameters, then as many extra variables
4064 * (after identifying identical nested accesses) are inserted in the
4065 * range of the map wrapped inside the domain, before the original variables.
4066 * If the original domain is not a wrapped map, then a new wrapped
4067 * map is created with zero output dimensions.
4068 * The parameters are then equated to the corresponding output dimensions
4069 * and subsequently projected out, from the iteration domain,
4070 * the schedule and the access relations.
4071 * For each of the output dimensions, a corresponding argument
4072 * expression is inserted. Initially they are created with
4073 * a zero-dimensional domain, so they have to be embedded
4074 * in the current iteration domain.
4075 * param2pos maps the position of the parameter to the position
4076 * of the corresponding output dimension in the wrapped map.
4078 struct pet_stmt *PetScan::resolve_nested(struct pet_stmt *stmt)
4080 int n;
4081 int nparam;
4082 unsigned n_arg;
4083 isl_map *map;
4084 isl_space *space;
4085 isl_multi_aff *ma;
4086 std::map<int,int> param2pos;
4088 if (!stmt)
4089 return NULL;
4091 n = n_nested_parameter(stmt->domain);
4092 if (n == 0)
4093 return stmt;
4095 n_arg = stmt->n_arg;
4096 stmt = extract_nested(stmt, n, param2pos);
4097 if (!stmt)
4098 return NULL;
4100 n = stmt->n_arg - n_arg;
4101 nparam = isl_set_dim(stmt->domain, isl_dim_param);
4102 if (isl_set_is_wrapping(stmt->domain))
4103 map = isl_set_unwrap(stmt->domain);
4104 else
4105 map = isl_map_from_domain(stmt->domain);
4106 map = isl_map_insert_dims(map, isl_dim_out, 0, n);
4108 for (int i = nparam - 1; i >= 0; --i) {
4109 isl_id *id;
4111 if (!is_nested_parameter(map, i))
4112 continue;
4114 id = pet_expr_access_get_id(stmt->args[param2pos[i]]);
4115 map = isl_map_set_dim_id(map, isl_dim_out, param2pos[i], id);
4116 map = isl_map_equate(map, isl_dim_param, i, isl_dim_out,
4117 param2pos[i]);
4118 map = isl_map_project_out(map, isl_dim_param, i, 1);
4121 stmt->domain = isl_map_wrap(map);
4123 space = isl_space_unwrap(isl_set_get_space(stmt->domain));
4124 space = isl_space_from_domain(isl_space_domain(space));
4125 ma = isl_multi_aff_zero(space);
4126 for (int pos = 0; pos < n; ++pos)
4127 stmt->args[pos] = embed(stmt->args[pos], ma);
4128 isl_multi_aff_free(ma);
4130 stmt = remove_nested_parameters(stmt);
4131 stmt = remove_duplicate_arguments(stmt, n);
4133 return stmt;
4136 /* For each statement in "scop", move the parameters that correspond
4137 * to nested access into the ranges of the domains and create
4138 * corresponding argument expressions.
4140 struct pet_scop *PetScan::resolve_nested(struct pet_scop *scop)
4142 if (!scop)
4143 return NULL;
4145 for (int i = 0; i < scop->n_stmt; ++i) {
4146 scop->stmts[i] = resolve_nested(scop->stmts[i]);
4147 if (!scop->stmts[i])
4148 goto error;
4151 return scop;
4152 error:
4153 pet_scop_free(scop);
4154 return NULL;
4157 /* Given an access expression "expr", is the variable accessed by
4158 * "expr" assigned anywhere inside "scop"?
4160 static bool is_assigned(pet_expr *expr, pet_scop *scop)
4162 bool assigned = false;
4163 isl_id *id;
4165 id = pet_expr_access_get_id(expr);
4166 assigned = pet_scop_writes(scop, id);
4167 isl_id_free(id);
4169 return assigned;
4172 /* Are all nested access parameters in "pa" allowed given "scop".
4173 * In particular, is none of them written by anywhere inside "scop".
4175 * If "scop" has any skip conditions, then no nested access parameters
4176 * are allowed. In particular, if there is any nested access in a guard
4177 * for a piece of code containing a "continue", then we want to introduce
4178 * a separate statement for evaluating this guard so that we can express
4179 * that the result is false for all previous iterations.
4181 bool PetScan::is_nested_allowed(__isl_keep isl_pw_aff *pa, pet_scop *scop)
4183 int nparam;
4185 if (!scop)
4186 return true;
4188 nparam = isl_pw_aff_dim(pa, isl_dim_param);
4189 for (int i = 0; i < nparam; ++i) {
4190 Expr *nested;
4191 isl_id *id = isl_pw_aff_get_dim_id(pa, isl_dim_param, i);
4192 pet_expr *expr;
4193 bool allowed;
4195 if (!is_nested_parameter(id)) {
4196 isl_id_free(id);
4197 continue;
4200 if (pet_scop_has_skip(scop, pet_skip_now)) {
4201 isl_id_free(id);
4202 return false;
4205 nested = (Expr *) isl_id_get_user(id);
4206 expr = extract_expr(nested);
4207 allowed = expr && expr->type == pet_expr_access &&
4208 !is_assigned(expr, scop);
4210 pet_expr_free(expr);
4211 isl_id_free(id);
4213 if (!allowed)
4214 return false;
4217 return true;
4220 /* Do we need to construct a skip condition of the given type
4221 * on an if statement, given that the if condition is non-affine?
4223 * pet_scop_filter_skip can only handle the case where the if condition
4224 * holds (the then branch) and the skip condition is universal.
4225 * In any other case, we need to construct a new skip condition.
4227 static bool need_skip(struct pet_scop *scop_then, struct pet_scop *scop_else,
4228 bool have_else, enum pet_skip type)
4230 if (have_else && scop_else && pet_scop_has_skip(scop_else, type))
4231 return true;
4232 if (scop_then && pet_scop_has_skip(scop_then, type) &&
4233 !pet_scop_has_universal_skip(scop_then, type))
4234 return true;
4235 return false;
4238 /* Do we need to construct a skip condition of the given type
4239 * on an if statement, given that the if condition is affine?
4241 * There is no need to construct a new skip condition if all
4242 * the skip conditions are affine.
4244 static bool need_skip_aff(struct pet_scop *scop_then,
4245 struct pet_scop *scop_else, bool have_else, enum pet_skip type)
4247 if (scop_then && pet_scop_has_var_skip(scop_then, type))
4248 return true;
4249 if (have_else && scop_else && pet_scop_has_var_skip(scop_else, type))
4250 return true;
4251 return false;
4254 /* Do we need to construct a skip condition of the given type
4255 * on an if statement?
4257 static bool need_skip(struct pet_scop *scop_then, struct pet_scop *scop_else,
4258 bool have_else, enum pet_skip type, bool affine)
4260 if (affine)
4261 return need_skip_aff(scop_then, scop_else, have_else, type);
4262 else
4263 return need_skip(scop_then, scop_else, have_else, type);
4266 /* Construct an affine expression pet_expr that evaluates
4267 * to the constant "val".
4269 static struct pet_expr *universally(isl_ctx *ctx, int val)
4271 isl_local_space *ls;
4272 isl_aff *aff;
4273 isl_multi_pw_aff *mpa;
4275 ls = isl_local_space_from_space(isl_space_set_alloc(ctx, 0, 0));
4276 aff = isl_aff_val_on_domain(ls, isl_val_int_from_si(ctx, val));
4277 mpa = isl_multi_pw_aff_from_pw_aff(isl_pw_aff_from_aff(aff));
4279 return pet_expr_from_index(mpa);
4282 /* Construct an affine expression pet_expr that evaluates
4283 * to the constant 1.
4285 static struct pet_expr *universally_true(isl_ctx *ctx)
4287 return universally(ctx, 1);
4290 /* Construct an affine expression pet_expr that evaluates
4291 * to the constant 0.
4293 static struct pet_expr *universally_false(isl_ctx *ctx)
4295 return universally(ctx, 0);
4298 /* Given an index expression "test_index" for the if condition,
4299 * an index expression "skip_index" for the skip condition and
4300 * scops for the then and else branches, construct a scop for
4301 * computing "skip_index".
4303 * The computed scop contains a single statement that essentially does
4305 * skip_index = test_cond ? skip_cond_then : skip_cond_else
4307 * If the skip conditions of the then and/or else branch are not affine,
4308 * then they need to be filtered by test_index.
4309 * If they are missing, then this means the skip condition is false.
4311 * Since we are constructing a skip condition for the if statement,
4312 * the skip conditions on the then and else branches are removed.
4314 static struct pet_scop *extract_skip(PetScan *scan,
4315 __isl_take isl_multi_pw_aff *test_index,
4316 __isl_take isl_multi_pw_aff *skip_index,
4317 struct pet_scop *scop_then, struct pet_scop *scop_else, bool have_else,
4318 enum pet_skip type)
4320 struct pet_expr *expr_then, *expr_else, *expr, *expr_skip;
4321 struct pet_stmt *stmt;
4322 struct pet_scop *scop;
4323 isl_ctx *ctx = scan->ctx;
4325 if (!scop_then)
4326 goto error;
4327 if (have_else && !scop_else)
4328 goto error;
4330 if (pet_scop_has_skip(scop_then, type)) {
4331 expr_then = pet_scop_get_skip_expr(scop_then, type);
4332 pet_scop_reset_skip(scop_then, type);
4333 if (!pet_expr_is_affine(expr_then))
4334 expr_then = pet_expr_filter(expr_then,
4335 isl_multi_pw_aff_copy(test_index), 1);
4336 } else
4337 expr_then = universally_false(ctx);
4339 if (have_else && pet_scop_has_skip(scop_else, type)) {
4340 expr_else = pet_scop_get_skip_expr(scop_else, type);
4341 pet_scop_reset_skip(scop_else, type);
4342 if (!pet_expr_is_affine(expr_else))
4343 expr_else = pet_expr_filter(expr_else,
4344 isl_multi_pw_aff_copy(test_index), 0);
4345 } else
4346 expr_else = universally_false(ctx);
4348 expr = pet_expr_from_index(test_index);
4349 expr = pet_expr_new_ternary(ctx, expr, expr_then, expr_else);
4350 expr_skip = pet_expr_from_index(isl_multi_pw_aff_copy(skip_index));
4351 if (expr_skip) {
4352 expr_skip->acc.write = 1;
4353 expr_skip->acc.read = 0;
4355 expr = pet_expr_new_binary(ctx, pet_op_assign, expr_skip, expr);
4356 stmt = pet_stmt_from_pet_expr(ctx, -1, NULL, scan->n_stmt++, expr);
4358 scop = pet_scop_from_pet_stmt(ctx, stmt);
4359 scop = scop_add_array(scop, skip_index, scan->ast_context);
4360 isl_multi_pw_aff_free(skip_index);
4362 return scop;
4363 error:
4364 isl_multi_pw_aff_free(test_index);
4365 isl_multi_pw_aff_free(skip_index);
4366 return NULL;
4369 /* Is scop's skip_now condition equal to its skip_later condition?
4370 * In particular, this means that it either has no skip_now condition
4371 * or both a skip_now and a skip_later condition (that are equal to each other).
4373 static bool skip_equals_skip_later(struct pet_scop *scop)
4375 int has_skip_now, has_skip_later;
4376 int equal;
4377 isl_multi_pw_aff *skip_now, *skip_later;
4379 if (!scop)
4380 return false;
4381 has_skip_now = pet_scop_has_skip(scop, pet_skip_now);
4382 has_skip_later = pet_scop_has_skip(scop, pet_skip_later);
4383 if (has_skip_now != has_skip_later)
4384 return false;
4385 if (!has_skip_now)
4386 return true;
4388 skip_now = pet_scop_get_skip(scop, pet_skip_now);
4389 skip_later = pet_scop_get_skip(scop, pet_skip_later);
4390 equal = isl_multi_pw_aff_is_equal(skip_now, skip_later);
4391 isl_multi_pw_aff_free(skip_now);
4392 isl_multi_pw_aff_free(skip_later);
4394 return equal;
4397 /* Drop the skip conditions of type pet_skip_later from scop1 and scop2.
4399 static void drop_skip_later(struct pet_scop *scop1, struct pet_scop *scop2)
4401 pet_scop_reset_skip(scop1, pet_skip_later);
4402 pet_scop_reset_skip(scop2, pet_skip_later);
4405 /* Structure that handles the construction of skip conditions.
4407 * scop_then and scop_else represent the then and else branches
4408 * of the if statement
4410 * skip[type] is true if we need to construct a skip condition of that type
4411 * equal is set if the skip conditions of types pet_skip_now and pet_skip_later
4412 * are equal to each other
4413 * index[type] is an index expression from a zero-dimension domain
4414 * to the virtual array representing the skip condition
4415 * scop[type] is a scop for computing the skip condition
4417 struct pet_skip_info {
4418 isl_ctx *ctx;
4420 bool skip[2];
4421 bool equal;
4422 isl_multi_pw_aff *index[2];
4423 struct pet_scop *scop[2];
4425 pet_skip_info(isl_ctx *ctx) : ctx(ctx) {}
4427 operator bool() { return skip[pet_skip_now] || skip[pet_skip_later]; }
4430 /* Structure that handles the construction of skip conditions on if statements.
4432 * scop_then and scop_else represent the then and else branches
4433 * of the if statement
4435 struct pet_skip_info_if : public pet_skip_info {
4436 struct pet_scop *scop_then, *scop_else;
4437 bool have_else;
4439 pet_skip_info_if(isl_ctx *ctx, struct pet_scop *scop_then,
4440 struct pet_scop *scop_else, bool have_else, bool affine);
4441 void extract(PetScan *scan, __isl_keep isl_multi_pw_aff *index,
4442 enum pet_skip type);
4443 void extract(PetScan *scan, __isl_keep isl_multi_pw_aff *index);
4444 void extract(PetScan *scan, __isl_keep isl_pw_aff *cond);
4445 struct pet_scop *add(struct pet_scop *scop, enum pet_skip type,
4446 int offset);
4447 struct pet_scop *add(struct pet_scop *scop, int offset);
4450 /* Initialize a pet_skip_info_if structure based on the then and else branches
4451 * and based on whether the if condition is affine or not.
4453 pet_skip_info_if::pet_skip_info_if(isl_ctx *ctx, struct pet_scop *scop_then,
4454 struct pet_scop *scop_else, bool have_else, bool affine) :
4455 pet_skip_info(ctx), scop_then(scop_then), scop_else(scop_else),
4456 have_else(have_else)
4458 skip[pet_skip_now] =
4459 need_skip(scop_then, scop_else, have_else, pet_skip_now, affine);
4460 equal = skip[pet_skip_now] && skip_equals_skip_later(scop_then) &&
4461 (!have_else || skip_equals_skip_later(scop_else));
4462 skip[pet_skip_later] = skip[pet_skip_now] && !equal &&
4463 need_skip(scop_then, scop_else, have_else, pet_skip_later, affine);
4466 /* If we need to construct a skip condition of the given type,
4467 * then do so now.
4469 * "mpa" represents the if condition.
4471 void pet_skip_info_if::extract(PetScan *scan,
4472 __isl_keep isl_multi_pw_aff *mpa, enum pet_skip type)
4474 isl_ctx *ctx;
4476 if (!skip[type])
4477 return;
4479 ctx = isl_multi_pw_aff_get_ctx(mpa);
4480 index[type] = create_test_index(ctx, scan->n_test++);
4481 scop[type] = extract_skip(scan, isl_multi_pw_aff_copy(mpa),
4482 isl_multi_pw_aff_copy(index[type]),
4483 scop_then, scop_else, have_else, type);
4486 /* Construct the required skip conditions, given the if condition "index".
4488 void pet_skip_info_if::extract(PetScan *scan,
4489 __isl_keep isl_multi_pw_aff *index)
4491 extract(scan, index, pet_skip_now);
4492 extract(scan, index, pet_skip_later);
4493 if (equal)
4494 drop_skip_later(scop_then, scop_else);
4497 /* Construct the required skip conditions, given the if condition "cond".
4499 void pet_skip_info_if::extract(PetScan *scan, __isl_keep isl_pw_aff *cond)
4501 isl_multi_pw_aff *test;
4503 if (!skip[pet_skip_now] && !skip[pet_skip_later])
4504 return;
4506 test = isl_multi_pw_aff_from_pw_aff(isl_pw_aff_copy(cond));
4507 test = isl_multi_pw_aff_from_range(test);
4508 extract(scan, test);
4509 isl_multi_pw_aff_free(test);
4512 /* Add the computed skip condition of the give type to "main" and
4513 * add the scop for computing the condition at the given offset.
4515 * If equal is set, then we only computed a skip condition for pet_skip_now,
4516 * but we also need to set it as main's pet_skip_later.
4518 struct pet_scop *pet_skip_info_if::add(struct pet_scop *main,
4519 enum pet_skip type, int offset)
4521 if (!skip[type])
4522 return main;
4524 scop[type] = pet_scop_prefix(scop[type], offset);
4525 main = pet_scop_add_par(ctx, main, scop[type]);
4526 scop[type] = NULL;
4528 if (equal)
4529 main = pet_scop_set_skip(main, pet_skip_later,
4530 isl_multi_pw_aff_copy(index[type]));
4532 main = pet_scop_set_skip(main, type, index[type]);
4533 index[type] = NULL;
4535 return main;
4538 /* Add the computed skip conditions to "main" and
4539 * add the scops for computing the conditions at the given offset.
4541 struct pet_scop *pet_skip_info_if::add(struct pet_scop *scop, int offset)
4543 scop = add(scop, pet_skip_now, offset);
4544 scop = add(scop, pet_skip_later, offset);
4546 return scop;
4549 /* Construct a pet_scop for a non-affine if statement.
4551 * We create a separate statement that writes the result
4552 * of the non-affine condition to a virtual scalar.
4553 * A constraint requiring the value of this virtual scalar to be one
4554 * is added to the iteration domains of the then branch.
4555 * Similarly, a constraint requiring the value of this virtual scalar
4556 * to be zero is added to the iteration domains of the else branch, if any.
4557 * We adjust the schedules to ensure that the virtual scalar is written
4558 * before it is read.
4560 * If there are any breaks or continues in the then and/or else
4561 * branches, then we may have to compute a new skip condition.
4562 * This is handled using a pet_skip_info_if object.
4563 * On initialization, the object checks if skip conditions need
4564 * to be computed. If so, it does so in "extract" and adds them in "add".
4566 struct pet_scop *PetScan::extract_non_affine_if(Expr *cond,
4567 struct pet_scop *scop_then, struct pet_scop *scop_else,
4568 bool have_else, int stmt_id)
4570 struct pet_scop *scop;
4571 isl_multi_pw_aff *test_index;
4572 int save_n_stmt = n_stmt;
4574 test_index = create_test_index(ctx, n_test++);
4575 n_stmt = stmt_id;
4576 scop = extract_non_affine_condition(cond, n_stmt++,
4577 isl_multi_pw_aff_copy(test_index));
4578 n_stmt = save_n_stmt;
4579 scop = scop_add_array(scop, test_index, ast_context);
4581 pet_skip_info_if skip(ctx, scop_then, scop_else, have_else, false);
4582 skip.extract(this, test_index);
4584 scop = pet_scop_prefix(scop, 0);
4585 scop_then = pet_scop_prefix(scop_then, 1);
4586 scop_then = pet_scop_filter(scop_then,
4587 isl_multi_pw_aff_copy(test_index), 1);
4588 if (have_else) {
4589 scop_else = pet_scop_prefix(scop_else, 1);
4590 scop_else = pet_scop_filter(scop_else, test_index, 0);
4591 scop_then = pet_scop_add_par(ctx, scop_then, scop_else);
4592 } else
4593 isl_multi_pw_aff_free(test_index);
4595 scop = pet_scop_add_seq(ctx, scop, scop_then);
4597 scop = skip.add(scop, 2);
4599 return scop;
4602 /* Construct a pet_scop for an if statement.
4604 * If the condition fits the pattern of a conditional assignment,
4605 * then it is handled by extract_conditional_assignment.
4606 * Otherwise, we do the following.
4608 * If the condition is affine, then the condition is added
4609 * to the iteration domains of the then branch, while the
4610 * opposite of the condition in added to the iteration domains
4611 * of the else branch, if any.
4612 * We allow the condition to be dynamic, i.e., to refer to
4613 * scalars or array elements that may be written to outside
4614 * of the given if statement. These nested accesses are then represented
4615 * as output dimensions in the wrapping iteration domain.
4616 * If it also written _inside_ the then or else branch, then
4617 * we treat the condition as non-affine.
4618 * As explained in extract_non_affine_if, this will introduce
4619 * an extra statement.
4620 * For aesthetic reasons, we want this statement to have a statement
4621 * number that is lower than those of the then and else branches.
4622 * In order to evaluate if will need such a statement, however, we
4623 * first construct scops for the then and else branches.
4624 * We therefore reserve a statement number if we might have to
4625 * introduce such an extra statement.
4627 * If the condition is not affine, then the scop is created in
4628 * extract_non_affine_if.
4630 * If there are any breaks or continues in the then and/or else
4631 * branches, then we may have to compute a new skip condition.
4632 * This is handled using a pet_skip_info_if object.
4633 * On initialization, the object checks if skip conditions need
4634 * to be computed. If so, it does so in "extract" and adds them in "add".
4636 struct pet_scop *PetScan::extract(IfStmt *stmt)
4638 struct pet_scop *scop_then, *scop_else = NULL, *scop;
4639 isl_pw_aff *cond;
4640 int stmt_id;
4641 isl_set *set;
4642 isl_set *valid;
4644 scop = extract_conditional_assignment(stmt);
4645 if (scop)
4646 return scop;
4648 cond = try_extract_nested_condition(stmt->getCond());
4649 if (allow_nested && (!cond || has_nested(cond)))
4650 stmt_id = n_stmt++;
4653 assigned_value_cache cache(assigned_value);
4654 scop_then = extract(stmt->getThen());
4657 if (stmt->getElse()) {
4658 assigned_value_cache cache(assigned_value);
4659 scop_else = extract(stmt->getElse());
4660 if (options->autodetect) {
4661 if (scop_then && !scop_else) {
4662 partial = true;
4663 isl_pw_aff_free(cond);
4664 return scop_then;
4666 if (!scop_then && scop_else) {
4667 partial = true;
4668 isl_pw_aff_free(cond);
4669 return scop_else;
4674 if (cond &&
4675 (!is_nested_allowed(cond, scop_then) ||
4676 (stmt->getElse() && !is_nested_allowed(cond, scop_else)))) {
4677 isl_pw_aff_free(cond);
4678 cond = NULL;
4680 if (allow_nested && !cond)
4681 return extract_non_affine_if(stmt->getCond(), scop_then,
4682 scop_else, stmt->getElse(), stmt_id);
4684 if (!cond)
4685 cond = extract_condition(stmt->getCond());
4687 pet_skip_info_if skip(ctx, scop_then, scop_else, stmt->getElse(), true);
4688 skip.extract(this, cond);
4690 valid = isl_pw_aff_domain(isl_pw_aff_copy(cond));
4691 set = isl_pw_aff_non_zero_set(cond);
4692 scop = pet_scop_restrict(scop_then, isl_set_copy(set));
4694 if (stmt->getElse()) {
4695 set = isl_set_subtract(isl_set_copy(valid), set);
4696 scop_else = pet_scop_restrict(scop_else, set);
4697 scop = pet_scop_add_par(ctx, scop, scop_else);
4698 } else
4699 isl_set_free(set);
4700 scop = resolve_nested(scop);
4701 scop = pet_scop_restrict_context(scop, valid);
4703 if (skip)
4704 scop = pet_scop_prefix(scop, 0);
4705 scop = skip.add(scop, 1);
4707 return scop;
4710 /* Try and construct a pet_scop for a label statement.
4711 * We currently only allow labels on expression statements.
4713 struct pet_scop *PetScan::extract(LabelStmt *stmt)
4715 isl_id *label;
4716 Stmt *sub;
4718 sub = stmt->getSubStmt();
4719 if (!isa<Expr>(sub)) {
4720 unsupported(stmt);
4721 return NULL;
4724 label = isl_id_alloc(ctx, stmt->getName(), NULL);
4726 return extract(sub, extract_expr(cast<Expr>(sub)), label);
4729 /* Return a one-dimensional multi piecewise affine expression that is equal
4730 * to the constant 1 and is defined over a zero-dimensional domain.
4732 static __isl_give isl_multi_pw_aff *one_mpa(isl_ctx *ctx)
4734 isl_space *space;
4735 isl_local_space *ls;
4736 isl_aff *aff;
4738 space = isl_space_set_alloc(ctx, 0, 0);
4739 ls = isl_local_space_from_space(space);
4740 aff = isl_aff_zero_on_domain(ls);
4741 aff = isl_aff_set_constant_si(aff, 1);
4743 return isl_multi_pw_aff_from_pw_aff(isl_pw_aff_from_aff(aff));
4746 /* Construct a pet_scop for a continue statement.
4748 * We simply create an empty scop with a universal pet_skip_now
4749 * skip condition. This skip condition will then be taken into
4750 * account by the enclosing loop construct, possibly after
4751 * being incorporated into outer skip conditions.
4753 struct pet_scop *PetScan::extract(ContinueStmt *stmt)
4755 pet_scop *scop;
4757 scop = pet_scop_empty(ctx);
4758 if (!scop)
4759 return NULL;
4761 scop = pet_scop_set_skip(scop, pet_skip_now, one_mpa(ctx));
4763 return scop;
4766 /* Construct a pet_scop for a break statement.
4768 * We simply create an empty scop with both a universal pet_skip_now
4769 * skip condition and a universal pet_skip_later skip condition.
4770 * These skip conditions will then be taken into
4771 * account by the enclosing loop construct, possibly after
4772 * being incorporated into outer skip conditions.
4774 struct pet_scop *PetScan::extract(BreakStmt *stmt)
4776 pet_scop *scop;
4777 isl_multi_pw_aff *skip;
4779 scop = pet_scop_empty(ctx);
4780 if (!scop)
4781 return NULL;
4783 skip = one_mpa(ctx);
4784 scop = pet_scop_set_skip(scop, pet_skip_now,
4785 isl_multi_pw_aff_copy(skip));
4786 scop = pet_scop_set_skip(scop, pet_skip_later, skip);
4788 return scop;
4791 /* Try and construct a pet_scop corresponding to "stmt".
4793 * If "stmt" is a compound statement, then "skip_declarations"
4794 * indicates whether we should skip initial declarations in the
4795 * compound statement.
4797 * If the constructed pet_scop is not a (possibly) partial representation
4798 * of "stmt", we update start and end of the pet_scop to those of "stmt".
4799 * In particular, if skip_declarations, then we may have skipped declarations
4800 * inside "stmt" and so the pet_scop may not represent the entire "stmt".
4801 * Note that this function may be called with "stmt" referring to the entire
4802 * body of the function, including the outer braces. In such cases,
4803 * skip_declarations will be set and the braces will not be taken into
4804 * account in scop->start and scop->end.
4806 struct pet_scop *PetScan::extract(Stmt *stmt, bool skip_declarations)
4808 struct pet_scop *scop;
4809 unsigned start, end;
4810 SourceLocation loc;
4811 SourceManager &SM = PP.getSourceManager();
4812 const LangOptions &LO = PP.getLangOpts();
4814 if (isa<Expr>(stmt))
4815 return extract(stmt, extract_expr(cast<Expr>(stmt)));
4817 switch (stmt->getStmtClass()) {
4818 case Stmt::WhileStmtClass:
4819 scop = extract(cast<WhileStmt>(stmt));
4820 break;
4821 case Stmt::ForStmtClass:
4822 scop = extract_for(cast<ForStmt>(stmt));
4823 break;
4824 case Stmt::IfStmtClass:
4825 scop = extract(cast<IfStmt>(stmt));
4826 break;
4827 case Stmt::CompoundStmtClass:
4828 scop = extract(cast<CompoundStmt>(stmt), skip_declarations);
4829 break;
4830 case Stmt::LabelStmtClass:
4831 scop = extract(cast<LabelStmt>(stmt));
4832 break;
4833 case Stmt::ContinueStmtClass:
4834 scop = extract(cast<ContinueStmt>(stmt));
4835 break;
4836 case Stmt::BreakStmtClass:
4837 scop = extract(cast<BreakStmt>(stmt));
4838 break;
4839 case Stmt::DeclStmtClass:
4840 scop = extract(cast<DeclStmt>(stmt));
4841 break;
4842 default:
4843 unsupported(stmt);
4844 return NULL;
4847 if (partial || skip_declarations)
4848 return scop;
4850 loc = stmt->getLocStart();
4851 loc = move_to_start_of_line_if_first_token(loc, SM, LO);
4852 start = getExpansionOffset(SM, loc);
4853 loc = PP.getLocForEndOfToken(stmt->getLocEnd());
4854 end = getExpansionOffset(SM, loc);
4855 scop = pet_scop_update_start_end(scop, start, end);
4857 return scop;
4860 /* Do we need to construct a skip condition of the given type
4861 * on a sequence of statements?
4863 * There is no need to construct a new skip condition if only
4864 * only of the two statements has a skip condition or if both
4865 * of their skip conditions are affine.
4867 * In principle we also don't need a new continuation variable if
4868 * the continuation of scop2 is affine, but then we would need
4869 * to allow more complicated forms of continuations.
4871 static bool need_skip_seq(struct pet_scop *scop1, struct pet_scop *scop2,
4872 enum pet_skip type)
4874 if (!scop1 || !pet_scop_has_skip(scop1, type))
4875 return false;
4876 if (!scop2 || !pet_scop_has_skip(scop2, type))
4877 return false;
4878 if (pet_scop_has_affine_skip(scop1, type) &&
4879 pet_scop_has_affine_skip(scop2, type))
4880 return false;
4881 return true;
4884 /* Construct a scop for computing the skip condition of the given type and
4885 * with index expression "skip_index" for a sequence of two scops "scop1"
4886 * and "scop2".
4888 * The computed scop contains a single statement that essentially does
4890 * skip_index = skip_cond_1 ? 1 : skip_cond_2
4892 * or, in other words, skip_cond1 || skip_cond2.
4893 * In this expression, skip_cond_2 is filtered to reflect that it is
4894 * only evaluated when skip_cond_1 is false.
4896 * The skip condition on scop1 is not removed because it still needs
4897 * to be applied to scop2 when these two scops are combined.
4899 static struct pet_scop *extract_skip_seq(PetScan *ps,
4900 __isl_take isl_multi_pw_aff *skip_index,
4901 struct pet_scop *scop1, struct pet_scop *scop2, enum pet_skip type)
4903 struct pet_expr *expr1, *expr2, *expr, *expr_skip;
4904 struct pet_stmt *stmt;
4905 struct pet_scop *scop;
4906 isl_ctx *ctx = ps->ctx;
4908 if (!scop1 || !scop2)
4909 goto error;
4911 expr1 = pet_scop_get_skip_expr(scop1, type);
4912 expr2 = pet_scop_get_skip_expr(scop2, type);
4913 pet_scop_reset_skip(scop2, type);
4915 expr2 = pet_expr_filter(expr2,
4916 isl_multi_pw_aff_copy(expr1->acc.index), 0);
4918 expr = universally_true(ctx);
4919 expr = pet_expr_new_ternary(ctx, expr1, expr, expr2);
4920 expr_skip = pet_expr_from_index(isl_multi_pw_aff_copy(skip_index));
4921 if (expr_skip) {
4922 expr_skip->acc.write = 1;
4923 expr_skip->acc.read = 0;
4925 expr = pet_expr_new_binary(ctx, pet_op_assign, expr_skip, expr);
4926 stmt = pet_stmt_from_pet_expr(ctx, -1, NULL, ps->n_stmt++, expr);
4928 scop = pet_scop_from_pet_stmt(ctx, stmt);
4929 scop = scop_add_array(scop, skip_index, ps->ast_context);
4930 isl_multi_pw_aff_free(skip_index);
4932 return scop;
4933 error:
4934 isl_multi_pw_aff_free(skip_index);
4935 return NULL;
4938 /* Structure that handles the construction of skip conditions
4939 * on sequences of statements.
4941 * scop1 and scop2 represent the two statements that are combined
4943 struct pet_skip_info_seq : public pet_skip_info {
4944 struct pet_scop *scop1, *scop2;
4946 pet_skip_info_seq(isl_ctx *ctx, struct pet_scop *scop1,
4947 struct pet_scop *scop2);
4948 void extract(PetScan *scan, enum pet_skip type);
4949 void extract(PetScan *scan);
4950 struct pet_scop *add(struct pet_scop *scop, enum pet_skip type,
4951 int offset);
4952 struct pet_scop *add(struct pet_scop *scop, int offset);
4955 /* Initialize a pet_skip_info_seq structure based on
4956 * on the two statements that are going to be combined.
4958 pet_skip_info_seq::pet_skip_info_seq(isl_ctx *ctx, struct pet_scop *scop1,
4959 struct pet_scop *scop2) : pet_skip_info(ctx), scop1(scop1), scop2(scop2)
4961 skip[pet_skip_now] = need_skip_seq(scop1, scop2, pet_skip_now);
4962 equal = skip[pet_skip_now] && skip_equals_skip_later(scop1) &&
4963 skip_equals_skip_later(scop2);
4964 skip[pet_skip_later] = skip[pet_skip_now] && !equal &&
4965 need_skip_seq(scop1, scop2, pet_skip_later);
4968 /* If we need to construct a skip condition of the given type,
4969 * then do so now.
4971 void pet_skip_info_seq::extract(PetScan *scan, enum pet_skip type)
4973 if (!skip[type])
4974 return;
4976 index[type] = create_test_index(ctx, scan->n_test++);
4977 scop[type] = extract_skip_seq(scan, isl_multi_pw_aff_copy(index[type]),
4978 scop1, scop2, type);
4981 /* Construct the required skip conditions.
4983 void pet_skip_info_seq::extract(PetScan *scan)
4985 extract(scan, pet_skip_now);
4986 extract(scan, pet_skip_later);
4987 if (equal)
4988 drop_skip_later(scop1, scop2);
4991 /* Add the computed skip condition of the given type to "main" and
4992 * add the scop for computing the condition at the given offset (the statement
4993 * number). Within this offset, the condition is computed at position 1
4994 * to ensure that it is computed after the corresponding statement.
4996 * If equal is set, then we only computed a skip condition for pet_skip_now,
4997 * but we also need to set it as main's pet_skip_later.
4999 struct pet_scop *pet_skip_info_seq::add(struct pet_scop *main,
5000 enum pet_skip type, int offset)
5002 if (!skip[type])
5003 return main;
5005 scop[type] = pet_scop_prefix(scop[type], 1);
5006 scop[type] = pet_scop_prefix(scop[type], offset);
5007 main = pet_scop_add_par(ctx, main, scop[type]);
5008 scop[type] = NULL;
5010 if (equal)
5011 main = pet_scop_set_skip(main, pet_skip_later,
5012 isl_multi_pw_aff_copy(index[type]));
5014 main = pet_scop_set_skip(main, type, index[type]);
5015 index[type] = NULL;
5017 return main;
5020 /* Add the computed skip conditions to "main" and
5021 * add the scops for computing the conditions at the given offset.
5023 struct pet_scop *pet_skip_info_seq::add(struct pet_scop *scop, int offset)
5025 scop = add(scop, pet_skip_now, offset);
5026 scop = add(scop, pet_skip_later, offset);
5028 return scop;
5031 /* Extract a clone of the kill statement in "scop".
5032 * "scop" is expected to have been created from a DeclStmt
5033 * and should have the kill as its first statement.
5035 struct pet_stmt *PetScan::extract_kill(struct pet_scop *scop)
5037 struct pet_expr *kill;
5038 struct pet_stmt *stmt;
5039 isl_multi_pw_aff *index;
5040 isl_map *access;
5042 if (!scop)
5043 return NULL;
5044 if (scop->n_stmt < 1)
5045 isl_die(ctx, isl_error_internal,
5046 "expecting at least one statement", return NULL);
5047 stmt = scop->stmts[0];
5048 if (stmt->body->type != pet_expr_unary ||
5049 stmt->body->op != pet_op_kill)
5050 isl_die(ctx, isl_error_internal,
5051 "expecting kill statement", return NULL);
5053 index = isl_multi_pw_aff_copy(stmt->body->args[0]->acc.index);
5054 access = isl_map_copy(stmt->body->args[0]->acc.access);
5055 index = isl_multi_pw_aff_reset_tuple_id(index, isl_dim_in);
5056 access = isl_map_reset_tuple_id(access, isl_dim_in);
5057 kill = pet_expr_kill_from_access_and_index(access, index);
5058 return pet_stmt_from_pet_expr(ctx, stmt->line, NULL, n_stmt++, kill);
5061 /* Mark all arrays in "scop" as being exposed.
5063 static struct pet_scop *mark_exposed(struct pet_scop *scop)
5065 if (!scop)
5066 return NULL;
5067 for (int i = 0; i < scop->n_array; ++i)
5068 scop->arrays[i]->exposed = 1;
5069 return scop;
5072 /* Try and construct a pet_scop corresponding to (part of)
5073 * a sequence of statements.
5075 * "block" is set if the sequence respresents the children of
5076 * a compound statement.
5077 * "skip_declarations" is set if we should skip initial declarations
5078 * in the sequence of statements.
5080 * If there are any breaks or continues in the individual statements,
5081 * then we may have to compute a new skip condition.
5082 * This is handled using a pet_skip_info_seq object.
5083 * On initialization, the object checks if skip conditions need
5084 * to be computed. If so, it does so in "extract" and adds them in "add".
5086 * If "block" is set, then we need to insert kill statements at
5087 * the end of the block for any array that has been declared by
5088 * one of the statements in the sequence. Each of these declarations
5089 * results in the construction of a kill statement at the place
5090 * of the declaration, so we simply collect duplicates of
5091 * those kill statements and append these duplicates to the constructed scop.
5093 * If "block" is not set, then any array declared by one of the statements
5094 * in the sequence is marked as being exposed.
5096 * If autodetect is set, then we allow the extraction of only a subrange
5097 * of the sequence of statements. However, if there is at least one statement
5098 * for which we could not construct a scop and the final range contains
5099 * either no statements or at least one kill, then we discard the entire
5100 * range.
5102 struct pet_scop *PetScan::extract(StmtRange stmt_range, bool block,
5103 bool skip_declarations)
5105 pet_scop *scop;
5106 StmtIterator i;
5107 int j;
5108 bool partial_range = false;
5109 set<struct pet_stmt *> kills;
5110 set<struct pet_stmt *>::iterator it;
5112 scop = pet_scop_empty(ctx);
5113 for (i = stmt_range.first, j = 0; i != stmt_range.second; ++i, ++j) {
5114 Stmt *child = *i;
5115 struct pet_scop *scop_i;
5117 if (skip_declarations &&
5118 child->getStmtClass() == Stmt::DeclStmtClass)
5119 continue;
5121 scop_i = extract(child);
5122 if (scop->n_stmt != 0 && partial) {
5123 pet_scop_free(scop_i);
5124 break;
5126 pet_skip_info_seq skip(ctx, scop, scop_i);
5127 skip.extract(this);
5128 if (skip)
5129 scop_i = pet_scop_prefix(scop_i, 0);
5130 if (scop_i && child->getStmtClass() == Stmt::DeclStmtClass) {
5131 if (block)
5132 kills.insert(extract_kill(scop_i));
5133 else
5134 scop_i = mark_exposed(scop_i);
5136 scop_i = pet_scop_prefix(scop_i, j);
5137 if (options->autodetect) {
5138 if (scop_i)
5139 scop = pet_scop_add_seq(ctx, scop, scop_i);
5140 else
5141 partial_range = true;
5142 if (scop->n_stmt != 0 && !scop_i)
5143 partial = true;
5144 } else {
5145 scop = pet_scop_add_seq(ctx, scop, scop_i);
5148 scop = skip.add(scop, j);
5150 if (partial || !scop)
5151 break;
5154 for (it = kills.begin(); it != kills.end(); ++it) {
5155 pet_scop *scop_j;
5156 scop_j = pet_scop_from_pet_stmt(ctx, *it);
5157 scop_j = pet_scop_prefix(scop_j, j);
5158 scop = pet_scop_add_seq(ctx, scop, scop_j);
5161 if (scop && partial_range) {
5162 if (scop->n_stmt == 0 || kills.size() != 0) {
5163 pet_scop_free(scop);
5164 return NULL;
5166 partial = true;
5169 return scop;
5172 /* Check if the scop marked by the user is exactly this Stmt
5173 * or part of this Stmt.
5174 * If so, return a pet_scop corresponding to the marked region.
5175 * Otherwise, return NULL.
5177 struct pet_scop *PetScan::scan(Stmt *stmt)
5179 SourceManager &SM = PP.getSourceManager();
5180 unsigned start_off, end_off;
5182 start_off = getExpansionOffset(SM, stmt->getLocStart());
5183 end_off = getExpansionOffset(SM, stmt->getLocEnd());
5185 if (start_off > loc.end)
5186 return NULL;
5187 if (end_off < loc.start)
5188 return NULL;
5189 if (start_off >= loc.start && end_off <= loc.end) {
5190 return extract(stmt);
5193 StmtIterator start;
5194 for (start = stmt->child_begin(); start != stmt->child_end(); ++start) {
5195 Stmt *child = *start;
5196 if (!child)
5197 continue;
5198 start_off = getExpansionOffset(SM, child->getLocStart());
5199 end_off = getExpansionOffset(SM, child->getLocEnd());
5200 if (start_off < loc.start && end_off >= loc.end)
5201 return scan(child);
5202 if (start_off >= loc.start)
5203 break;
5206 StmtIterator end;
5207 for (end = start; end != stmt->child_end(); ++end) {
5208 Stmt *child = *end;
5209 start_off = SM.getFileOffset(child->getLocStart());
5210 if (start_off >= loc.end)
5211 break;
5214 return extract(StmtRange(start, end), false, false);
5217 /* Set the size of index "pos" of "array" to "size".
5218 * In particular, add a constraint of the form
5220 * i_pos < size
5222 * to array->extent and a constraint of the form
5224 * size >= 0
5226 * to array->context.
5228 static struct pet_array *update_size(struct pet_array *array, int pos,
5229 __isl_take isl_pw_aff *size)
5231 isl_set *valid;
5232 isl_set *univ;
5233 isl_set *bound;
5234 isl_space *dim;
5235 isl_aff *aff;
5236 isl_pw_aff *index;
5237 isl_id *id;
5239 valid = isl_pw_aff_nonneg_set(isl_pw_aff_copy(size));
5240 array->context = isl_set_intersect(array->context, valid);
5242 dim = isl_set_get_space(array->extent);
5243 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
5244 aff = isl_aff_add_coefficient_si(aff, isl_dim_in, pos, 1);
5245 univ = isl_set_universe(isl_aff_get_domain_space(aff));
5246 index = isl_pw_aff_alloc(univ, aff);
5248 size = isl_pw_aff_add_dims(size, isl_dim_in,
5249 isl_set_dim(array->extent, isl_dim_set));
5250 id = isl_set_get_tuple_id(array->extent);
5251 size = isl_pw_aff_set_tuple_id(size, isl_dim_in, id);
5252 bound = isl_pw_aff_lt_set(index, size);
5254 array->extent = isl_set_intersect(array->extent, bound);
5256 if (!array->context || !array->extent)
5257 goto error;
5259 return array;
5260 error:
5261 pet_array_free(array);
5262 return NULL;
5265 /* Figure out the size of the array at position "pos" and all
5266 * subsequent positions from "type" and update "array" accordingly.
5268 struct pet_array *PetScan::set_upper_bounds(struct pet_array *array,
5269 const Type *type, int pos)
5271 const ArrayType *atype;
5272 isl_pw_aff *size;
5274 if (!array)
5275 return NULL;
5277 if (type->isPointerType()) {
5278 type = type->getPointeeType().getTypePtr();
5279 return set_upper_bounds(array, type, pos + 1);
5281 if (!type->isArrayType())
5282 return array;
5284 type = type->getCanonicalTypeInternal().getTypePtr();
5285 atype = cast<ArrayType>(type);
5287 if (type->isConstantArrayType()) {
5288 const ConstantArrayType *ca = cast<ConstantArrayType>(atype);
5289 size = extract_affine(ca->getSize());
5290 array = update_size(array, pos, size);
5291 } else if (type->isVariableArrayType()) {
5292 const VariableArrayType *vla = cast<VariableArrayType>(atype);
5293 size = extract_affine(vla->getSizeExpr());
5294 array = update_size(array, pos, size);
5297 type = atype->getElementType().getTypePtr();
5299 return set_upper_bounds(array, type, pos + 1);
5302 /* Is "T" the type of a variable length array with static size?
5304 static bool is_vla_with_static_size(QualType T)
5306 const VariableArrayType *vlatype;
5308 if (!T->isVariableArrayType())
5309 return false;
5310 vlatype = cast<VariableArrayType>(T);
5311 return vlatype->getSizeModifier() == VariableArrayType::Static;
5314 /* Return the type of "decl" as an array.
5316 * In particular, if "decl" is a parameter declaration that
5317 * is a variable length array with a static size, then
5318 * return the original type (i.e., the variable length array).
5319 * Otherwise, return the type of decl.
5321 static QualType get_array_type(ValueDecl *decl)
5323 ParmVarDecl *parm;
5324 QualType T;
5326 parm = dyn_cast<ParmVarDecl>(decl);
5327 if (!parm)
5328 return decl->getType();
5330 T = parm->getOriginalType();
5331 if (!is_vla_with_static_size(T))
5332 return decl->getType();
5333 return T;
5336 /* Does "decl" have definition that we can keep track of in a pet_type?
5338 static bool has_printable_definition(RecordDecl *decl)
5340 if (!decl->getDeclName())
5341 return false;
5342 return decl->getLexicalDeclContext() == decl->getDeclContext();
5345 /* Construct and return a pet_array corresponding to the variable "decl".
5346 * In particular, initialize array->extent to
5348 * { name[i_1,...,i_d] : i_1,...,i_d >= 0 }
5350 * and then call set_upper_bounds to set the upper bounds on the indices
5351 * based on the type of the variable.
5353 * If the base type is that of a record with a top-level definition and
5354 * if "types" is not null, then the RecordDecl corresponding to the type
5355 * is added to "types".
5357 * If the base type is that of a record with no top-level definition,
5358 * then we replace it by "<subfield>".
5360 struct pet_array *PetScan::extract_array(isl_ctx *ctx, ValueDecl *decl,
5361 lex_recorddecl_set *types)
5363 struct pet_array *array;
5364 QualType qt = get_array_type(decl);
5365 const Type *type = qt.getTypePtr();
5366 int depth = array_depth(type);
5367 QualType base = pet_clang_base_type(qt);
5368 string name;
5369 isl_id *id;
5370 isl_space *dim;
5372 array = isl_calloc_type(ctx, struct pet_array);
5373 if (!array)
5374 return NULL;
5376 id = isl_id_alloc(ctx, decl->getName().str().c_str(), decl);
5377 dim = isl_space_set_alloc(ctx, 0, depth);
5378 dim = isl_space_set_tuple_id(dim, isl_dim_set, id);
5380 array->extent = isl_set_nat_universe(dim);
5382 dim = isl_space_params_alloc(ctx, 0);
5383 array->context = isl_set_universe(dim);
5385 array = set_upper_bounds(array, type, 0);
5386 if (!array)
5387 return NULL;
5389 name = base.getAsString();
5391 if (types && base->isRecordType()) {
5392 RecordDecl *decl = pet_clang_record_decl(base);
5393 if (has_printable_definition(decl))
5394 types->insert(decl);
5395 else
5396 name = "<subfield>";
5399 array->element_type = strdup(name.c_str());
5400 array->element_is_record = base->isRecordType();
5401 array->element_size = decl->getASTContext().getTypeInfo(base).first / 8;
5403 return array;
5406 /* Construct and return a pet_array corresponding to the sequence
5407 * of declarations "decls".
5408 * If the sequence contains a single declaration, then it corresponds
5409 * to a simple array access. Otherwise, it corresponds to a member access,
5410 * with the declaration for the substructure following that of the containing
5411 * structure in the sequence of declarations.
5412 * We start with the outermost substructure and then combine it with
5413 * information from the inner structures.
5415 * Additionally, keep track of all required types in "types".
5417 struct pet_array *PetScan::extract_array(isl_ctx *ctx,
5418 vector<ValueDecl *> decls, lex_recorddecl_set *types)
5420 struct pet_array *array;
5421 vector<ValueDecl *>::iterator it;
5423 it = decls.begin();
5425 array = extract_array(ctx, *it, types);
5427 for (++it; it != decls.end(); ++it) {
5428 struct pet_array *parent;
5429 const char *base_name, *field_name;
5430 char *product_name;
5432 parent = array;
5433 array = extract_array(ctx, *it, types);
5434 if (!array)
5435 return pet_array_free(parent);
5437 base_name = isl_set_get_tuple_name(parent->extent);
5438 field_name = isl_set_get_tuple_name(array->extent);
5439 product_name = member_access_name(ctx, base_name, field_name);
5441 array->extent = isl_set_product(isl_set_copy(parent->extent),
5442 array->extent);
5443 if (product_name)
5444 array->extent = isl_set_set_tuple_name(array->extent,
5445 product_name);
5446 array->context = isl_set_intersect(array->context,
5447 isl_set_copy(parent->context));
5449 pet_array_free(parent);
5450 free(product_name);
5452 if (!array->extent || !array->context || !product_name)
5453 return pet_array_free(array);
5456 return array;
5459 /* Add a pet_type corresponding to "decl" to "scop, provided
5460 * it is a member of "types" and it has not been added before
5461 * (i.e., it is not a member of "types_done".
5463 * Since we want the user to be able to print the types
5464 * in the order in which they appear in the scop, we need to
5465 * make sure that types of fields in a structure appear before
5466 * that structure. We therefore call ourselves recursively
5467 * on the types of all record subfields.
5469 static struct pet_scop *add_type(isl_ctx *ctx, struct pet_scop *scop,
5470 RecordDecl *decl, Preprocessor &PP, lex_recorddecl_set &types,
5471 lex_recorddecl_set &types_done)
5473 string s;
5474 llvm::raw_string_ostream S(s);
5475 RecordDecl::field_iterator it;
5477 if (types.find(decl) == types.end())
5478 return scop;
5479 if (types_done.find(decl) != types_done.end())
5480 return scop;
5482 for (it = decl->field_begin(); it != decl->field_end(); ++it) {
5483 RecordDecl *record;
5484 QualType type = it->getType();
5486 if (!type->isRecordType())
5487 continue;
5488 record = pet_clang_record_decl(type);
5489 scop = add_type(ctx, scop, record, PP, types, types_done);
5492 if (strlen(decl->getName().str().c_str()) == 0)
5493 return scop;
5495 decl->print(S, PrintingPolicy(PP.getLangOpts()));
5496 S.str();
5498 scop->types[scop->n_type] = pet_type_alloc(ctx,
5499 decl->getName().str().c_str(), s.c_str());
5500 if (!scop->types[scop->n_type])
5501 return pet_scop_free(scop);
5503 types_done.insert(decl);
5505 scop->n_type++;
5507 return scop;
5510 /* Construct a list of pet_arrays, one for each array (or scalar)
5511 * accessed inside "scop", add this list to "scop" and return the result.
5513 * The context of "scop" is updated with the intersection of
5514 * the contexts of all arrays, i.e., constraints on the parameters
5515 * that ensure that the arrays have a valid (non-negative) size.
5517 * If the any of the extracted arrays refers to a member access,
5518 * then also add the required types to "scop".
5520 struct pet_scop *PetScan::scan_arrays(struct pet_scop *scop)
5522 int i;
5523 set<vector<ValueDecl *> > arrays;
5524 set<vector<ValueDecl *> >::iterator it;
5525 lex_recorddecl_set types;
5526 lex_recorddecl_set types_done;
5527 lex_recorddecl_set::iterator types_it;
5528 int n_array;
5529 struct pet_array **scop_arrays;
5531 if (!scop)
5532 return NULL;
5534 pet_scop_collect_arrays(scop, arrays);
5535 if (arrays.size() == 0)
5536 return scop;
5538 n_array = scop->n_array;
5540 scop_arrays = isl_realloc_array(ctx, scop->arrays, struct pet_array *,
5541 n_array + arrays.size());
5542 if (!scop_arrays)
5543 goto error;
5544 scop->arrays = scop_arrays;
5546 for (it = arrays.begin(), i = 0; it != arrays.end(); ++it, ++i) {
5547 struct pet_array *array;
5548 array = extract_array(ctx, *it, &types);
5549 scop->arrays[n_array + i] = array;
5550 if (!scop->arrays[n_array + i])
5551 goto error;
5552 scop->n_array++;
5553 scop->context = isl_set_intersect(scop->context,
5554 isl_set_copy(array->context));
5555 if (!scop->context)
5556 goto error;
5559 if (types.size() == 0)
5560 return scop;
5562 scop->types = isl_alloc_array(ctx, struct pet_type *, types.size());
5563 if (!scop->types)
5564 goto error;
5566 for (types_it = types.begin(); types_it != types.end(); ++types_it)
5567 scop = add_type(ctx, scop, *types_it, PP, types, types_done);
5569 return scop;
5570 error:
5571 pet_scop_free(scop);
5572 return NULL;
5575 /* Bound all parameters in scop->context to the possible values
5576 * of the corresponding C variable.
5578 static struct pet_scop *add_parameter_bounds(struct pet_scop *scop)
5580 int n;
5582 if (!scop)
5583 return NULL;
5585 n = isl_set_dim(scop->context, isl_dim_param);
5586 for (int i = 0; i < n; ++i) {
5587 isl_id *id;
5588 ValueDecl *decl;
5590 id = isl_set_get_dim_id(scop->context, isl_dim_param, i);
5591 if (is_nested_parameter(id)) {
5592 isl_id_free(id);
5593 isl_die(isl_set_get_ctx(scop->context),
5594 isl_error_internal,
5595 "unresolved nested parameter", goto error);
5597 decl = (ValueDecl *) isl_id_get_user(id);
5598 isl_id_free(id);
5600 scop->context = set_parameter_bounds(scop->context, i, decl);
5602 if (!scop->context)
5603 goto error;
5606 return scop;
5607 error:
5608 pet_scop_free(scop);
5609 return NULL;
5612 /* Construct a pet_scop from the given function.
5614 * If the scop was delimited by scop and endscop pragmas, then we override
5615 * the file offsets by those derived from the pragmas.
5617 struct pet_scop *PetScan::scan(FunctionDecl *fd)
5619 pet_scop *scop;
5620 Stmt *stmt;
5622 stmt = fd->getBody();
5624 if (options->autodetect)
5625 scop = extract(stmt, true);
5626 else {
5627 scop = scan(stmt);
5628 scop = pet_scop_update_start_end(scop, loc.start, loc.end);
5630 scop = pet_scop_detect_parameter_accesses(scop);
5631 scop = scan_arrays(scop);
5632 scop = add_parameter_bounds(scop);
5633 scop = pet_scop_gist(scop, value_bounds);
5635 return scop;