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

  /external/swiftshader/third_party/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/Utils/
LowerSwitch.cpp 321 Constant* NegLo = ConstantExpr::getNeg(Leaf.Low);
322 Instruction* Add = BinaryOperator::CreateAdd(Val, NegLo,
325 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Leaf.High);
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 356 Constant *NegLo = ConstantExpr::getNeg(Lo);
357 Value *Add = Builder->CreateAdd(V, NegLo, V->getName()+".off");
358 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Hi);
375 ConstantInt *NegLo = cast<ConstantInt>(ConstantExpr::getNeg(Lo));
376 Value *Add = Builder->CreateAdd(V, NegLo, V->getName()+".off");
377 Constant *LowerBound = ConstantExpr::getAdd(NegLo, Hi);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 308 Constant *NegLo = ConstantExpr::getNeg(Lo);
309 Value *Add = Builder->CreateAdd(V, NegLo, V->getName()+".off");
310 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Hi);
327 ConstantInt *NegLo = cast<ConstantInt>(ConstantExpr::getNeg(Lo));
328 Value *Add = Builder->CreateAdd(V, NegLo, V->getName()+".off");
329 Constant *LowerBound = ConstantExpr::getAdd(NegLo, Hi);
    [all...]

Completed in 2308 milliseconds