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

1 2

  /external/llvm/unittests/IR/
ValueTest.cpp 57 Constant::getAllOnesValue(Int32Ty),
79 Constant::getAllOnesValue(Int32Ty),
99 Constant::getAllOnesValue(Int32Ty), "var", nullptr,
  /external/llvm/include/llvm/IR/
Constant.h 62 /// getAllOnesValue.
169 static Constant *getAllOnesValue(Type* Ty);
  /external/llvm/lib/Transforms/Scalar/
BDCE.cpp 297 AliveBits[J] = APInt::getAllOnesValue(IT->getBitWidth());
330 APInt AB = APInt::getAllOnesValue(BitWidth);
SCCP.cpp 881 markConstant(IV, &I, Constant::getAllOnesValue(PT));
884 Constant::getAllOnesValue(I.getType()));
    [all...]
Reassociate.cpp 390 ConstantInt::getAllOnesValue(Ty) : ConstantFP::get(Ty, -1.0);
    [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 153 return ConstantInt::getAllOnesValue(Tp);
157 return ConstantFP::getAllOnesValue(Tp);
175 return ConstantInt::getAllOnesValue(Tp);
179 return ConstantFP::getAllOnesValue(Tp);
370 return PT->push_back(ConstantVector::getAllOnesValue(Ty));
395 APInt::getAllOnesValue(Ty->getPrimitiveSizeInBits())));
  /external/llvm/include/llvm/ADT/
APInt.h 423 return getAllOnesValue(numBits);
428 APInt API = getAllOnesValue(numBits);
454 static APInt getAllOnesValue(unsigned numBits) {
523 return getAllOnesValue(numBits).shl(shiftAmt);
542 return getAllOnesValue(numBits).lshr(numBits - loBitsSet);
    [all...]
APFloat.h 277 static APFloat getAllOnesValue(unsigned BitWidth, bool isIEEE = false);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 70 APInt DemandedMask(APInt::getAllOnesValue(BitWidth));
247 DemandedMask = APInt::getAllOnesValue(BitWidth);
    [all...]
InstCombineSelect.cpp 140 return Constant::getAllOnesValue(I->getType());
    [all...]
InstCombineVectorOps.cpp 581 APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
    [all...]
InstCombineCompares.cpp 753 ConstantExpr::getSub(ConstantInt::getAllOnesValue(CI->getType()), CI);
    [all...]
InstCombineAndOrXor.cpp 622 L12 = Constant::getAllOnesValue(L1->getType());
630 L22 = Constant::getAllOnesValue(L2->getType());
656 R12 = Constant::getAllOnesValue(R1->getType());
674 R12 = Constant::getAllOnesValue(R2->getType());
    [all...]
InstCombineCasts.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 737 DAG.getConstant(APInt::getAllOnesValue(BitTy.getSizeInBits()), BitTy),
751 APInt::getAllOnesValue(BitTy.getSizeInBits()), MaskTy);
    [all...]
DAGCombiner.cpp 181 APInt Demanded = APInt::getAllOnesValue(BitWidth);
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 85 return Constant::getAllOnesValue(Ty);
439 SimplifyXorInst(Cond, Constant::getAllOnesValue(Cond->getType()),
562 return Constant::getAllOnesValue(Op0->getType());
    [all...]
ValueTracking.cpp     [all...]
ConstantFolding.cpp 59 return Constant::getAllOnesValue(DestTy);
    [all...]
  /external/llvm/lib/IR/
Constants.cpp 230 Constant *Constant::getAllOnesValue(Type *Ty) {
233 APInt::getAllOnesValue(ITy->getBitWidth()));
236 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
243 getAllOnesValue(VTy->getElementType()));
    [all...]
ConstantFold.cpp 48 if (CV->isAllOnesValue()) return Constant::getAllOnesValue(DstTy);
    [all...]
Type.cpp 332 return APInt::getAllOnesValue(getBitWidth());
  /external/llvm/lib/Support/
APFloat.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 606 size = llvm::Constant::getAllOnesValue(CGF.SizeTy);
748 llvm::Constant::getAllOnesValue(CGF.SizeTy),
    [all...]
  /external/llvm/unittests/ADT/
APIntTest.cpp 77 APInt u128max = APInt::getAllOnesValue(128);

Completed in 434 milliseconds

1 2