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

  /external/llvm/unittests/IR/
ConstantsTest.cpp 28 Constant* NegOne = ConstantInt::get(Int1, static_cast<uint64_t>(-1), true);
29 EXPECT_EQ(NegOne, ConstantInt::getSigned(Int1, -1));
38 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, One));
42 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, NegOne));
46 EXPECT_EQ(Zero, ConstantExpr::getSub(NegOne, One));
50 EXPECT_EQ(Zero, ConstantExpr::getSub(One, NegOne));
74 EXPECT_EQ(One, ConstantExpr::getMul(NegOne, One));
78 EXPECT_EQ(One, ConstantExpr::getSDiv(NegOne, One));
82 EXPECT_EQ(One, ConstantExpr::getSDiv(One, NegOne));
    [all...]
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 163 ConstantInt *NegOne;
169 NegOne = ConstantInt::getSigned(DivTy, -1);
175 NegOne = ConstantInt::getSigned(DivTy, -1);
284 Value *Tmp4 = Builder.CreateAdd(Divisor, NegOne);
320 Value *SR_2 = Builder.CreateAdd(SR_3, NegOne);
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 356 Constant *NegOne = Ty->isIntOrIntVectorTy() ?
359 BinaryOperator *Res = CreateMul(Neg->getOperand(1), NegOne, "", Neg, Neg);
    [all...]
LoopStrengthReduce.cpp 345 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
348 Good.push_back(SE.getMulExpr(NegOne, S));
350 Bad.push_back(SE.getMulExpr(NegOne, S));
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp     [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]

Completed in 551 milliseconds