blob: 209ae66ca53e3617e3c272a0744311dae93c73a1 [file] [log] [blame]
Nick Lewyckyaf508372016-04-24 17:55:41 +00001//===- ScalarEvolutionNormalization.cpp - See below -----------------------===//
Dan Gohmand006ab92010-04-07 22:27:08 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Dan Gohmand006ab92010-04-07 22:27:08 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file implements utilities for working with "normalized" expressions.
10// See the comments at the top of ScalarEvolutionNormalization.h for details.
11//
12//===----------------------------------------------------------------------===//
13
Chandler Carruth6bda14b2017-06-06 11:49:48 +000014#include "llvm/Analysis/ScalarEvolutionNormalization.h"
Dan Gohmand006ab92010-04-07 22:27:08 +000015#include "llvm/Analysis/LoopInfo.h"
16#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Dan Gohmand006ab92010-04-07 22:27:08 +000017using namespace llvm;
18
Sanjoy Dase3a15e82017-04-14 15:49:59 +000019/// TransformKind - Different types of transformations that
20/// TransformForPostIncUse can do.
21enum TransformKind {
22 /// Normalize - Normalize according to the given loops.
23 Normalize,
24 /// Denormalize - Perform the inverse transform on the expression with the
25 /// given loop set.
26 Denormalize
27};
28
Sanjoy Das3470e142017-04-14 17:42:10 +000029namespace {
30struct NormalizeDenormalizeRewriter
31 : public SCEVRewriteVisitor<NormalizeDenormalizeRewriter> {
32 const TransformKind Kind;
Andrew Trick1393ec22011-10-13 17:21:09 +000033
Sanjoy Das3470e142017-04-14 17:42:10 +000034 // NB! Pred is a function_ref. Storing it here is okay only because
35 // we're careful about the lifetime of NormalizeDenormalizeRewriter.
36 const NormalizePredTy Pred;
Andrew Trick1393ec22011-10-13 17:21:09 +000037
Sanjoy Das3470e142017-04-14 17:42:10 +000038 NormalizeDenormalizeRewriter(TransformKind Kind, NormalizePredTy Pred,
39 ScalarEvolution &SE)
40 : SCEVRewriteVisitor<NormalizeDenormalizeRewriter>(SE), Kind(Kind),
41 Pred(Pred) {}
42 const SCEV *visitAddRecExpr(const SCEVAddRecExpr *Expr);
43};
44} // namespace
Dan Gohmand1488fd2010-07-20 16:32:11 +000045
Sanjoy Das3470e142017-04-14 17:42:10 +000046const SCEV *
47NormalizeDenormalizeRewriter::visitAddRecExpr(const SCEVAddRecExpr *AR) {
48 SmallVector<const SCEV *, 8> Operands;
Sanjoy Das62f4b6b2017-04-14 01:33:13 +000049
Sanjoy Das3470e142017-04-14 17:42:10 +000050 transform(AR->operands(), std::back_inserter(Operands),
51 [&](const SCEV *Op) { return visit(Op); });
Sanjoy Das62f4b6b2017-04-14 01:33:13 +000052
Sanjoy Dasbbebcb62017-04-25 00:09:19 +000053 if (!Pred(AR))
54 return SE.getAddRecExpr(Operands, AR->getLoop(), SCEV::FlagAnyWrap);
55
56 // Normalization and denormalization are fancy names for decrementing and
57 // incrementing a SCEV expression with respect to a set of loops. Since
58 // Pred(AR) has returned true, we know we need to normalize or denormalize AR
59 // with respect to its loop.
60
61 if (Kind == Denormalize) {
62 // Denormalization / "partial increment" is essentially the same as \c
63 // SCEVAddRecExpr::getPostIncExpr. Here we use an explicit loop to make the
64 // symmetry with Normalization clear.
65 for (int i = 0, e = Operands.size() - 1; i < e; i++)
66 Operands[i] = SE.getAddExpr(Operands[i], Operands[i + 1]);
67 } else {
68 assert(Kind == Normalize && "Only two possibilities!");
69
70 // Normalization / "partial decrement" is a bit more subtle. Since
71 // incrementing a SCEV expression (in general) changes the step of the SCEV
72 // expression as well, we cannot use the step of the current expression.
73 // Instead, we have to use the step of the very expression we're trying to
74 // compute!
Sanjoy Das3470e142017-04-14 17:42:10 +000075 //
Sanjoy Dasbbebcb62017-04-25 00:09:19 +000076 // We solve the issue by recursively building up the result, starting from
77 // the "least significant" operand in the add recurrence:
78 //
79 // Base case:
80 // Single operand add recurrence. It's its own normalization.
81 //
82 // N-operand case:
83 // {S_{N-1},+,S_{N-2},+,...,+,S_0} = S
84 //
85 // Since the step recurrence of S is {S_{N-2},+,...,+,S_0}, we know its
86 // normalization by induction. We subtract the normalized step
87 // recurrence from S_{N-1} to get the normalization of S.
88
89 for (int i = Operands.size() - 2; i >= 0; i--)
90 Operands[i] = SE.getMinusSCEV(Operands[i], Operands[i + 1]);
Dan Gohmand006ab92010-04-07 22:27:08 +000091 }
Sanjoy Dasbbebcb62017-04-25 00:09:19 +000092
93 return SE.getAddRecExpr(Operands, AR->getLoop(), SCEV::FlagAnyWrap);
Andrew Trick1393ec22011-10-13 17:21:09 +000094}
95
Sanjoy Dase3a15e82017-04-14 15:49:59 +000096const SCEV *llvm::normalizeForPostIncUse(const SCEV *S,
97 const PostIncLoopSet &Loops,
98 ScalarEvolution &SE) {
Sanjoy Dasc5a87a12017-04-14 15:50:07 +000099 auto Pred = [&](const SCEVAddRecExpr *AR) {
100 return Loops.count(AR->getLoop());
101 };
Sanjoy Das3470e142017-04-14 17:42:10 +0000102 return NormalizeDenormalizeRewriter(Normalize, Pred, SE).visit(S);
Sanjoy Dase3a15e82017-04-14 15:49:59 +0000103}
104
105const SCEV *llvm::normalizeForPostIncUseIf(const SCEV *S, NormalizePredTy Pred,
106 ScalarEvolution &SE) {
Sanjoy Das3470e142017-04-14 17:42:10 +0000107 return NormalizeDenormalizeRewriter(Normalize, Pred, SE).visit(S);
Sanjoy Dase3a15e82017-04-14 15:49:59 +0000108}
109
110const SCEV *llvm::denormalizeForPostIncUse(const SCEV *S,
111 const PostIncLoopSet &Loops,
112 ScalarEvolution &SE) {
Sanjoy Dasc5a87a12017-04-14 15:50:07 +0000113 auto Pred = [&](const SCEVAddRecExpr *AR) {
114 return Loops.count(AR->getLoop());
115 };
Sanjoy Das3470e142017-04-14 17:42:10 +0000116 return NormalizeDenormalizeRewriter(Denormalize, Pred, SE).visit(S);
Sanjoy Dase3a15e82017-04-14 15:49:59 +0000117}