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

  /external/swiftshader/third_party/LLVM/lib/Analysis/
ScalarEvolutionExpander.cpp 124 /// InsertBinop - Insert the specified binary operator, doing a small amount
126 Value *SCEVExpander::InsertBinop(Instruction::BinaryOps Opcode,
751 Sum = InsertBinop(Instruction::Sub, Sum, W);
759 Sum = InsertBinop(Instruction::Add, Sum, W);
793 Prod = InsertBinop(Instruction::Sub, Constant::getNullValue(Ty), Prod);
801 Prod = InsertBinop(Instruction::Mul, Prod, W);
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp 169 /// InsertBinop - Insert the specified binary operator, doing a small amount
171 Value *SCEVExpander::InsertBinop(Instruction::BinaryOps Opcode,
720 Sum = InsertBinop(Instruction::Sub, Sum, W);
728 Sum = InsertBinop(Instruction::Add, Sum, W);
760 Prod = InsertBinop(Instruction::Sub, Constant::getNullValue(Ty), Prod);
771 Prod = InsertBinop(Instruction::Shl, Prod,
774 Prod = InsertBinop(Instruction::Mul, Prod, W);
789 return InsertBinop(Instruction::LShr, LHS,
794 return InsertBinop(Instruction::UDiv, LHS, RHS);
    [all...]

Completed in 79 milliseconds