Minor aesthetic alignments; no functional changes.
[oota-llvm.git] / include / llvm / iTerminators.h
index ebd8b873dd42603caa3de05fec5785ac8f69e48c..f6e1c362cfdc291dbf993f2dbc09511f7021133a 100644 (file)
@@ -1,9 +1,15 @@
-//===-- llvm/iTerminators.h - Termintator instruction nodes ------*- C++ -*--=//
+//===-- llvm/iTerminators.h - Termintator instruction nodes -----*- C++ -*-===//
+// 
+//                     The LLVM Compiler Infrastructure
 //
-// This file contains the declarations for all the subclasses of the
-// Instruction class, which is itself defined in the Instruction.h file.  In 
-// between these definitions and the Instruction class are classes that expose
-// the SSA properties of each instruction, and that form the SSA graph.
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
+//
+// This file contains the declarations for all the subclasses of the Instruction
+// class which represent "terminator" instructions.  Terminator instructions are
+// the only instructions allowed and required to terminate a BasicBlock.
 //
 //===----------------------------------------------------------------------===//
 
 #define LLVM_ITERMINATORS_H
 
 #include "llvm/InstrTypes.h"
-#include "llvm/BasicBlock.h"
-#include "llvm/ConstantVals.h"
-
-//===----------------------------------------------------------------------===//
-//         Classes to represent Basic Block "Terminator" instructions
-//===----------------------------------------------------------------------===//
 
+namespace llvm {
 
 //===---------------------------------------------------------------------------
-// ReturnInst - Return a value (possibly void), from a method.  Execution does
-//              not continue in this method any longer.
-//
+/// ReturnInst - Return a value (possibly void), from a function.  Execution
+/// does not continue in this function any longer.
+///
 class ReturnInst : public TerminatorInst {
   ReturnInst(const ReturnInst &RI) : TerminatorInst(Instruction::Ret) {
     if (RI.Operands.size()) {
@@ -32,7 +33,22 @@ class ReturnInst : public TerminatorInst {
     }
   }
 public:
-  ReturnInst(Value *RetVal = 0) : TerminatorInst(Instruction::Ret) {
+  // ReturnInst constructors:
+  // ReturnInst()                  - 'ret void' instruction
+  // ReturnInst(Value* X)          - 'ret X'    instruction
+  // ReturnInst(    null, Inst *)  - 'ret void' instruction, insert before I
+  // ReturnInst(Value* X, Inst *I) - 'ret X'    instruction, insert before I
+  // ReturnInst(    null, BB *B)   - 'ret void' instruction, insert @ end of BB
+  // ReturnInst(Value* X, BB *B)   - 'ret X'    instruction, insert @ end of BB
+  ReturnInst(Value *RetVal = 0, Instruction *InsertBefore = 0)
+    : TerminatorInst(Instruction::Ret, InsertBefore) {
+    if (RetVal) {
+      Operands.reserve(1);
+      Operands.push_back(Use(RetVal, this));
+    }
+  }
+  ReturnInst(Value *RetVal, BasicBlock *InsertAtEnd)
+    : TerminatorInst(Instruction::Ret, InsertAtEnd) {
     if (RetVal) {
       Operands.reserve(1);
       Operands.push_back(Use(RetVal, this));
@@ -41,8 +57,6 @@ public:
 
   virtual Instruction *clone() const { return new ReturnInst(*this); }
 
-  virtual const char *getOpcodeName() const { return "ret"; }
-
   inline const Value *getReturnValue() const {
     return Operands.size() ? Operands[0].get() : 0; 
   }
@@ -50,11 +64,12 @@ public:
     return Operands.size() ? Operands[0].get() : 0;
   }
 
-  // Additionally, they must provide a method to get at the successors of this
-  // terminator instruction.  If 'idx' is out of range, a null pointer shall be
-  // returned.
-  //
-  virtual const BasicBlock *getSuccessor(unsigned idx) const { return 0; }
+  virtual const BasicBlock *getSuccessor(unsigned idx) const {
+    assert(0 && "ReturnInst has no successors!");
+    abort();
+    return 0;
+  }
+  virtual void setSuccessor(unsigned idx, BasicBlock *NewSucc);
   virtual unsigned getNumSuccessors() const { return 0; }
 
   // Methods for support type inquiry through isa, cast, and dyn_cast:
@@ -67,53 +82,64 @@ public:
   }
 };
 
-
 //===---------------------------------------------------------------------------
-// BranchInst - Conditional or Unconditional Branch instruction.
-//
+/// BranchInst - Conditional or Unconditional Branch instruction.
+///
 class BranchInst : public TerminatorInst {
   BranchInst(const BranchInst &BI);
 public:
-  // If cond = null, then is an unconditional br...
-  BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse = 0, Value *cond = 0);
+  // BranchInst constructors (where {B, T, F} are blocks, and C is a condition):
+  // BranchInst(BB *B)                           - 'br B'
+  // BranchInst(BB* T, BB *F, Value *C)          - 'br C, T, F'
+  // BranchInst(BB* B, Inst *I)                  - 'br B'        insert before I
+  // BranchInst(BB* T, BB *F, Value *C, Inst *I) - 'br C, T, F', insert before I
+  // BranchInst(BB* B, BB *I)                    - 'br B'        insert at end
+  // BranchInst(BB* T, BB *F, Value *C, BB *I)   - 'br C, T, F', insert at end
+  BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore = 0);
+  BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *cond,
+             Instruction *InsertBefore = 0);
+  BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd);
+  BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *cond,
+             BasicBlock *InsertAtEnd);
 
   virtual Instruction *clone() const { return new BranchInst(*this); }
 
