Lines Matching defs:NewBO
557 BinaryOperator *NewBO = (IsNUW && Opcode == Instruction::Add) ?
561 if (isa<FPMathOperator>(NewBO)) {
565 NewBO->setFastMathFlags(Flags);
567 InsertNewInstWith(NewBO, I.getIterator());
568 NewBO->takeName(Op1);
569 replaceOperand(I, 0, NewBO);
1974 Value *NewBO = Builder.CreateBinOp(BO.getOpcode(),
1977 if (auto *NotFoldedNewBO = dyn_cast<BinaryOperator>(NewBO))
1982 NewPhi->addIncoming(NewBO, OtherBB);
2118 Instruction *NewBO = BinaryOperator::Create(Opcode, V1, V2);
2119 NewBO->copyIRFlags(&Inst);
2120 return NewBO;
2237 Value *NewBO = Builder.CreateBinOp(Opcode, X, Y);
2239 Value *NewSplat = Builder.CreateShuffleVector(NewBO, NewMask);
2248 if (auto *NewInstBO = dyn_cast<BinaryOperator>(NewBO))