Searched refs:LOp (Results 1 – 8 of 8) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/tools/llvm-diff/lib/ |
| H A D | DifferenceEngine.cpp | 673 const auto *LOp = L->getOperand(I); in equivalentAsOperands() local 676 if (LOp == SavedLHS || ROp == SavedRHS) { in equivalentAsOperands() 677 if (LOp != SavedLHS || ROp != SavedRHS) in equivalentAsOperands() 686 if (!equivalentAsOperands(LOp, ROp, AC)) in equivalentAsOperands()
|
| /freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
| H A D | Record.cpp | 1296 const auto *LOp = dyn_cast<DefInit>(LHSs->getOperator()); in Fold() local 1298 if ((!LOp && !isa<UnsetInit>(LHSs->getOperator())) || in Fold() 1301 if (LOp && ROp && LOp->getDef() != ROp->getDef()) { in Fold() 1306 const Init *Op = LOp ? LOp : ROp; in Fold()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstructionCombining.cpp | 618 static bool leftDistributesOverRight(Instruction::BinaryOps LOp, in leftDistributesOverRight() argument 622 if (LOp == Instruction::And) in leftDistributesOverRight() 626 if (LOp == Instruction::Or) in leftDistributesOverRight() 631 if (LOp == Instruction::Mul) in leftDistributesOverRight() 639 static bool rightDistributesOverLeft(Instruction::BinaryOps LOp, in rightDistributesOverLeft() argument 642 return leftDistributesOverRight(ROp, LOp); in rightDistributesOverLeft() 645 return Instruction::isBitwiseLogicOp(LOp) && Instruction::isShift(ROp); in rightDistributesOverLeft()
|
| H A D | InstCombineCalls.cpp | 1601 static bool leftDistributesOverRight(Instruction::BinaryOps LOp, bool HasNUW, in leftDistributesOverRight() argument 1606 if (HasNUW && LOp == Instruction::Add) in leftDistributesOverRight() 1608 if (HasNUW && LOp == Instruction::Shl) in leftDistributesOverRight() 1613 return HasNSW && LOp == Instruction::Add; in leftDistributesOverRight()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | arm_neon_incl.td | 35 class LOp<list<dag> ops> : Operation<ops>;
|
| H A D | arm_neon.td | 110 def OP_CAST : LOp<[(save_temp $promote, $p0), 162 def OP_MOVL_HI : LOp<[(save_temp $a1, (call "vget_high", $p0)), 168 def OP_SCALAR_VMULX_LN : LOp<[(save_temp $x, (call "vget_lane", $p0, 173 def OP_SCALAR_VMULX_LNQ : LOp<[(save_temp $x, (call "vget_lane", $p0,
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenFunction.cpp | 1815 const Expr *Cond, BinaryOperator::Opcode LOp, llvm::BasicBlock *TrueBlock, in EmitBranchToCounterBlock() argument 1844 if (LOp == BO_LAnd) { in EmitBranchToCounterBlock() 1862 else if (LOp == BO_LOr) { in EmitBranchToCounterBlock()
|
| H A D | CodeGenFunction.h | 5198 void EmitBranchToCounterBlock(const Expr *Cond, BinaryOperator::Opcode LOp,
|