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

  /external/llvm/include/llvm/Analysis/
ValueTracking.h 61 /// ComputeSignBit - Determine whether the sign bit is known to be zero or
63 void ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne,
  /external/llvm/lib/Transforms/InstCombine/
InstCombineInternal.h 485 void ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne,
487 return llvm::ComputeSignBit(V, KnownZero, KnownOne, DL, Depth, AC, CxtI,
InstCombineAddSub.cpp 979 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, /*Depth=*/0,
981 ComputeSignBit(RHS, RHSKnownNonNegative, RHSKnownNegative, /*Depth=*/0,
    [all...]
InstCombineMulDivRem.cpp 167 ComputeSignBit(LHS, LHSNonNegative, LHSNegative, /*Depth=*/0, &CxtI);
168 ComputeSignBit(RHS, RHSNonNegative, RHSNegative, /*Depth=*/0, &CxtI);
    [all...]
InstCombineLoadStoreAlloca.cpp 711 IC.ComputeSignBit(GEPI->getOperand(i), KnownNonNegative,
    [all...]
InstCombineCasts.cpp     [all...]
InstCombineAndOrXor.cpp     [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 88 // isKnownNonZero, which calls computeKnownBits and ComputeSignBit and
157 static void ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne,
161 void llvm::ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne,
165 ::ComputeSignBit(V, KnownZero, KnownOne, DL, Depth,
193 ComputeSignBit(V, NonNegative, Negative, DL, Depth, AC, CxtI, DT);
    [all...]
InstructionSimplify.cpp     [all...]
BasicAliasAnalysis.cpp     [all...]
ScalarEvolution.cpp     [all...]

Completed in 888 milliseconds