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

1 2

  /external/llvm/include/llvm/
Constant.h 56 /// getAllOnesValue.
140 static Constant *getAllOnesValue(Type* Ty);
  /external/llvm/lib/Analysis/
ValueTracking.cpp 200 APInt Mask2 = APInt::getAllOnesValue(BitWidth);
229 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
526 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
553 APInt LocalMask = APInt::getAllOnesValue(BitWidth);
576 LocalMask = APInt::getAllOnesValue(GEPOpiBits);
621 APInt Mask2 = APInt::getAllOnesValue(BitWidth);
650 KnownZero = APInt::getAllOnesValue(BitWidth);
651 KnownOne = APInt::getAllOnesValue(BitWidth);
    [all...]
InstructionSimplify.cpp 68 return Constant::getAllOnesValue(Ty);
447 SimplifyXorInst(Cond, Constant::getAllOnesValue(Cond->getType()),
575 return Constant::getAllOnesValue(Op0->getType());
    [all...]
Lint.cpp 414 APInt Mask = APInt::getAllOnesValue(BitWidth),
474 APInt Mask = APInt::getAllOnesValue(BitWidth),
  /external/llvm/include/llvm/ADT/
APInt.h 395 return getAllOnesValue(numBits);
400 APInt API = getAllOnesValue(numBits);
426 static APInt getAllOnesValue(unsigned numBits) {
485 return getAllOnesValue(numBits).shl(shiftAmt);
502 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));
218 DemandedMask = APInt::getAllOnesValue(BitWidth);
    [all...]
InstCombineVectorOps.cpp 436 APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
464 APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
InstCombineCasts.cpp 548 APInt TypeMask(APInt::getAllOnesValue(BitWidth));
597 APInt TypeMask(APInt::getAllOnesValue(BitWidth));
    [all...]
InstCombineCompares.cpp 708 ConstantExpr::getSub(ConstantInt::getAllOnesValue(CI->getType()), CI);
    [all...]
InstCombineCalls.cpp 362 ComputeMaskedBits(II->getArgOperand(0), APInt::getAllOnesValue(BitWidth),
381 ComputeMaskedBits(II->getArgOperand(0), APInt::getAllOnesValue(BitWidth),
489 APInt Mask = APInt::getAllOnesValue(BitWidth);
    [all...]
InstCombineAddSub.cpp 192 APInt Mask = APInt::getAllOnesValue(IT->getBitWidth());
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 411 APInt::getAllOnesValue(VT.getScalarType().getSizeInBits()), VT);
484 DAG.getConstant(APInt::getAllOnesValue
DAGCombiner.cpp 123 APInt Demanded = APInt::getAllOnesValue(BitWidth);
    [all...]
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp 379 llvm::Value *Null = llvm::Constant::getAllOnesValue(Src->getType());
446 llvm::Constant *Null = llvm::Constant::getAllOnesValue(C->getType());
646 llvm::Constant::getAllOnesValue(MemPtr->getType());
    [all...]
CGExprCXX.cpp 608 size = llvm::Constant::getAllOnesValue(CGF.SizeTy);
732 llvm::Constant::getAllOnesValue(CGF.SizeTy),
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp     [all...]
Reassociate.cpp 214 Constant *Cst = Constant::getAllOnesValue(Neg->getType());
677 return Constant::getAllOnesValue(X->getType());
    [all...]
  /external/llvm/lib/VMCore/
Constants.cpp 130 Constant *Constant::getAllOnesValue(Type *Ty) {
133 APInt::getAllOnesValue(ITy->getBitWidth()));
136 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
143 Elts.resize(VTy->getNumElements(), getAllOnesValue(VTy->getElementType()));
    [all...]
ConstantFold.cpp 47 if (CV->isAllOnesValue()) return Constant::getAllOnesValue(DstTy);
    [all...]
  /external/llvm/unittests/ADT/
APIntTest.cpp 69 APInt u128max = APInt::getAllOnesValue(128);
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 381 CurDAG->ComputeMaskedBits(Op0, APInt::getAllOnesValue(32), LKZ, LKO);
382 CurDAG->ComputeMaskedBits(Op1, APInt::getAllOnesValue(32), RKZ, RKO);
    [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp 767 APInt Mask = APInt::getAllOnesValue(BitWidth);
    [all...]

Completed in 509 milliseconds

1 2