Searched refs:NewBitWidth (Results 1 – 7 of 7) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SMTConv.h | 659 uint64_t NewBitWidth = Ctx.getTypeSize(NewTy); in doIntTypeConversion() local 660 LHS = (*doCast)(Solver, LHS, NewTy, NewBitWidth, LTy, LBitWidth); in doIntTypeConversion() 662 LBitWidth = NewBitWidth; in doIntTypeConversion() 666 uint64_t NewBitWidth = Ctx.getTypeSize(NewTy); in doIntTypeConversion() local 667 RHS = (*doCast)(Solver, RHS, NewTy, NewBitWidth, RTy, RBitWidth); in doIntTypeConversion() 669 RBitWidth = NewBitWidth; in doIntTypeConversion()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | DerivedTypes.h | 709 Type *Type::getWithNewBitWidth(unsigned NewBitWidth) const { in getWithNewBitWidth() argument 713 return getWithNewType(getIntNTy(getContext(), NewBitWidth)); in getWithNewBitWidth()
|
| H A D | Type.h | 390 inline Type *getWithNewBitWidth(unsigned NewBitWidth) const;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineSelect.cpp | 2209 unsigned NewBitWidth = (*MaxValue + 1).logBase2() + 1; in matchSAddSubSat() local 2212 if (!shouldChangeType(Ty->getScalarType()->getIntegerBitWidth(), NewBitWidth)) in matchSAddSubSat() 2221 Type *NewTy = Ty->getWithNewBitWidth(NewBitWidth); in matchSAddSubSat() 2229 if (A->getType()->getScalarSizeInBits() > NewBitWidth || in matchSAddSubSat() 2230 B->getType()->getScalarSizeInBits() > NewBitWidth) in matchSAddSubSat()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | APInt.cpp | 124 void APInt::reallocate(unsigned NewBitWidth) { in reallocate() argument 126 if (getNumWords() == getNumWords(NewBitWidth)) { in reallocate() 127 BitWidth = NewBitWidth; in reallocate() 136 BitWidth = NewBitWidth; in reallocate()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 170 void reallocate(unsigned NewBitWidth);
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | ExprConstant.cpp | 2651 unsigned NewBitWidth = FD->getBitWidthValue(Info.Ctx); in truncateBitfieldValue() local 2652 if (NewBitWidth < OldBitWidth) in truncateBitfieldValue() 2653 Int = Int.trunc(NewBitWidth).extend(OldBitWidth); in truncateBitfieldValue()
|