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

  /external/llvm/unittests/VMCore/
ConstantsTest.cpp 22 Constant* NegOne = ConstantInt::get(Int1, static_cast<uint64_t>(-1), true);
23 EXPECT_EQ(NegOne, ConstantInt::getSigned(Int1, -1));
32 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, One));
36 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, NegOne));
40 EXPECT_EQ(Zero, ConstantExpr::getSub(NegOne, One));
44 EXPECT_EQ(Zero, ConstantExpr::getSub(One, NegOne));
68 EXPECT_EQ(One, ConstantExpr::getMul(NegOne, One));
72 EXPECT_EQ(One, ConstantExpr::getSDiv(NegOne, One));
76 EXPECT_EQ(One, ConstantExpr::getSDiv(One, NegOne));
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
ScalarEvolution.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 291 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
295 Good.push_back(SE.getMulExpr(NegOne, *I));
298 Bad.push_back(SE.getMulExpr(NegOne, *I));
    [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]
SelectionDAG.cpp 918 SDValue NegOne =
920 return getNode(ISD::XOR, DL, VT, Val, NegOne);
    [all...]

Completed in 930 milliseconds