Searched refs:LOp (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp483 /// Return whether "X LOp (Y ROp Z)" is always equal to
484 /// "(X LOp Y) ROp (X LOp Z)".
485 static bool leftDistributesOverRight(Instruction::BinaryOps LOp, argument
489 if (LOp == Instruction::And)
493 if (LOp == Instruction::Or)
498 if (LOp == Instruction::Mul)
504 /// Return whether "(X LOp Y) ROp Z" is always equal to
505 /// "(X ROp Z) LOp (Y ROp Z)".
506 static bool rightDistributesOverLeft(Instruction::BinaryOps LOp, argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp904 DefInit *LOp = dyn_cast<DefInit>(LHSs->getOperator());
906 if ((!LOp && !isa<UnsetInit>(LHSs->getOperator())) ||
909 if (LOp && ROp && LOp->getDef() != ROp->getDef()) {
914 Init *Op = LOp ? LOp : ROp;

Completed in 121 milliseconds