-  inline bool isUnconditional() const {
-    return Operands.size() == 1;
-  }
+  inline bool isUnconditional() const { return Operands.size() == 1; }
+  inline bool isConditional()   const { return Operands.size() == 3; }
 
-  inline const Value *getCondition() const {
-    return isUnconditional() ? 0 : Operands[2].get();
-  }
-  inline       Value *getCondition()       {
-    return isUnconditional() ? 0 : Operands[2].get();
+  inline Value *getCondition() const {
+    return isUnconditional() ? 0 : reinterpret_cast<Value*>(Operands[2].get());
   }
 
-  virtual const char *getOpcodeName() const { return "br"; }
+  void setCondition(Value *V) {
+    assert(isConditional() && "Cannot set condition of unconditional branch!");
+    setOperand(2, V);
+  }
 
   // setUnconditionalDest - Change the current branch to an unconditional branch
   // targeting the specified block.
   //
   void setUnconditionalDest(BasicBlock *Dest) {
-    if (Operands.size() == 3)
-      Operands.erase(Operands.begin()+1, Operands.end());
-    Operands[0] = Dest;
+    if (isConditional()) Operands.erase(Operands.begin()+1, Operands.end());
+    Operands[0] = reinterpret_cast<Value*>(Dest);
   }
 
-  // Additionally, they must provide a method to get at the successors of this
-  // terminator instruction.
-  //
   virtual const BasicBlock *getSuccessor(unsigned i) const {
-    return (i == 0) ? cast<const BasicBlock>(Operands[0]) : 
-          ((i == 1 && Operands.size() > 1) 
-               ? cast<const BasicBlock>(Operands[1]) : 0);
+    assert(i < getNumSuccessors() && "Successor # out of range for Branch!");
+    return (i == 0) ? cast<BasicBlock>(Operands[0].get()) : 
+                      cast<BasicBlock>(Operands[1].get());
   }
   inline BasicBlock *getSuccessor(unsigned idx) {
-    return (BasicBlock*)((const BranchInst *)this)->getSuccessor(idx);
+    const BranchInst *BI = this;
+    return const_cast<BasicBlock*>(BI->getSuccessor(idx));
   }
 
-  virtual unsigned getNumSuccessors() const { return 1+!isUnconditional(); }
+  virtual void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
+    assert(idx < getNumSuccessors() && "Successor # out of range for Branch!");
+    Operands[idx] = reinterpret_cast<Value*>(NewSucc);
+  }
+
+  virtual unsigned getNumSuccessors() const { return 1+isConditional(); }
 
   // Methods for support type inquiry through isa, cast, and dyn_cast:
   static inline bool classof(const BranchInst *) { return true; }
@@ -127,8 +153,8 @@ public:
 
 
 //===---------------------------------------------------------------------------
