Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Rewrite/
H A DDeltaTree.cpp258 DeltaTreeNode *SubRHS = InsertRes->RHS; in DoInsertion() local
284 InsertSide->Children[i+1] = SubRHS; in DoInsertion()
291 InsertSide->FullDelta += SubSplit.Delta + SubRHS->getFullDelta(); in DoInsertion()
/llvm-project-15.0.7/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp2624 Register SubLHS, SubRHS; in applySimplifyAddToSub() local
2625 std::tie(SubLHS, SubRHS) = MatchInfo; in applySimplifyAddToSub()
2626 Builder.buildSub(MI.getOperand(0).getReg(), SubLHS, SubRHS); in applySimplifyAddToSub()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp6434 SDValue SubRHS = N0.getOperand(1); in visitAND() local
6435 if (SubRHS.getOpcode() == ISD::ZERO_EXTEND && in visitAND()
6436 SubRHS.getOperand(0).getScalarValueSizeInBits() == 1) in visitAND()
6437 return SubRHS; in visitAND()
6438 if (SubRHS.getOpcode() == ISD::SIGN_EXTEND && in visitAND()
6439 SubRHS.getOperand(0).getScalarValueSizeInBits() == 1) in visitAND()
6440 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, SubRHS.getOperand(0)); in visitAND()