Made the code readable:

* Lines must be wrapped at 80 chars. This is a hard limit.
* Consistent style on functions, braces, if, for, etc. Code must be readable.

No functional changes have been made, even though I added a new typedef.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5768 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/ModuloScheduling/ModuloScheduling.h b/lib/CodeGen/ModuloScheduling/ModuloScheduling.h
index 713ad22..737a92c 100644
--- a/lib/CodeGen/ModuloScheduling/ModuloScheduling.h
+++ b/lib/CodeGen/ModuloScheduling/ModuloScheduling.h
@@ -1,7 +1,7 @@
-//// - head file for the classes ModuloScheduling and ModuloScheduling ----*- C++ -*-===//
+// ModuloScheduling.h -------------------------------------------*- C++ -*-===//
 //
-// This header defines the the classes ModuloScheduling  and ModuloSchedulingSet 's structure
-// 
+// This header defines the the classes ModuloScheduling and 
+// ModuloSchedulingSet's structure
 //
 //===----------------------------------------------------------------------===//
 
@@ -13,151 +13,148 @@
 #include <iostream>
 #include <vector>
 
-using std::vector;
+class ModuloScheduling: NonCopyable {
+private:
 
-class ModuloScheduling:NonCopyable {
- private:
   typedef std::vector<ModuloSchedGraphNode*> NodeVec;
-  
-  /// the graph to feed in
-  ModuloSchedGraph& graph;
-  const TargetMachine& target;
-  
-  //the BasicBlock to be scheduled
-  BasicBlock* bb;
+  typedef std::vector<std::vector<unsigned> > Resources;
 
-  ///Iteration Intervel
-  ///FIXME: II may be a better name for its meaning
+  // The graph to feed in
+  ModuloSchedGraph &graph;
+  const TargetMachine &target;
+
+  // The BasicBlock to be scheduled
+  BasicBlock *bb;
+
+  // Iteration Interval
+  // FIXME: II may be a better name for its meaning
   unsigned II;
 
-  //the vector containing the nodes which have been scheduled
+  // The vector containing the nodes which have been scheduled
   NodeVec nodeScheduled;
-  
-  ///the remaining unscheduled nodes 
-  const NodeVec& oNodes;
-  
-  ///the machine resource table
-  std::vector< std::vector<pair<int,int> > >  resourceTable ;
-  
+
+  // The remaining unscheduled nodes 
+  const NodeVec &oNodes;
+
+  // The machine resource table
+  std::vector<std::vector<std::pair<int,int> > > resourceTable;
+
   ///the schedule( with many schedule stage)
   std::vector<std::vector<ModuloSchedGraphNode*> > schedule;
-  
+
   ///the kernel(core) schedule(length = II)
   std::vector<std::vector<ModuloSchedGraphNode*> > coreSchedule;
 
- typedef   BasicBlock::InstListType InstListType;
- typedef   std::vector <std::vector<ModuloSchedGraphNode*> > vvNodeType;
-
- 
+  typedef BasicBlock::InstListType InstListType;
+  typedef std::vector<std::vector<ModuloSchedGraphNode*> > vvNodeType;
 
 public:
-  
-  ///constructor
-  ModuloScheduling(ModuloSchedGraph& _graph): 
-    graph(_graph), 
-    target(graph.getTarget()),
-    oNodes(graph.getONodes())
-    {
-      II = graph.getMII();
-      bb=(BasicBlock*)graph.getBasicBlocks()[0];
 
-      instrScheduling();
-    };
+  ModuloScheduling(ModuloSchedGraph & _graph):
+    graph(_graph), target(graph.getTarget()), oNodes(graph.getONodes())
+  {
+    II = graph.getMII();
+    bb = (BasicBlock *) graph.getBasicBlocks()[0];
+    instrScheduling();
+  };
 
-  ///destructor
-  ~ModuloScheduling(){};
+  ~ModuloScheduling() {};
 
   ///the method to compute schedule and instert epilogue and prologue
   void instrScheduling();
 
   ///debug functions:
   ///dump the schedule and core schedule
-  void dumpScheduling();
-  
+  void
+   dumpScheduling();
+
   ///dump the input vector of nodes
   //sch: the input vector of nodes
-  void dumpSchedule( std::vector<std::vector<ModuloSchedGraphNode*> > sch);
+  void dumpSchedule(std::vector<std::vector<ModuloSchedGraphNode*>> sch);
 
   ///dump the resource usage table
   void dumpResourceUsageTable();
 
-
-  //*******************internel functions*******************************
+  //*******************internal functions*******************************
 private:
   //clear memory from the last round and initialize if necessary
-  void clearInitMem(const TargetSchedInfo& );
+  void clearInitMem(const TargetSchedInfo&);
 
   //compute schedule and coreSchedule with the current II
   bool computeSchedule();
 
-  BasicBlock* getSuccBB(BasicBlock*);
-  BasicBlock* getPredBB(BasicBlock*);
-  void constructPrologue(BasicBlock* prologue);
-  void constructKernel(BasicBlock* prologue,BasicBlock* kernel,BasicBlock* epilogue);
-  void constructEpilogue(BasicBlock* epilogue,BasicBlock* succ_bb);
+  BasicBlock *getSuccBB(BasicBlock *);
+  BasicBlock *getPredBB(BasicBlock *);
+  void constructPrologue(BasicBlock *prologue);
+  void constructKernel(BasicBlock *prologue,
+                       BasicBlock *kernel,
+                       BasicBlock *epilogue);
+  void constructEpilogue(BasicBlock *epilogue, BasicBlock *succ_bb);
 
-  ///update the resource table at the startCycle
-  //vec: the resouce usage
-  //startCycle: the start cycle the resouce usage is
-  void updateResourceTable(std::vector<vector<unsigned int> > vec,int startCycle);
+  // update the resource table at the startCycle
+  // vec: the resouce usage
+  // startCycle: the start cycle the resouce usage is
+  void updateResourceTable(std::vector<std::vector<unsigned int>> vec,
+                           int startCycle);
 
-  ///un-do the update in the resource table in the startCycle
-  //vec: the resouce usage
-  //startCycle: the start cycle the resouce usage is
-  void undoUpdateResourceTable(std::vector<vector<unsigned int> > vec,int startCycle);
+  // un-do the update in the resource table in the startCycle
+  // vec: the resouce usage
+  // startCycle: the start cycle the resouce usage is
+  void undoUpdateResourceTable(std::vector<vector<unsigned int>> vec,
+                               int startCycle);
 
-  ///return whether the resourcetable has negative element
-  ///this function is called after updateResouceTable() to determine whether a node can
-  /// be scheduled at certain cycle
+  // return whether the resourcetable has negative element
+  // this function is called after updateResouceTable() to determine whether a
+  // node can be scheduled at certain cycle
   bool resourceTableNegative();
 
-
-  ///try to Schedule the node starting from start to end cycle(inclusive)
-  //if it can be scheduled, put it in the schedule and update nodeScheduled
-  //node: the node to be scheduled
-  //start: start cycle
-  //end : end cycle
-  //nodeScheduled: a vector storing nodes which has been scheduled
-  bool ScheduleNode(ModuloSchedGraphNode* node,unsigned start, unsigned end, NodeVec& nodeScheduled);
+  // try to Schedule the node starting from start to end cycle(inclusive)
+  // if it can be scheduled, put it in the schedule and update nodeScheduled
+  // node: the node to be scheduled
+  // start: start cycle
+  // end : end cycle
+  // nodeScheduled: a vector storing nodes which has been scheduled
+  bool ScheduleNode(ModuloSchedGraphNode * node, unsigned start,
+                    unsigned end, NodeVec &nodeScheduled);
 
   //each instruction has a memory of the latest clone instruction
   //the clone instruction can be get using getClone() 
-  //this function clears the memory, i.e. getClone() after calling this function returns null
+  //this function clears the memory, i.e. getClone() after calling this function
+  //returns null
   void clearCloneMemory();
 
-  //this fuction make a clone of this input Instruction and update the clone memory
+  //this fuction make a clone of this input Instruction and update the clone
+  //memory
   //inst: the instrution to be cloned
-  Instruction* cloneInstSetMemory(Instruction* inst);
+  Instruction *cloneInstSetMemory(Instruction *inst);
 
   //this function update each instrutions which uses ist as its operand
   //after update, each instruction will use ist's clone as its operand
-  void updateUseWithClone(Instruction* ist);
+  void updateUseWithClone(Instruction * ist);
 
 };
 
 
-class ModuloSchedulingSet:NonCopyable{
- private:
-  
+class ModuloSchedulingSet:
+NonCopyable {
+private:
+
   //the graphSet to feed in
-  ModuloSchedGraphSet& graphSet;
- public:
+  ModuloSchedGraphSet & graphSet;
+
+public:
 
   //constructor
   //Scheduling graph one by one
-  ModuloSchedulingSet(ModuloSchedGraphSet _graphSet):graphSet(_graphSet){
-    for(unsigned i=0;i<graphSet.size();i++){
-      ModuloSchedGraph& graph=*(graphSet[i]);
-      if(graph.isLoop())ModuloScheduling ModuloScheduling(graph);
+  ModuloSchedulingSet(ModuloSchedGraphSet _graphSet): graphSet(_graphSet) {
+    for (unsigned i = 0; i < graphSet.size(); i++) {
+      ModuloSchedGraph & graph = *(graphSet[i]);
+      if (graph.isLoop())
+        ModuloScheduling ModuloScheduling(graph);
     }
   };
-  
-  //destructor
-  ~ModuloSchedulingSet(){};
+
+  ~ModuloSchedulingSet() {};
 };
 
-
-
 #endif
-
-