Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DDDG.h26 using DDGNodeBase = DGNode<DDGNode, DDGEdge>; variable
42 class DDGNode : public DDGNodeBase {
55 DDGNode(const NodeKind K) : DDGNodeBase(), Kind(K) {} in DDGNode()
56 DDGNode(const DDGNode &N) : DDGNodeBase(N), Kind(N.Kind) {} in DDGNode()
57 DDGNode(DDGNode &&N) : DDGNodeBase(std::move(N)), Kind(N.Kind) {} in DDGNode()