Searched refs:TypeWidth (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.3-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp126 unsigned TypeWidth = I->getType()->getScalarSizeInBits(); local
131 unsigned LowBits = TypeWidth - CI->getZExtValue();
133 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits))
150 unsigned TypeWidth = I->getType()->getScalarSizeInBits(); local
154 if (CI->getValue().ult(TypeWidth) && CI->getZExtValue() > NumBits) {
157 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits))
213 unsigned TypeWidth = BO->getType()->getScalarSizeInBits(); local
222 if (NewShAmt >= TypeWidth)
234 APInt Mask(APInt::getLowBitsSet(TypeWidth, TypeWidth
255 unsigned TypeWidth = BO->getType()->getScalarSizeInBits(); local
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DInitPreprocessor.cpp181 /// named MacroName with the max value for a type with width 'TypeWidth' a
183 static void DefineTypeSize(StringRef MacroName, unsigned TypeWidth, argument
186 llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth)
187 : llvm::APInt::getMaxValue(TypeWidth);
217 int TypeWidth = TI.getTypeWidth(Ty); local
221 if (TypeWidth == 64)
224 DefineType("__INT" + Twine(TypeWidth) + "_TYPE__", Ty, Builder);
228 Builder.defineMacro("__INT" + Twine(TypeWidth) + "_C_SUFFIX__",
234 static const char *getLockFreeValue(unsigned TypeWidth, unsigned TypeAlign, argument
238 if (TypeWidth
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp286 uint64_t TypeWidth = Ctx.getTypeSize(SymbolType); local
288 if (ValWidth < TypeWidth) {
291 } else if (ValWidth == TypeWidth) {

Completed in 79 milliseconds