13b11a16aSHongbin Zheng //===--- BlockGenerators.cpp - Generate code for statements -----*- C++ -*-===//
23b11a16aSHongbin Zheng //
33b11a16aSHongbin Zheng //                     The LLVM Compiler Infrastructure
43b11a16aSHongbin Zheng //
53b11a16aSHongbin Zheng // This file is distributed under the University of Illinois Open Source
63b11a16aSHongbin Zheng // License. See LICENSE.TXT for details.
73b11a16aSHongbin Zheng //
83b11a16aSHongbin Zheng //===----------------------------------------------------------------------===//
93b11a16aSHongbin Zheng //
103b11a16aSHongbin Zheng // This file implements the BlockGenerator and VectorBlockGenerator classes,
113b11a16aSHongbin Zheng // which generate sequential code and vectorized code for a polyhedral
123b11a16aSHongbin Zheng // statement, respectively.
133b11a16aSHongbin Zheng //
143b11a16aSHongbin Zheng //===----------------------------------------------------------------------===//
153b11a16aSHongbin Zheng 
163b11a16aSHongbin Zheng #include "polly/ScopInfo.h"
1783628182STobias Grosser #include "isl/aff.h"
18a63b2579SJohannes Doerfert #include "isl/ast.h"
19a63b2579SJohannes Doerfert #include "isl/ast_build.h"
2083628182STobias Grosser #include "isl/set.h"
218a846610SHongbin Zheng #include "polly/CodeGen/BlockGenerators.h"
2283628182STobias Grosser #include "polly/CodeGen/CodeGeneration.h"
23a63b2579SJohannes Doerfert #include "polly/CodeGen/IslExprBuilder.h"
24637bd631STobias Grosser #include "polly/Options.h"
253b11a16aSHongbin Zheng #include "polly/Support/GICHelper.h"
2697cb813cSSebastian Pop #include "polly/Support/SCEVValidator.h"
27ecfe21b7STobias Grosser #include "polly/Support/ScopHelper.h"
28e71c6ab5STobias Grosser #include "llvm/Analysis/LoopInfo.h"
29e71c6ab5STobias Grosser #include "llvm/Analysis/ScalarEvolution.h"
30e71c6ab5STobias Grosser #include "llvm/Analysis/ScalarEvolutionExpander.h"
31030237d0STobias Grosser #include "llvm/IR/IntrinsicInst.h"
323b11a16aSHongbin Zheng #include "llvm/Transforms/Utils/BasicBlockUtils.h"
333b11a16aSHongbin Zheng 
343b11a16aSHongbin Zheng using namespace llvm;
353b11a16aSHongbin Zheng using namespace polly;
363b11a16aSHongbin Zheng 
37878aba49STobias Grosser static cl::opt<bool> Aligned("enable-polly-aligned",
38878aba49STobias Grosser                              cl::desc("Assumed aligned memory accesses."),
39878aba49STobias Grosser                              cl::Hidden, cl::init(false), cl::ZeroOrMore,
40878aba49STobias Grosser                              cl::cat(PollyCategory));
413b11a16aSHongbin Zheng 
42e602a076STobias Grosser static cl::opt<bool, true>
43483a90d1STobias Grosser     SCEVCodegenF("polly-codegen-scev",
44483a90d1STobias Grosser                  cl::desc("Use SCEV based code generation."), cl::Hidden,
45483a90d1STobias Grosser                  cl::location(SCEVCodegen), cl::init(false), cl::ZeroOrMore,
46483a90d1STobias Grosser                  cl::cat(PollyCategory));
47ecfe21b7STobias Grosser 
48ecfe21b7STobias Grosser bool polly::SCEVCodegen;
49ecfe21b7STobias Grosser 
50ecfe21b7STobias Grosser bool polly::canSynthesize(const Instruction *I, const llvm::LoopInfo *LI,
51ecfe21b7STobias Grosser                           ScalarEvolution *SE, const Region *R) {
52ecfe21b7STobias Grosser   if (SCEVCodegen) {
53ecfe21b7STobias Grosser     if (!I || !SE->isSCEVable(I->getType()))
54ecfe21b7STobias Grosser       return false;
55ecfe21b7STobias Grosser 
56ecfe21b7STobias Grosser     if (const SCEV *Scev = SE->getSCEV(const_cast<Instruction *>(I)))
57ecfe21b7STobias Grosser       if (!isa<SCEVCouldNotCompute>(Scev))
58ecfe21b7STobias Grosser         if (!hasScalarDepsInsideRegion(Scev, R))
59ecfe21b7STobias Grosser           return true;
60ecfe21b7STobias Grosser 
61ecfe21b7STobias Grosser     return false;
62ecfe21b7STobias Grosser   }
63ecfe21b7STobias Grosser 
64ecfe21b7STobias Grosser   Loop *L = LI->getLoopFor(I->getParent());
65e8df5bd9STobias Grosser   return L && I == L->getCanonicalInductionVariable() && R->contains(L);
66ecfe21b7STobias Grosser }
67ecfe21b7STobias Grosser 
68a63b2579SJohannes Doerfert BlockGenerator::BlockGenerator(PollyIRBuilder &B, ScopStmt &Stmt, Pass *P,
692ef3f4fdSJohannes Doerfert                                LoopInfo &LI, ScalarEvolution &SE,
70a63b2579SJohannes Doerfert                                isl_ast_build *Build,
71a63b2579SJohannes Doerfert                                IslExprBuilder *ExprBuilder)
722ef3f4fdSJohannes Doerfert     : Builder(B), Statement(Stmt), P(P), LI(LI), SE(SE), Build(Build),
732ef3f4fdSJohannes Doerfert       ExprBuilder(ExprBuilder) {}
74e71c6ab5STobias Grosser 
75*d213a8b8STobias Grosser Value *BlockGenerator::getNewValue(const Value *Old, ValueMapT &BBMap,
76*d213a8b8STobias Grosser                                    ValueMapT &GlobalMap, LoopToScevMapT &LTS,
77*d213a8b8STobias Grosser                                    Loop *L) const {
783b11a16aSHongbin Zheng   // We assume constants never change.
793b11a16aSHongbin Zheng   // This avoids map lookups for many calls to this function.
803b11a16aSHongbin Zheng   if (isa<Constant>(Old))
813b11a16aSHongbin Zheng     return const_cast<Value *>(Old);
823b11a16aSHongbin Zheng 
83fe11e287SHongbin Zheng   if (Value *New = GlobalMap.lookup(Old)) {
84c14582f2STobias Grosser     if (Old->getType()->getScalarSizeInBits() <
85c14582f2STobias Grosser         New->getType()->getScalarSizeInBits())
863b11a16aSHongbin Zheng       New = Builder.CreateTruncOrBitCast(New, Old->getType());
873b11a16aSHongbin Zheng 
883b11a16aSHongbin Zheng     return New;
893b11a16aSHongbin Zheng   }
903b11a16aSHongbin Zheng 
915b463ceaSHongbin Zheng   // Or it is probably a scop-constant value defined as global, function
925b463ceaSHongbin Zheng   // parameter or an instruction not within the scop.
935b463ceaSHongbin Zheng   if (isa<GlobalValue>(Old) || isa<Argument>(Old))
945b463ceaSHongbin Zheng     return const_cast<Value *>(Old);
955b463ceaSHongbin Zheng 
965b463ceaSHongbin Zheng   if (const Instruction *Inst = dyn_cast<Instruction>(Old))
975b463ceaSHongbin Zheng     if (!Statement.getParent()->getRegion().contains(Inst->getParent()))
985b463ceaSHongbin Zheng       return const_cast<Value *>(Old);
995b463ceaSHongbin Zheng 
100fe11e287SHongbin Zheng   if (Value *New = BBMap.lookup(Old))
101fe11e287SHongbin Zheng     return New;
1023b11a16aSHongbin Zheng 
103e71c6ab5STobias Grosser   if (SCEVCodegen && SE.isSCEVable(Old->getType()))
104369430ffSTobias Grosser     if (const SCEV *Scev = SE.getSCEVAtScope(const_cast<Value *>(Old), L)) {
105e71c6ab5STobias Grosser       if (!isa<SCEVCouldNotCompute>(Scev)) {
106637b23dcSSebastian Pop         const SCEV *NewScev = apply(Scev, LTS, SE);
107637b23dcSSebastian Pop         ValueToValueMap VTV;
108637b23dcSSebastian Pop         VTV.insert(BBMap.begin(), BBMap.end());
109637b23dcSSebastian Pop         VTV.insert(GlobalMap.begin(), GlobalMap.end());
11047d4ee3eSSebastian Pop         NewScev = SCEVParameterRewriter::rewrite(NewScev, SE, VTV);
111e71c6ab5STobias Grosser         SCEVExpander Expander(SE, "polly");
112e71c6ab5STobias Grosser         Value *Expanded = Expander.expandCodeFor(NewScev, Old->getType(),
113e71c6ab5STobias Grosser                                                  Builder.GetInsertPoint());
114e71c6ab5STobias Grosser 
115e71c6ab5STobias Grosser         BBMap[Old] = Expanded;
116e71c6ab5STobias Grosser         return Expanded;
117e71c6ab5STobias Grosser       }
118369430ffSTobias Grosser     }
119e71c6ab5STobias Grosser 
1205b463ceaSHongbin Zheng   // Now the scalar dependence is neither available nor SCEVCodegenable, this
1215b463ceaSHongbin Zheng   // should never happen in the current code generator.
1225b463ceaSHongbin Zheng   llvm_unreachable("Unexpected scalar dependence in region!");
1235a56cbf4STobias Grosser   return nullptr;
1243b11a16aSHongbin Zheng }
1253b11a16aSHongbin Zheng 
1263b11a16aSHongbin Zheng void BlockGenerator::copyInstScalar(const Instruction *Inst, ValueMapT &BBMap,
1279d10fffaSSebastian Pop                                     ValueMapT &GlobalMap, LoopToScevMapT &LTS) {
128030237d0STobias Grosser   // We do not generate debug intrinsics as we did not investigate how to
129030237d0STobias Grosser   // copy them correctly. At the current state, they just crash the code
130030237d0STobias Grosser   // generation as the meta-data operands are not correctly copied.
131030237d0STobias Grosser   if (isa<DbgInfoIntrinsic>(Inst))
132030237d0STobias Grosser     return;
133030237d0STobias Grosser 
1343b11a16aSHongbin Zheng   Instruction *NewInst = Inst->clone();
1353b11a16aSHongbin Zheng 
1363b11a16aSHongbin Zheng   // Replace old operands with the new ones.
13791f5b262STobias Grosser   for (Value *OldOperand : Inst->operands()) {
138369430ffSTobias Grosser     Value *NewOperand =
139369430ffSTobias Grosser         getNewValue(OldOperand, BBMap, GlobalMap, LTS, getLoopForInst(Inst));
1403b11a16aSHongbin Zheng 
1413b11a16aSHongbin Zheng     if (!NewOperand) {
142c14582f2STobias Grosser       assert(!isa<StoreInst>(NewInst) &&
143c14582f2STobias Grosser              "Store instructions are always needed!");
1443b11a16aSHongbin Zheng       delete NewInst;
1453b11a16aSHongbin Zheng       return;
1463b11a16aSHongbin Zheng     }
1473b11a16aSHongbin Zheng 
1483b11a16aSHongbin Zheng     NewInst->replaceUsesOfWith(OldOperand, NewOperand);
1493b11a16aSHongbin Zheng   }
1503b11a16aSHongbin Zheng 
1513b11a16aSHongbin Zheng   Builder.Insert(NewInst);
1523b11a16aSHongbin Zheng   BBMap[Inst] = NewInst;
1533b11a16aSHongbin Zheng 
1543b11a16aSHongbin Zheng   if (!NewInst->getType()->isVoidTy())
1553b11a16aSHongbin Zheng     NewInst->setName("p_" + Inst->getName());
1563b11a16aSHongbin Zheng }
1573b11a16aSHongbin Zheng 
158a63b2579SJohannes Doerfert Value *BlockGenerator::getNewAccessOperand(const MemoryAccess &MA) {
159a99130f0SJohannes Doerfert   isl_pw_multi_aff *PWAccRel;
160a99130f0SJohannes Doerfert   isl_union_map *Schedule;
161a63b2579SJohannes Doerfert   isl_ast_expr *Expr;
1623b11a16aSHongbin Zheng 
163a63b2579SJohannes Doerfert   assert(ExprBuilder && Build &&
164a63b2579SJohannes Doerfert          "Cannot generate new value without IslExprBuilder!");
1653b11a16aSHongbin Zheng 
166a99130f0SJohannes Doerfert   Schedule = isl_ast_build_get_schedule(Build);
167a99130f0SJohannes Doerfert   PWAccRel = MA.applyScheduleToAccessRelation(Schedule);
1683b11a16aSHongbin Zheng 
169a63b2579SJohannes Doerfert   Expr = isl_ast_build_access_from_pw_multi_aff(Build, PWAccRel);
170dcb5f1dcSJohannes Doerfert   Expr = isl_ast_expr_address_of(Expr);
171a63b2579SJohannes Doerfert 
172a63b2579SJohannes Doerfert   return ExprBuilder->create(Expr);
1733b11a16aSHongbin Zheng }
1743b11a16aSHongbin Zheng 
175e602a076STobias Grosser Value *BlockGenerator::generateLocationAccessed(const Instruction *Inst,
176e602a076STobias Grosser                                                 const Value *Pointer,
177e602a076STobias Grosser                                                 ValueMapT &BBMap,
178e602a076STobias Grosser                                                 ValueMapT &GlobalMap,
179e602a076STobias Grosser                                                 LoopToScevMapT &LTS) {
180a63b2579SJohannes Doerfert   const MemoryAccess &MA = Statement.getAccessFor(Inst);
1813b11a16aSHongbin Zheng 
1823b11a16aSHongbin Zheng   Value *NewPointer;
183a99130f0SJohannes Doerfert   if (MA.hasNewAccessRelation())
184a63b2579SJohannes Doerfert     NewPointer = getNewAccessOperand(MA);
185a63b2579SJohannes Doerfert   else
186369430ffSTobias Grosser     NewPointer =
187369430ffSTobias Grosser         getNewValue(Pointer, BBMap, GlobalMap, LTS, getLoopForInst(Inst));
1883b11a16aSHongbin Zheng 
1893b11a16aSHongbin Zheng   return NewPointer;
1903b11a16aSHongbin Zheng }
1913b11a16aSHongbin Zheng 
1924d96c8d7STobias Grosser Loop *BlockGenerator::getLoopForInst(const llvm::Instruction *Inst) {
1932ef3f4fdSJohannes Doerfert   return LI.getLoopFor(Inst->getParent());
194369430ffSTobias Grosser }
195369430ffSTobias Grosser 
196e602a076STobias Grosser Value *BlockGenerator::generateScalarLoad(const LoadInst *Load,
197e602a076STobias Grosser                                           ValueMapT &BBMap,
198e602a076STobias Grosser                                           ValueMapT &GlobalMap,
199e602a076STobias Grosser                                           LoopToScevMapT &LTS) {
2003b11a16aSHongbin Zheng   const Value *Pointer = Load->getPointerOperand();
2017242ad92STobias Grosser   Value *NewPointer =
2021947f863SJohannes Doerfert       generateLocationAccessed(Load, Pointer, BBMap, GlobalMap, LTS);
20387901453SJohannes Doerfert   Value *ScalarLoad = Builder.CreateAlignedLoad(
20487901453SJohannes Doerfert       NewPointer, Load->getAlignment(), Load->getName() + "_p_scalar_");
2053b11a16aSHongbin Zheng   return ScalarLoad;
2063b11a16aSHongbin Zheng }
2073b11a16aSHongbin Zheng 
208e602a076STobias Grosser Value *BlockGenerator::generateScalarStore(const StoreInst *Store,
209e602a076STobias Grosser                                            ValueMapT &BBMap,
210e602a076STobias Grosser                                            ValueMapT &GlobalMap,
211e602a076STobias Grosser                                            LoopToScevMapT &LTS) {
2123b11a16aSHongbin Zheng   const Value *Pointer = Store->getPointerOperand();
213c14582f2STobias Grosser   Value *NewPointer =
2149d10fffaSSebastian Pop       generateLocationAccessed(Store, Pointer, BBMap, GlobalMap, LTS);
215369430ffSTobias Grosser   Value *ValueOperand = getNewValue(Store->getValueOperand(), BBMap, GlobalMap,
216369430ffSTobias Grosser                                     LTS, getLoopForInst(Store));
2173b11a16aSHongbin Zheng 
21887901453SJohannes Doerfert   Value *NewStore = Builder.CreateAlignedStore(ValueOperand, NewPointer,
21987901453SJohannes Doerfert                                                Store->getAlignment());
22087901453SJohannes Doerfert   return NewStore;
2213b11a16aSHongbin Zheng }
2223b11a16aSHongbin Zheng 
223e602a076STobias Grosser void BlockGenerator::copyInstruction(const Instruction *Inst, ValueMapT &BBMap,
224e602a076STobias Grosser                                      ValueMapT &GlobalMap,
225e602a076STobias Grosser                                      LoopToScevMapT &LTS) {
2263b11a16aSHongbin Zheng   // Terminator instructions control the control flow. They are explicitly
2273b11a16aSHongbin Zheng   // expressed in the clast and do not need to be copied.
2283b11a16aSHongbin Zheng   if (Inst->isTerminator())
2293b11a16aSHongbin Zheng     return;
2303b11a16aSHongbin Zheng 
231ecfe21b7STobias Grosser   if (canSynthesize(Inst, &P->getAnalysis<LoopInfo>(), &SE,
232ecfe21b7STobias Grosser                     &Statement.getParent()->getRegion()))
233e71c6ab5STobias Grosser     return;
234e71c6ab5STobias Grosser 
2353b11a16aSHongbin Zheng   if (const LoadInst *Load = dyn_cast<LoadInst>(Inst)) {
236753d43f9SSebastian Pop     Value *NewLoad = generateScalarLoad(Load, BBMap, GlobalMap, LTS);
2373d94fedfSSebastian Pop     // Compute NewLoad before its insertion in BBMap to make the insertion
2383d94fedfSSebastian Pop     // deterministic.
239753d43f9SSebastian Pop     BBMap[Load] = NewLoad;
2403b11a16aSHongbin Zheng     return;
2413b11a16aSHongbin Zheng   }
2423b11a16aSHongbin Zheng 
2433b11a16aSHongbin Zheng   if (const StoreInst *Store = dyn_cast<StoreInst>(Inst)) {
244753d43f9SSebastian Pop     Value *NewStore = generateScalarStore(Store, BBMap, GlobalMap, LTS);
2453d94fedfSSebastian Pop     // Compute NewStore before its insertion in BBMap to make the insertion
2463d94fedfSSebastian Pop     // deterministic.
247753d43f9SSebastian Pop     BBMap[Store] = NewStore;
2483b11a16aSHongbin Zheng     return;
2493b11a16aSHongbin Zheng   }
2503b11a16aSHongbin Zheng 
2519d10fffaSSebastian Pop   copyInstScalar(Inst, BBMap, GlobalMap, LTS);
2523b11a16aSHongbin Zheng }
2533b11a16aSHongbin Zheng 
2549d10fffaSSebastian Pop void BlockGenerator::copyBB(ValueMapT &GlobalMap, LoopToScevMapT &LTS) {
2553b11a16aSHongbin Zheng   BasicBlock *BB = Statement.getBasicBlock();
256c14582f2STobias Grosser   BasicBlock *CopyBB =
257c14582f2STobias Grosser       SplitBlock(Builder.GetInsertBlock(), Builder.GetInsertPoint(), P);
2583b11a16aSHongbin Zheng   CopyBB->setName("polly.stmt." + BB->getName());
2593b11a16aSHongbin Zheng   Builder.SetInsertPoint(CopyBB->begin());
2603b11a16aSHongbin Zheng 
2613b11a16aSHongbin Zheng   ValueMapT BBMap;
2623b11a16aSHongbin Zheng 
26391f5b262STobias Grosser   for (Instruction &Inst : *BB)
26491f5b262STobias Grosser     copyInstruction(&Inst, BBMap, GlobalMap, LTS);
2653b11a16aSHongbin Zheng }
2663b11a16aSHongbin Zheng 
2672ef3f4fdSJohannes Doerfert VectorBlockGenerator::VectorBlockGenerator(
2682ef3f4fdSJohannes Doerfert     PollyIRBuilder &B, VectorValueMapT &GlobalMaps,
2692ef3f4fdSJohannes Doerfert     std::vector<LoopToScevMapT> &VLTS, ScopStmt &Stmt,
270731685e6SJohannes Doerfert     __isl_keep isl_map *Schedule, Pass *P, LoopInfo &LI, ScalarEvolution &SE,
271731685e6SJohannes Doerfert     __isl_keep isl_ast_build *Build, IslExprBuilder *ExprBuilder)
272731685e6SJohannes Doerfert     : BlockGenerator(B, Stmt, P, LI, SE, Build, ExprBuilder),
2732ef3f4fdSJohannes Doerfert       GlobalMaps(GlobalMaps), VLTS(VLTS), Schedule(Schedule) {
2743b11a16aSHongbin Zheng   assert(GlobalMaps.size() > 1 && "Only one vector lane found");
275a00a0291SSebastian Pop   assert(Schedule && "No statement domain provided");
2763b11a16aSHongbin Zheng }
2773b11a16aSHongbin Zheng 
278e602a076STobias Grosser Value *VectorBlockGenerator::getVectorValue(const Value *Old,
279e602a076STobias Grosser                                             ValueMapT &VectorMap,
280e602a076STobias Grosser                                             VectorValueMapT &ScalarMaps,
281e602a076STobias Grosser                                             Loop *L) {
282fe11e287SHongbin Zheng   if (Value *NewValue = VectorMap.lookup(Old))
283fe11e287SHongbin Zheng     return NewValue;
2843b11a16aSHongbin Zheng 
2853b11a16aSHongbin Zheng   int Width = getVectorWidth();
2863b11a16aSHongbin Zheng 
2873b11a16aSHongbin Zheng   Value *Vector = UndefValue::get(VectorType::get(Old->getType(), Width));
2883b11a16aSHongbin Zheng 
2893b11a16aSHongbin Zheng   for (int Lane = 0; Lane < Width; Lane++)
290c14582f2STobias Grosser     Vector = Builder.CreateInsertElement(
2917242ad92STobias Grosser         Vector,
292369430ffSTobias Grosser         getNewValue(Old, ScalarMaps[Lane], GlobalMaps[Lane], VLTS[Lane], L),
2937242ad92STobias Grosser         Builder.getInt32(Lane));
2943b11a16aSHongbin Zheng 
2953b11a16aSHongbin Zheng   VectorMap[Old] = Vector;
2963b11a16aSHongbin Zheng 
2973b11a16aSHongbin Zheng   return Vector;
2983b11a16aSHongbin Zheng }
2993b11a16aSHongbin Zheng 
3003b11a16aSHongbin Zheng Type *VectorBlockGenerator::getVectorPtrTy(const Value *Val, int Width) {
3013b11a16aSHongbin Zheng   PointerType *PointerTy = dyn_cast<PointerType>(Val->getType());
3023b11a16aSHongbin Zheng   assert(PointerTy && "PointerType expected");
3033b11a16aSHongbin Zheng 
3043b11a16aSHongbin Zheng   Type *ScalarType = PointerTy->getElementType();
3053b11a16aSHongbin Zheng   VectorType *VectorType = VectorType::get(ScalarType, Width);
3063b11a16aSHongbin Zheng 
3073b11a16aSHongbin Zheng   return PointerType::getUnqual(VectorType);
3083b11a16aSHongbin Zheng }
3093b11a16aSHongbin Zheng 
3100dd463faSTobias Grosser Value *
3110dd463faSTobias Grosser VectorBlockGenerator::generateStrideOneLoad(const LoadInst *Load,
3120dd463faSTobias Grosser                                             VectorValueMapT &ScalarMaps,
3130dd463faSTobias Grosser                                             bool NegativeStride = false) {
3140dd463faSTobias Grosser   unsigned VectorWidth = getVectorWidth();
3153b11a16aSHongbin Zheng   const Value *Pointer = Load->getPointerOperand();
3160dd463faSTobias Grosser   Type *VectorPtrType = getVectorPtrTy(Pointer, VectorWidth);
3170dd463faSTobias Grosser   unsigned Offset = NegativeStride ? VectorWidth - 1 : 0;
3180dd463faSTobias Grosser 
3195a56cbf4STobias Grosser   Value *NewPointer = nullptr;
320731685e6SJohannes Doerfert   NewPointer = generateLocationAccessed(Load, Pointer, ScalarMaps[Offset],
321731685e6SJohannes Doerfert                                         GlobalMaps[Offset], VLTS[Offset]);
322c14582f2STobias Grosser   Value *VectorPtr =
323c14582f2STobias Grosser       Builder.CreateBitCast(NewPointer, VectorPtrType, "vector_ptr");
324c14582f2STobias Grosser   LoadInst *VecLoad =
325c14582f2STobias Grosser       Builder.CreateLoad(VectorPtr, Load->getName() + "_p_vec_full");
3263b11a16aSHongbin Zheng   if (!Aligned)
3273b11a16aSHongbin Zheng     VecLoad->setAlignment(8);
3283b11a16aSHongbin Zheng 
3290dd463faSTobias Grosser   if (NegativeStride) {
3300dd463faSTobias Grosser     SmallVector<Constant *, 16> Indices;
3310dd463faSTobias Grosser     for (int i = VectorWidth - 1; i >= 0; i--)
3320dd463faSTobias Grosser       Indices.push_back(ConstantInt::get(Builder.getInt32Ty(), i));
3330dd463faSTobias Grosser     Constant *SV = llvm::ConstantVector::get(Indices);
3340dd463faSTobias Grosser     Value *RevVecLoad = Builder.CreateShuffleVector(
3350dd463faSTobias Grosser         VecLoad, VecLoad, SV, Load->getName() + "_reverse");
3360dd463faSTobias Grosser     return RevVecLoad;
3370dd463faSTobias Grosser   }
3380dd463faSTobias Grosser 
3393b11a16aSHongbin Zheng   return VecLoad;
3403b11a16aSHongbin Zheng }
3413b11a16aSHongbin Zheng 
3423b11a16aSHongbin Zheng Value *VectorBlockGenerator::generateStrideZeroLoad(const LoadInst *Load,
3433b11a16aSHongbin Zheng                                                     ValueMapT &BBMap) {
3443b11a16aSHongbin Zheng   const Value *Pointer = Load->getPointerOperand();
3453b11a16aSHongbin Zheng   Type *VectorPtrType = getVectorPtrTy(Pointer, 1);
346369430ffSTobias Grosser   Value *NewPointer =
347731685e6SJohannes Doerfert       generateLocationAccessed(Load, Pointer, BBMap, GlobalMaps[0], VLTS[0]);
3483b11a16aSHongbin Zheng   Value *VectorPtr = Builder.CreateBitCast(NewPointer, VectorPtrType,
3493b11a16aSHongbin Zheng                                            Load->getName() + "_p_vec_p");
350c14582f2STobias Grosser   LoadInst *ScalarLoad =
351c14582f2STobias Grosser       Builder.CreateLoad(VectorPtr, Load->getName() + "_p_splat_one");
3523b11a16aSHongbin Zheng 
3533b11a16aSHongbin Zheng   if (!Aligned)
3543b11a16aSHongbin Zheng     ScalarLoad->setAlignment(8);
3553b11a16aSHongbin Zheng 
356c14582f2STobias Grosser   Constant *SplatVector = Constant::getNullValue(
357c14582f2STobias Grosser       VectorType::get(Builder.getInt32Ty(), getVectorWidth()));
3583b11a16aSHongbin Zheng 
359c14582f2STobias Grosser   Value *VectorLoad = Builder.CreateShuffleVector(
360c14582f2STobias Grosser       ScalarLoad, ScalarLoad, SplatVector, Load->getName() + "_p_splat");
3613b11a16aSHongbin Zheng   return VectorLoad;
3623b11a16aSHongbin Zheng }
3633b11a16aSHongbin Zheng 
364e602a076STobias Grosser Value *
365e602a076STobias Grosser VectorBlockGenerator::generateUnknownStrideLoad(const LoadInst *Load,
366e602a076STobias Grosser                                                 VectorValueMapT &ScalarMaps) {
3673b11a16aSHongbin Zheng   int VectorWidth = getVectorWidth();
3683b11a16aSHongbin Zheng   const Value *Pointer = Load->getPointerOperand();
3693b11a16aSHongbin Zheng   VectorType *VectorType = VectorType::get(
3703b11a16aSHongbin Zheng       dyn_cast<PointerType>(Pointer->getType())->getElementType(), VectorWidth);
3713b11a16aSHongbin Zheng 
3723b11a16aSHongbin Zheng   Value *Vector = UndefValue::get(VectorType);
3733b11a16aSHongbin Zheng 
3743b11a16aSHongbin Zheng   for (int i = 0; i < VectorWidth; i++) {
375731685e6SJohannes Doerfert     Value *NewPointer = generateLocationAccessed(Load, Pointer, ScalarMaps[i],
376731685e6SJohannes Doerfert                                                  GlobalMaps[i], VLTS[i]);
377c14582f2STobias Grosser     Value *ScalarLoad =
378c14582f2STobias Grosser         Builder.CreateLoad(NewPointer, Load->getName() + "_p_scalar_");
379c14582f2STobias Grosser     Vector = Builder.CreateInsertElement(
380c14582f2STobias Grosser         Vector, ScalarLoad, Builder.getInt32(i), Load->getName() + "_p_vec_");
3813b11a16aSHongbin Zheng   }
3823b11a16aSHongbin Zheng 
3833b11a16aSHongbin Zheng   return Vector;
3843b11a16aSHongbin Zheng }
3853b11a16aSHongbin Zheng 
386e602a076STobias Grosser void VectorBlockGenerator::generateLoad(const LoadInst *Load,
387e602a076STobias Grosser                                         ValueMapT &VectorMap,
388e602a076STobias Grosser                                         VectorValueMapT &ScalarMaps) {
38968794217SHongbin Zheng   if (PollyVectorizerChoice >= VECTORIZER_FIRST_NEED_GROUPED_UNROLL ||
39068794217SHongbin Zheng       !VectorType::isValidElementType(Load->getType())) {
3913b11a16aSHongbin Zheng     for (int i = 0; i < getVectorWidth(); i++)
392c14582f2STobias Grosser       ScalarMaps[i][Load] =
3939d10fffaSSebastian Pop           generateScalarLoad(Load, ScalarMaps[i], GlobalMaps[i], VLTS[i]);
3943b11a16aSHongbin Zheng     return;
3953b11a16aSHongbin Zheng   }
3963b11a16aSHongbin Zheng 
397b5f24a66SHongbin Zheng   const MemoryAccess &Access = Statement.getAccessFor(Load);
3983b11a16aSHongbin Zheng 
39995493984STobias Grosser   // Make sure we have scalar values available to access the pointer to
40095493984STobias Grosser   // the data location.
40195493984STobias Grosser   extractScalarValues(Load, VectorMap, ScalarMaps);
40295493984STobias Grosser 
4033b11a16aSHongbin Zheng   Value *NewLoad;
404a00a0291SSebastian Pop   if (Access.isStrideZero(isl_map_copy(Schedule)))
4053b11a16aSHongbin Zheng     NewLoad = generateStrideZeroLoad(Load, ScalarMaps[0]);
406a00a0291SSebastian Pop   else if (Access.isStrideOne(isl_map_copy(Schedule)))
4070dd463faSTobias Grosser     NewLoad = generateStrideOneLoad(Load, ScalarMaps);
4080dd463faSTobias Grosser   else if (Access.isStrideX(isl_map_copy(Schedule), -1))
4090dd463faSTobias Grosser     NewLoad = generateStrideOneLoad(Load, ScalarMaps, true);
4103b11a16aSHongbin Zheng   else
4113b11a16aSHongbin Zheng     NewLoad = generateUnknownStrideLoad(Load, ScalarMaps);
4123b11a16aSHongbin Zheng 
4133b11a16aSHongbin Zheng   VectorMap[Load] = NewLoad;
4143b11a16aSHongbin Zheng }
4153b11a16aSHongbin Zheng 
4163b11a16aSHongbin Zheng void VectorBlockGenerator::copyUnaryInst(const UnaryInstruction *Inst,
4173b11a16aSHongbin Zheng                                          ValueMapT &VectorMap,
4183b11a16aSHongbin Zheng                                          VectorValueMapT &ScalarMaps) {
4193b11a16aSHongbin Zheng   int VectorWidth = getVectorWidth();
420369430ffSTobias Grosser   Value *NewOperand = getVectorValue(Inst->getOperand(0), VectorMap, ScalarMaps,
421369430ffSTobias Grosser                                      getLoopForInst(Inst));
4223b11a16aSHongbin Zheng 
4233b11a16aSHongbin Zheng   assert(isa<CastInst>(Inst) && "Can not generate vector code for instruction");
4243b11a16aSHongbin Zheng 
4253b11a16aSHongbin Zheng   const CastInst *Cast = dyn_cast<CastInst>(Inst);
4263b11a16aSHongbin Zheng   VectorType *DestType = VectorType::get(Inst->getType(), VectorWidth);
4273b11a16aSHongbin Zheng   VectorMap[Inst] = Builder.CreateCast(Cast->getOpcode(), NewOperand, DestType);
4283b11a16aSHongbin Zheng }
4293b11a16aSHongbin Zheng 
4303b11a16aSHongbin Zheng void VectorBlockGenerator::copyBinaryInst(const BinaryOperator *Inst,
4313b11a16aSHongbin Zheng                                           ValueMapT &VectorMap,
4323b11a16aSHongbin Zheng                                           VectorValueMapT &ScalarMaps) {
433369430ffSTobias Grosser   Loop *L = getLoopForInst(Inst);
4343b11a16aSHongbin Zheng   Value *OpZero = Inst->getOperand(0);
4353b11a16aSHongbin Zheng   Value *OpOne = Inst->getOperand(1);
4363b11a16aSHongbin Zheng 
4373b11a16aSHongbin Zheng   Value *NewOpZero, *NewOpOne;
438369430ffSTobias Grosser   NewOpZero = getVectorValue(OpZero, VectorMap, ScalarMaps, L);
439369430ffSTobias Grosser   NewOpOne = getVectorValue(OpOne, VectorMap, ScalarMaps, L);
4403b11a16aSHongbin Zheng 
4411bb59b0dSTobias Grosser   Value *NewInst = Builder.CreateBinOp(Inst->getOpcode(), NewOpZero, NewOpOne,
4423b11a16aSHongbin Zheng                                        Inst->getName() + "p_vec");
4433b11a16aSHongbin Zheng   VectorMap[Inst] = NewInst;
4443b11a16aSHongbin Zheng }
4453b11a16aSHongbin Zheng 
446e602a076STobias Grosser void VectorBlockGenerator::copyStore(const StoreInst *Store,
447e602a076STobias Grosser                                      ValueMapT &VectorMap,
448e602a076STobias Grosser                                      VectorValueMapT &ScalarMaps) {
449b5f24a66SHongbin Zheng   const MemoryAccess &Access = Statement.getAccessFor(Store);
4503b11a16aSHongbin Zheng 
4513b11a16aSHongbin Zheng   const Value *Pointer = Store->getPointerOperand();
452369430ffSTobias Grosser   Value *Vector = getVectorValue(Store->getValueOperand(), VectorMap,
453369430ffSTobias Grosser                                  ScalarMaps, getLoopForInst(Store));
4543b11a16aSHongbin Zheng 
45550fd7010STobias Grosser   // Make sure we have scalar values available to access the pointer to
45650fd7010STobias Grosser   // the data location.
45750fd7010STobias Grosser   extractScalarValues(Store, VectorMap, ScalarMaps);
45850fd7010STobias Grosser 
459a00a0291SSebastian Pop   if (Access.isStrideOne(isl_map_copy(Schedule))) {
4601947f863SJohannes Doerfert     Type *VectorPtrType = getVectorPtrTy(Pointer, getVectorWidth());
461731685e6SJohannes Doerfert     Value *NewPointer = generateLocationAccessed(Store, Pointer, ScalarMaps[0],
462731685e6SJohannes Doerfert                                                  GlobalMaps[0], VLTS[0]);
4633b11a16aSHongbin Zheng 
464c14582f2STobias Grosser     Value *VectorPtr =
465c14582f2STobias Grosser         Builder.CreateBitCast(NewPointer, VectorPtrType, "vector_ptr");
4663b11a16aSHongbin Zheng     StoreInst *Store = Builder.CreateStore(Vector, VectorPtr);
4673b11a16aSHongbin Zheng 
4683b11a16aSHongbin Zheng     if (!Aligned)
4693b11a16aSHongbin Zheng       Store->setAlignment(8);
4703b11a16aSHongbin Zheng   } else {
4713b11a16aSHongbin Zheng     for (unsigned i = 0; i < ScalarMaps.size(); i++) {
4721bb59b0dSTobias Grosser       Value *Scalar = Builder.CreateExtractElement(Vector, Builder.getInt32(i));
473731685e6SJohannes Doerfert       Value *NewPointer = generateLocationAccessed(
474731685e6SJohannes Doerfert           Store, Pointer, ScalarMaps[i], GlobalMaps[i], VLTS[i]);
4753b11a16aSHongbin Zheng       Builder.CreateStore(Scalar, NewPointer);
4763b11a16aSHongbin Zheng     }
4773b11a16aSHongbin Zheng   }
4783b11a16aSHongbin Zheng }
4793b11a16aSHongbin Zheng 
4803b11a16aSHongbin Zheng bool VectorBlockGenerator::hasVectorOperands(const Instruction *Inst,
4813b11a16aSHongbin Zheng                                              ValueMapT &VectorMap) {
48291f5b262STobias Grosser   for (Value *Operand : Inst->operands())
48391f5b262STobias Grosser     if (VectorMap.count(Operand))
4843b11a16aSHongbin Zheng       return true;
4853b11a16aSHongbin Zheng   return false;
4863b11a16aSHongbin Zheng }
4873b11a16aSHongbin Zheng 
4883b11a16aSHongbin Zheng bool VectorBlockGenerator::extractScalarValues(const Instruction *Inst,
4893b11a16aSHongbin Zheng                                                ValueMapT &VectorMap,
4903b11a16aSHongbin Zheng                                                VectorValueMapT &ScalarMaps) {
4913b11a16aSHongbin Zheng   bool HasVectorOperand = false;
4923b11a16aSHongbin Zheng   int VectorWidth = getVectorWidth();
4933b11a16aSHongbin Zheng 
49491f5b262STobias Grosser   for (Value *Operand : Inst->operands()) {
49591f5b262STobias Grosser     ValueMapT::iterator VecOp = VectorMap.find(Operand);
4963b11a16aSHongbin Zheng 
4973b11a16aSHongbin Zheng     if (VecOp == VectorMap.end())
4983b11a16aSHongbin Zheng       continue;
4993b11a16aSHongbin Zheng 
5003b11a16aSHongbin Zheng     HasVectorOperand = true;
5013b11a16aSHongbin Zheng     Value *NewVector = VecOp->second;
5023b11a16aSHongbin Zheng 
5033b11a16aSHongbin Zheng     for (int i = 0; i < VectorWidth; ++i) {
5043b11a16aSHongbin Zheng       ValueMapT &SM = ScalarMaps[i];
5053b11a16aSHongbin Zheng 
5063b11a16aSHongbin Zheng       // If there is one scalar extracted, all scalar elements should have
5073b11a16aSHongbin Zheng       // already been extracted by the code here. So no need to check for the
5083b11a16aSHongbin Zheng       // existance of all of them.
50991f5b262STobias Grosser       if (SM.count(Operand))
5103b11a16aSHongbin Zheng         break;
5113b11a16aSHongbin Zheng 
51291f5b262STobias Grosser       SM[Operand] =
51391f5b262STobias Grosser           Builder.CreateExtractElement(NewVector, Builder.getInt32(i));
5143b11a16aSHongbin Zheng     }
5153b11a16aSHongbin Zheng   }
5163b11a16aSHongbin Zheng 
5173b11a16aSHongbin Zheng   return HasVectorOperand;
5183b11a16aSHongbin Zheng }
5193b11a16aSHongbin Zheng 
5203b11a16aSHongbin Zheng void VectorBlockGenerator::copyInstScalarized(const Instruction *Inst,
5213b11a16aSHongbin Zheng                                               ValueMapT &VectorMap,
5223b11a16aSHongbin Zheng                                               VectorValueMapT &ScalarMaps) {
5233b11a16aSHongbin Zheng   bool HasVectorOperand;
5243b11a16aSHongbin Zheng   int VectorWidth = getVectorWidth();
5253b11a16aSHongbin Zheng 
5263b11a16aSHongbin Zheng   HasVectorOperand = extractScalarValues(Inst, VectorMap, ScalarMaps);
5273b11a16aSHongbin Zheng 
5283b11a16aSHongbin Zheng   for (int VectorLane = 0; VectorLane < getVectorWidth(); VectorLane++)
529731685e6SJohannes Doerfert     BlockGenerator::copyInstruction(Inst, ScalarMaps[VectorLane],
530731685e6SJohannes Doerfert                                     GlobalMaps[VectorLane], VLTS[VectorLane]);
5313b11a16aSHongbin Zheng 
5323b11a16aSHongbin Zheng   if (!VectorType::isValidElementType(Inst->getType()) || !HasVectorOperand)
5333b11a16aSHongbin Zheng     return;
5343b11a16aSHongbin Zheng 
5353b11a16aSHongbin Zheng   // Make the result available as vector value.
5363b11a16aSHongbin Zheng   VectorType *VectorType = VectorType::get(Inst->getType(), VectorWidth);
5373b11a16aSHongbin Zheng   Value *Vector = UndefValue::get(VectorType);
5383b11a16aSHongbin Zheng 
5393b11a16aSHongbin Zheng   for (int i = 0; i < VectorWidth; i++)
5403b11a16aSHongbin Zheng     Vector = Builder.CreateInsertElement(Vector, ScalarMaps[i][Inst],
5413b11a16aSHongbin Zheng                                          Builder.getInt32(i));
5423b11a16aSHongbin Zheng 
5433b11a16aSHongbin Zheng   VectorMap[Inst] = Vector;
5443b11a16aSHongbin Zheng }
5453b11a16aSHongbin Zheng 
546c14582f2STobias Grosser int VectorBlockGenerator::getVectorWidth() { return GlobalMaps.size(); }
5473b11a16aSHongbin Zheng 
5483b11a16aSHongbin Zheng void VectorBlockGenerator::copyInstruction(const Instruction *Inst,
5493b11a16aSHongbin Zheng                                            ValueMapT &VectorMap,
5503b11a16aSHongbin Zheng                                            VectorValueMapT &ScalarMaps) {
5513b11a16aSHongbin Zheng   // Terminator instructions control the control flow. They are explicitly
5523b11a16aSHongbin Zheng   // expressed in the clast and do not need to be copied.
5533b11a16aSHongbin Zheng   if (Inst->isTerminator())
5543b11a16aSHongbin Zheng     return;
5553b11a16aSHongbin Zheng 
556ecfe21b7STobias Grosser   if (canSynthesize(Inst, &P->getAnalysis<LoopInfo>(), &SE,
557ecfe21b7STobias Grosser                     &Statement.getParent()->getRegion()))
558e71c6ab5STobias Grosser     return;
559e71c6ab5STobias Grosser 
5603b11a16aSHongbin Zheng   if (const LoadInst *Load = dyn_cast<LoadInst>(Inst)) {
5613b11a16aSHongbin Zheng     generateLoad(Load, VectorMap, ScalarMaps);
5623b11a16aSHongbin Zheng     return;
5633b11a16aSHongbin Zheng   }
5643b11a16aSHongbin Zheng 
5653b11a16aSHongbin Zheng   if (hasVectorOperands(Inst, VectorMap)) {
5663b11a16aSHongbin Zheng     if (const StoreInst *Store = dyn_cast<StoreInst>(Inst)) {
5673b11a16aSHongbin Zheng       copyStore(Store, VectorMap, ScalarMaps);
5683b11a16aSHongbin Zheng       return;
5693b11a16aSHongbin Zheng     }
5703b11a16aSHongbin Zheng 
5713b11a16aSHongbin Zheng     if (const UnaryInstruction *Unary = dyn_cast<UnaryInstruction>(Inst)) {
5723b11a16aSHongbin Zheng       copyUnaryInst(Unary, VectorMap, ScalarMaps);
5733b11a16aSHongbin Zheng       return;
5743b11a16aSHongbin Zheng     }
5753b11a16aSHongbin Zheng 
5763b11a16aSHongbin Zheng     if (const BinaryOperator *Binary = dyn_cast<BinaryOperator>(Inst)) {
5773b11a16aSHongbin Zheng       copyBinaryInst(Binary, VectorMap, ScalarMaps);
5783b11a16aSHongbin Zheng       return;
5793b11a16aSHongbin Zheng     }
5803b11a16aSHongbin Zheng 
5813b11a16aSHongbin Zheng     // Falltrough: We generate scalar instructions, if we don't know how to
5823b11a16aSHongbin Zheng     // generate vector code.
5833b11a16aSHongbin Zheng   }
5843b11a16aSHongbin Zheng 
5853b11a16aSHongbin Zheng   copyInstScalarized(Inst, VectorMap, ScalarMaps);
5863b11a16aSHongbin Zheng }
5873b11a16aSHongbin Zheng 
5883b11a16aSHongbin Zheng void VectorBlockGenerator::copyBB() {
5893b11a16aSHongbin Zheng   BasicBlock *BB = Statement.getBasicBlock();
590c14582f2STobias Grosser   BasicBlock *CopyBB =
591c14582f2STobias Grosser       SplitBlock(Builder.GetInsertBlock(), Builder.GetInsertPoint(), P);
5923b11a16aSHongbin Zheng   CopyBB->setName("polly.stmt." + BB->getName());
5933b11a16aSHongbin Zheng   Builder.SetInsertPoint(CopyBB->begin());
5943b11a16aSHongbin Zheng 
5953b11a16aSHongbin Zheng   // Create two maps that store the mapping from the original instructions of
5963b11a16aSHongbin Zheng   // the old basic block to their copies in the new basic block. Those maps
5973b11a16aSHongbin Zheng   // are basic block local.
5983b11a16aSHongbin Zheng   //
5993b11a16aSHongbin Zheng   // As vector code generation is supported there is one map for scalar values
6003b11a16aSHongbin Zheng   // and one for vector values.
6013b11a16aSHongbin Zheng   //
6023b11a16aSHongbin Zheng   // In case we just do scalar code generation, the vectorMap is not used and
6033b11a16aSHongbin Zheng   // the scalarMap has just one dimension, which contains the mapping.
6043b11a16aSHongbin Zheng   //
6053b11a16aSHongbin Zheng   // In case vector code generation is done, an instruction may either appear
6063b11a16aSHongbin Zheng   // in the vector map once (as it is calculating >vectorwidth< values at a
6073b11a16aSHongbin Zheng   // time. Or (if the values are calculated using scalar operations), it
6083b11a16aSHongbin Zheng   // appears once in every dimension of the scalarMap.
6093b11a16aSHongbin Zheng   VectorValueMapT ScalarBlockMap(getVectorWidth());
6103b11a16aSHongbin Zheng   ValueMapT VectorBlockMap;
6113b11a16aSHongbin Zheng 
61291f5b262STobias Grosser   for (Instruction &Inst : *BB)
61391f5b262STobias Grosser     copyInstruction(&Inst, VectorBlockMap, ScalarBlockMap);
6143b11a16aSHongbin Zheng }
615