Add an unwind_to field to basic blocks, making them Users instead of Values.

This is the first checkin for PR1269, the new EH infrastructure.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47802 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nick Lewycky
2008-03-02 02:48:09 +00:00
parent fe0753efba
commit fc82fabe00
10 changed files with 146 additions and 30 deletions

View File

@ -49,13 +49,14 @@ template<> struct ilist_traits<Instruction>
/// modifying a program. However, the verifier will ensure that basic blocks
/// are "well formed".
/// @brief LLVM Basic Block Representation
class BasicBlock : public Value { // Basic blocks are data objects also
class BasicBlock : public User { // Basic blocks are data objects also
public:
typedef iplist<Instruction> InstListType;
private :
InstListType InstList;
BasicBlock *Prev, *Next; // Next and Prev links for our intrusive linked list
Function *Parent;
Use unwindDest;
void setParent(Function *parent);
void setNext(BasicBlock *N) { Next = N; }
@ -75,9 +76,20 @@ public:
/// InsertBefore is null), or before the specified basic block.
///
explicit BasicBlock(const std::string &Name = "", Function *Parent = 0,
BasicBlock *InsertBefore = 0);
BasicBlock *InsertBefore = 0, BasicBlock *unwindDest = 0);
~BasicBlock();
/// getUnwindDest - Returns the BasicBlock that flow will enter if an unwind
/// instruction occurs in this block. May be null, in which case unwinding
/// is undefined in this block.
const BasicBlock *getUnwindDest() const;
BasicBlock *getUnwindDest();
/// setUnwindDest - Set which BasicBlock flow will enter if an unwind is
/// executed within this block. It may be set to null if unwinding is not
/// permitted in this block.
void setUnwindDest(BasicBlock *unwindDest);
/// getParent - Return the enclosing method, or null if none
///
const Function *getParent() const { return Parent; }