[llvm-commits] CVS: llvm/lib/CodeGen/BranchFolding.cpp LiveInterval.cpp LiveIntervalAnalysis.cpp LiveVariables.cpp MachineBasicBlock.cpp MachineFunction.cpp MachineInstr.cpp PHIElimination.cpp Passes.cpp RegAllocIterativeScan.cpp RegAllocLinearScan.cpp RegAllocLocal.cpp RegAllocSimple.cpp TwoAddressInstructionPass.cpp UnreachableBlockElim.cpp VirtRegMap.cpp VirtRegMap.h

Reid Spencer reid at x10sys.com
Wed Sep 1 15:55:58 PDT 2004



Changes in directory llvm/lib/CodeGen:

BranchFolding.cpp updated: 1.6 -> 1.7
LiveInterval.cpp updated: 1.11 -> 1.12
LiveIntervalAnalysis.cpp updated: 1.121 -> 1.122
LiveVariables.cpp updated: 1.43 -> 1.44
MachineBasicBlock.cpp updated: 1.18 -> 1.19
MachineFunction.cpp updated: 1.71 -> 1.72
MachineInstr.cpp updated: 1.104 -> 1.105
PHIElimination.cpp updated: 1.32 -> 1.33
Passes.cpp updated: 1.13 -> 1.14
RegAllocIterativeScan.cpp updated: 1.15 -> 1.16
RegAllocLinearScan.cpp updated: 1.91 -> 1.92
RegAllocLocal.cpp updated: 1.68 -> 1.69
RegAllocSimple.cpp updated: 1.60 -> 1.61
TwoAddressInstructionPass.cpp updated: 1.26 -> 1.27
UnreachableBlockElim.cpp updated: 1.3 -> 1.4
VirtRegMap.cpp updated: 1.18 -> 1.19
VirtRegMap.h updated: 1.12 -> 1.13
---
Log message:

Changes For Bug 352: http://llvm.cs.uiuc.edu/PR352 
Move include/Config and include/Support into include/llvm/Config,
include/llvm/ADT and include/llvm/Support. From here on out, all LLVM 
public header files must be under include/llvm/.


---
Diffs of the changes:  (+38 -38)

Index: llvm/lib/CodeGen/BranchFolding.cpp
diff -u llvm/lib/CodeGen/BranchFolding.cpp:1.6 llvm/lib/CodeGen/BranchFolding.cpp:1.7
--- llvm/lib/CodeGen/BranchFolding.cpp:1.6	Sun Aug  1 04:51:42 2004
+++ llvm/lib/CodeGen/BranchFolding.cpp	Wed Sep  1 17:55:35 2004
@@ -20,7 +20,7 @@
 #include "llvm/CodeGen/MachineFunctionPass.h"
 #include "llvm/Target/TargetInstrInfo.h"
 #include "llvm/Target/TargetMachine.h"
