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

  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 202 Constant* NegLo = ConstantExpr::getNeg(Leaf.Low);
203 Instruction* Add = BinaryOperator::CreateAdd(Val, NegLo,
206 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Leaf.High);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 293 Constant *NegLo = ConstantExpr::getNeg(Lo);
294 Value *Add = Builder->CreateAdd(V, NegLo, V->getName()+".off");
295 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Hi);
312 ConstantInt *NegLo = cast<ConstantInt>(ConstantExpr::getNeg(Lo));
313 Value *Add = Builder->CreateAdd(V, NegLo, V->getName()+".off");
314 Constant *LowerBound = ConstantExpr::getAdd(NegLo, Hi);
    [all...]

Completed in 62 milliseconds