Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp3098 Register SubLHS, SubRHS; in applySimplifyAddToSub() local
3099 std::tie(SubLHS, SubRHS) = MatchInfo; in applySimplifyAddToSub()
3100 Builder.buildSub(MI.getOperand(0).getReg(), SubLHS, SubRHS); in applySimplifyAddToSub()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp7265 SDValue SubRHS = N0.getOperand(1); in visitAND() local
7266 if (SubRHS.getOpcode() == ISD::ZERO_EXTEND && in visitAND()
7267 SubRHS.getOperand(0).getScalarValueSizeInBits() == 1) in visitAND()
7268 return SubRHS; in visitAND()
7269 if (SubRHS.getOpcode() == ISD::SIGN_EXTEND && in visitAND()
7270 SubRHS.getOperand(0).getScalarValueSizeInBits() == 1) in visitAND()
7271 return DAG.getNode(ISD::ZERO_EXTEND, DL, VT, SubRHS.getOperand(0)); in visitAND()