Searched refs:SubRHS (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Rewrite/
H A DDeltaTree.cpp258 DeltaTreeNode *SubRHS = InsertRes->RHS; local
264 // Figure out where to insert SubRHS/NewSplit.
272 // SubRHS/SubSplit into. Find out where to insert SubSplit.
284 InsertSide->Children[i+1] = SubRHS;
291 InsertSide->FullDelta += SubSplit.Delta + SubRHS->getFullDelta();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp5388 SDValue SubRHS = N0.getOperand(1); local
5389 if (SubRHS.getOpcode() == ISD::ZERO_EXTEND &&
5390 SubRHS.getOperand(0).getScalarValueSizeInBits() == 1)
5391 return SubRHS;
5392 if (SubRHS.getOpcode() == ISD::SIGN_EXTEND &&
5393 SubRHS.getOperand(0).getScalarValueSizeInBits() == 1)
5394 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, SubRHS.getOperand(0));

Completed in 142 milliseconds