HomeSort by relevance Sort by last modified time
    Searched refs:getAllOnesValue (Results 1 - 25 of 42) sorted by null

1 2

  /external/llvm/include/llvm/IR/
Constant.h 57 /// getAllOnesValue.
155 static Constant *getAllOnesValue(Type* Ty);
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 151 return ConstantInt::getAllOnesValue(Tp);
155 return ConstantFP::getAllOnesValue(Tp);
173 return ConstantInt::getAllOnesValue(Tp);
177 return ConstantFP::getAllOnesValue(Tp);
368 return PT->push_back(ConstantVector::getAllOnesValue(Ty));
393 APInt::getAllOnesValue(Ty->getPrimitiveSizeInBits())));
  /external/llvm/include/llvm/ADT/
APInt.h 419 return getAllOnesValue(numBits);
424 APInt API = getAllOnesValue(numBits);
450 static APInt getAllOnesValue(unsigned numBits) {
519 return getAllOnesValue(numBits).shl(shiftAmt);
538 return getAllOnesValue(numBits).lshr(numBits - loBitsSet);
    [all...]
APFloat.h 276 static APFloat getAllOnesValue(unsigned BitWidth, bool isIEEE = false);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 56 APInt DemandedMask(APInt::getAllOnesValue(BitWidth));
228 DemandedMask = APInt::getAllOnesValue(BitWidth);
    [all...]
InstCombineSelect.cpp 116 return Constant::getAllOnesValue(I->getType());
    [all...]
InstCombineVectorOps.cpp 487 APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
760 APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
    [all...]
InstCombineCompares.cpp 768 ConstantExpr::getSub(ConstantInt::getAllOnesValue(CI->getType()), CI);
    [all...]
InstCombineCasts.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 609 DAG.getConstant(APInt::getAllOnesValue(BitTy.getSizeInBits()), BitTy),
623 APInt::getAllOnesValue(BitTy.getSizeInBits()), MaskTy);
690 APInt::getAllOnesValue(VT.getScalarType().getSizeInBits()), VT);
765 DAG.getConstant(APInt::getAllOnesValue
DAGCombiner.cpp 139 APInt Demanded = APInt::getAllOnesValue(BitWidth);
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 75 return Constant::getAllOnesValue(Ty);
501 SimplifyXorInst(Cond, Constant::getAllOnesValue(Cond->getType()),
624 return Constant::getAllOnesValue(Op0->getType());
    [all...]
ValueTracking.cpp 255 KnownZero = APInt::getAllOnesValue(BitWidth);
712 KnownZero = APInt::getAllOnesValue(BitWidth);
713 KnownOne = APInt::getAllOnesValue(BitWidth);
    [all...]
ConstantFolding.cpp 54 return Constant::getAllOnesValue(DestTy);
    [all...]
  /external/llvm/lib/Support/
APFloat.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 878 markConstant(IV, &I, Constant::getAllOnesValue(PT));
881 Constant::getAllOnesValue(I.getType()));
    [all...]
Reassociate.cpp 320 Constant *Cst = Constant::getAllOnesValue(Neg->getType());
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 46 if (CV->isAllOnesValue()) return Constant::getAllOnesValue(DstTy);
    [all...]
Constants.cpp 163 Constant *Constant::getAllOnesValue(Type *Ty) {
166 APInt::getAllOnesValue(ITy->getBitWidth()));
169 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
176 getAllOnesValue(VTy->getElementType()));
    [all...]
Type.cpp 334 return APInt::getAllOnesValue(getBitWidth());
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp 432 llvm::Value *null = llvm::Constant::getAllOnesValue(src->getType());
691 llvm::Constant::getAllOnesValue(MemPtr->getType());
    [all...]
CGExprCXX.cpp 657 size = llvm::Constant::getAllOnesValue(CGF.SizeTy);
799 llvm::Constant::getAllOnesValue(CGF.SizeTy),
    [all...]
MicrosoftCXXABI.cpp 182 return llvm::Constant::getAllOnesValue(CGM.IntTy);
    [all...]
  /external/llvm/unittests/ADT/
APIntTest.cpp 77 APInt u128max = APInt::getAllOnesValue(128);
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 715 return Constant::getAllOnesValue(ShadowTy);
    [all...]

Completed in 838 milliseconds

1 2