Searched refs:ToWidth (Results 1 – 8 of 8) sorted by relevance
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CastToStructChecker.cpp | 91 unsigned ToWidth = Ctx.getTypeInfo(ToPointeeTy).Width; in VisitCastExpr() local 93 if (ToWidth <= OrigWidth) in VisitCastExpr()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | SMTAPI.h | 386 virtual SMTExprRef mkFPtoSBV(const SMTExprRef &From, unsigned ToWidth) = 0; 390 virtual SMTExprRef mkFPtoUBV(const SMTExprRef &From, unsigned ToWidth) = 0;
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | Z3Solver.cpp | 709 SMTExprRef mkFPtoSBV(const SMTExprRef &From, unsigned ToWidth) override { in mkFPtoSBV() argument 713 toZ3Expr(*From).AST, ToWidth))); in mkFPtoSBV() 716 SMTExprRef mkFPtoUBV(const SMTExprRef &From, unsigned ToWidth) override { in mkFPtoUBV() argument 720 toZ3Expr(*From).AST, ToWidth))); in mkFPtoUBV()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/ |
| H A D | HexagonVectorCombine.cpp | 130 unsigned ToWidth) const; 2188 unsigned ToWidth) const in splitVectorElements() 2205 assert(isPowerOf2_32(ToWidth) && isPowerOf2_32(FromWidth)); in splitVectorElements() 2206 assert(ToWidth <= FromWidth && "Breaking up into wider elements?"); in splitVectorElements() 2207 unsigned NumResults = FromWidth / ToWidth; in splitVectorElements() 2257 unsigned ToWidth = ToType->getScalarSizeInBits(); in joinVectorElements() local 2259 assert(Width <= ToWidth); in joinVectorElements() 2260 assert(isPowerOf2_32(Width) && isPowerOf2_32(ToWidth)); in joinVectorElements() 2263 unsigned NeedInputs = ToWidth / Width; in joinVectorElements()
|
| /openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SMTConv.h | 315 uint64_t ToWidth, QualType FromTy, in castAPSInt() argument 317 APSIntType TargetType(ToWidth, !ToTy->isSignedIntegerOrEnumerationType()); in castAPSInt()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/ |
| H A D | InstructionCombining.cpp | 235 unsigned ToWidth) const { in shouldChangeType() 237 bool ToLegal = ToWidth == 1 || DL.isLegalInteger(ToWidth); in shouldChangeType() 241 if (ToWidth < FromWidth && isDesirableIntType(ToWidth)) in shouldChangeType() 251 if (!FromLegal && !ToLegal && ToWidth > FromWidth) in shouldChangeType() 269 unsigned ToWidth = To->getPrimitiveSizeInBits(); in shouldChangeType() local 270 return shouldChangeType(FromWidth, ToWidth); in shouldChangeType()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaOverload.cpp | 432 const unsigned ToWidth = Ctx.getIntWidth(ToType); in getNarrowingKind() local 434 if (FromWidth > ToWidth || in getNarrowingKind() 435 (FromWidth == ToWidth && FromSigned != ToSigned) || in getNarrowingKind() 451 if (FromWidth < ToWidth) { in getNarrowingKind() 463 ConvertedValue = ConvertedValue.trunc(ToWidth); in getNarrowingKind()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| H A D | LoopStrengthReduce.cpp | 6032 uint64_t ToWidth = Type->getIntegerBitWidth(); in pushCast() local 6034 uint64_t CastOps[] = {dwarf::DW_OP_LLVM_convert, ToWidth, in pushCast()
|