-#include "Support/STLExtras.h"
+#include "llvm/ADT/STLExtras.h"
 using namespace llvm;
 
 namespace {


Index: llvm/lib/CodeGen/LiveInterval.cpp
diff -u llvm/lib/CodeGen/LiveInterval.cpp:1.11 llvm/lib/CodeGen/LiveInterval.cpp:1.12
--- llvm/lib/CodeGen/LiveInterval.cpp:1.11	Sun Jul 25 02:47:25 2004
+++ llvm/lib/CodeGen/LiveInterval.cpp	Wed Sep  1 17:55:35 2004
@@ -19,7 +19,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "LiveInterval.h"
-#include "Support/STLExtras.h"
+#include "llvm/ADT/STLExtras.h"
 #include <iostream>
 #include <map>
 using namespace llvm;


Index: llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
diff -u llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.121 llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.122
--- llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.121	Tue Aug 31 12:39:15 2004
+++ llvm/lib/CodeGen/LiveIntervalAnalysis.cpp	Wed Sep  1 17:55:35 2004
@@ -27,10 +27,10 @@
 #include "llvm/Target/MRegisterInfo.h"
 #include "llvm/Target/TargetInstrInfo.h"
 #include "llvm/Target/TargetMachine.h"
-#include "Support/CommandLine.h"
-#include "Support/Debug.h"
-#include "Support/Statistic.h"
-#include "Support/STLExtras.h"
+#include "llvm/Support/CommandLine.h"
+#include "llvm/Support/Debug.h"
+#include "llvm/ADT/Statistic.h"
+#include "llvm/ADT/STLExtras.h"
 #include "VirtRegMap.h"
 #include <cmath>
 


Index: llvm/lib/CodeGen/LiveVariables.cpp
diff -u llvm/lib/CodeGen/LiveVariables.cpp:1.43 llvm/lib/CodeGen/LiveVariables.cpp:1.44
--- llvm/lib/CodeGen/LiveVariables.cpp:1.43	Wed Sep  1 17:34:52 2004
+++ llvm/lib/CodeGen/LiveVariables.cpp	Wed Sep  1 17:55:35 2004
@@ -31,8 +31,8 @@
 #include "llvm/Target/MRegisterInfo.h"
 #include "llvm/Target/TargetInstrInfo.h"
 #include "llvm/Target/TargetMachine.h"
-#include "Support/DepthFirstIterator.h"
-#include "Support/STLExtras.h"
+#include "llvm/ADT/DepthFirstIterator.h"
+#include "llvm/ADT/STLExtras.h"
 using namespace llvm;
 
 static RegisterAnalysis<LiveVariables> X("livevars", "Live Variable Analysis");


Index: llvm/lib/CodeGen/MachineBasicBlock.cpp
diff -u llvm/lib/CodeGen/MachineBasicBlock.cpp:1.18 llvm/lib/CodeGen/MachineBasicBlock.cpp:1.19
--- llvm/lib/CodeGen/MachineBasicBlock.cpp:1.18	Sun Jul  4 07:19:55 2004
+++ llvm/lib/CodeGen/MachineBasicBlock.cpp	Wed Sep  1 17:55:35 2004
@@ -17,7 +17,7 @@
 #include "llvm/CodeGen/MachineInstr.h"
 #include "llvm/Target/TargetInstrInfo.h"
 #include "llvm/Target/TargetMachine.h"
-#include "Support/LeakDetector.h"
+#include "llvm/Support/LeakDetector.h"
 #include <iostream>
 using namespace llvm;
 


Index: llvm/lib/CodeGen/MachineFunction.cpp
diff -u llvm/lib/CodeGen/MachineFunction.cpp:1.71 llvm/lib/CodeGen/MachineFunction.cpp:1.72
--- llvm/lib/CodeGen/MachineFunction.cpp:1.71	Mon Aug 16 17:36:34 2004
+++ llvm/lib/CodeGen/MachineFunction.cpp	Wed Sep  1 17:55:35 2004
@@ -23,8 +23,8 @@
 #include "llvm/Target/TargetFrameInfo.h"
 #include "llvm/Function.h"
 #include "llvm/Instructions.h"
-#include "Support/LeakDetector.h"
-#include "Support/GraphWriter.h"
+#include "llvm/Support/LeakDetector.h"
+#include "llvm/Support/GraphWriter.h"
 #include <fstream>
 #include <iostream>
 #include <sstream>


Index: llvm/lib/CodeGen/MachineInstr.cpp
diff -u llvm/lib/CodeGen/MachineInstr.cpp:1.104 llvm/lib/CodeGen/MachineInstr.cpp:1.105
--- llvm/lib/CodeGen/MachineInstr.cpp:1.104	Fri Jul  9 09:45:17 2004
+++ llvm/lib/CodeGen/MachineInstr.cpp	Wed Sep  1 17:55:35 2004
@@ -20,7 +20,7 @@
 #include "llvm/Target/TargetMachine.h"
 #include "llvm/Target/TargetInstrInfo.h"
 #include "llvm/Target/MRegisterInfo.h"
-#include "Support/LeakDetector.h"
+#include "llvm/Support/LeakDetector.h"
 #include <iostream>
 
 using namespace llvm;


Index: llvm/lib/CodeGen/PHIElimination.cpp
diff -u llvm/lib/CodeGen/PHIElimination.cpp:1.32 llvm/lib/CodeGen/PHIElimination.cpp:1.33
--- llvm/lib/CodeGen/PHIElimination.cpp:1.32	Fri Jul 23 00:27:43 2004
+++ llvm/lib/CodeGen/PHIElimination.cpp	Wed Sep  1 17:55:35 2004
@@ -20,8 +20,8 @@
 #include "llvm/CodeGen/LiveVariables.h"
 #include "llvm/Target/TargetInstrInfo.h"
 #include "llvm/Target/TargetMachine.h"
-#include "Support/DenseMap.h"
-#include "Support/STLExtras.h"
+#include "llvm/ADT/DenseMap.h"
+#include "llvm/ADT/STLExtras.h"
 using namespace llvm;
 
 namespace {


Index: llvm/lib/CodeGen/Passes.cpp
diff -u llvm/lib/CodeGen/Passes.cpp:1.13 llvm/lib/CodeGen/Passes.cpp:1.14
--- llvm/lib/CodeGen/Passes.cpp:1.13	Thu Jul 22 16:46:02 2004
+++ llvm/lib/CodeGen/Passes.cpp	Wed Sep  1 17:55:35 2004
@@ -13,7 +13,7 @@
 //===---------------------------------------------------------------------===//
 
 #include "llvm/CodeGen/Passes.h"
-#include "Support/CommandLine.h"
+#include "llvm/Support/CommandLine.h"
 #include <iostream>
 using namespace llvm;
 


Index: llvm/lib/CodeGen/RegAllocIterativeScan.cpp
diff -u llvm/lib/CodeGen/RegAllocIterativeScan.cpp:1.15 llvm/lib/CodeGen/RegAllocIterativeScan.cpp:1.16
--- llvm/lib/CodeGen/RegAllocIterativeScan.cpp:1.15	Wed Sep  1 17:52:29 2004
+++ llvm/lib/CodeGen/RegAllocIterativeScan.cpp	Wed Sep  1 17:55:35 2004
@@ -25,9 +25,9 @@
 #include "llvm/CodeGen/SSARegMap.h"
 #include "llvm/Target/MRegisterInfo.h"
 #include "llvm/Target/TargetMachine.h"
-#include "Support/Debug.h"
-#include "Support/Statistic.h"
-#include "Support/STLExtras.h"
+#include "llvm/Support/Debug.h"
+#include "llvm/ADT/Statistic.h"
+#include "llvm/ADT/STLExtras.h"
 #include "LiveIntervalAnalysis.h"
 #include "PhysRegTracker.h"
 #include "VirtRegMap.h"


Index: llvm/lib/CodeGen/RegAllocLinearScan.cpp
diff -u llvm/lib/CodeGen/RegAllocLinearScan.cpp:1.91 llvm/lib/CodeGen/RegAllocLinearScan.cpp:1.92
--- llvm/lib/CodeGen/RegAllocLinearScan.cpp:1.91	Wed Sep  1 17:52:29 2004
+++ llvm/lib/CodeGen/RegAllocLinearScan.cpp	Wed Sep  1 17:55:35 2004
@@ -19,9 +19,9 @@
 #include "llvm/CodeGen/SSARegMap.h"
 #include "llvm/Target/MRegisterInfo.h"
 #include "llvm/Target/TargetMachine.h"
-#include "Support/Debug.h"
-#include "Support/Statistic.h"
-#include "Support/STLExtras.h"
+#include "llvm/Support/Debug.h"
+#include "llvm/ADT/Statistic.h"
+#include "llvm/ADT/STLExtras.h"
 #include "LiveIntervalAnalysis.h"
 #include "PhysRegTracker.h"
 #include "VirtRegMap.h"


Index: llvm/lib/CodeGen/RegAllocLocal.cpp
diff -u llvm/lib/CodeGen/RegAllocLocal.cpp:1.68 llvm/lib/CodeGen/RegAllocLocal.cpp:1.69
--- llvm/lib/CodeGen/RegAllocLocal.cpp:1.68	Sun Aug 15 17:23:09 2004
+++ llvm/lib/CodeGen/RegAllocLocal.cpp	Wed Sep  1 17:55:35 2004
@@ -21,10 +21,10 @@
 #include "llvm/CodeGen/LiveVariables.h"
 #include "llvm/Target/TargetInstrInfo.h"
 #include "llvm/Target/TargetMachine.h"
-#include "Support/CommandLine.h"
-#include "Support/Debug.h"
-#include "Support/DenseMap.h"
-#include "Support/Statistic.h"
+#include "llvm/Support/CommandLine.h"
+#include "llvm/Support/Debug.h"
+#include "llvm/ADT/DenseMap.h"
+#include "llvm/ADT/Statistic.h"
 using namespace llvm;
 
 namespace {


Index: llvm/lib/CodeGen/RegAllocSimple.cpp
diff -u llvm/lib/CodeGen/RegAllocSimple.cpp:1.60 llvm/lib/CodeGen/RegAllocSimple.cpp:1.61
--- llvm/lib/CodeGen/RegAllocSimple.cpp:1.60	Sun Aug 15 17:02:22 2004
+++ llvm/lib/CodeGen/RegAllocSimple.cpp	Wed Sep  1 17:55:35 2004
@@ -22,9 +22,9 @@
 #include "llvm/CodeGen/MachineFrameInfo.h"
 #include "llvm/Target/TargetInstrInfo.h"
 #include "llvm/Target/TargetMachine.h"
-#include "Support/Debug.h"
-#include "Support/Statistic.h"
-#include "Support/STLExtras.h"
+#include "llvm/Support/Debug.h"
+#include "llvm/ADT/Statistic.h"
+#include "llvm/ADT/STLExtras.h"
 using namespace llvm;
 
 namespace {


Index: llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
diff -u llvm/lib/CodeGen/TwoAddressInstructionPass.cpp:1.26 llvm/lib/CodeGen/TwoAddressInstructionPass.cpp:1.27
--- llvm/lib/CodeGen/TwoAddressInstructionPass.cpp:1.26	Sun Aug 15 17:14:31 2004
+++ llvm/lib/CodeGen/TwoAddressInstructionPass.cpp	Wed Sep  1 17:55:35 2004
@@ -37,9 +37,9 @@
 #include "llvm/Target/MRegisterInfo.h"
 #include "llvm/Target/TargetInstrInfo.h"
 #include "llvm/Target/TargetMachine.h"
-#include "Support/Debug.h"
-#include "Support/Statistic.h"
-#include "Support/STLExtras.h"
+#include "llvm/Support/Debug.h"
+#include "llvm/ADT/Statistic.h"
+#include "llvm/ADT/STLExtras.h"
 using namespace llvm;
 
 namespace {


Index: llvm/lib/CodeGen/UnreachableBlockElim.cpp
diff -u llvm/lib/CodeGen/UnreachableBlockElim.cpp:1.3 llvm/lib/CodeGen/UnreachableBlockElim.cpp:1.4
--- llvm/lib/CodeGen/UnreachableBlockElim.cpp:1.3	Thu Jul 29 12:23:00 2004
+++ llvm/lib/CodeGen/UnreachableBlockElim.cpp	Wed Sep  1 17:55:35 2004
@@ -26,7 +26,7 @@
 #include "llvm/Function.h"
 #include "llvm/Pass.h"
 #include "llvm/Support/CFG.h"
-#include "Support/DepthFirstIterator.h"
+#include "llvm/ADT/DepthFirstIterator.h"
 using namespace llvm;
 
 namespace {


Index: llvm/lib/CodeGen/VirtRegMap.cpp
diff -u llvm/lib/CodeGen/VirtRegMap.cpp:1.18 llvm/lib/CodeGen/VirtRegMap.cpp:1.19
--- llvm/lib/CodeGen/VirtRegMap.cpp:1.18	Sun Aug 15 17:02:22 2004
+++ llvm/lib/CodeGen/VirtRegMap.cpp	Wed Sep  1 17:55:35 2004
@@ -22,11 +22,11 @@
 #include "llvm/CodeGen/MachineInstr.h"
 #include "llvm/Target/TargetMachine.h"
 #include "llvm/Target/TargetInstrInfo.h"
-#include "Support/CommandLine.h"
-#include "Support/Debug.h"
-#include "Support/DenseMap.h"
-#include "Support/Statistic.h"
-#include "Support/STLExtras.h"
+#include "llvm/Support/CommandLine.h"
+#include "llvm/Support/Debug.h"
+#include "llvm/ADT/DenseMap.h"
+#include "llvm/ADT/Statistic.h"
+#include "llvm/ADT/STLExtras.h"
 
 using namespace llvm;
 


Index: llvm/lib/CodeGen/VirtRegMap.h
diff -u llvm/lib/CodeGen/VirtRegMap.h:1.12 llvm/lib/CodeGen/VirtRegMap.h:1.13
--- llvm/lib/CodeGen/VirtRegMap.h:1.12	Tue Jul 20 08:28:17 2004
+++ llvm/lib/CodeGen/VirtRegMap.h	Wed Sep  1 17:55:35 2004
@@ -20,7 +20,7 @@
 
 #include "llvm/CodeGen/MachineFunction.h"
 #include "llvm/CodeGen/SSARegMap.h"
-#include "Support/DenseMap.h"
+#include "llvm/ADT/DenseMap.h"
 #include <climits>
 #include <map>
 






More information about the llvm-commits mailing list