diff options
author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-02-12 19:12:03 +0000 |
---|---|---|
committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-02-12 19:12:03 +0000 |
commit | 94dc07728f091c652f0a8059aba6dce5018485ee (patch) | |
tree | a99fc5ebe0426d57a514b15340b91abec610566b /include/llvm/CodeGen/MachineBasicBlock.h | |
parent | ab8672c8bb83e722b856eac67863542ea7e0cbb2 (diff) |
Move ilist_trairs<MachineInstr> in MachineBasicBlock.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11358 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineBasicBlock.h')
-rw-r--r-- | include/llvm/CodeGen/MachineBasicBlock.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/MachineBasicBlock.h b/include/llvm/CodeGen/MachineBasicBlock.h index 94409c5ef4..e89b64eea6 100644 --- a/include/llvm/CodeGen/MachineBasicBlock.h +++ b/include/llvm/CodeGen/MachineBasicBlock.h @@ -15,9 +15,56 @@ #define LLVM_CODEGEN_MACHINEBASICBLOCK_H #include "llvm/CodeGen/MachineInstr.h" +#include "Support/ilist" namespace llvm { +// ilist_traits +template <> +class ilist_traits<MachineInstr> +{ + typedef ilist_traits<MachineInstr> self; + + // this is only set by the MachineBasicBlock owning the ilist + friend class MachineBasicBlock; + MachineBasicBlock* parent; + +public: + ilist_traits<MachineInstr>() : parent(0) { } + + static MachineInstr* getPrev(MachineInstr* N) { return N->prev; } + static MachineInstr* getNext(MachineInstr* N) { return N->next; } + + static const MachineInstr* + getPrev(const MachineInstr* N) { return N->prev; } + + static const MachineInstr* + getNext(const MachineInstr* N) { return N->next; } + + static void setPrev(MachineInstr* N, MachineInstr* prev) { N->prev = prev; } + static void setNext(MachineInstr* N, MachineInstr* next) { N->next = next; } + + static MachineInstr* createNode() { return new MachineInstr(0, 0); } + + void addNodeToList(MachineInstr* N) { + assert(N->parent == 0 && "machine instruction already in a basic block"); + N->parent = parent; + } + + void removeNodeFromList(MachineInstr* N) { + assert(N->parent != 0 && "machine instruction not in a basic block"); + N->parent = 0; + } + + void transferNodesFromList(iplist<MachineInstr, self>& toList, + ilist_iterator<MachineInstr> first, + ilist_iterator<MachineInstr> last) { + if (parent != toList.parent) + for (; first != last; ++first) + first->parent = toList.parent; + } +}; + class BasicBlock; class MachineBasicBlock { |