Home
last modified time | relevance | path

Searched refs:tryReassociateBinaryOp (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Scalar/
H A DNaryReassociate.h139 Instruction *tryReassociateBinaryOp(BinaryOperator *I);
143 Instruction *tryReassociateBinaryOp(Value *LHS, Value *RHS,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DNaryReassociate.cpp301 return tryReassociateBinaryOp(cast<BinaryOperator>(I)); in tryReassociate()
461 Instruction *NaryReassociatePass::tryReassociateBinaryOp(BinaryOperator *I) { in tryReassociateBinaryOp() function in NaryReassociatePass
466 if (auto *NewI = tryReassociateBinaryOp(LHS, RHS, I)) in tryReassociateBinaryOp()
468 if (auto *NewI = tryReassociateBinaryOp(RHS, LHS, I)) in tryReassociateBinaryOp()
473 Instruction *NaryReassociatePass::tryReassociateBinaryOp(Value *LHS, Value *RHS, in tryReassociateBinaryOp() function in NaryReassociatePass