Searched refs:BOpcode (Results 1 – 3 of 3) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineVectorOps.cpp | 1810 BinaryOperator::BinaryOps BOpcode = BO->getOpcode(); in foldSelectShuffleWith1Binop() local 1811 Constant *IdC = ConstantExpr::getBinOpIdentity(BOpcode, Shuf.getType(), true); in foldSelectShuffleWith1Binop() 1825 (Instruction::isIntDivRem(BOpcode) || Instruction::isShift(BOpcode)); in foldSelectShuffleWith1Binop() 1827 NewC = InstCombiner::getSafeVectorConstantForBinop(BOpcode, NewC, true); in foldSelectShuffleWith1Binop() 1832 Instruction *NewBO = BinaryOperator::Create(BOpcode, X, NewC); in foldSelectShuffleWith1Binop()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
H A D | TargetLowering.cpp | 3375 unsigned BOpcode = N0.getOpcode(); in foldSetCCWithBinOp() local 3376 assert((BOpcode == ISD::ADD || BOpcode == ISD::SUB || BOpcode == ISD::XOR) && in foldSetCCWithBinOp() 3395 if (BOpcode == ISD::ADD || BOpcode == ISD::XOR) in foldSetCCWithBinOp()
|
H A D | DAGCombiner.cpp | 20005 unsigned BOpcode = BinOp.getOpcode(); in narrowExtractedVectorBinOp() local 20006 if (!TLI.isBinOp(BOpcode) || BinOp.getNode()->getNumValues() != 1) in narrowExtractedVectorBinOp() 20012 if (BOpcode == ISD::FSUB) { in narrowExtractedVectorBinOp() 20047 if (!TLI.isOperationLegalOrCustomOrPromote(BOpcode, NarrowBVT)) in narrowExtractedVectorBinOp() 20065 SDValue NarrowBinOp = DAG.getNode(BOpcode, DL, NarrowBVT, X, Y, in narrowExtractedVectorBinOp() 20080 if (BOpcode != ISD::AND && BOpcode != ISD::OR && BOpcode != ISD::XOR) in narrowExtractedVectorBinOp() 20109 SDValue NarrowBinOp = DAG.getNode(BOpcode, DL, NarrowBVT, X, Y); in narrowExtractedVectorBinOp()
|