summaryrefslogtreecommitdiffstats
path: root/polly/lib/CodeGen/IRBuilder.cpp
diff options
context:
space:
mode:
authorJohannes Doerfert <doerfert@cs.uni-saarland.de>2014-10-01 20:10:44 +0000
committerJohannes Doerfert <doerfert@cs.uni-saarland.de>2014-10-01 20:10:44 +0000
commitc7b719fc032ec29af7fa0181292fb6b08854d74d (patch)
tree44a56791f7bc6caaad142dedcfc5ad1b9d69720c /polly/lib/CodeGen/IRBuilder.cpp
parente3c513a965427d15f80c5abe94f2288d1aa9aa78 (diff)
downloadbcm5719-llvm-c7b719fc032ec29af7fa0181292fb6b08854d74d.tar.gz
bcm5719-llvm-c7b719fc032ec29af7fa0181292fb6b08854d74d.zip
Annotate LLVM-IR for all parallel loops
This change allows to annotate all parallel loops with loop id metadata. Furthermore, it will annotate memory instructions with llvm.mem.parallel_loop_access metadata for all surrounding parallel loops. This is especially usefull if an external paralleliser is used. This also removes the PollyLoopInfo class and comments the LoopAnnotator. A test case for multiple parallel loops is attached. llvm-svn: 218793
Diffstat (limited to 'polly/lib/CodeGen/IRBuilder.cpp')
-rw-r--r--polly/lib/CodeGen/IRBuilder.cpp68
1 files changed, 43 insertions, 25 deletions
diff --git a/polly/lib/CodeGen/IRBuilder.cpp b/polly/lib/CodeGen/IRBuilder.cpp
index 5347ba9f133..2fc84191774 100644
--- a/polly/lib/CodeGen/IRBuilder.cpp
+++ b/polly/lib/CodeGen/IRBuilder.cpp
@@ -13,48 +13,66 @@
//===----------------------------------------------------------------------===//
#include "polly/CodeGen/IRBuilder.h"
-#include "llvm/Analysis/LoopInfo.h"
+
#include "llvm/IR/Metadata.h"
#include "llvm/Support/Debug.h"
using namespace llvm;
using namespace polly;
-llvm::MDNode *polly::PollyLoopInfo::GetLoopID() const {
- if (LoopID)
- return LoopID;
-
- llvm::Value *Args[] = {0};
- LoopID = llvm::MDNode::get(Header->getContext(), Args);
+/// @brief Get the loop id metadata node.
+///
+/// Each loop is identified by a self referencing metadata node of the form:
+///
+/// '!n = metadata !{metadata !n}'
+///
+/// This functions creates such metadata on demand if not yet available.
+///
+/// @return The loop id metadata node.
+static MDNode *getLoopID(Loop *L) {
+ Value *Args[] = {0};
+ MDNode *LoopID = MDNode::get(L->getHeader()->getContext(), Args);
LoopID->replaceOperandWith(0, LoopID);
return LoopID;
}
-void polly::LoopAnnotator::Begin(llvm::BasicBlock *Header) {
- Active.push_back(PollyLoopInfo(Header));
+void polly::LoopAnnotator::pushLoop(Loop *L, bool IsParallel) {
+ ActiveLoops.push_back(L);
+ if (!IsParallel)
+ return;
+
+ BasicBlock *Header = L->getHeader();
+ MDNode *Id = getLoopID(L);
+ Value *Args[] = {Id};
+ MDNode *Ids = ParallelLoops.empty()
+ ? MDNode::get(Header->getContext(), Args)
+ : MDNode::concatenate(ParallelLoops.back(), Id);
+ ParallelLoops.push_back(Ids);
}
-void polly::LoopAnnotator::End() { Active.pop_back(); }
+void polly::LoopAnnotator::popLoop(bool IsParallel) {
+ ActiveLoops.pop_back();
+ if (!IsParallel)
+ return;
-void polly::LoopAnnotator::SetCurrentParallel() {
- Active.back().SetParallel(true);
+ assert(!ParallelLoops.empty() && "Expected a parallel loop to pop");
+ ParallelLoops.pop_back();
}
-void polly::LoopAnnotator::Annotate(llvm::Instruction *Inst) {
- if (Active.empty())
+void polly::LoopAnnotator::annotateLoopLatch(BranchInst *B, Loop *L,
+ bool IsParallel) const {
+ if (!IsParallel)
return;
- const PollyLoopInfo &L = Active.back();
- if (!L.IsParallel())
+ assert(!ParallelLoops.empty() && "Expected a parallel loop to annotate");
+ MDNode *Ids = ParallelLoops.back();
+ MDNode *Id = cast<MDNode>(Ids->getOperand(Ids->getNumOperands() - 1));
+ B->setMetadata("llvm.loop", Id);
+}
+
+void polly::LoopAnnotator::annotate(Instruction *Inst) {
+ if (!Inst->mayReadOrWriteMemory() || ParallelLoops.empty())
return;
- if (TerminatorInst *TI = dyn_cast<llvm::TerminatorInst>(Inst)) {
- for (unsigned i = 0, ie = TI->getNumSuccessors(); i != ie; ++i)
- if (TI->getSuccessor(i) == L.GetHeader()) {
- TI->setMetadata("llvm.loop", L.GetLoopID());
- break;
- }
- } else if (Inst->mayReadOrWriteMemory()) {
- Inst->setMetadata("llvm.mem.parallel_loop_access", L.GetLoopID());
- }
+ Inst->setMetadata("llvm.mem.parallel_loop_access", ParallelLoops.back());
}
OpenPOWER on IntegriCloud