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

/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DSeparateConstOffsetFromGEP.cpp627 BinaryOperator *NewBO = nullptr; local
629 NewBO = BinaryOperator::Create(BO->getOpcode(), NextInChain, TheOther,
632 NewBO = BinaryOperator::Create(BO->getOpcode(), TheOther, NextInChain,
635 return UserChain[ChainIndex] = NewBO;
680 BinaryOperator *NewBO; local
682 NewBO = BinaryOperator::Create(NewOp, NextInChain, TheOther, "", IP);
684 NewBO = BinaryOperator::Create(NewOp, TheOther, NextInChain, "", IP);
686 NewBO->takeName(BO);
687 return NewBO;
/freebsd-11.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1250 if (BinaryOperator *NewBO = dyn_cast<BinaryOperator>(BO))
1251 NewBO->copyIRFlags(&Inst);
1284 Value *NewBO = CreateBinOpAsGiven(Inst, LShuf->getOperand(0), local
1286 return Builder->CreateShuffleVector(NewBO,
1287 UndefValue::get(NewBO->getType()), LShuf->getMask());
1325 Value *NewBO = CreateBinOpAsGiven(Inst, NewLHS, NewRHS, Builder); local
1326 return Builder->CreateShuffleVector(NewBO,

Completed in 114 milliseconds