Lines Matching refs:SimpleDDGNode
42 if (isa<SimpleDDGNode>(this)) { in collectInstructions()
43 for (Instruction *I : cast<const SimpleDDGNode>(this)->getInstructions()) in collectInstructions()
83 if (isa<SimpleDDGNode>(N)) { in operator <<()
85 for (const Instruction *I : cast<const SimpleDDGNode>(N).getInstructions()) in operator <<()
107 SimpleDDGNode::SimpleDDGNode(Instruction &I) in SimpleDDGNode() function in SimpleDDGNode
113 SimpleDDGNode::SimpleDDGNode(const SimpleDDGNode &N) in SimpleDDGNode() function in SimpleDDGNode
120 SimpleDDGNode::SimpleDDGNode(SimpleDDGNode &&N) in SimpleDDGNode() function in SimpleDDGNode
127 SimpleDDGNode::~SimpleDDGNode() { InstList.clear(); } in ~SimpleDDGNode()
269 const auto *SimpleSrc = dyn_cast<const SimpleDDGNode>(&Src); in areNodesMergeable()
270 const auto *SimpleTgt = dyn_cast<const SimpleDDGNode>(&Tgt); in areNodesMergeable()
282 assert(isa<SimpleDDGNode>(&A) && isa<SimpleDDGNode>(&B) && in mergeNodes()
286 cast<SimpleDDGNode>(&A)->appendInstructions(*cast<SimpleDDGNode>(&B)); in mergeNodes()