diff options
-rw-r--r-- | llvm/include/llvm/ADT/SparseBitVector.h | 7 | ||||
-rw-r--r-- | llvm/include/llvm/ADT/ilist.h | 6 | ||||
-rw-r--r-- | llvm/include/llvm/ADT/ilist_node.h | 4 | ||||
-rw-r--r-- | llvm/include/llvm/Analysis/AliasSetTracker.h | 4 | ||||
-rw-r--r-- | llvm/include/llvm/Analysis/IVUsers.h | 4 | ||||
-rw-r--r-- | llvm/include/llvm/CodeGen/MachineBasicBlock.h | 4 | ||||
-rw-r--r-- | llvm/include/llvm/CodeGen/MachineFunction.h | 4 | ||||
-rw-r--r-- | llvm/include/llvm/CodeGen/SelectionDAG.h | 4 | ||||
-rw-r--r-- | llvm/include/llvm/CodeGen/SlotIndexes.h | 4 | ||||
-rw-r--r-- | llvm/include/llvm/IR/BasicBlock.h | 4 | ||||
-rw-r--r-- | llvm/include/llvm/IR/Function.h | 4 | ||||
-rw-r--r-- | llvm/include/llvm/IR/Instruction.h | 4 | ||||
-rw-r--r-- | llvm/include/llvm/IR/Module.h | 4 | ||||
-rw-r--r-- | llvm/include/llvm/IR/SymbolTableListTraits.h | 8 | ||||
-rw-r--r-- | llvm/include/llvm/MC/MCFragment.h | 6 | ||||
-rw-r--r-- | llvm/include/llvm/Transforms/Utils/MemorySSA.h | 4 | ||||
-rw-r--r-- | llvm/lib/MC/MCFragment.cpp | 4 | ||||
-rw-r--r-- | llvm/lib/Support/YAMLParser.cpp | 4 |
18 files changed, 3 insertions, 80 deletions
diff --git a/llvm/include/llvm/ADT/SparseBitVector.h b/llvm/include/llvm/ADT/SparseBitVector.h index 4e19b16f61a..5d21c076a47 100644 --- a/llvm/include/llvm/ADT/SparseBitVector.h +++ b/llvm/include/llvm/ADT/SparseBitVector.h @@ -55,8 +55,6 @@ private: // Index of Element in terms of where first bit starts. unsigned ElementIndex; BitWord Bits[BITWORDS_PER_ELEMENT]; - // Needed for sentinels - friend struct ilist_sentinel_traits<SparseBitVectorElement>; SparseBitVectorElement() { ElementIndex = ~0U; memset(&Bits[0], 0, sizeof (BitWord) * BITWORDS_PER_ELEMENT); @@ -244,11 +242,6 @@ public: } }; -template <unsigned ElementSize> -struct ilist_sentinel_traits<SparseBitVectorElement<ElementSize>> - : public ilist_half_embedded_sentinel_traits< - SparseBitVectorElement<ElementSize>> {}; - template <unsigned ElementSize = 128> class SparseBitVector { typedef ilist<SparseBitVectorElement<ElementSize> > ElementList; diff --git a/llvm/include/llvm/ADT/ilist.h b/llvm/include/llvm/ADT/ilist.h index e326f3f9220..04bb5608252 100644 --- a/llvm/include/llvm/ADT/ilist.h +++ b/llvm/include/llvm/ADT/ilist.h @@ -119,12 +119,6 @@ template <class TraitsT, class NodeT> struct HasObsoleteCustomization { template <typename NodeTy> struct ilist_traits; -// TODO: Delete uses from subprojects, then delete these. -template <typename NodeTy> struct ilist_sentinel_traits {}; -template <typename NodeTy> struct ilist_embedded_sentinel_traits {}; -template <typename NodeTy> struct ilist_half_embedded_sentinel_traits {}; -template <typename NodeTy> struct ilist_full_embedded_sentinel_traits {}; - /// ilist_node_traits - A fragment for template traits for intrusive list /// that provides default node related operations. /// diff --git a/llvm/include/llvm/ADT/ilist_node.h b/llvm/include/llvm/ADT/ilist_node.h index 3a217ca0150..756745bd6da 100644 --- a/llvm/include/llvm/ADT/ilist_node.h +++ b/llvm/include/llvm/ADT/ilist_node.h @@ -21,8 +21,6 @@ namespace llvm { template<typename NodeTy> struct ilist_traits; -template <typename NodeTy> struct ilist_embedded_sentinel_traits; -template <typename NodeTy> struct ilist_half_embedded_sentinel_traits; /// Base class for ilist nodes. struct ilist_node_base { @@ -55,8 +53,6 @@ template <typename NodeTy> class ilist_sentinel; template <typename NodeTy> class ilist_node : ilist_node_base { friend struct ilist_node_access; friend struct ilist_traits<NodeTy>; - friend struct ilist_half_embedded_sentinel_traits<NodeTy>; - friend struct ilist_embedded_sentinel_traits<NodeTy>; friend class ilist_iterator<NodeTy>; friend class ilist_sentinel<NodeTy>; diff --git a/llvm/include/llvm/Analysis/AliasSetTracker.h b/llvm/include/llvm/Analysis/AliasSetTracker.h index 0021f2815f5..5ebef3c69ec 100644 --- a/llvm/include/llvm/Analysis/AliasSetTracker.h +++ b/llvm/include/llvm/Analysis/AliasSetTracker.h @@ -239,9 +239,7 @@ public: }; private: - // Can only be created by AliasSetTracker. Also, ilist creates one - // to serve as a sentinel. - friend struct ilist_sentinel_traits<AliasSet>; + // Can only be created by AliasSetTracker. AliasSet() : PtrList(nullptr), PtrListEnd(&PtrList), Forward(nullptr), RefCount(0), AliasAny(false), Access(NoAccess), Alias(SetMustAlias), diff --git a/llvm/include/llvm/Analysis/IVUsers.h b/llvm/include/llvm/Analysis/IVUsers.h index 16161be8db0..b208c027e45 100644 --- a/llvm/include/llvm/Analysis/IVUsers.h +++ b/llvm/include/llvm/Analysis/IVUsers.h @@ -91,10 +91,6 @@ private: void deleted() override; }; -template <> -struct ilist_sentinel_traits<IVStrideUse> - : public ilist_embedded_sentinel_traits<IVStrideUse> {}; - class IVUsers { friend class IVStrideUse; Loop *L; diff --git a/llvm/include/llvm/CodeGen/MachineBasicBlock.h b/llvm/include/llvm/CodeGen/MachineBasicBlock.h index 37a7948c9ef..e789b2e322a 100644 --- a/llvm/include/llvm/CodeGen/MachineBasicBlock.h +++ b/llvm/include/llvm/CodeGen/MachineBasicBlock.h @@ -39,10 +39,6 @@ class MachineBranchProbabilityInfo; typedef unsigned LaneBitmask; template <> -struct ilist_sentinel_traits<MachineInstr> - : public ilist_half_embedded_sentinel_traits<MachineInstr> {}; - -template <> struct ilist_traits<MachineInstr> : public ilist_default_traits<MachineInstr> { private: // this is only set by the MachineBasicBlock owning the LiveList diff --git a/llvm/include/llvm/CodeGen/MachineFunction.h b/llvm/include/llvm/CodeGen/MachineFunction.h index 7374c07732b..8ad04e05e2b 100644 --- a/llvm/include/llvm/CodeGen/MachineFunction.h +++ b/llvm/include/llvm/CodeGen/MachineFunction.h @@ -49,10 +49,6 @@ struct MachinePointerInfo; struct WinEHFuncInfo; template <> -struct ilist_sentinel_traits<MachineBasicBlock> - : public ilist_half_embedded_sentinel_traits<MachineBasicBlock> {}; - -template <> struct ilist_traits<MachineBasicBlock> : public ilist_default_traits<MachineBasicBlock> { void addNodeToList(MachineBasicBlock* MBB); diff --git a/llvm/include/llvm/CodeGen/SelectionDAG.h b/llvm/include/llvm/CodeGen/SelectionDAG.h index e6d71a7be5c..485426275b0 100644 --- a/llvm/include/llvm/CodeGen/SelectionDAG.h +++ b/llvm/include/llvm/CodeGen/SelectionDAG.h @@ -81,10 +81,6 @@ template<> struct FoldingSetTrait<SDVTListNode> : DefaultFoldingSetTrait<SDVTLis } }; -template <> -struct ilist_sentinel_traits<SDNode> - : public ilist_half_embedded_sentinel_traits<SDNode> {}; - template <> struct ilist_traits<SDNode> : public ilist_default_traits<SDNode> { static void deleteNode(SDNode *) { llvm_unreachable("ilist_traits<SDNode> shouldn't see a deleteNode call!"); diff --git a/llvm/include/llvm/CodeGen/SlotIndexes.h b/llvm/include/llvm/CodeGen/SlotIndexes.h index 6090ecec32a..57fb2df37da 100644 --- a/llvm/include/llvm/CodeGen/SlotIndexes.h +++ b/llvm/include/llvm/CodeGen/SlotIndexes.h @@ -69,10 +69,6 @@ namespace llvm { }; template <> - struct ilist_sentinel_traits<IndexListEntry> - : public ilist_half_embedded_sentinel_traits<IndexListEntry> {}; - - template <> struct ilist_traits<IndexListEntry> : public ilist_default_traits<IndexListEntry> { void deleteNode(IndexListEntry *N) {} diff --git a/llvm/include/llvm/IR/BasicBlock.h b/llvm/include/llvm/IR/BasicBlock.h index e7daf6ee238..50eedecc4af 100644 --- a/llvm/include/llvm/IR/BasicBlock.h +++ b/llvm/include/llvm/IR/BasicBlock.h @@ -30,10 +30,6 @@ class LLVMContext; class BlockAddress; class Function; -template <> -struct SymbolTableListSentinelTraits<BasicBlock> - : public ilist_half_embedded_sentinel_traits<BasicBlock> {}; - /// \brief LLVM Basic Block Representation /// /// This represents a single basic block in LLVM. A basic block is simply a diff --git a/llvm/include/llvm/IR/Function.h b/llvm/include/llvm/IR/Function.h index bf82b988996..ff55fcbf7fe 100644 --- a/llvm/include/llvm/IR/Function.h +++ b/llvm/include/llvm/IR/Function.h @@ -34,10 +34,6 @@ class FunctionType; class LLVMContext; class DISubprogram; -template <> -struct SymbolTableListSentinelTraits<Argument> - : public ilist_half_embedded_sentinel_traits<Argument> {}; - class Function : public GlobalObject, public ilist_node<Function> { public: typedef SymbolTableList<Argument> ArgumentListType; diff --git a/llvm/include/llvm/IR/Instruction.h b/llvm/include/llvm/IR/Instruction.h index bd2e0fe2c96..576f439977c 100644 --- a/llvm/include/llvm/IR/Instruction.h +++ b/llvm/include/llvm/IR/Instruction.h @@ -29,10 +29,6 @@ class MDNode; class BasicBlock; struct AAMDNodes; -template <> -struct SymbolTableListSentinelTraits<Instruction> - : public ilist_half_embedded_sentinel_traits<Instruction> {}; - class Instruction : public User, public ilist_node_with_parent<Instruction, BasicBlock> { void operator=(const Instruction &) = delete; diff --git a/llvm/include/llvm/IR/Module.h b/llvm/include/llvm/IR/Module.h index ef7e4074176..d3b56ee3247 100644 --- a/llvm/include/llvm/IR/Module.h +++ b/llvm/include/llvm/IR/Module.h @@ -37,10 +37,6 @@ class RandomNumberGenerator; class StructType; template <class PtrType> class SmallPtrSetImpl; -template <> -struct ilist_sentinel_traits<NamedMDNode> - : public ilist_embedded_sentinel_traits<NamedMDNode> {}; - template<> struct ilist_traits<NamedMDNode> : public ilist_default_traits<NamedMDNode> { void addNodeToList(NamedMDNode *) {} diff --git a/llvm/include/llvm/IR/SymbolTableListTraits.h b/llvm/include/llvm/IR/SymbolTableListTraits.h index 42320a96f39..f0f8ba3ae4d 100644 --- a/llvm/include/llvm/IR/SymbolTableListTraits.h +++ b/llvm/include/llvm/IR/SymbolTableListTraits.h @@ -34,10 +34,6 @@ template <typename NodeTy> class ilist_iterator; template <typename NodeTy, typename Traits> class iplist; template <typename Ty> struct ilist_traits; -template <typename NodeTy> -struct SymbolTableListSentinelTraits - : public ilist_embedded_sentinel_traits<NodeTy> {}; - /// Template metafunction to get the parent type for a symbol table list. /// /// Implementations create a typedef called \c type so that we only need a @@ -68,9 +64,7 @@ template <typename NodeTy> class SymbolTableList; // ItemParentClass - The type of object that owns the list, e.g. BasicBlock. // template <typename ValueSubClass> -class SymbolTableListTraits - : public SymbolTableListSentinelTraits<ValueSubClass>, - public ilist_node_traits<ValueSubClass> { +class SymbolTableListTraits : public ilist_node_traits<ValueSubClass> { typedef SymbolTableList<ValueSubClass> ListTy; typedef typename SymbolTableListParentType<ValueSubClass>::type ItemParentClass; diff --git a/llvm/include/llvm/MC/MCFragment.h b/llvm/include/llvm/MC/MCFragment.h index e0a2bfc2374..22e90e20aa9 100644 --- a/llvm/include/llvm/MC/MCFragment.h +++ b/llvm/include/llvm/MC/MCFragment.h @@ -25,6 +25,7 @@ class MCSubtargetInfo; class MCFragment : public ilist_node_with_parent<MCFragment, MCSection> { friend class MCAsmLayout; + MCFragment() = delete; MCFragment(const MCFragment &) = delete; void operator=(const MCFragment &) = delete; @@ -83,11 +84,6 @@ protected: uint8_t BundlePadding, MCSection *Parent = nullptr); ~MCFragment(); -private: - - // This is a friend so that the sentinal can be created. - friend struct ilist_sentinel_traits<MCFragment>; - MCFragment(); public: /// Destroys the current fragment. diff --git a/llvm/include/llvm/Transforms/Utils/MemorySSA.h b/llvm/include/llvm/Transforms/Utils/MemorySSA.h index 3a28b1c915b..40b065ed792 100644 --- a/llvm/include/llvm/Transforms/Utils/MemorySSA.h +++ b/llvm/include/llvm/Transforms/Utils/MemorySSA.h @@ -170,10 +170,6 @@ private: BasicBlock *Block; }; -template <> -struct ilist_sentinel_traits<MemoryAccess> - : public ilist_half_embedded_sentinel_traits<MemoryAccess> {}; - inline raw_ostream &operator<<(raw_ostream &OS, const MemoryAccess &MA) { MA.print(OS); return OS; diff --git a/llvm/lib/MC/MCFragment.cpp b/llvm/lib/MC/MCFragment.cpp index eae0dfe568e..638d9103336 100644 --- a/llvm/lib/MC/MCFragment.cpp +++ b/llvm/lib/MC/MCFragment.cpp @@ -235,10 +235,6 @@ void ilist_node_traits<MCFragment>::deleteNode(MCFragment *V) { V->destroy(); } -MCFragment::MCFragment() : Kind(FragmentType(~0)), HasInstructions(false), - AlignToBundleEnd(false), BundlePadding(0) { -} - MCFragment::~MCFragment() { } MCFragment::MCFragment(FragmentType Kind, bool HasInstructions, diff --git a/llvm/lib/Support/YAMLParser.cpp b/llvm/lib/Support/YAMLParser.cpp index 4d5b750e266..7490f1a9708 100644 --- a/llvm/lib/Support/YAMLParser.cpp +++ b/llvm/lib/Support/YAMLParser.cpp @@ -149,10 +149,6 @@ struct Token : ilist_node<Token> { } namespace llvm { -template <> -struct ilist_sentinel_traits<Token> - : public ilist_full_embedded_sentinel_traits<Token> {}; - template<> struct ilist_node_traits<Token> { Token *createNode(const Token &V) { |