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

  /external/llvm/include/llvm/IR/
DataLayout.h 217 /// isLegalInteger - This function returns true if the specified type is
224 bool isLegalInteger(unsigned Width) const {
232 return !isLegalInteger(Width);
  /external/llvm/lib/Analysis/
TargetTransformInfo.cpp 292 if (DL->isLegalInteger(OpSize) &&
306 if (DL->isLegalInteger(DestSize) &&
316 if (DL && DL->isLegalInteger(DL->getTypeSizeInBits(Ty)))
IVUsers.cpp 134 if (Width > 64 || (DL && !DL->isLegalInteger(Width)))
  /external/llvm/unittests/IR/
IRBuilderTest.cpp 113 EXPECT_TRUE(M->getDataLayout()->isLegalInteger(32));
115 EXPECT_FALSE(M->getDataLayout()->isLegalInteger(32));
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 671 if (DL && !DL->isLegalInteger(Width))
    [all...]
SROA.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp     [all...]
InstructionCombining.cpp 113 bool FromLegal = DL->isLegalInteger(FromWidth);
114 bool ToLegal = DL->isLegalInteger(ToWidth);
    [all...]

Completed in 669 milliseconds