Searched refs:NewBO (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/Transforms/Scalar/ |
D | SeparateConstOffsetFromGEP.cpp | 627 BinaryOperator *NewBO = nullptr; in distributeExtsAndCloneChain() local 629 NewBO = BinaryOperator::Create(BO->getOpcode(), NextInChain, TheOther, in distributeExtsAndCloneChain() 632 NewBO = BinaryOperator::Create(BO->getOpcode(), TheOther, NextInChain, in distributeExtsAndCloneChain() 635 return UserChain[ChainIndex] = NewBO; in distributeExtsAndCloneChain() 680 BinaryOperator *NewBO; in removeConstOffset() local 682 NewBO = BinaryOperator::Create(NewOp, NextInChain, TheOther, "", IP); in removeConstOffset() 684 NewBO = BinaryOperator::Create(NewOp, TheOther, NextInChain, "", IP); in removeConstOffset() 686 NewBO->takeName(BO); in removeConstOffset() 687 return NewBO; in removeConstOffset()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 1246 if (BinaryOperator *NewBO = dyn_cast<BinaryOperator>(BO)) in CreateBinOpAsGiven() local 1247 NewBO->copyIRFlags(&Inst); in CreateBinOpAsGiven() 1280 Value *NewBO = CreateBinOpAsGiven(Inst, LShuf->getOperand(0), in SimplifyVectorOp() local 1282 return Builder->CreateShuffleVector(NewBO, in SimplifyVectorOp() 1283 UndefValue::get(NewBO->getType()), LShuf->getMask()); in SimplifyVectorOp() 1321 Value *NewBO = CreateBinOpAsGiven(Inst, NewLHS, NewRHS, Builder); in SimplifyVectorOp() local 1322 return Builder->CreateShuffleVector(NewBO, in SimplifyVectorOp()
|
/external/llvm/lib/Analysis/ |
D | ScalarEvolution.cpp | 4988 auto NewBO = MatchBinaryOp(BO->LHS, DT); in createSCEV() local 4989 if (!NewBO || (NewBO->Opcode != Instruction::Add && in createSCEV() 4990 NewBO->Opcode != Instruction::Sub)) { in createSCEV() 4994 BO = NewBO; in createSCEV() 5018 auto NewBO = MatchBinaryOp(BO->LHS, DT); in createSCEV() local 5019 if (!NewBO || NewBO->Opcode != Instruction::Mul) { in createSCEV() 5023 BO = NewBO; in createSCEV()
|