-// SwitchInst - Multiway switch
-//
+/// SwitchInst - Multiway switch
+///
 class SwitchInst : public TerminatorInst {
   // Operand[0]    = Value to switch on
   // Operand[1]    = Default basic block destination
@@ -136,7 +162,8 @@ class SwitchInst : public TerminatorInst {
   // Operand[2n+1] = BasicBlock to go to on match
   SwitchInst(const SwitchInst &RI);
 public:
-  SwitchInst(Value *Value, BasicBlock *Default);
+  SwitchInst(Value *Value, BasicBlock *Default, Instruction *InsertBefore = 0);
+  SwitchInst(Value *Value, BasicBlock *Default, BasicBlock  *InsertAtEnd);
 
   virtual Instruction *clone() const { return new SwitchInst(*this); }
 
@@ -145,38 +172,75 @@ public:
   inline const Value *getCondition() const { return Operands[0]; }
   inline       Value *getCondition()       { return Operands[0]; }
   inline const BasicBlock *getDefaultDest() const {
-    return cast<const BasicBlock>(Operands[1]);
+    return cast<BasicBlock>(Operands[1].get());
   }
   inline       BasicBlock *getDefaultDest()       {
-    return cast<BasicBlock>(Operands[1]);
+    return cast<BasicBlock>(Operands[1].get());
+  }
+
+  /// getNumCases - return the number of 'cases' in this switch instruction.
+  /// Note that case #0 is always the default case.
+  unsigned getNumCases() const {
+    return Operands.size()/2;
   }
 
-  void dest_push_back(Constant *OnVal, BasicBlock *Dest);
+  /// getCaseValue - Return the specified case value.  Note that case #0, the
+  /// default destination, does not have a case value.
+  Constant *getCaseValue(unsigned i) {
+    assert(i && i < getNumCases() && "Illegal case value to get!");
+    return getSuccessorValue(i);
+  }
 
-  virtual const char *getOpcodeName() const { return "switch"; }
+  /// getCaseValue - Return the specified case value.  Note that case #0, the
+  /// default destination, does not have a case value.
+  const Constant *getCaseValue(unsigned i) const {
+    assert(i && i < getNumCases() && "Illegal case value to get!");
+    return getSuccessorValue(i);
+  }
+
+  /// findCaseValue - Search all of the case values for the specified constant.
+  /// If it is explicitly handled, return the case number of it, otherwise
+  /// return 0 to indicate that it is handled by the default handler.
+  unsigned findCaseValue(const Constant *C) const {
+    for (unsigned i = 1, e = getNumCases(); i != e; ++i)
+      if (getCaseValue(i) == C)
+        return i;
+    return 0;
+  }
+
+  /// addCase - Add an entry to the switch instruction...
+  ///
+  void addCase(Constant *OnVal, BasicBlock *Dest);
+
+  /// removeCase - This method removes the specified successor from the switch
+  /// instruction.  Note that this cannot be used to remove the default
+  /// destination (successor #0).
+  ///
+  void removeCase(unsigned idx);
 
-  // Additionally, they must provide a method to get at the successors of this
-  // terminator instruction.  If 'idx' is out of range, a null pointer shall be
-  // returned.
-  //
   virtual const BasicBlock *getSuccessor(unsigned idx) const {
-    if (idx >= Operands.size()/2) return 0;
-    return cast<const BasicBlock>(Operands[idx*2+1]);
+    assert(idx < getNumSuccessors() &&"Successor idx out of range for switch!");
+    return cast<BasicBlock>(Operands[idx*2+1].get());
   }
   inline BasicBlock *getSuccessor(unsigned idx) {
-    if (idx >= Operands.size()/2) return 0;
-    return cast<BasicBlock>(Operands[idx*2+1]);
+    assert(idx < getNumSuccessors() &&"Successor idx out of range for switch!");
+    return cast<BasicBlock>(Operands[idx*2+1].get());
+  }
+
+  virtual void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
+    assert(idx < getNumSuccessors() && "Successor # out of range for switch!");
+    Operands[idx*2+1] = reinterpret_cast<Value*>(NewSucc);
   }
 
   // getSuccessorValue - Return the value associated with the specified
-  // successor. WARNING: This does not gracefully accept idx's out of range!
+  // successor.
   inline const Constant *getSuccessorValue(unsigned idx) const {
     assert(idx < getNumSuccessors() && "Successor # out of range!");
-    return cast<const Constant>(Operands[idx*2]);
+    return cast<Constant>(Operands[idx*2].get());
   }
   inline Constant *getSuccessorValue(unsigned idx) {
     assert(idx < getNumSuccessors() && "Successor # out of range!");
-    return cast<Constant>(Operands[idx*2]);
+    return cast<Constant>(Operands[idx*2].get());
   }
   virtual unsigned getNumSuccessors() const { return Operands.size()/2; }
 
@@ -190,58 +254,69 @@ public:
   }
 };
 
-
 //===---------------------------------------------------------------------------
