Home
last modified time | relevance | path

Searched refs:OldLHS (Results 1 – 6 of 6) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
DReassociate.cpp655 Value *OldLHS = Op->getOperand(0); in RewriteExprTree() local
658 if (NewLHS == OldLHS && NewRHS == OldRHS) in RewriteExprTree()
662 if (NewLHS == OldRHS && NewRHS == OldLHS) { in RewriteExprTree()
675 if (NewLHS != OldLHS) { in RewriteExprTree()
676 BinaryOperator *BO = isReassociableOp(OldLHS, Opcode); in RewriteExprTree()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DReassociate.cpp672 Value *OldLHS = Op->getOperand(0); in RewriteExprTree() local
675 if (NewLHS == OldLHS && NewRHS == OldRHS) in RewriteExprTree()
679 if (NewLHS == OldRHS && NewRHS == OldLHS) { in RewriteExprTree()
692 if (NewLHS != OldLHS) { in RewriteExprTree()
693 BinaryOperator *BO = isReassociableOp(OldLHS, Opcode); in RewriteExprTree()
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DReassociate.cpp350 Value *OldLHS = I->getOperand(0); in RewriteExprTree() local
366 RemoveDeadBinaryOp(OldLHS); in RewriteExprTree()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp87 Value *OldLHS = I.getOperand(0); in SimplifyBSwap() local
91 if (!match(OldLHS, m_BSwap(m_Value(NewLHS)))) in SimplifyBSwap()
99 if (!OldLHS->hasOneUse() && !OldRHS->hasOneUse()) in SimplifyBSwap()
104 if (!OldLHS->hasOneUse()) in SimplifyBSwap()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp109 Value *OldLHS = I.getOperand(0); in SimplifyBSwap() local
111 ConstantInt *ConstLHS = dyn_cast<ConstantInt>(OldLHS); in SimplifyBSwap()
113 IntrinsicInst *IntrLHS = dyn_cast<IntrinsicInst>(OldLHS); in SimplifyBSwap()
/external/clang/lib/Sema/
DSemaExpr.cpp8702 ExprResult OldLHS = LHS; in CheckShiftOperands() local
8707 if (IsCompAssign) LHS = OldLHS; in CheckShiftOperands()