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

  /external/llvm/include/llvm/IR/
DerivedTypes.h 70 /// getSignBit - Return a uint64_t with just the most significant bit set (the
72 uint64_t getSignBit() const {
  /external/llvm/lib/Analysis/
ValueTracking.cpp 116 KnownZero |= APInt::getSignBit(BitWidth);
119 KnownOne |= APInt::getSignBit(BitWidth);
123 KnownZero |= APInt::getSignBit(BitWidth);
126 KnownOne |= APInt::getSignBit(BitWidth);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 697 APInt SignBit(APInt::getSignBit(BitWidth));
727 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
    [all...]
InstCombineMulDivRem.cpp     [all...]
InstCombineShifts.cpp 800 APInt::getSignBit(I.getType()->getScalarSizeInBits())))
InstCombineAndOrXor.cpp 502 APInt::getSignBit(C->getBitWidth()));
514 APInt::getSignBit(C->getBitWidth()));
    [all...]
InstCombineCompares.cpp     [all...]
  /external/llvm/include/llvm/ADT/
APInt.h 396 /// \brief Check if the APInt's value is returned by getSignBit.
398 /// \returns true if this is the value returned by getSignBit.
443 static APInt getSignBit(unsigned BitWidth) {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 711 InDemandedMask |= APInt::getSignBit(VT.getScalarType().getSizeInBits());
721 APInt SignBit = APInt::getSignBit(BitWidth).lshr(ShAmt);
765 APInt::getSignBit(ExVT.getScalarType().getSizeInBits()).zext(BitWidth);
    [all...]
SelectionDAG.cpp     [all...]
DAGCombiner.cpp     [all...]
LegalizeDAG.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 250 milliseconds