HomeSort by relevance Sort by last modified time
    Searched refs:InsertBinop (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 237 Value *InsertBinop(Instruction::BinaryOps Opcode, Value *LHS, Value *RHS);
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp 171 /// InsertBinop - Insert the specified binary operator, doing a small amount
173 Value *SCEVExpander::InsertBinop(Instruction::BinaryOps Opcode,
724 Sum = InsertBinop(Instruction::Sub, Sum, W);
732 Sum = InsertBinop(Instruction::Add, Sum, W);
764 Prod = InsertBinop(Instruction::Sub, Constant::getNullValue(Ty), Prod);
775 Prod = InsertBinop(Instruction::Shl, Prod,
778 Prod = InsertBinop(Instruction::Mul, Prod, W);
793 return InsertBinop(Instruction::LShr, LHS,
798 return InsertBinop(Instruction::UDiv, LHS, RHS);
    [all...]

Completed in 320 milliseconds