HomeSort by relevance Sort by last modified time
    Searched refs:isLegalInteger (Results 1 - 11 of 11) sorted by null

  /external/llvm/include/llvm/IR/
DataLayout.h 239 bool isLegalInteger(unsigned Width) const {
246 bool isIllegalInteger(unsigned Width) const { return !isLegalInteger(Width); }
  /external/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 77 if (DL.isLegalInteger(OpSize) &&
88 if (DL.isLegalInteger(DestSize) &&
98 if (DL.isLegalInteger(DL.getTypeSizeInBits(Ty)))
  /external/llvm/unittests/IR/
IRBuilderTest.cpp 114 EXPECT_TRUE(M->getDataLayout().isLegalInteger(32));
116 EXPECT_FALSE(M->getDataLayout().isLegalInteger(32));
  /external/llvm/lib/Analysis/
IVUsers.cpp 140 if (Width > 64 || !DL.isLegalInteger(Width))
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 795 if (!Cast->getModule()->getDataLayout().isLegalInteger(Width))
    [all...]
SROA.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 473 DL.isLegalInteger(DL.getTypeStoreSizeInBits(Ty)) &&
    [all...]