HomeSort by relevance Sort by last modified time
    Searched refs:getAllOnesValue (Results 1 - 25 of 40) 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 398 return getAllOnesValue(numBits);
403 APInt API = getAllOnesValue(numBits);
429 static APInt getAllOnesValue(unsigned numBits) {
488 return getAllOnesValue(numBits).shl(shiftAmt);
505 return getAllOnesValue(numBits).lshr(numBits - loBitsSet);
    [all...]
APFloat.h 250 /// getAllOnesValue - Returns a float which is bitcasted from
255 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 408 APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
433 APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
InstCombineCompares.cpp 736 ConstantExpr::getSub(ConstantInt::getAllOnesValue(CI->getType()), CI);
    [all...]
InstCombineCasts.cpp     [all...]
InstCombineMulDivRem.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 609 DAG.getConstant(APInt::getAllOnesValue(BitTy.getSizeInBits()), BitTy),
623 APInt::getAllOnesValue(BitTy.getSizeInBits()), MaskTy);
685 APInt::getAllOnesValue(VT.getScalarType().getSizeInBits()), VT);
759 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 53 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 241 Constant *Cst = Constant::getAllOnesValue(Neg->getType());
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 46 if (CV->isAllOnesValue()) return Constant::getAllOnesValue(DstTy);
    [all...]
Constants.cpp 166 Constant *Constant::getAllOnesValue(Type *Ty) {
169 APInt::getAllOnesValue(ITy->getBitWidth()));
172 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
179 getAllOnesValue(VTy->getElementType()));
    [all...]
Type.cpp 334 return APInt::getAllOnesValue(getBitWidth());
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp 407 llvm::Value *null = llvm::Constant::getAllOnesValue(src->getType());
683 llvm::Constant::getAllOnesValue(MemPtr->getType());
    [all...]
CGExprCXX.cpp 665 size = llvm::Constant::getAllOnesValue(CGF.SizeTy);
807 llvm::Constant::getAllOnesValue(CGF.SizeTy),
    [all...]
  /external/llvm/unittests/ADT/
APIntTest.cpp 77 APInt u128max = APInt::getAllOnesValue(128);
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 704 return Constant::getAllOnesValue(ShadowTy);
    [all...]

Completed in 601 milliseconds

1 2