2015-04-27 20:32:24 +08:00
|
|
|
//===------ IslNodeBuilder.cpp - Translate an isl AST into a LLVM-IR AST---===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the IslNodeBuilder, a class to translate an isl AST into
|
|
|
|
// a LLVM-IR AST.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "polly/CodeGen/IslNodeBuilder.h"
|
|
|
|
#include "polly/CodeGen/BlockGenerators.h"
|
|
|
|
#include "polly/CodeGen/CodeGeneration.h"
|
|
|
|
#include "polly/CodeGen/IslAst.h"
|
2015-05-09 17:13:42 +08:00
|
|
|
#include "polly/CodeGen/IslExprBuilder.h"
|
2015-04-27 20:32:24 +08:00
|
|
|
#include "polly/CodeGen/LoopGenerators.h"
|
|
|
|
#include "polly/CodeGen/Utils.h"
|
2015-05-09 17:13:42 +08:00
|
|
|
#include "polly/Config/config.h"
|
2015-04-27 20:32:24 +08:00
|
|
|
#include "polly/DependenceInfo.h"
|
|
|
|
#include "polly/LinkAllPasses.h"
|
|
|
|
#include "polly/ScopInfo.h"
|
|
|
|
#include "polly/Support/GICHelper.h"
|
|
|
|
#include "polly/Support/SCEVValidator.h"
|
2015-05-09 17:13:42 +08:00
|
|
|
#include "polly/Support/ScopHelper.h"
|
2015-04-27 20:32:24 +08:00
|
|
|
#include "llvm/ADT/PostOrderIterator.h"
|
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
|
|
|
#include "llvm/Analysis/LoopInfo.h"
|
|
|
|
#include "llvm/Analysis/PostDominators.h"
|
2015-05-09 17:13:42 +08:00
|
|
|
#include "llvm/IR/DataLayout.h"
|
2015-04-27 20:32:24 +08:00
|
|
|
#include "llvm/IR/Module.h"
|
2015-05-09 17:13:42 +08:00
|
|
|
#include "llvm/IR/Verifier.h"
|
2015-04-27 20:32:24 +08:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
|
2015-05-09 17:13:42 +08:00
|
|
|
#include "isl/aff.h"
|
2015-04-27 20:32:24 +08:00
|
|
|
#include "isl/ast.h"
|
|
|
|
#include "isl/ast_build.h"
|
2015-05-09 17:13:42 +08:00
|
|
|
#include "isl/list.h"
|
2015-04-27 20:32:24 +08:00
|
|
|
#include "isl/map.h"
|
2015-05-09 17:13:42 +08:00
|
|
|
#include "isl/set.h"
|
|
|
|
#include "isl/union_map.h"
|
2015-05-09 17:36:38 +08:00
|
|
|
#include "isl/union_set.h"
|
2015-04-27 20:32:24 +08:00
|
|
|
|
|
|
|
using namespace polly;
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
__isl_give isl_ast_expr *
|
|
|
|
IslNodeBuilder::getUpperBound(__isl_keep isl_ast_node *For,
|
|
|
|
ICmpInst::Predicate &Predicate) {
|
|
|
|
isl_id *UBID, *IteratorID;
|
|
|
|
isl_ast_expr *Cond, *Iterator, *UB, *Arg0;
|
|
|
|
isl_ast_op_type Type;
|
|
|
|
|
|
|
|
Cond = isl_ast_node_for_get_cond(For);
|
|
|
|
Iterator = isl_ast_node_for_get_iterator(For);
|
|
|
|
isl_ast_expr_get_type(Cond);
|
|
|
|
assert(isl_ast_expr_get_type(Cond) == isl_ast_expr_op &&
|
|
|
|
"conditional expression is not an atomic upper bound");
|
|
|
|
|
|
|
|
Type = isl_ast_expr_get_op_type(Cond);
|
|
|
|
|
|
|
|
switch (Type) {
|
|
|
|
case isl_ast_op_le:
|
|
|
|
Predicate = ICmpInst::ICMP_SLE;
|
|
|
|
break;
|
|
|
|
case isl_ast_op_lt:
|
|
|
|
Predicate = ICmpInst::ICMP_SLT;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
llvm_unreachable("Unexpected comparision type in loop conditon");
|
|
|
|
}
|
|
|
|
|
|
|
|
Arg0 = isl_ast_expr_get_op_arg(Cond, 0);
|
|
|
|
|
|
|
|
assert(isl_ast_expr_get_type(Arg0) == isl_ast_expr_id &&
|
|
|
|
"conditional expression is not an atomic upper bound");
|
|
|
|
|
|
|
|
UBID = isl_ast_expr_get_id(Arg0);
|
|
|
|
|
|
|
|
assert(isl_ast_expr_get_type(Iterator) == isl_ast_expr_id &&
|
|
|
|
"Could not get the iterator");
|
|
|
|
|
|
|
|
IteratorID = isl_ast_expr_get_id(Iterator);
|
|
|
|
|
|
|
|
assert(UBID == IteratorID &&
|
|
|
|
"conditional expression is not an atomic upper bound");
|
|
|
|
|
|
|
|
UB = isl_ast_expr_get_op_arg(Cond, 1);
|
|
|
|
|
|
|
|
isl_ast_expr_free(Cond);
|
|
|
|
isl_ast_expr_free(Iterator);
|
|
|
|
isl_ast_expr_free(Arg0);
|
|
|
|
isl_id_free(IteratorID);
|
|
|
|
isl_id_free(UBID);
|
|
|
|
|
|
|
|
return UB;
|
|
|
|
}
|
|
|
|
|
2015-08-21 17:08:14 +08:00
|
|
|
/// @brief Return true if a return value of Predicate is true for the value
|
|
|
|
/// represented by passed isl_ast_expr_int.
|
|
|
|
static bool checkIslAstExprInt(__isl_take isl_ast_expr *Expr,
|
|
|
|
isl_bool (*Predicate)(__isl_keep isl_val *)) {
|
|
|
|
if (isl_ast_expr_get_type(Expr) != isl_ast_expr_int) {
|
|
|
|
isl_ast_expr_free(Expr);
|
|
|
|
return false;
|
2015-04-27 20:32:24 +08:00
|
|
|
}
|
2015-08-21 17:08:14 +08:00
|
|
|
auto ExprVal = isl_ast_expr_get_val(Expr);
|
|
|
|
isl_ast_expr_free(Expr);
|
|
|
|
if (Predicate(ExprVal) != true) {
|
|
|
|
isl_val_free(ExprVal);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
isl_val_free(ExprVal);
|
|
|
|
return true;
|
|
|
|
}
|
2015-04-27 20:32:24 +08:00
|
|
|
|
2015-08-21 17:08:14 +08:00
|
|
|
int IslNodeBuilder::getNumberOfIterations(__isl_keep isl_ast_node *For) {
|
|
|
|
assert(isl_ast_node_get_type(For) == isl_ast_node_for);
|
2015-08-25 04:11:34 +08:00
|
|
|
auto Body = isl_ast_node_for_get_body(For);
|
|
|
|
|
|
|
|
// First, check if we can actually handle this code
|
|
|
|
switch (isl_ast_node_get_type(Body)) {
|
|
|
|
case isl_ast_node_user:
|
|
|
|
break;
|
|
|
|
case isl_ast_node_block: {
|
|
|
|
isl_ast_node_list *List = isl_ast_node_block_get_children(Body);
|
|
|
|
for (int i = 0; i < isl_ast_node_list_n_ast_node(List); ++i) {
|
|
|
|
isl_ast_node *Node = isl_ast_node_list_get_ast_node(List, i);
|
|
|
|
int Type = isl_ast_node_get_type(Node);
|
|
|
|
isl_ast_node_free(Node);
|
|
|
|
if (Type != isl_ast_node_user) {
|
|
|
|
isl_ast_node_list_free(List);
|
|
|
|
isl_ast_node_free(Body);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
isl_ast_node_list_free(List);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
isl_ast_node_free(Body);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
isl_ast_node_free(Body);
|
|
|
|
|
2015-08-21 17:08:14 +08:00
|
|
|
auto Init = isl_ast_node_for_get_init(For);
|
|
|
|
if (!checkIslAstExprInt(Init, isl_val_is_zero))
|
|
|
|
return -1;
|
|
|
|
auto Inc = isl_ast_node_for_get_inc(For);
|
|
|
|
if (!checkIslAstExprInt(Inc, isl_val_is_one))
|
|
|
|
return -1;
|
|
|
|
CmpInst::Predicate Predicate;
|
|
|
|
auto UB = getUpperBound(For, Predicate);
|
|
|
|
if (isl_ast_expr_get_type(UB) != isl_ast_expr_int) {
|
|
|
|
isl_ast_expr_free(UB);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
auto UpVal = isl_ast_expr_get_val(UB);
|
|
|
|
isl_ast_expr_free(UB);
|
|
|
|
int NumberIterations = isl_val_get_num_si(UpVal);
|
|
|
|
isl_val_free(UpVal);
|
|
|
|
if (NumberIterations < 0)
|
2015-04-27 20:32:24 +08:00
|
|
|
return -1;
|
2015-08-21 17:08:14 +08:00
|
|
|
if (Predicate == CmpInst::ICMP_SLT)
|
|
|
|
return NumberIterations;
|
|
|
|
else
|
|
|
|
return NumberIterations + 1;
|
2015-04-27 20:32:24 +08:00
|
|
|
}
|
|
|
|
|
2015-09-05 23:45:25 +08:00
|
|
|
struct SubtreeReferences {
|
2015-04-27 20:32:24 +08:00
|
|
|
LoopInfo &LI;
|
|
|
|
ScalarEvolution &SE;
|
|
|
|
Region &R;
|
2015-10-08 04:15:56 +08:00
|
|
|
ValueMapT &GlobalMap;
|
2015-04-27 20:32:24 +08:00
|
|
|
SetVector<Value *> &Values;
|
|
|
|
SetVector<const SCEV *> &SCEVs;
|
2015-08-31 13:52:24 +08:00
|
|
|
BlockGenerator &BlockGen;
|
2015-04-27 20:32:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/// @brief Extract the values and SCEVs needed to generate code for a block.
|
2015-09-05 23:45:25 +08:00
|
|
|
static int findReferencesInBlock(struct SubtreeReferences &References,
|
|
|
|
const ScopStmt *Stmt, const BasicBlock *BB) {
|
2015-08-31 17:05:43 +08:00
|
|
|
for (const Instruction &Inst : *BB)
|
|
|
|
for (Value *SrcVal : Inst.operands())
|
2015-09-05 23:45:25 +08:00
|
|
|
if (canSynthesize(SrcVal, &References.LI, &References.SE,
|
|
|
|
&References.R)) {
|
|
|
|
References.SCEVs.insert(
|
|
|
|
References.SE.getSCEVAtScope(SrcVal, References.LI.getLoopFor(BB)));
|
2015-08-31 17:05:43 +08:00
|
|
|
continue;
|
2015-10-02 21:11:27 +08:00
|
|
|
} else if (Value *NewVal = References.GlobalMap.lookup(SrcVal))
|
|
|
|
References.Values.insert(NewVal);
|
2015-04-27 20:32:24 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-09-05 23:45:25 +08:00
|
|
|
/// Extract the out-of-scop values and SCEVs referenced from a ScopStmt.
|
2015-04-27 20:32:24 +08:00
|
|
|
///
|
2015-09-05 23:45:25 +08:00
|
|
|
/// This includes the SCEVUnknowns referenced by the SCEVs used in the
|
|
|
|
/// statement and the base pointers of the memory accesses. For scalar
|
|
|
|
/// statements we force the generation of alloca memory locations and list
|
|
|
|
/// these locations in the set of out-of-scop values as well.
|
|
|
|
///
|
|
|
|
/// @param Stmt The statement for which to extract the information.
|
|
|
|
/// @param UserPtr A void pointer that can be casted to a SubtreeReferences
|
|
|
|
/// structure.
|
|
|
|
static isl_stat addReferencesFromStmt(const ScopStmt *Stmt, void *UserPtr) {
|
|
|
|
auto &References = *static_cast<struct SubtreeReferences *>(UserPtr);
|
2015-04-27 20:32:24 +08:00
|
|
|
|
|
|
|
if (Stmt->isBlockStmt())
|
2015-09-05 23:45:25 +08:00
|
|
|
findReferencesInBlock(References, Stmt, Stmt->getBasicBlock());
|
2015-04-27 20:32:24 +08:00
|
|
|
else {
|
|
|
|
assert(Stmt->isRegionStmt() &&
|
|
|
|
"Stmt was neither block nor region statement");
|
|
|
|
for (const BasicBlock *BB : Stmt->getRegion()->blocks())
|
2015-09-05 23:45:25 +08:00
|
|
|
findReferencesInBlock(References, Stmt, BB);
|
2015-04-27 20:32:24 +08:00
|
|
|
}
|
|
|
|
|
2015-08-31 13:52:24 +08:00
|
|
|
for (auto &Access : *Stmt) {
|
2015-09-26 05:21:00 +08:00
|
|
|
if (Access->isExplicit()) {
|
2015-08-31 13:52:24 +08:00
|
|
|
auto *BasePtr = Access->getScopArrayInfo()->getBasePtr();
|
|
|
|
if (Instruction *OpInst = dyn_cast<Instruction>(BasePtr))
|
|
|
|
if (Stmt->getParent()->getRegion().contains(OpInst))
|
|
|
|
continue;
|
|
|
|
|
2015-09-05 23:45:25 +08:00
|
|
|
References.Values.insert(BasePtr);
|
2015-08-31 13:52:24 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-09-05 23:45:25 +08:00
|
|
|
References.Values.insert(References.BlockGen.getOrCreateAlloca(*Access));
|
2015-08-31 13:52:24 +08:00
|
|
|
}
|
|
|
|
|
2015-09-05 23:45:25 +08:00
|
|
|
return isl_stat_ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Extract the out-of-scop values and SCEVs referenced from a set describing
|
|
|
|
/// a ScopStmt.
|
|
|
|
///
|
|
|
|
/// This includes the SCEVUnknowns referenced by the SCEVs used in the
|
|
|
|
/// statement and the base pointers of the memory accesses. For scalar
|
|
|
|
/// statements we force the generation of alloca memory locations and list
|
|
|
|
/// these locations in the set of out-of-scop values as well.
|
|
|
|
///
|
|
|
|
/// @param Set A set which references the ScopStmt we are interested in.
|
|
|
|
/// @param UserPtr A void pointer that can be casted to a SubtreeReferences
|
|
|
|
/// structure.
|
|
|
|
static isl_stat addReferencesFromStmtSet(isl_set *Set, void *UserPtr) {
|
|
|
|
isl_id *Id = isl_set_get_tuple_id(Set);
|
|
|
|
auto *Stmt = static_cast<const ScopStmt *>(isl_id_get_user(Id));
|
2015-04-27 20:32:24 +08:00
|
|
|
isl_id_free(Id);
|
|
|
|
isl_set_free(Set);
|
2015-09-05 23:45:25 +08:00
|
|
|
return addReferencesFromStmt(Stmt, UserPtr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Extract the out-of-scop values and SCEVs referenced from a union set
|
|
|
|
/// referencing multiple ScopStmts.
|
|
|
|
///
|
|
|
|
/// This includes the SCEVUnknowns referenced by the SCEVs used in the
|
|
|
|
/// statement and the base pointers of the memory accesses. For scalar
|
|
|
|
/// statements we force the generation of alloca memory locations and list
|
|
|
|
/// these locations in the set of out-of-scop values as well.
|
|
|
|
///
|
|
|
|
/// @param USet A union set referencing the ScopStmts we are interested
|
|
|
|
/// in.
|
|
|
|
/// @param References The SubtreeReferences data structure through which
|
|
|
|
/// results are returned and further information is
|
|
|
|
/// provided.
|
|
|
|
static void
|
|
|
|
addReferencesFromStmtUnionSet(isl_union_set *USet,
|
|
|
|
struct SubtreeReferences &References) {
|
|
|
|
isl_union_set_foreach_set(USet, addReferencesFromStmtSet, &References);
|
|
|
|
isl_union_set_free(USet);
|
2015-04-27 20:32:24 +08:00
|
|
|
}
|
|
|
|
|
2015-09-09 17:24:38 +08:00
|
|
|
__isl_give isl_union_map *
|
|
|
|
IslNodeBuilder::getScheduleForAstNode(__isl_keep isl_ast_node *For) {
|
|
|
|
return IslAstInfo::getSchedule(For);
|
|
|
|
}
|
|
|
|
|
2015-04-27 20:32:24 +08:00
|
|
|
void IslNodeBuilder::getReferencesInSubtree(__isl_keep isl_ast_node *For,
|
|
|
|
SetVector<Value *> &Values,
|
|
|
|
SetVector<const Loop *> &Loops) {
|
|
|
|
|
|
|
|
SetVector<const SCEV *> SCEVs;
|
2015-10-02 21:11:27 +08:00
|
|
|
struct SubtreeReferences References = {
|
|
|
|
LI, SE, S.getRegion(), ValueMap, Values, SCEVs, getBlockGenerator()};
|
2015-04-27 20:32:24 +08:00
|
|
|
|
|
|
|
for (const auto &I : IDToValue)
|
|
|
|
Values.insert(I.second);
|
|
|
|
|
|
|
|
for (const auto &I : OutsideLoopIterations)
|
|
|
|
Values.insert(cast<SCEVUnknown>(I.second)->getValue());
|
|
|
|
|
2015-09-09 17:24:38 +08:00
|
|
|
isl_union_set *Schedule = isl_union_map_domain(getScheduleForAstNode(For));
|
2015-09-05 23:45:25 +08:00
|
|
|
addReferencesFromStmtUnionSet(Schedule, References);
|
2015-04-27 20:32:24 +08:00
|
|
|
|
|
|
|
for (const SCEV *Expr : SCEVs) {
|
|
|
|
findValues(Expr, Values);
|
|
|
|
findLoops(Expr, Loops);
|
|
|
|
}
|
|
|
|
|
|
|
|
Values.remove_if([](const Value *V) { return isa<GlobalValue>(V); });
|
|
|
|
|
|
|
|
/// Remove loops that contain the scop or that are part of the scop, as they
|
|
|
|
/// are considered local. This leaves only loops that are before the scop, but
|
|
|
|
/// do not contain the scop itself.
|
|
|
|
Loops.remove_if([this](const Loop *L) {
|
2015-05-27 05:37:31 +08:00
|
|
|
return S.getRegion().contains(L) || L->contains(S.getRegion().getEntry());
|
2015-04-27 20:32:24 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-10-08 04:15:56 +08:00
|
|
|
void IslNodeBuilder::updateValues(ValueMapT &NewValues) {
|
2015-04-27 20:32:24 +08:00
|
|
|
SmallPtrSet<Value *, 5> Inserted;
|
|
|
|
|
|
|
|
for (const auto &I : IDToValue) {
|
|
|
|
IDToValue[I.first] = NewValues[I.second];
|
|
|
|
Inserted.insert(I.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const auto &I : NewValues) {
|
|
|
|
if (Inserted.count(I.first))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ValueMap[I.first] = I.second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void IslNodeBuilder::createUserVector(__isl_take isl_ast_node *User,
|
|
|
|
std::vector<Value *> &IVS,
|
|
|
|
__isl_take isl_id *IteratorID,
|
|
|
|
__isl_take isl_union_map *Schedule) {
|
|
|
|
isl_ast_expr *Expr = isl_ast_node_user_get_expr(User);
|
|
|
|
isl_ast_expr *StmtExpr = isl_ast_expr_get_op_arg(Expr, 0);
|
|
|
|
isl_id *Id = isl_ast_expr_get_id(StmtExpr);
|
|
|
|
isl_ast_expr_free(StmtExpr);
|
|
|
|
ScopStmt *Stmt = (ScopStmt *)isl_id_get_user(Id);
|
|
|
|
std::vector<LoopToScevMapT> VLTS(IVS.size());
|
|
|
|
|
|
|
|
isl_union_set *Domain = isl_union_set_from_set(Stmt->getDomain());
|
|
|
|
Schedule = isl_union_map_intersect_domain(Schedule, Domain);
|
|
|
|
isl_map *S = isl_map_from_union_map(Schedule);
|
|
|
|
|
2015-09-05 21:03:57 +08:00
|
|
|
auto *NewAccesses = createNewAccesses(Stmt, User);
|
2015-09-05 17:56:54 +08:00
|
|
|
createSubstitutionsVector(Expr, Stmt, VLTS, IVS, IteratorID);
|
|
|
|
VectorBlockGenerator::generate(BlockGen, *Stmt, VLTS, S, NewAccesses);
|
2015-08-27 15:28:16 +08:00
|
|
|
isl_id_to_ast_expr_free(NewAccesses);
|
2015-04-27 20:32:24 +08:00
|
|
|
isl_map_free(S);
|
|
|
|
isl_id_free(Id);
|
|
|
|
isl_ast_node_free(User);
|
|
|
|
}
|
|
|
|
|
2015-08-23 17:11:00 +08:00
|
|
|
void IslNodeBuilder::createMark(__isl_take isl_ast_node *Node) {
|
|
|
|
auto Child = isl_ast_node_mark_get_node(Node);
|
|
|
|
create(Child);
|
|
|
|
isl_ast_node_free(Node);
|
|
|
|
}
|
|
|
|
|
2015-04-27 20:32:24 +08:00
|
|
|
void IslNodeBuilder::createForVector(__isl_take isl_ast_node *For,
|
|
|
|
int VectorWidth) {
|
|
|
|
isl_ast_node *Body = isl_ast_node_for_get_body(For);
|
|
|
|
isl_ast_expr *Init = isl_ast_node_for_get_init(For);
|
|
|
|
isl_ast_expr *Inc = isl_ast_node_for_get_inc(For);
|
|
|
|
isl_ast_expr *Iterator = isl_ast_node_for_get_iterator(For);
|
|
|
|
isl_id *IteratorID = isl_ast_expr_get_id(Iterator);
|
|
|
|
|
|
|
|
Value *ValueLB = ExprBuilder.create(Init);
|
|
|
|
Value *ValueInc = ExprBuilder.create(Inc);
|
|
|
|
|
|
|
|
Type *MaxType = ExprBuilder.getType(Iterator);
|
|
|
|
MaxType = ExprBuilder.getWidestType(MaxType, ValueLB->getType());
|
|
|
|
MaxType = ExprBuilder.getWidestType(MaxType, ValueInc->getType());
|
|
|
|
|
|
|
|
if (MaxType != ValueLB->getType())
|
|
|
|
ValueLB = Builder.CreateSExt(ValueLB, MaxType);
|
|
|
|
if (MaxType != ValueInc->getType())
|
|
|
|
ValueInc = Builder.CreateSExt(ValueInc, MaxType);
|
|
|
|
|
|
|
|
std::vector<Value *> IVS(VectorWidth);
|
|
|
|
IVS[0] = ValueLB;
|
|
|
|
|
|
|
|
for (int i = 1; i < VectorWidth; i++)
|
|
|
|
IVS[i] = Builder.CreateAdd(IVS[i - 1], ValueInc, "p_vector_iv");
|
|
|
|
|
2015-09-09 17:24:38 +08:00
|
|
|
isl_union_map *Schedule = getScheduleForAstNode(For);
|
2015-04-27 20:32:24 +08:00
|
|
|
assert(Schedule && "For statement annotation does not contain its schedule");
|
|
|
|
|
|
|
|
IDToValue[IteratorID] = ValueLB;
|
|
|
|
|
|
|
|
switch (isl_ast_node_get_type(Body)) {
|
|
|
|
case isl_ast_node_user:
|
|
|
|
createUserVector(Body, IVS, isl_id_copy(IteratorID),
|
|
|
|
isl_union_map_copy(Schedule));
|
|
|
|
break;
|
|
|
|
case isl_ast_node_block: {
|
|
|
|
isl_ast_node_list *List = isl_ast_node_block_get_children(Body);
|
|
|
|
|
|
|
|
for (int i = 0; i < isl_ast_node_list_n_ast_node(List); ++i)
|
|
|
|
createUserVector(isl_ast_node_list_get_ast_node(List, i), IVS,
|
|
|
|
isl_id_copy(IteratorID), isl_union_map_copy(Schedule));
|
|
|
|
|
|
|
|
isl_ast_node_free(Body);
|
|
|
|
isl_ast_node_list_free(List);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
isl_ast_node_dump(Body);
|
|
|
|
llvm_unreachable("Unhandled isl_ast_node in vectorizer");
|
|
|
|
}
|
|
|
|
|
|
|
|
IDToValue.erase(IDToValue.find(IteratorID));
|
|
|
|
isl_id_free(IteratorID);
|
|
|
|
isl_union_map_free(Schedule);
|
|
|
|
|
|
|
|
isl_ast_node_free(For);
|
|
|
|
isl_ast_expr_free(Iterator);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IslNodeBuilder::createForSequential(__isl_take isl_ast_node *For) {
|
|
|
|
isl_ast_node *Body;
|
|
|
|
isl_ast_expr *Init, *Inc, *Iterator, *UB;
|
|
|
|
isl_id *IteratorID;
|
|
|
|
Value *ValueLB, *ValueUB, *ValueInc;
|
|
|
|
Type *MaxType;
|
|
|
|
BasicBlock *ExitBlock;
|
|
|
|
Value *IV;
|
|
|
|
CmpInst::Predicate Predicate;
|
|
|
|
bool Parallel;
|
|
|
|
|
|
|
|
Parallel =
|
|
|
|
IslAstInfo::isParallel(For) && !IslAstInfo::isReductionParallel(For);
|
|
|
|
|
|
|
|
Body = isl_ast_node_for_get_body(For);
|
|
|
|
|
|
|
|
// isl_ast_node_for_is_degenerate(For)
|
|
|
|
//
|
|
|
|
// TODO: For degenerated loops we could generate a plain assignment.
|
|
|
|
// However, for now we just reuse the logic for normal loops, which will
|
|
|
|
// create a loop with a single iteration.
|
|
|
|
|
|
|
|
Init = isl_ast_node_for_get_init(For);
|
|
|
|
Inc = isl_ast_node_for_get_inc(For);
|
|
|
|
Iterator = isl_ast_node_for_get_iterator(For);
|
|
|
|
IteratorID = isl_ast_expr_get_id(Iterator);
|
|
|
|
UB = getUpperBound(For, Predicate);
|
|
|
|
|
|
|
|
ValueLB = ExprBuilder.create(Init);
|
|
|
|
ValueUB = ExprBuilder.create(UB);
|
|
|
|
ValueInc = ExprBuilder.create(Inc);
|
|
|
|
|
|
|
|
MaxType = ExprBuilder.getType(Iterator);
|
|
|
|
MaxType = ExprBuilder.getWidestType(MaxType, ValueLB->getType());
|
|
|
|
MaxType = ExprBuilder.getWidestType(MaxType, ValueUB->getType());
|
|
|
|
MaxType = ExprBuilder.getWidestType(MaxType, ValueInc->getType());
|
|
|
|
|
|
|
|
if (MaxType != ValueLB->getType())
|
|
|
|
ValueLB = Builder.CreateSExt(ValueLB, MaxType);
|
|
|
|
if (MaxType != ValueUB->getType())
|
|
|
|
ValueUB = Builder.CreateSExt(ValueUB, MaxType);
|
|
|
|
if (MaxType != ValueInc->getType())
|
|
|
|
ValueInc = Builder.CreateSExt(ValueInc, MaxType);
|
|
|
|
|
|
|
|
// If we can show that LB <Predicate> UB holds at least once, we can
|
|
|
|
// omit the GuardBB in front of the loop.
|
|
|
|
bool UseGuardBB =
|
|
|
|
!SE.isKnownPredicate(Predicate, SE.getSCEV(ValueLB), SE.getSCEV(ValueUB));
|
|
|
|
IV = createLoop(ValueLB, ValueUB, ValueInc, Builder, P, LI, DT, ExitBlock,
|
|
|
|
Predicate, &Annotator, Parallel, UseGuardBB);
|
|
|
|
IDToValue[IteratorID] = IV;
|
|
|
|
|
|
|
|
create(Body);
|
|
|
|
|
|
|
|
Annotator.popLoop(Parallel);
|
|
|
|
|
|
|
|
IDToValue.erase(IDToValue.find(IteratorID));
|
|
|
|
|
2015-11-07 06:56:54 +08:00
|
|
|
Builder.SetInsertPoint(&ExitBlock->front());
|
2015-04-27 20:32:24 +08:00
|
|
|
|
|
|
|
isl_ast_node_free(For);
|
|
|
|
isl_ast_expr_free(Iterator);
|
|
|
|
isl_id_free(IteratorID);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @brief Remove the BBs contained in a (sub)function from the dominator tree.
|
|
|
|
///
|
|
|
|
/// This function removes the basic blocks that are part of a subfunction from
|
|
|
|
/// the dominator tree. Specifically, when generating code it may happen that at
|
|
|
|
/// some point the code generation continues in a new sub-function (e.g., when
|
|
|
|
/// generating OpenMP code). The basic blocks that are created in this
|
|
|
|
/// sub-function are then still part of the dominator tree of the original
|
|
|
|
/// function, such that the dominator tree reaches over function boundaries.
|
|
|
|
/// This is not only incorrect, but also causes crashes. This function now
|
|
|
|
/// removes from the dominator tree all basic blocks that are dominated (and
|
|
|
|
/// consequently reachable) from the entry block of this (sub)function.
|
|
|
|
///
|
|
|
|
/// FIXME: A LLVM (function or region) pass should not touch anything outside of
|
|
|
|
/// the function/region it runs on. Hence, the pure need for this function shows
|
|
|
|
/// that we do not comply to this rule. At the moment, this does not cause any
|
|
|
|
/// issues, but we should be aware that such issues may appear. Unfortunately
|
|
|
|
/// the current LLVM pass infrastructure does not allow to make Polly a module
|
|
|
|
/// or call-graph pass to solve this issue, as such a pass would not have access
|
|
|
|
/// to the per-function analyses passes needed by Polly. A future pass manager
|
|
|
|
/// infrastructure is supposed to enable such kind of access possibly allowing
|
|
|
|
/// us to create a cleaner solution here.
|
|
|
|
///
|
|
|
|
/// FIXME: Instead of adding the dominance information and then dropping it
|
|
|
|
/// later on, we should try to just not add it in the first place. This requires
|
|
|
|
/// some careful testing to make sure this does not break in interaction with
|
|
|
|
/// the SCEVBuilder and SplitBlock which may rely on the dominator tree or
|
|
|
|
/// which may try to update it.
|
|
|
|
///
|
|
|
|
/// @param F The function which contains the BBs to removed.
|
|
|
|
/// @param DT The dominator tree from which to remove the BBs.
|
|
|
|
static void removeSubFuncFromDomTree(Function *F, DominatorTree &DT) {
|
|
|
|
DomTreeNode *N = DT.getNode(&F->getEntryBlock());
|
|
|
|
std::vector<BasicBlock *> Nodes;
|
|
|
|
|
|
|
|
// We can only remove an element from the dominator tree, if all its children
|
|
|
|
// have been removed. To ensure this we obtain the list of nodes to remove
|
|
|
|
// using a post-order tree traversal.
|
|
|
|
for (po_iterator<DomTreeNode *> I = po_begin(N), E = po_end(N); I != E; ++I)
|
|
|
|
Nodes.push_back(I->getBlock());
|
|
|
|
|
|
|
|
for (BasicBlock *BB : Nodes)
|
|
|
|
DT.eraseNode(BB);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IslNodeBuilder::createForParallel(__isl_take isl_ast_node *For) {
|
|
|
|
isl_ast_node *Body;
|
|
|
|
isl_ast_expr *Init, *Inc, *Iterator, *UB;
|
|
|
|
isl_id *IteratorID;
|
|
|
|
Value *ValueLB, *ValueUB, *ValueInc;
|
|
|
|
Type *MaxType;
|
|
|
|
Value *IV;
|
|
|
|
CmpInst::Predicate Predicate;
|
|
|
|
|
2015-09-27 04:57:59 +08:00
|
|
|
// The preamble of parallel code interacts different than normal code with
|
|
|
|
// e.g., scalar initialization. Therefore, we ensure the parallel code is
|
|
|
|
// separated from the last basic block.
|
2015-11-07 06:56:54 +08:00
|
|
|
BasicBlock *ParBB = SplitBlock(Builder.GetInsertBlock(),
|
|
|
|
&*Builder.GetInsertPoint(), &DT, &LI);
|
2015-09-27 04:57:59 +08:00
|
|
|
ParBB->setName("polly.parallel.for");
|
2015-11-07 06:56:54 +08:00
|
|
|
Builder.SetInsertPoint(&ParBB->front());
|
2015-09-27 04:57:59 +08:00
|
|
|
|
2015-04-27 20:32:24 +08:00
|
|
|
Body = isl_ast_node_for_get_body(For);
|
|
|
|
Init = isl_ast_node_for_get_init(For);
|
|
|
|
Inc = isl_ast_node_for_get_inc(For);
|
|
|
|
Iterator = isl_ast_node_for_get_iterator(For);
|
|
|
|
IteratorID = isl_ast_expr_get_id(Iterator);
|
|
|
|
UB = getUpperBound(For, Predicate);
|
|
|
|
|
|
|
|
ValueLB = ExprBuilder.create(Init);
|
|
|
|
ValueUB = ExprBuilder.create(UB);
|
|
|
|
ValueInc = ExprBuilder.create(Inc);
|
|
|
|
|
|
|
|
// OpenMP always uses SLE. In case the isl generated AST uses a SLT
|
|
|
|
// expression, we need to adjust the loop blound by one.
|
|
|
|
if (Predicate == CmpInst::ICMP_SLT)
|
|
|
|
ValueUB = Builder.CreateAdd(
|
|
|
|
ValueUB, Builder.CreateSExt(Builder.getTrue(), ValueUB->getType()));
|
|
|
|
|
|
|
|
MaxType = ExprBuilder.getType(Iterator);
|
|
|
|
MaxType = ExprBuilder.getWidestType(MaxType, ValueLB->getType());
|
|
|
|
MaxType = ExprBuilder.getWidestType(MaxType, ValueUB->getType());
|
|
|
|
MaxType = ExprBuilder.getWidestType(MaxType, ValueInc->getType());
|
|
|
|
|
|
|
|
if (MaxType != ValueLB->getType())
|
|
|
|
ValueLB = Builder.CreateSExt(ValueLB, MaxType);
|
|
|
|
if (MaxType != ValueUB->getType())
|
|
|
|
ValueUB = Builder.CreateSExt(ValueUB, MaxType);
|
|
|
|
if (MaxType != ValueInc->getType())
|
|
|
|
ValueInc = Builder.CreateSExt(ValueInc, MaxType);
|
|
|
|
|
|
|
|
BasicBlock::iterator LoopBody;
|
|
|
|
|
|
|
|
SetVector<Value *> SubtreeValues;
|
|
|
|
SetVector<const Loop *> Loops;
|
|
|
|
|
|
|
|
getReferencesInSubtree(For, SubtreeValues, Loops);
|
|
|
|
|
|
|
|
// Create for all loops we depend on values that contain the current loop
|
|
|
|
// iteration. These values are necessary to generate code for SCEVs that
|
|
|
|
// depend on such loops. As a result we need to pass them to the subfunction.
|
|
|
|
for (const Loop *L : Loops) {
|
|
|
|
const SCEV *OuterLIV = SE.getAddRecExpr(SE.getUnknown(Builder.getInt64(0)),
|
|
|
|
SE.getUnknown(Builder.getInt64(1)),
|
|
|
|
L, SCEV::FlagAnyWrap);
|
|
|
|
Value *V = generateSCEV(OuterLIV);
|
|
|
|
OutsideLoopIterations[L] = SE.getUnknown(V);
|
|
|
|
SubtreeValues.insert(V);
|
|
|
|
}
|
|
|
|
|
2015-10-08 04:15:56 +08:00
|
|
|
ValueMapT NewValues;
|
2015-04-27 20:32:24 +08:00
|
|
|
ParallelLoopGenerator ParallelLoopGen(Builder, P, LI, DT, DL);
|
|
|
|
|
|
|
|
IV = ParallelLoopGen.createParallelLoop(ValueLB, ValueUB, ValueInc,
|
|
|
|
SubtreeValues, NewValues, &LoopBody);
|
|
|
|
BasicBlock::iterator AfterLoop = Builder.GetInsertPoint();
|
2015-11-07 06:56:54 +08:00
|
|
|
Builder.SetInsertPoint(&*LoopBody);
|
2015-04-27 20:32:24 +08:00
|
|
|
|
|
|
|
// Save the current values.
|
2015-10-04 18:18:32 +08:00
|
|
|
auto ValueMapCopy = ValueMap;
|
2015-04-27 20:32:24 +08:00
|
|
|
IslExprBuilder::IDToValueTy IDToValueCopy = IDToValue;
|
|
|
|
|
|
|
|
updateValues(NewValues);
|
|
|
|
IDToValue[IteratorID] = IV;
|
|
|
|
|
2015-10-08 04:15:56 +08:00
|
|
|
ValueMapT NewValuesReverse;
|
2015-08-20 00:04:35 +08:00
|
|
|
|
|
|
|
for (auto P : NewValues)
|
|
|
|
NewValuesReverse[P.second] = P.first;
|
|
|
|
|
|
|
|
Annotator.addAlternativeAliasBases(NewValuesReverse);
|
|
|
|
|
2015-04-27 20:32:24 +08:00
|
|
|
create(Body);
|
|
|
|
|
2015-08-20 00:04:35 +08:00
|
|
|
Annotator.resetAlternativeAliasBases();
|
2015-04-27 20:32:24 +08:00
|
|
|
// Restore the original values.
|
|
|
|
ValueMap = ValueMapCopy;
|
|
|
|
IDToValue = IDToValueCopy;
|
|
|
|
|
2015-11-07 06:56:54 +08:00
|
|
|
Builder.SetInsertPoint(&*AfterLoop);
|
2015-04-27 20:32:24 +08:00
|
|
|
removeSubFuncFromDomTree((*LoopBody).getParent()->getParent(), DT);
|
|
|
|
|
|
|
|
for (const Loop *L : Loops)
|
|
|
|
OutsideLoopIterations.erase(L);
|
|
|
|
|
|
|
|
isl_ast_node_free(For);
|
|
|
|
isl_ast_expr_free(Iterator);
|
|
|
|
isl_id_free(IteratorID);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IslNodeBuilder::createFor(__isl_take isl_ast_node *For) {
|
|
|
|
bool Vector = PollyVectorizerChoice == VECTORIZER_POLLY;
|
|
|
|
|
|
|
|
if (Vector && IslAstInfo::isInnermostParallel(For) &&
|
|
|
|
!IslAstInfo::isReductionParallel(For)) {
|
|
|
|
int VectorWidth = getNumberOfIterations(For);
|
|
|
|
if (1 < VectorWidth && VectorWidth <= 16) {
|
|
|
|
createForVector(For, VectorWidth);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IslAstInfo::isExecutedInParallel(For)) {
|
|
|
|
createForParallel(For);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
createForSequential(For);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IslNodeBuilder::createIf(__isl_take isl_ast_node *If) {
|
|
|
|
isl_ast_expr *Cond = isl_ast_node_if_get_cond(If);
|
|
|
|
|
|
|
|
Function *F = Builder.GetInsertBlock()->getParent();
|
|
|
|
LLVMContext &Context = F->getContext();
|
|
|
|
|
2015-11-07 06:56:54 +08:00
|
|
|
BasicBlock *CondBB = SplitBlock(Builder.GetInsertBlock(),
|
|
|
|
&*Builder.GetInsertPoint(), &DT, &LI);
|
2015-04-27 20:32:24 +08:00
|
|
|
CondBB->setName("polly.cond");
|
2015-11-07 06:56:54 +08:00
|
|
|
BasicBlock *MergeBB = SplitBlock(CondBB, &CondBB->front(), &DT, &LI);
|
2015-04-27 20:32:24 +08:00
|
|
|
MergeBB->setName("polly.merge");
|
|
|
|
BasicBlock *ThenBB = BasicBlock::Create(Context, "polly.then", F);
|
|
|
|
BasicBlock *ElseBB = BasicBlock::Create(Context, "polly.else", F);
|
|
|
|
|
|
|
|
DT.addNewBlock(ThenBB, CondBB);
|
|
|
|
DT.addNewBlock(ElseBB, CondBB);
|
|
|
|
DT.changeImmediateDominator(MergeBB, CondBB);
|
|
|
|
|
|
|
|
Loop *L = LI.getLoopFor(CondBB);
|
|
|
|
if (L) {
|
|
|
|
L->addBasicBlockToLoop(ThenBB, LI);
|
|
|
|
L->addBasicBlockToLoop(ElseBB, LI);
|
|
|
|
}
|
|
|
|
|
|
|
|
CondBB->getTerminator()->eraseFromParent();
|
|
|
|
|
|
|
|
Builder.SetInsertPoint(CondBB);
|
|
|
|
Value *Predicate = ExprBuilder.create(Cond);
|
|
|
|
Builder.CreateCondBr(Predicate, ThenBB, ElseBB);
|
|
|
|
Builder.SetInsertPoint(ThenBB);
|
|
|
|
Builder.CreateBr(MergeBB);
|
|
|
|
Builder.SetInsertPoint(ElseBB);
|
|
|
|
Builder.CreateBr(MergeBB);
|
2015-11-07 06:56:54 +08:00
|
|
|
Builder.SetInsertPoint(&ThenBB->front());
|
2015-04-27 20:32:24 +08:00
|
|
|
|
|
|
|
create(isl_ast_node_if_get_then(If));
|
|
|
|
|
2015-11-07 06:56:54 +08:00
|
|
|
Builder.SetInsertPoint(&ElseBB->front());
|
2015-04-27 20:32:24 +08:00
|
|
|
|
|
|
|
if (isl_ast_node_if_has_else(If))
|
|
|
|
create(isl_ast_node_if_get_else(If));
|
|
|
|
|
2015-11-07 06:56:54 +08:00
|
|
|
Builder.SetInsertPoint(&MergeBB->front());
|
2015-04-27 20:32:24 +08:00
|
|
|
|
|
|
|
isl_ast_node_free(If);
|
|
|
|
}
|
|
|
|
|
2015-08-27 15:28:16 +08:00
|
|
|
__isl_give isl_id_to_ast_expr *
|
|
|
|
IslNodeBuilder::createNewAccesses(ScopStmt *Stmt,
|
2015-09-05 21:03:57 +08:00
|
|
|
__isl_keep isl_ast_node *Node) {
|
2015-08-27 15:28:16 +08:00
|
|
|
isl_id_to_ast_expr *NewAccesses =
|
2015-09-05 21:03:57 +08:00
|
|
|
isl_id_to_ast_expr_alloc(Stmt->getParent()->getIslCtx(), 0);
|
2015-08-27 15:28:16 +08:00
|
|
|
for (auto *MA : *Stmt) {
|
|
|
|
if (!MA->hasNewAccessRelation())
|
|
|
|
continue;
|
|
|
|
|
2015-09-05 21:03:57 +08:00
|
|
|
auto Build = IslAstInfo::getBuild(Node);
|
|
|
|
assert(Build && "Could not obtain isl_ast_build from user node");
|
2015-08-27 15:28:16 +08:00
|
|
|
auto Schedule = isl_ast_build_get_schedule(Build);
|
|
|
|
auto PWAccRel = MA->applyScheduleToAccessRelation(Schedule);
|
|
|
|
|
|
|
|
auto AccessExpr = isl_ast_build_access_from_pw_multi_aff(Build, PWAccRel);
|
|
|
|
NewAccesses = isl_id_to_ast_expr_set(NewAccesses, MA->getId(), AccessExpr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NewAccesses;
|
|
|
|
}
|
|
|
|
|
2015-04-27 20:32:24 +08:00
|
|
|
void IslNodeBuilder::createSubstitutions(isl_ast_expr *Expr, ScopStmt *Stmt,
|
2015-09-05 17:56:54 +08:00
|
|
|
LoopToScevMapT <S) {
|
2015-04-27 20:32:24 +08:00
|
|
|
assert(isl_ast_expr_get_type(Expr) == isl_ast_expr_op &&
|
|
|
|
"Expression of type 'op' expected");
|
|
|
|
assert(isl_ast_expr_get_op_type(Expr) == isl_ast_op_call &&
|
|
|
|
"Opertation of type 'call' expected");
|
|
|
|
for (int i = 0; i < isl_ast_expr_get_op_n_arg(Expr) - 1; ++i) {
|
|
|
|
isl_ast_expr *SubExpr;
|
|
|
|
Value *V;
|
|
|
|
|
|
|
|
SubExpr = isl_ast_expr_get_op_arg(Expr, i + 1);
|
|
|
|
V = ExprBuilder.create(SubExpr);
|
|
|
|
ScalarEvolution *SE = Stmt->getParent()->getSE();
|
|
|
|
LTS[Stmt->getLoopForDimension(i)] = SE->getUnknown(V);
|
|
|
|
}
|
|
|
|
|
|
|
|
isl_ast_expr_free(Expr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IslNodeBuilder::createSubstitutionsVector(
|
2015-09-05 17:56:54 +08:00
|
|
|
__isl_take isl_ast_expr *Expr, ScopStmt *Stmt,
|
2015-04-27 20:32:24 +08:00
|
|
|
std::vector<LoopToScevMapT> &VLTS, std::vector<Value *> &IVS,
|
|
|
|
__isl_take isl_id *IteratorID) {
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
Value *OldValue = IDToValue[IteratorID];
|
|
|
|
for (Value *IV : IVS) {
|
|
|
|
IDToValue[IteratorID] = IV;
|
2015-09-05 17:56:54 +08:00
|
|
|
createSubstitutions(isl_ast_expr_copy(Expr), Stmt, VLTS[i]);
|
2015-04-27 20:32:24 +08:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
IDToValue[IteratorID] = OldValue;
|
|
|
|
isl_id_free(IteratorID);
|
|
|
|
isl_ast_expr_free(Expr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IslNodeBuilder::createUser(__isl_take isl_ast_node *User) {
|
|
|
|
LoopToScevMapT LTS;
|
|
|
|
isl_id *Id;
|
|
|
|
ScopStmt *Stmt;
|
|
|
|
|
|
|
|
isl_ast_expr *Expr = isl_ast_node_user_get_expr(User);
|
|
|
|
isl_ast_expr *StmtExpr = isl_ast_expr_get_op_arg(Expr, 0);
|
|
|
|
Id = isl_ast_expr_get_id(StmtExpr);
|
|
|
|
isl_ast_expr_free(StmtExpr);
|
|
|
|
|
|
|
|
LTS.insert(OutsideLoopIterations.begin(), OutsideLoopIterations.end());
|
|
|
|
|
|
|
|
Stmt = (ScopStmt *)isl_id_get_user(Id);
|
2015-09-05 21:03:57 +08:00
|
|
|
auto *NewAccesses = createNewAccesses(Stmt, User);
|
2015-09-05 17:56:54 +08:00
|
|
|
createSubstitutions(Expr, Stmt, LTS);
|
2015-08-27 15:28:16 +08:00
|
|
|
|
2015-04-27 20:32:24 +08:00
|
|
|
if (Stmt->isBlockStmt())
|
2015-09-05 17:56:54 +08:00
|
|
|
BlockGen.copyStmt(*Stmt, LTS, NewAccesses);
|
2015-04-27 20:32:24 +08:00
|
|
|
else
|
2015-09-05 17:56:54 +08:00
|
|
|
RegionGen.copyStmt(*Stmt, LTS, NewAccesses);
|
2015-04-27 20:32:24 +08:00
|
|
|
|
2015-08-27 15:28:16 +08:00
|
|
|
isl_id_to_ast_expr_free(NewAccesses);
|
2015-04-27 20:32:24 +08:00
|
|
|
isl_ast_node_free(User);
|
|
|
|
isl_id_free(Id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IslNodeBuilder::createBlock(__isl_take isl_ast_node *Block) {
|
|
|
|
isl_ast_node_list *List = isl_ast_node_block_get_children(Block);
|
|
|
|
|
|
|
|
for (int i = 0; i < isl_ast_node_list_n_ast_node(List); ++i)
|
|
|
|
create(isl_ast_node_list_get_ast_node(List, i));
|
|
|
|
|
|
|
|
isl_ast_node_free(Block);
|
|
|
|
isl_ast_node_list_free(List);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IslNodeBuilder::create(__isl_take isl_ast_node *Node) {
|
|
|
|
switch (isl_ast_node_get_type(Node)) {
|
|
|
|
case isl_ast_node_error:
|
|
|
|
llvm_unreachable("code generation error");
|
|
|
|
case isl_ast_node_mark:
|
2015-08-23 17:11:00 +08:00
|
|
|
createMark(Node);
|
|
|
|
return;
|
2015-04-27 20:32:24 +08:00
|
|
|
case isl_ast_node_for:
|
|
|
|
createFor(Node);
|
|
|
|
return;
|
|
|
|
case isl_ast_node_if:
|
|
|
|
createIf(Node);
|
|
|
|
return;
|
|
|
|
case isl_ast_node_user:
|
|
|
|
createUser(Node);
|
|
|
|
return;
|
|
|
|
case isl_ast_node_block:
|
|
|
|
createBlock(Node);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm_unreachable("Unknown isl_ast_node type");
|
|
|
|
}
|
|
|
|
|
2015-11-08 03:46:04 +08:00
|
|
|
bool IslNodeBuilder::materializeValue(isl_id *Id) {
|
2015-09-30 17:52:08 +08:00
|
|
|
// If the Id is already mapped, skip it.
|
2015-10-04 01:20:00 +08:00
|
|
|
if (!IDToValue.count(Id)) {
|
2015-10-18 20:39:19 +08:00
|
|
|
auto *ParamSCEV = (const SCEV *)isl_id_get_user(Id);
|
2015-11-11 12:30:07 +08:00
|
|
|
Value *V = nullptr;
|
2015-10-18 20:39:19 +08:00
|
|
|
|
|
|
|
// Parameters could refere to invariant loads that need to be
|
|
|
|
// preloaded before we can generate code for the parameter. Thus,
|
|
|
|
// check if any value refered to in ParamSCEV is an invariant load
|
|
|
|
// and if so make sure its equivalence class is preloaded.
|
|
|
|
SetVector<Value *> Values;
|
|
|
|
findValues(ParamSCEV, Values);
|
2015-11-12 06:40:51 +08:00
|
|
|
for (auto *Val : Values) {
|
|
|
|
|
|
|
|
// Check if the value is an instruction in a dead block within the SCoP
|
|
|
|
// and if so do not code generate it.
|
|
|
|
if (auto *Inst = dyn_cast<Instruction>(Val)) {
|
|
|
|
if (S.getRegion().contains(Inst)) {
|
|
|
|
bool IsDead = true;
|
|
|
|
|
|
|
|
// Check for "undef" loads first, then if there is a statement for
|
|
|
|
// the parent of Inst and lastly if the parent of Inst has an empty
|
|
|
|
// domain. In the first and last case the instruction is dead but if
|
|
|
|
// there is a statement or the domain is not empty Inst is not dead.
|
|
|
|
auto *Address = getPointerOperand(*Inst);
|
|
|
|
if (Address &&
|
|
|
|
SE.getUnknown(UndefValue::get(Address->getType())) ==
|
|
|
|
SE.getPointerBase(SE.getSCEV(Address))) {
|
|
|
|
} else if (S.getStmtForBasicBlock(Inst->getParent())) {
|
|
|
|
IsDead = false;
|
|
|
|
} else {
|
|
|
|
auto *Domain = S.getDomainConditions(Inst->getParent());
|
|
|
|
IsDead = isl_set_is_empty(Domain);
|
|
|
|
isl_set_free(Domain);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsDead) {
|
|
|
|
V = UndefValue::get(ParamSCEV->getType());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-11 12:30:07 +08:00
|
|
|
if (const auto *IAClass = S.lookupInvariantEquivClass(Val)) {
|
|
|
|
|
|
|
|
// Check if this invariant access class is empty, hence if we never
|
|
|
|
// actually added a loads instruction to it. In that case it has no
|
|
|
|
// (meaningful) users and we should not try to code generate it.
|
|
|
|
if (std::get<1>(*IAClass).empty())
|
|
|
|
V = UndefValue::get(ParamSCEV->getType());
|
|
|
|
|
2015-11-08 03:46:04 +08:00
|
|
|
if (!preloadInvariantEquivClass(*IAClass)) {
|
|
|
|
isl_id_free(Id);
|
|
|
|
return false;
|
|
|
|
}
|
2015-11-11 12:30:07 +08:00
|
|
|
}
|
2015-11-12 06:40:51 +08:00
|
|
|
}
|
2015-10-18 20:39:19 +08:00
|
|
|
|
2015-11-12 06:40:51 +08:00
|
|
|
V = V ? V : generateSCEV(ParamSCEV);
|
2015-10-04 01:20:00 +08:00
|
|
|
IDToValue[Id] = V;
|
|
|
|
}
|
2015-09-30 17:52:08 +08:00
|
|
|
|
|
|
|
isl_id_free(Id);
|
2015-11-08 03:46:04 +08:00
|
|
|
return true;
|
2015-09-30 17:52:08 +08:00
|
|
|
}
|
|
|
|
|
2015-11-08 03:46:04 +08:00
|
|
|
bool IslNodeBuilder::materializeParameters(isl_set *Set, bool All) {
|
2015-09-30 17:52:08 +08:00
|
|
|
for (unsigned i = 0, e = isl_set_dim(Set, isl_dim_param); i < e; ++i) {
|
|
|
|
if (!All && !isl_set_involves_dims(Set, isl_dim_param, i, 1))
|
|
|
|
continue;
|
|
|
|
isl_id *Id = isl_set_get_dim_id(Set, isl_dim_param, i);
|
2015-11-08 03:46:04 +08:00
|
|
|
if (!materializeValue(Id))
|
|
|
|
return false;
|
2015-09-30 17:52:08 +08:00
|
|
|
}
|
2015-11-08 03:46:04 +08:00
|
|
|
return true;
|
2015-09-30 17:52:08 +08:00
|
|
|
}
|
|
|
|
|
2015-10-08 04:17:36 +08:00
|
|
|
Value *IslNodeBuilder::preloadUnconditionally(isl_set *AccessRange,
|
2015-10-18 20:36:42 +08:00
|
|
|
isl_ast_build *Build, Type *Ty) {
|
2015-09-30 07:47:21 +08:00
|
|
|
isl_pw_multi_aff *PWAccRel = isl_pw_multi_aff_from_set(AccessRange);
|
|
|
|
PWAccRel = isl_pw_multi_aff_gist_params(PWAccRel, S.getContext());
|
|
|
|
isl_ast_expr *Access =
|
|
|
|
isl_ast_build_access_from_pw_multi_aff(Build, PWAccRel);
|
2015-10-18 20:36:42 +08:00
|
|
|
Value *PreloadVal = ExprBuilder.create(Access);
|
2015-11-11 14:20:25 +08:00
|
|
|
|
|
|
|
// Correct the type as the SAI might have a different type than the user
|
|
|
|
// expects, especially if the base pointer is a struct.
|
|
|
|
if (Ty == PreloadVal->getType())
|
|
|
|
return PreloadVal;
|
|
|
|
|
|
|
|
if (!Ty->isFloatingPointTy() && !PreloadVal->getType()->isFloatingPointTy())
|
|
|
|
return PreloadVal = Builder.CreateBitOrPointerCast(PreloadVal, Ty);
|
|
|
|
|
|
|
|
// We do not want to cast floating point to non-floating point types and vice
|
|
|
|
// versa, thus we simply create a new load with a casted pointer expression.
|
|
|
|
auto *LInst = dyn_cast<LoadInst>(PreloadVal);
|
|
|
|
assert(LInst && "Preloaded value was not a load instruction");
|
|
|
|
auto *Ptr = LInst->getPointerOperand();
|
|
|
|
Ptr = Builder.CreatePointerCast(Ptr, Ty->getPointerTo(),
|
|
|
|
Ptr->getName() + ".cast");
|
|
|
|
PreloadVal = Builder.CreateLoad(Ptr, LInst->getName());
|
|
|
|
LInst->eraseFromParent();
|
2015-10-18 20:36:42 +08:00
|
|
|
return PreloadVal;
|
2015-09-30 07:47:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Value *IslNodeBuilder::preloadInvariantLoad(const MemoryAccess &MA,
|
2015-10-18 20:36:42 +08:00
|
|
|
isl_set *Domain) {
|
2015-09-30 07:47:21 +08:00
|
|
|
|
2015-10-08 04:17:36 +08:00
|
|
|
isl_set *AccessRange = isl_map_range(MA.getAccessRelation());
|
2015-11-08 03:46:04 +08:00
|
|
|
if (!materializeParameters(AccessRange, false)) {
|
|
|
|
isl_set_free(AccessRange);
|
|
|
|
isl_set_free(Domain);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2015-10-08 04:17:36 +08:00
|
|
|
|
2015-11-08 03:46:04 +08:00
|
|
|
auto *Build = isl_ast_build_from_context(isl_set_universe(S.getParamSpace()));
|
2015-09-30 07:47:21 +08:00
|
|
|
isl_set *Universe = isl_set_universe(isl_set_get_space(Domain));
|
|
|
|
bool AlwaysExecuted = isl_set_is_equal(Domain, Universe);
|
|
|
|
isl_set_free(Universe);
|
|
|
|
|
2015-10-18 20:36:42 +08:00
|
|
|
Instruction *AccInst = MA.getAccessInstruction();
|
|
|
|
Type *AccInstTy = AccInst->getType();
|
|
|
|
|
2015-11-08 03:46:04 +08:00
|
|
|
Value *PreloadVal = nullptr;
|
2015-09-30 07:47:21 +08:00
|
|
|
if (AlwaysExecuted) {
|
2015-10-18 20:36:42 +08:00
|
|
|
PreloadVal = preloadUnconditionally(AccessRange, Build, AccInstTy);
|
2015-11-08 03:46:04 +08:00
|
|
|
isl_ast_build_free(Build);
|
|
|
|
isl_set_free(Domain);
|
|
|
|
return PreloadVal;
|
|
|
|
}
|
2015-09-30 07:47:21 +08:00
|
|
|
|
2015-11-08 03:46:04 +08:00
|
|
|
if (!materializeParameters(Domain, false)) {
|
|
|
|
isl_ast_build_free(Build);
|
|
|
|
isl_set_free(AccessRange);
|
|
|
|
isl_set_free(Domain);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2015-09-30 07:47:21 +08:00
|
|
|
|
2015-11-08 03:46:04 +08:00
|
|
|
isl_ast_expr *DomainCond = isl_ast_build_expr_from_set(Build, Domain);
|
|
|
|
Domain = nullptr;
|
2015-09-30 07:47:21 +08:00
|
|
|
|
2015-11-08 03:46:04 +08:00
|
|
|
Value *Cond = ExprBuilder.create(DomainCond);
|
|
|
|
if (!Cond->getType()->isIntegerTy(1))
|
|
|
|
Cond = Builder.CreateIsNotNull(Cond);
|
2015-09-30 07:47:21 +08:00
|
|
|
|
2015-11-08 03:46:04 +08:00
|
|
|
BasicBlock *CondBB = SplitBlock(Builder.GetInsertBlock(),
|
|
|
|
&*Builder.GetInsertPoint(), &DT, &LI);
|
|
|
|
CondBB->setName("polly.preload.cond");
|
2015-09-30 07:47:21 +08:00
|
|
|
|
2015-11-08 03:46:04 +08:00
|
|
|
BasicBlock *MergeBB = SplitBlock(CondBB, &CondBB->front(), &DT, &LI);
|
|
|
|
MergeBB->setName("polly.preload.merge");
|
2015-09-30 07:47:21 +08:00
|
|
|
|
2015-11-08 03:46:04 +08:00
|
|
|
Function *F = Builder.GetInsertBlock()->getParent();
|
|
|
|
LLVMContext &Context = F->getContext();
|
|
|
|
BasicBlock *ExecBB = BasicBlock::Create(Context, "polly.preload.exec", F);
|
|
|
|
|
|
|
|
DT.addNewBlock(ExecBB, CondBB);
|
|
|
|
if (Loop *L = LI.getLoopFor(CondBB))
|
|
|
|
L->addBasicBlockToLoop(ExecBB, LI);
|
2015-09-30 07:47:21 +08:00
|
|
|
|
2015-11-08 03:46:04 +08:00
|
|
|
auto *CondBBTerminator = CondBB->getTerminator();
|
|
|
|
Builder.SetInsertPoint(CondBBTerminator);
|
|
|
|
Builder.CreateCondBr(Cond, ExecBB, MergeBB);
|
|
|
|
CondBBTerminator->eraseFromParent();
|
2015-09-30 07:47:21 +08:00
|
|
|
|
2015-11-08 03:46:04 +08:00
|
|
|
Builder.SetInsertPoint(ExecBB);
|
|
|
|
Builder.CreateBr(MergeBB);
|
2015-09-30 07:47:21 +08:00
|
|
|
|
2015-11-08 03:46:04 +08:00
|
|
|
Builder.SetInsertPoint(ExecBB->getTerminator());
|
|
|
|
Value *PreAccInst = preloadUnconditionally(AccessRange, Build, AccInstTy);
|
2015-09-30 07:47:21 +08:00
|
|
|
|
2015-11-08 03:46:04 +08:00
|
|
|
Builder.SetInsertPoint(MergeBB->getTerminator());
|
|
|
|
auto *MergePHI = Builder.CreatePHI(
|
|
|
|
AccInstTy, 2, "polly.preload." + AccInst->getName() + ".merge");
|
|
|
|
MergePHI->addIncoming(PreAccInst, ExecBB);
|
|
|
|
MergePHI->addIncoming(Constant::getNullValue(AccInstTy), CondBB);
|
|
|
|
PreloadVal = MergePHI;
|
2015-10-18 20:36:42 +08:00
|
|
|
|
|
|
|
isl_ast_build_free(Build);
|
|
|
|
return PreloadVal;
|
2015-09-30 07:47:21 +08:00
|
|
|
}
|
|
|
|
|
2015-11-08 03:46:04 +08:00
|
|
|
bool IslNodeBuilder::preloadInvariantEquivClass(
|
2015-10-18 20:39:19 +08:00
|
|
|
const InvariantEquivClassTy &IAClass) {
|
|
|
|
// For an equivalence class of invariant loads we pre-load the representing
|
|
|
|
// element with the unified execution context. However, we have to map all
|
|
|
|
// elements of the class to the one preloaded load as they are referenced
|
|
|
|
// during the code generation and therefor need to be mapped.
|
|
|
|
const MemoryAccessList &MAs = std::get<1>(IAClass);
|
2015-11-11 12:30:07 +08:00
|
|
|
if (MAs.empty())
|
|
|
|
return true;
|
|
|
|
|
2015-10-18 20:39:19 +08:00
|
|
|
MemoryAccess *MA = MAs.front();
|
|
|
|
assert(MA->isExplicit() && MA->isRead());
|
|
|
|
|
|
|
|
// If the access function was already mapped, the preload of this equivalence
|
|
|
|
// class was triggered earlier already and doesn't need to be done again.
|
|
|
|
if (ValueMap.count(MA->getAccessInstruction()))
|
2015-11-08 03:46:04 +08:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// Check for recurrsion which can be caused by additional constraints, e.g.,
|
|
|
|
// non-finitie loop contraints. In such a case we have to bail out and insert
|
|
|
|
// a "false" runtime check that will cause the original code to be executed.
|
|
|
|
if (!PreloadedPtrs.insert(std::get<0>(IAClass)).second)
|
|
|
|
return false;
|
2015-09-30 07:47:21 +08:00
|
|
|
|
2015-11-04 00:49:02 +08:00
|
|
|
// If the base pointer of this class is dependent on another one we have to
|
|
|
|
// make sure it was preloaded already.
|
2015-11-11 01:31:31 +08:00
|
|
|
auto *SAI = S.getScopArrayInfo(MA->getBaseAddr(), ScopArrayInfo::KIND_ARRAY);
|
2015-11-04 03:15:33 +08:00
|
|
|
if (const auto *BaseIAClass = S.lookupInvariantEquivClass(SAI->getBasePtr()))
|
2015-11-08 03:46:04 +08:00
|
|
|
if (!preloadInvariantEquivClass(*BaseIAClass))
|
|
|
|
return false;
|
2015-11-04 00:49:02 +08:00
|
|
|
|
2015-10-18 20:39:19 +08:00
|
|
|
Instruction *AccInst = MA->getAccessInstruction();
|
|
|
|
Type *AccInstTy = AccInst->getType();
|
2015-09-30 07:47:21 +08:00
|
|
|
|
2015-10-18 20:39:19 +08:00
|
|
|
isl_set *Domain = isl_set_copy(std::get<2>(IAClass));
|
|
|
|
Value *PreloadVal = preloadInvariantLoad(*MA, Domain);
|
2015-11-08 03:46:04 +08:00
|
|
|
if (!PreloadVal)
|
|
|
|
return false;
|
|
|
|
|
2015-10-18 20:39:19 +08:00
|
|
|
assert(PreloadVal->getType() == AccInst->getType());
|
|
|
|
for (const MemoryAccess *MA : MAs) {
|
|
|
|
Instruction *MAAccInst = MA->getAccessInstruction();
|
2015-11-11 14:20:25 +08:00
|
|
|
// TODO: The bitcast here is wrong. In case of floating and non-floating
|
|
|
|
// point values we need to reload the value or convert it.
|
2015-10-18 20:39:19 +08:00
|
|
|
ValueMap[MAAccInst] =
|
|
|
|
Builder.CreateBitOrPointerCast(PreloadVal, MAAccInst->getType());
|
|
|
|
}
|
2015-09-30 07:47:21 +08:00
|
|
|
|
2015-10-18 20:39:19 +08:00
|
|
|
if (SE.isSCEVable(AccInstTy)) {
|
|
|
|
isl_id *ParamId = S.getIdForParam(SE.getSCEV(AccInst));
|
|
|
|
if (ParamId)
|
|
|
|
IDToValue[ParamId] = PreloadVal;
|
|
|
|
isl_id_free(ParamId);
|
|
|
|
}
|
2015-09-30 07:47:21 +08:00
|
|
|
|
2015-11-09 14:28:45 +08:00
|
|
|
BasicBlock *EntryBB = &Builder.GetInsertBlock()->getParent()->getEntryBlock();
|
|
|
|
auto *Alloca = new AllocaInst(AccInstTy, AccInst->getName() + ".preload.s2a");
|
|
|
|
Alloca->insertBefore(&*EntryBB->getFirstInsertionPt());
|
|
|
|
Builder.CreateStore(PreloadVal, Alloca);
|
|
|
|
|
2015-10-18 20:39:19 +08:00
|
|
|
for (auto *DerivedSAI : SAI->getDerivedSAIs()) {
|
|
|
|
Value *BasePtr = DerivedSAI->getBasePtr();
|
2015-11-03 09:42:59 +08:00
|
|
|
|
|
|
|
for (const MemoryAccess *MA : MAs) {
|
2015-11-09 14:28:45 +08:00
|
|
|
// As the derived SAI information is quite coarse, any load from the
|
|
|
|
// current SAI could be the base pointer of the derived SAI, however we
|
|
|
|
// should only change the base pointer of the derived SAI if we actually
|
|
|
|
// preloaded it.
|
|
|
|
if (BasePtr == MA->getBaseAddr()) {
|
2015-11-11 14:20:25 +08:00
|
|
|
// TODO: The bitcast here is wrong. In case of floating and non-floating
|
|
|
|
// point values we need to reload the value or convert it.
|
2015-11-09 14:28:45 +08:00
|
|
|
BasePtr =
|
|
|
|
Builder.CreateBitOrPointerCast(PreloadVal, BasePtr->getType());
|
|
|
|
DerivedSAI->setBasePtr(BasePtr);
|
|
|
|
}
|
|
|
|
|
|
|
|
// For scalar derived SAIs we remap the alloca used for the derived value.
|
|
|
|
if (BasePtr == MA->getAccessInstruction()) {
|
|
|
|
if (DerivedSAI->isPHI())
|
|
|
|
PHIOpMap[BasePtr] = Alloca;
|
|
|
|
else
|
|
|
|
ScalarMap[BasePtr] = Alloca;
|
|
|
|
}
|
2015-11-03 09:42:59 +08:00
|
|
|
}
|
2015-10-18 20:39:19 +08:00
|
|
|
}
|
2015-09-30 07:47:21 +08:00
|
|
|
|
2015-10-18 20:39:19 +08:00
|
|
|
const Region &R = S.getRegion();
|
|
|
|
for (const MemoryAccess *MA : MAs) {
|
2015-09-30 17:43:20 +08:00
|
|
|
|
2015-10-18 20:39:19 +08:00
|
|
|
Instruction *MAAccInst = MA->getAccessInstruction();
|
|
|
|
// Use the escape system to get the correct value to users outside the SCoP.
|
2015-09-30 17:43:20 +08:00
|
|
|
BlockGenerator::EscapeUserVectorTy EscapeUsers;
|
2015-10-18 20:39:19 +08:00
|
|
|
for (auto *U : MAAccInst->users())
|
2015-09-30 07:47:21 +08:00
|
|
|
if (Instruction *UI = dyn_cast<Instruction>(U))
|
|
|
|
if (!R.contains(UI))
|
2015-09-30 17:43:20 +08:00
|
|
|
EscapeUsers.push_back(UI);
|
2015-09-30 07:47:21 +08:00
|
|
|
|
2015-09-30 17:43:20 +08:00
|
|
|
if (EscapeUsers.empty())
|
|
|
|
continue;
|
|
|
|
|
2015-10-18 20:39:19 +08:00
|
|
|
EscapeMap[MA->getAccessInstruction()] =
|
|
|
|
std::make_pair(Alloca, std::move(EscapeUsers));
|
2015-09-30 07:47:21 +08:00
|
|
|
}
|
2015-11-08 03:46:04 +08:00
|
|
|
|
|
|
|
return true;
|
2015-09-30 07:47:21 +08:00
|
|
|
}
|
|
|
|
|
2015-11-08 03:46:04 +08:00
|
|
|
bool IslNodeBuilder::preloadInvariantLoads() {
|
2015-10-18 20:39:19 +08:00
|
|
|
|
|
|
|
const auto &InvariantEquivClasses = S.getInvariantAccesses();
|
|
|
|
if (InvariantEquivClasses.empty())
|
2015-11-08 03:46:04 +08:00
|
|
|
return true;
|
2015-10-18 20:39:19 +08:00
|
|
|
|
2015-11-07 06:56:54 +08:00
|
|
|
BasicBlock *PreLoadBB = SplitBlock(Builder.GetInsertBlock(),
|
|
|
|
&*Builder.GetInsertPoint(), &DT, &LI);
|
2015-10-18 20:39:19 +08:00
|
|
|
PreLoadBB->setName("polly.preload.begin");
|
2015-11-07 06:56:54 +08:00
|
|
|
Builder.SetInsertPoint(&PreLoadBB->front());
|
2015-10-18 20:39:19 +08:00
|
|
|
|
|
|
|
for (const auto &IAClass : InvariantEquivClasses)
|
2015-11-08 03:46:04 +08:00
|
|
|
if (!preloadInvariantEquivClass(IAClass))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
2015-10-18 20:39:19 +08:00
|
|
|
}
|
|
|
|
|
2015-04-27 20:32:24 +08:00
|
|
|
void IslNodeBuilder::addParameters(__isl_take isl_set *Context) {
|
|
|
|
|
2015-09-30 17:52:08 +08:00
|
|
|
// Materialize values for the parameters of the SCoP.
|
|
|
|
materializeParameters(Context, /* all */ true);
|
2015-04-27 20:32:24 +08:00
|
|
|
|
|
|
|
// Generate values for the current loop iteration for all surrounding loops.
|
|
|
|
//
|
|
|
|
// We may also reference loops outside of the scop which do not contain the
|
|
|
|
// scop itself, but as the number of such scops may be arbitrarily large we do
|
|
|
|
// not generate code for them here, but only at the point of code generation
|
|
|
|
// where these values are needed.
|
|
|
|
Region &R = S.getRegion();
|
|
|
|
Loop *L = LI.getLoopFor(R.getEntry());
|
|
|
|
|
|
|
|
while (L != nullptr && R.contains(L))
|
|
|
|
L = L->getParentLoop();
|
|
|
|
|
|
|
|
while (L != nullptr) {
|
|
|
|
const SCEV *OuterLIV = SE.getAddRecExpr(SE.getUnknown(Builder.getInt64(0)),
|
|
|
|
SE.getUnknown(Builder.getInt64(1)),
|
|
|
|
L, SCEV::FlagAnyWrap);
|
|
|
|
Value *V = generateSCEV(OuterLIV);
|
|
|
|
OutsideLoopIterations[L] = SE.getUnknown(V);
|
|
|
|
L = L->getParentLoop();
|
|
|
|
}
|
|
|
|
|
|
|
|
isl_set_free(Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
Value *IslNodeBuilder::generateSCEV(const SCEV *Expr) {
|
2015-11-07 06:56:54 +08:00
|
|
|
Instruction *InsertLocation = &*--(Builder.GetInsertBlock()->end());
|
2015-08-18 19:56:00 +08:00
|
|
|
return expandCodeFor(S, SE, DL, "polly", Expr, Expr->getType(),
|
2015-10-08 04:17:36 +08:00
|
|
|
InsertLocation, &ValueMap);
|
2015-04-27 20:32:24 +08:00
|
|
|
}
|