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

  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 126 unsigned TypeWidth = I->getType()->getScalarSizeInBits();
131 unsigned LowBits = TypeWidth - CI->getZExtValue();
133 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits))
150 unsigned TypeWidth = I->getType()->getScalarSizeInBits();
154 if (CI->getValue().ult(TypeWidth) && CI->getZExtValue() > NumBits) {
157 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits))
213 unsigned TypeWidth = BO->getType()->getScalarSizeInBits();
222 if (NewShAmt >= TypeWidth)
234 APInt Mask(APInt::getLowBitsSet(TypeWidth, TypeWidth - NumBits))
    [all...]
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 168 /// named MacroName with the max value for a type with width 'TypeWidth' a
170 static void DefineTypeSize(StringRef MacroName, unsigned TypeWidth,
173 llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth)
174 : llvm::APInt::getMaxValue(TypeWidth);
204 int TypeWidth = TI.getTypeWidth(Ty);
208 if (TypeWidth == 64)
211 DefineType("__INT" + Twine(TypeWidth) + "_TYPE__", Ty, Builder);
215 Builder.defineMacro("__INT" + Twine(TypeWidth) + "_C_SUFFIX__",
221 static const char *getLockFreeValue(unsigned TypeWidth, unsigned TypeAlign,
225 if (TypeWidth == TypeAlign && (TypeWidth & (TypeWidth - 1)) == 0 &
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 260 uint64_t TypeWidth = Ctx.getTypeSize(SymbolType);
262 if (ValWidth < TypeWidth) {
265 } else if (ValWidth == TypeWidth) {
    [all...]

Completed in 451 milliseconds