-// InvokeInst - Invoke instruction
-//
+/// InvokeInst - Invoke instruction
+///
 class InvokeInst : public TerminatorInst {
   InvokeInst(const InvokeInst &BI);
 public:
-  InvokeInst(Value *Meth, BasicBlock *IfNormal, BasicBlock *IfException,
-            const vector<Value*> &Params, const  string &Name = "");
+  InvokeInst(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
+            const std::vector<Value*> &Params, const std::string &Name = "",
+             Instruction *InsertBefore = 0);
+  InvokeInst(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
+            const std::vector<Value*> &Params, const std::string &Name,
+             BasicBlock *InsertAtEnd);
 
   virtual Instruction *clone() const { return new InvokeInst(*this); }
 
-  // getCalledMethod - Return the method called, or null if this is an indirect
-  // method invocation...
-  //
-  inline const Method *getCalledMethod() const {
-    return dyn_cast<Method>(Operands[0].get());
-  }
-  inline Method *getCalledMethod() {
-    return dyn_cast<Method>(Operands[0].get());
-  }
+  bool mayWriteToMemory() const { return true; }
 
-  // getCalledValue - Get a pointer to a method that is invoked by this inst.
+  /// getCalledFunction - Return the function called, or null if this is an
+  /// indirect function invocation... 
+  ///
+  /// FIXME: These should be inlined once we get rid of ConstantPointerRefs!
+  ///
+  const Function *getCalledFunction() const;
+  Function *getCalledFunction();
+
+  // getCalledValue - Get a pointer to a function that is invoked by this inst.
   inline const Value *getCalledValue() const { return Operands[0]; }
   inline       Value *getCalledValue()       { return Operands[0]; }
 
   // get*Dest - Return the destination basic blocks...
   inline const BasicBlock *getNormalDest() const {
-    return cast<BasicBlock>(Operands[1]);
+    return cast<BasicBlock>(Operands[1].get());
   }
   inline       BasicBlock *getNormalDest() {
-    return cast<BasicBlock>(Operands[1]);
+    return cast<BasicBlock>(Operands[1].get());
   }
-  inline const BasicBlock *getExceptionalDest() const {
-    return cast<BasicBlock>(Operands[2]);
+  inline const BasicBlock *getUnwindDest() const {
+    return cast<BasicBlock>(Operands[2].get());
   }
-  inline       BasicBlock *getExceptionalDest() {
-    return cast<BasicBlock>(Operands[2]);
+  inline       BasicBlock *getUnwindDest() {
+    return cast<BasicBlock>(Operands[2].get());
   }
 
-  virtual const char *getOpcodeName() const { return "invoke"; }
+  inline void setNormalDest(BasicBlock *B){
+    Operands[1] = reinterpret_cast<Value*>(B);
+  }
+
+  inline void setUnwindDest(BasicBlock *B){
+    Operands[2] = reinterpret_cast<Value*>(B);
+  }
 
-  // Additionally, they must provide a method to get at the successors of this
-  // terminator instruction.
-  //
   virtual const BasicBlock *getSuccessor(unsigned i) const {
-    return (i == 0) ? getNormalDest() :
-          ((i == 1) ? getExceptionalDest() : 0);
+    assert(i < 2 && "Successor # out of range for invoke!");
+    return i == 0 ? getNormalDest() : getUnwindDest();
   }
   inline BasicBlock *getSuccessor(unsigned i) {
-    return (i == 0) ? getNormalDest() :
-          ((i == 1) ? getExceptionalDest() : 0);
+    assert(i < 2 && "Successor # out of range for invoke!");
+    return i == 0 ? getNormalDest() : getUnwindDest();
+  }
+
+  virtual void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
+    assert(idx < 2 && "Successor # out of range for invoke!");
+    Operands[idx+1] = reinterpret_cast<Value*>(NewSucc);
   }
 
   virtual unsigned getNumSuccessors() const { return 2; }
@@ -256,4 +331,39 @@ public:
   }
 };
 
+
+//===---------------------------------------------------------------------------
+/// UnwindInst - Immediately exit the current function, unwinding the stack
+/// until an invoke instruction is found.
+///
+struct UnwindInst : public TerminatorInst {
+  UnwindInst(Instruction *InsertBefore = 0)
+    : TerminatorInst(Instruction::Unwind, InsertBefore) {
+  }
+  UnwindInst(BasicBlock *InsertAtEnd)
+    : TerminatorInst(Instruction::Unwind, InsertAtEnd) {
+  }
+
+  virtual Instruction *clone() const { return new UnwindInst(); }
+
+  virtual const BasicBlock *getSuccessor(unsigned idx) const {
+    assert(0 && "UnwindInst has no successors!");
+    abort();
+    return 0;
+  }
+  virtual void setSuccessor(unsigned idx, BasicBlock *NewSucc);
+  virtual unsigned getNumSuccessors() const { return 0; }
+
+  // Methods for support type inquiry through isa, cast, and dyn_cast:
+  static inline bool classof(const UnwindInst *) { return true; }
+  static inline bool classof(const Instruction *I) {
+    return I->getOpcode() == Instruction::Unwind;
+  }
+  static inline bool classof(const Value *V) {
+    return isa<Instruction>(V) && classof(cast<Instruction>(V));
+  }
+};
+
+} // End llvm namespace
+
 #endif