forked from OSchip/llvm-project
ADT: Remove ilist_*sentinel_traits, NFC
Remove all the dead code around ilist_*sentinel_traits. This is a follow-up to gutting them as part of r279314 (originally r278974), staged to prevent broken builds in sub-projects. Uses were removed from clang in r279457 and lld in r279458. llvm-svn: 279473
This commit is contained in:
parent
a392049419
commit
b29ec1e040
|
@ -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;
|
||||
|
|
|
@ -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.
|
||||
///
|
||||
|
|
|
@ -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>;
|
||||
|
||||
|
|
|
@ -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),
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -38,10 +38,6 @@ class MachineBranchProbabilityInfo;
|
|||
// Forward declaration to avoid circular include problem with TargetRegisterInfo
|
||||
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:
|
||||
|
|
|
@ -48,10 +48,6 @@ class TargetRegisterClass;
|
|||
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> {
|
||||
|
|
|
@ -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!");
|
||||
|
|
|
@ -68,10 +68,6 @@ namespace llvm {
|
|||
#endif // EXPENSIVE_CHECKS
|
||||
};
|
||||
|
||||
template <>
|
||||
struct ilist_sentinel_traits<IndexListEntry>
|
||||
: public ilist_half_embedded_sentinel_traits<IndexListEntry> {};
|
||||
|
||||
template <>
|
||||
struct ilist_traits<IndexListEntry>
|
||||
: public ilist_default_traits<IndexListEntry> {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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 *) {}
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue