Searched refs:NewBO (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSeparateConstOffsetFromGEP.cpp673 BinaryOperator *NewBO = nullptr; local
675 NewBO = BinaryOperator::Create(BO->getOpcode(), NextInChain, TheOther,
678 NewBO = BinaryOperator::Create(BO->getOpcode(), TheOther, NextInChain,
681 return UserChain[ChainIndex] = NewBO;
726 BinaryOperator *NewBO; local
728 NewBO = BinaryOperator::Create(NewOp, NextInChain, TheOther, "", IP);
730 NewBO = BinaryOperator::Create(NewOp, TheOther, NextInChain, "", IP);
732 NewBO->takeName(BO);
733 return NewBO;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp1496 Instruction *NewBO = BinaryOperator::Create(BOpcode, X, NewC); local
1497 NewBO->copyIRFlags(BO);
1503 NewBO->dropPoisonGeneratingFlags();
1504 return NewBO;
1652 Instruction *NewBO = ConstantsAreOp1 ? BinaryOperator::Create(BOpc, V, NewC) : local
1660 NewBO->copyIRFlags(B0);
1661 NewBO->andIRFlags(B1);
1663 NewBO->setHasNoSignedWrap(false);
1665 NewBO->dropPoisonGeneratingFlags();
1666 return NewBO;
[all...]
H A DInstructionCombining.cpp456 BinaryOperator *NewBO = (IsNUW && Opcode == Instruction::Add) ? local
460 if (isa<FPMathOperator>(NewBO)) {
464 NewBO->setFastMathFlags(Flags);
466 InsertNewInstWith(NewBO, I);
467 NewBO->takeName(Op1);
468 I.setOperand(0, NewBO);
1509 Instruction *NewBO = BinaryOperator::Create(Opcode, V1, V2); local
1510 NewBO->copyIRFlags(&Inst);
1511 return NewBO;
H A DInstCombineSelect.cpp399 BinaryOperator *NewBO = BinaryOperator::Create(BO->getOpcode(), Op0, Op1); local
400 NewBO->copyIRFlags(TI);
401 NewBO->andIRFlags(FI);
402 return NewBO;
H A DInstCombineAndOrXor.cpp1715 Value *NewBO = Opc == Instruction::Sub ? Builder.CreateBinOp(Opc, NewC, X) local
1717 return new ZExtInst(Builder.CreateAnd(NewBO, X), Ty);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp6237 auto NewBO = MatchBinaryOp(BO->LHS, DT);
6238 if (!NewBO || (NewBO->Opcode != Instruction::Add &&
6239 NewBO->Opcode != Instruction::Sub)) {
6243 BO = NewBO;
6267 auto NewBO = MatchBinaryOp(BO->LHS, DT);
6268 if (!NewBO || NewBO->Opcode != Instruction::Mul) {
6272 BO = NewBO;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp19218 SDValue NewBO = DAG.getNode(N0.getOpcode(), DL, EltVT, ExtL, ExtR, local
19220 SDValue Insert = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, VT, NewBO);

Completed in 211 milliseconds