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

/external/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpander.h191 /// InsertBinop - Insert the specified binary operator, doing a small amount
193 Value *InsertBinop(Instruction::BinaryOps Opcode, Value *LHS, Value *RHS);
/external/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp150 /// InsertBinop - Insert the specified binary operator, doing a small amount
152 Value *SCEVExpander::InsertBinop(Instruction::BinaryOps Opcode, function in class:SCEVExpander
765 Sum = InsertBinop(Instruction::Sub, Sum, W);
773 Sum = InsertBinop(Instruction::Add, Sum, W);
807 Prod = InsertBinop(Instruction::Sub, Constant::getNullValue(Ty), Prod);
815 Prod = InsertBinop(Instruction::Mul, Prod, W);
830 return InsertBinop(Instruction::LShr, LHS,
835 return InsertBinop(Instruction::UDiv, LHS, RHS);

Completed in 82 milliseconds