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

1 2

  /external/swiftshader/third_party/LLVM/include/llvm/Target/
TargetData.h 156 /// isLegalInteger - This function returns true if the specified type is
163 bool isLegalInteger(unsigned Width) const {
171 return !isLegalInteger(Width);
  /external/llvm/include/llvm/IR/
DataLayout.h 236 bool isLegalInteger(uint64_t Width) const {
243 bool isIllegalInteger(uint64_t 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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DataLayout.h 243 bool isLegalInteger(uint64_t Width) const {
250 bool isIllegalInteger(uint64_t Width) const { return !isLegalInteger(Width); }
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/AggressiveInstCombine/
TruncInstCombine.cpp 221 bool FromLegal = MinBitWidth == 1 || DL.isLegalInteger(OrigBitWidth);
222 bool ToLegal = MinBitWidth == 1 || DL.isLegalInteger(MinBitWidth);
  /external/swiftshader/third_party/LLVM/lib/Analysis/
IVUsers.cpp 93 if (Width > 64 || (TD && !TD->isLegalInteger(Width)))
InlineCost.cpp 113 TD->isLegalInteger(TD->getTypeSizeInBits(CI->getType())))
  /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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 78 if (DL.isLegalInteger(OpSize) &&
89 if (DL.isLegalInteger(DestSize) &&
99 if (DL.isLegalInteger(DL.getTypeSizeInBits(Ty)))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
IVUsers.cpp 190 if (Width > 64 || !DL.isLegalInteger(Width))
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
IRBuilderTest.cpp 135 EXPECT_TRUE(M->getDataLayout().isLegalInteger(32));
137 EXPECT_FALSE(M->getDataLayout().isLegalInteger(32));
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstructionCombining.cpp 96 bool FromLegal = TD->isLegalInteger(FromWidth);
97 bool ToLegal = TD->isLegalInteger(ToWidth);
    [all...]
InstCombinePHI.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
IndVarSimplify.cpp 757 if (TD && !TD->isLegalInteger(Width))
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp     [all...]
InstCombineLoadStoreAlloca.cpp 477 DL.isLegalInteger(DL.getTypeStoreSizeInBits(Ty)) &&
    [all...]
InstructionCombining.cpp 95 bool FromLegal = DL.isLegalInteger(FromWidth);
96 bool ToLegal = DL.isLegalInteger(ToWidth);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 815 if (!Cast->getModule()->getDataLayout().isLegalInteger(Width))
    [all...]
SROA.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp     [all...]
SROA.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp     [all...]
InstCombineLoadStoreAlloca.cpp 632 DL.isLegalInteger(DL.getTypeStoreSizeInBits(Ty)) &&
    [all...]
InstructionCombining.cpp 155 bool FromLegal = FromWidth == 1 || DL.isLegalInteger(FromWidth);
156 bool ToLegal = ToWidth == 1 || DL.isLegalInteger(ToWidth);
    [all...]

Completed in 3472 milliseconds

1 2