Searched refs:BOpcode (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp1474 BinaryOperator::BinaryOps BOpcode = BO->getOpcode(); local
1475 Constant *IdC = ConstantExpr::getBinOpIdentity(BOpcode, Shuf.getType(), true);
1489 (Instruction::isIntDivRem(BOpcode) || Instruction::isShift(BOpcode));
1491 NewC = getSafeVectorConstantForBinop(BOpcode, NewC, true);
1496 Instruction *NewBO = BinaryOperator::Create(BOpcode, X, NewC);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp3079 unsigned BOpcode = N0.getOpcode(); local
3080 assert((BOpcode == ISD::ADD || BOpcode == ISD::SUB || BOpcode == ISD::XOR) &&
3099 if (BOpcode == ISD::ADD || BOpcode == ISD::XOR)
H A DDAGCombiner.cpp18354 unsigned BOpcode = BinOp.getOpcode(); local
18355 if (!TLI.isBinOp(BOpcode) || BinOp.getNode()->getNumValues() != 1)
18384 if (!TLI.isOperationLegalOrCustomOrPromote(BOpcode, NarrowBVT))
18403 SDValue NarrowBinOp = DAG.getNode(BOpcode, DL, NarrowBVT, X, Y,
18418 if (BOpcode != ISD::AND && BOpcode != ISD::OR && BOpcode != ISD::XOR)
18447 SDValue NarrowBinOp = DAG.getNode(BOpcode, DL, NarrowBVT, X, Y);

Completed in 116 milliseconds