Home
last modified time | relevance | path

Searched refs:ilist_node_base (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A Dilist_node_base.h19 template <bool EnableSentinelTracking> class ilist_node_base; variable
21 template <> class ilist_node_base<false> {
22 ilist_node_base *Prev = nullptr;
23 ilist_node_base *Next = nullptr;
26 void setPrev(ilist_node_base *Prev) { this->Prev = Prev; } in setPrev()
28 ilist_node_base *getPrev() const { return Prev; } in getPrev()
29 ilist_node_base *getNext() const { return Next; } in getNext()
35 template <> class ilist_node_base<true> {
36 PointerIntPair<ilist_node_base *, 1> PrevAndSentinel;
37 ilist_node_base *Next = nullptr;
[all …]
H A Dilist_node_options.h18 template <bool EnableSentinelTracking> class ilist_node_base; variable
117 typedef ilist_node_base<enable_sentinel_tracking> node_base_type;
H A Dilist_base.h20 using node_base_type = ilist_node_base<EnableSentinelTracking>;
/llvm-project-15.0.7/llvm/test/Analysis/CostModel/SystemZ/
H A Dintrinsic-cost-crash.ll9 …75.31759.32243.32727.33695.36599.38051.41627" = type { %"class.llvm::ilist_node_base.83.1535.9763.…
10ilist_node_base.83.1535.9763.10247.10731.11215.11699.12183.12667.13151.13635.15087.15571.16055.175…
/llvm-project-15.0.7/llvm/unittests/ADT/
H A DIListNodeBaseTest.cpp16 typedef ilist_node_base<false> RawNode;
17 typedef ilist_node_base<true> TrackingNode;
/llvm-project-15.0.7/clang/docs/tools/
H A Dclang-formatted-files.txt4980 llvm/include/llvm/ADT/ilist_node_base.h