Add a couple of convenience functions:
authorBill Wendling <isanbard@gmail.com>
Thu, 28 Jul 2011 02:15:52 +0000 (02:15 +0000)
committerBill Wendling <isanbard@gmail.com>
Thu, 28 Jul 2011 02:15:52 +0000 (02:15 +0000)
* InvokeInst: Get the landingpad instruction associated with this invoke.
* LandingPadInst: A method to reserve extra space for clauses.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136325 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Instructions.h
lib/VMCore/Instructions.cpp

index d337002e0bb15091bd5b89ff75f4a3ad7264a740..82d58162f68b5947002a380bcb59740b56dd5129 100644 (file)
@@ -1870,6 +1870,10 @@ public:
   /// getNumClauses - Get the number of clauses for this landing pad.
   unsigned getNumClauses() const { return getNumOperands() - 1; }
 
+  /// reserveClauses - Grow the size of the operand list to accomodate the new
+  /// number of clauses.
+  void reserveClauses(unsigned Size);
+
   // Methods for support type inquiry through isa, cast, and dyn_cast:
   static inline bool classof(const LandingPadInst *) { return true; }
   static inline bool classof(const Instruction *I) {
@@ -2474,6 +2478,10 @@ public:
     Op<-1>() = reinterpret_cast<Value*>(B);
   }
 
+  // getLandingPad - Get the landingpad instruction from the landing pad block
+  // (the unwind destination).
+  LandingPadInst *getLandingPad() const;
+
   BasicBlock *getSuccessor(unsigned i) const {
     assert(i < 2 && "Successor # out of range for invoke!");
     return i == 0 ? getNormalDest() : getUnwindDest();
index e7dd40d0599875c1bf066b06eb1bb5df0ac8d82f..9398c7f872c8e8a51dcd3b6db9ae5aec350de1ba 100644 (file)
@@ -214,6 +214,20 @@ void LandingPadInst::growOperands() {
   Use::zap(OldOps, OldOps + e, true);
 }
 
+void LandingPadInst::reserveClauses(unsigned Size) {
+  unsigned e = getNumOperands() + Size;
+  if (ReservedSpace >= e) return;
+  ReservedSpace = e;
+
+  Use *NewOps = allocHungoffUses(ReservedSpace);
+  Use *OldOps = OperandList;
+  for (unsigned i = 0; i != e; ++i)
+      NewOps[i] = OldOps[i];
+
+  OperandList = NewOps;
+  Use::zap(OldOps, OldOps + e, true);
+}
+
 void LandingPadInst::addClause(ClauseType CT, Value *ClauseVal) {
   unsigned OpNo = getNumOperands();
   if (OpNo + 1 > ReservedSpace)
@@ -551,6 +565,9 @@ void InvokeInst::removeAttribute(unsigned i, Attributes attr) {
   setAttributes(PAL);
 }
 
+LandingPadInst *InvokeInst::getLandingPad() const {
+  return cast<LandingPadInst>(getUnwindDest()->getFirstNonPHI());
+}
 
 //===----------------------------------------------------------------------===//
 //                        ReturnInst Implementation