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

1 2

  /external/llvm/include/llvm/
Constant.h 57 /// getAllOnesValue.
143 static Constant *getAllOnesValue(Type* Ty);
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 141 return ConstantInt::getAllOnesValue(Tp);
145 return ConstantFP::getAllOnesValue(Tp);
163 return ConstantInt::getAllOnesValue(Tp);
167 return ConstantFP::getAllOnesValue(Tp);
358 return PT->push_back(ConstantVector::getAllOnesValue(Ty));
385 APInt::getAllOnesValue(Ty->getPrimitiveSizeInBits())));
  /external/llvm/include/llvm/ADT/
APInt.h 396 return getAllOnesValue(numBits);
401 APInt API = getAllOnesValue(numBits);
427 static APInt getAllOnesValue(unsigned numBits) {
486 return getAllOnesValue(numBits).shl(shiftAmt);
503 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 55 APInt DemandedMask(APInt::getAllOnesValue(BitWidth));
214 DemandedMask = APInt::getAllOnesValue(BitWidth);
    [all...]
InstCombineVectorOps.cpp 399 APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
424 APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
InstCombineCompares.cpp 735 ConstantExpr::getSub(ConstantInt::getAllOnesValue(CI->getType()), CI);
    [all...]
InstCombineCasts.cpp     [all...]
InstCombineMulDivRem.cpp 631 Constant *N1 = Constant::getAllOnesValue(I.getType());
InstCombineSelect.cpp 116 return Constant::getAllOnesValue(I->getType());
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 415 APInt::getAllOnesValue(VT.getScalarType().getSizeInBits()), VT);
489 DAG.getConstant(APInt::getAllOnesValue
DAGCombiner.cpp 138 APInt Demanded = APInt::getAllOnesValue(BitWidth);
    [all...]
TargetLowering.cpp     [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);
700 KnownZero = APInt::getAllOnesValue(BitWidth);
701 KnownOne = APInt::getAllOnesValue(BitWidth);
    [all...]
ConstantFolding.cpp 53 return Constant::getAllOnesValue(DestTy);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 888 markConstant(IV, &I, Constant::getAllOnesValue(PT));
891 Constant::getAllOnesValue(I.getType()));
    [all...]
Reassociate.cpp 214 Constant *Cst = Constant::getAllOnesValue(Neg->getType());
677 return Constant::getAllOnesValue(X->getType());
    [all...]
  /external/llvm/lib/VMCore/
ConstantFold.cpp 46 if (CV->isAllOnesValue()) return Constant::getAllOnesValue(DstTy);
    [all...]
Constants.cpp 141 Constant *Constant::getAllOnesValue(Type *Ty) {
144 APInt::getAllOnesValue(ITy->getBitWidth()));
147 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
154 getAllOnesValue(VTy->getElementType()));
    [all...]
Type.cpp 355 return APInt::getAllOnesValue(getBitWidth());
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp 374 llvm::Value *null = llvm::Constant::getAllOnesValue(src->getType());
650 llvm::Constant::getAllOnesValue(MemPtr->getType());
    [all...]
CGExprCXX.cpp 614 size = llvm::Constant::getAllOnesValue(CGF.SizeTy);
756 llvm::Constant::getAllOnesValue(CGF.SizeTy),
    [all...]
  /external/llvm/unittests/ADT/
APIntTest.cpp 69 APInt u128max = APInt::getAllOnesValue(128);
  /external/llvm/lib/Support/
APFloat.cpp     [all...]

Completed in 454 milliseconds

1 2