Refactor: Move the code generation related header files to include/polly/CodeGen.
authorHongbin Zheng <etherzhhb@gmail.com>
Wed, 25 Apr 2012 13:18:28 +0000 (13:18 +0000)
committerHongbin Zheng <etherzhhb@gmail.com>
Wed, 25 Apr 2012 13:18:28 +0000 (13:18 +0000)
llvm-svn: 155547

polly/include/polly/CodeGen/BlockGenerators.h [moved from polly/include/polly/BlockGenerators.h with 100% similarity]
polly/include/polly/CodeGen/CodeGeneration.h [moved from polly/include/polly/CodeGeneration.h with 100% similarity]
polly/include/polly/CodeGen/LoopGenerators.h [moved from polly/include/polly/LoopGenerators.h with 100% similarity]
polly/lib/CodeGen/BlockGenerators.cpp
polly/lib/CodeGen/CodeGeneration.cpp
polly/lib/CodeGen/LoopGenerators.cpp
polly/lib/ScheduleOptimizer.cpp

index 889462f..95b8279 100644 (file)
@@ -14,8 +14,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "polly/ScopInfo.h"
-#include "polly/BlockGenerators.h"
-#include "polly/CodeGeneration.h"
+#include "polly/CodeGen/BlockGenerators.h"
 #include "polly/Support/GICHelper.h"
 
 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
index b91d020..4f46c95 100644 (file)
 #define DEBUG_TYPE "polly-codegen"
 
 #include "polly/Cloog.h"
-#include "polly/CodeGeneration.h"
 #include "polly/Dependences.h"
 #include "polly/LinkAllPasses.h"
 #include "polly/ScopInfo.h"
 #include "polly/TempScopInfo.h"
-#include "polly/BlockGenerators.h"
-#include "polly/LoopGenerators.h"
+#include "polly/CodeGen/CodeGeneration.h"
+#include "polly/CodeGen/BlockGenerators.h"
+#include "polly/CodeGen/LoopGenerators.h"
 #include "polly/Support/GICHelper.h"
 
 #include "llvm/Module.h"
index 583bbe4..f56ec41 100644 (file)
@@ -12,8 +12,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "polly/LoopGenerators.h"
 #include "polly/ScopDetection.h"
+#include "polly/CodeGen/LoopGenerators.h"
 
 #include "llvm/Module.h"
 #include "llvm/Analysis/Dominators.h"
index 171ed20..899712e 100644 (file)
@@ -19,7 +19,7 @@
 
 #include "polly/ScheduleOptimizer.h"
 
-#include "polly/CodeGeneration.h"
+#include "polly/CodeGen/CodeGeneration.h"
 #include "polly/Dependences.h"
 #include "polly/LinkAllPasses.h"
 #include "polly/ScopInfo.h"