Searched refs:OldLHS (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | Reassociate.cpp | 615 Value *OldLHS = Op->getOperand(0); in RewriteExprTree() local 618 if (NewLHS == OldLHS && NewRHS == OldRHS) in RewriteExprTree() 622 if (NewLHS == OldRHS && NewRHS == OldLHS) { in RewriteExprTree() 635 if (NewLHS != OldLHS) { in RewriteExprTree() 636 BinaryOperator *BO = isReassociableOp(OldLHS, Opcode); in RewriteExprTree()
|
/freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
H A D | TGParser.cpp | 441 Init *OldLHS = TI->getLHS(); in resolve() local 443 Init *LHS = OldLHS->resolveReferences(R); in resolve() 444 if (LHS == OldLHS) { in resolve()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | TargetLowering.h | 3884 const SDLoc &DL, const SDValue OldLHS, 3889 const SDLoc &DL, const SDValue OldLHS,
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | TargetLowering.cpp | 294 const SDLoc &dl, const SDValue OldLHS, in softenSetCCOperands() argument 297 return softenSetCCOperands(DAG, VT, NewLHS, NewRHS, CCCode, dl, OldLHS, in softenSetCCOperands() 304 const SDLoc &dl, const SDValue OldLHS, in softenSetCCOperands() argument 407 EVT OpsVT[2] = { OldLHS.getValueType(), in softenSetCCOperands()
|
H A D | DAGCombiner.cpp | 10294 SDValue OldLHS = N0.getOperand(0); in foldBitOrderCrossLogicOp() local 10299 if (OldLHS.getOpcode() == Opcode && OldRHS.getOpcode() == Opcode) { in foldBitOrderCrossLogicOp() 10300 return DAG.getNode(N0.getOpcode(), DL, VT, OldLHS.getOperand(0), in foldBitOrderCrossLogicOp() 10304 if (OldLHS.getOpcode() == Opcode && OldLHS.hasOneUse()) { in foldBitOrderCrossLogicOp() 10306 return DAG.getNode(N0.getOpcode(), DL, VT, OldLHS.getOperand(0), in foldBitOrderCrossLogicOp() 10311 SDValue NewBitReorder = DAG.getNode(Opcode, DL, VT, OldLHS); in foldBitOrderCrossLogicOp()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaExpr.cpp | 11440 ExprResult OldLHS = LHS; in CheckShiftOperands() local 11445 if (IsCompAssign) LHS = OldLHS; in CheckShiftOperands()
|