15#ifndef LLVM_ADT_ILIST_NODE_H
16#define LLVM_ADT_ILIST_NODE_H
25namespace ilist_detail {
35 return static_cast<const NodeTy *
>(
this)->getNodeBaseParent();
38 return static_cast<NodeTy *
>(
this)->getNodeBaseParent();
41 return static_cast<NodeTy *
>(
this)->setNodeBaseParent(Parent);
48template <
class OptionsT,
bool IsReverse,
bool IsConst>
class ilist_iterator;
49template <
class OptionsT,
bool IsReverse,
bool IsConst>
54template <
bool use_iterator_bits,
typename Opts,
bool arg1,
bool arg2>
59template <
typename Opts,
bool arg1,
bool arg2>
73template <
class OptionsT>
75 : OptionsT::node_base_type,
77 typename OptionsT::parent_ty> {
78 using value_type =
typename OptionsT::value_type;
79 using node_base_type =
typename OptionsT::node_base_type;
80 using list_base_type =
typename OptionsT::list_base_type;
82 friend typename OptionsT::list_base_type;
87 typename OptionsT::parent_ty>;
146 using node_base_type::isKnownSentinel;
157 template <
typename T = OptionsT>
158 std::enable_if_t<T::is_sentinel_tracking_explicit, bool>
isSentinel()
const {
159 return node_base_type::isSentinel();
221 typename ilist_detail::compute_node_options<T, Options...>::type> {
223 "Unrecognized node option!");
226namespace ilist_detail {
236 template <
class OptionsT>
241 template <
class OptionsT>
247 template <
class OptionsT>
249 return static_cast<typename OptionsT::pointer
>(
N);
252 template <
class OptionsT>
253 static typename OptionsT::const_pointer
255 return static_cast<typename OptionsT::const_pointer
>(
N);
258 template <
class OptionsT>
263 template <
class OptionsT>
268 template <
class OptionsT>
274 template <
class OptionsT>
288 return NodeAccess::getNodePtr<OptionsT>(
N);
292 return NodeAccess::getNodePtr<OptionsT>(
N);
296 return NodeAccess::getValuePtr<OptionsT>(
N);
300 return NodeAccess::getValuePtr<OptionsT>(
N);
306template <
class OptionsT>
310 this->initializeSentinel();
319 bool empty()
const {
return this == this->getPrev(); }
326template <
typename NodeTy,
typename ParentTy,
class...
Options>
337 const ParentTy *getNodeParent()
const {
338 return static_cast<const NodeTy *
>(
this)->
getParent();
349 getNodeParent()->*(ParentTy::getSublistAccess((NodeTy *)
nullptr));
350 return List.getPrevNode(*
static_cast<NodeTy *
>(
this));
363 getNodeParent()->*(ParentTy::getSublistAccess((NodeTy *)
nullptr));
364 return List.getNextNode(*
static_cast<NodeTy *
>(
this));
Given that RA is a live value
Mixin base class that is used to add getParent() and setParent(ParentTy*) methods to ilist_node_impl ...
const ParentTy * getParent() const
void setParent(ParentTy *Parent)
Iterator for intrusive lists based on ilist_node.
Iterator for intrusive lists based on ilist_node.
Implementation for an ilist node.
ilist_node_impl()=default
typename ilist_select_iterator_type< OptionsT::has_iterator_bits, OptionsT, true, false >::type reverse_self_iterator
typename ilist_select_iterator_type< OptionsT::has_iterator_bits, OptionsT, false, true >::type const_self_iterator
const_reverse_self_iterator getReverseIterator() const
typename ilist_select_iterator_type< OptionsT::has_iterator_bits, OptionsT, false, false >::type self_iterator
typename ilist_select_iterator_type< OptionsT::has_iterator_bits, OptionsT, true, true >::type const_reverse_self_iterator
const_self_iterator getIterator() const
reverse_self_iterator getReverseIterator()
std::enable_if_t< T::is_sentinel_tracking_explicit, bool > isSentinel() const
Check whether this is the sentinel node.
self_iterator getIterator()
An ilist node that can access its parent list.
const NodeTy * getPrevNode() const
Get the previous node, or nullptr for the list head.
NodeTy * getNextNode()
Get the next node, or nullptr for the list tail.
const NodeTy * getNextNode() const
Get the next node, or nullptr for the list tail.
ilist_node_with_parent()=default
This is an optimization pass for GlobalISel generic memory operations.
An access class for ilist_node private API.
static ilist_node_impl< OptionsT > * getPrev(ilist_node_impl< OptionsT > &N)
static const ilist_node_impl< OptionsT > * getNext(const ilist_node_impl< OptionsT > &N)
static ilist_node_impl< OptionsT > * getNext(ilist_node_impl< OptionsT > &N)
static const ilist_node_impl< OptionsT > * getPrev(const ilist_node_impl< OptionsT > &N)
static ilist_node_impl< OptionsT > * getNodePtr(typename OptionsT::pointer N)
static const ilist_node_impl< OptionsT > * getNodePtr(typename OptionsT::const_pointer N)
static OptionsT::pointer getValuePtr(ilist_node_impl< OptionsT > *N)
static OptionsT::const_pointer getValuePtr(const ilist_node_impl< OptionsT > *N)
static pointer getValuePtr(node_type *N)
typename OptionsT::const_pointer const_pointer
static const_pointer getValuePtr(const node_type *N)
static const node_type * getNodePtr(const_pointer N)
static node_type * getNodePtr(pointer N)
typename OptionsT::pointer pointer
Check whether options are valid.