HomeSort by: relevance | last modified time | path
    Searched refs:getIntWidth (Results 1 - 25 of 37) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Context.cpp 71 switch (Ctx.getIntWidth(T)) {
86 switch (Ctx.getIntWidth(T)) {
ByteCodeExprGen.h 91 unsigned getIntWidth(QualType Ty) {
93 return ASTContext.getIntWidth(Ty);
200 unsigned NumBits = getIntWidth(Ty);
ByteCodeExprGen.cpp 136 return emitConst(*T, getIntWidth(LitTy), LE->getValue(), LE);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
ConversionChecker.cpp 152 RepresentsUntilExp = AC.getIntWidth(DestType);
166 unsigned CorrectedSrcWidth = AC.getIntWidth(SubType);
UndefResultChecker.cpp 63 B->getRHS(), C.getASTContext().getIntWidth(B->getLHS()->getType()));
  /src/external/apache2/llvm/dist/clang/lib/Basic/
TargetInfo.cpp 199 if (getCharWidth() < getIntWidth())
203 if (getShortWidth() < getIntWidth())
232 /// enum. For example, SignedInt -> getIntWidth().
241 case UnsignedInt: return getIntWidth();
255 if (getIntWidth() == BitWidth)
270 if (getIntWidth() >= BitWidth)
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BasicValueFactory.h 149 return APSIntType(Ctx.getIntWidth(T),
231 return getValue(b ? 1 : 0, Ctx.getIntWidth(T),
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
InitPreprocessor.cpp 853 && TI.getIntWidth() == 32) {
859 && TI.getIntWidth() == 32) {
885 DefineTypeSizeof("__SIZEOF_INT__", TI.getIntWidth(), TI, Builder);
963 if (TI.getIntWidth() > TI.getShortWidth())
966 if (TI.getLongWidth() > TI.getIntWidth())
982 if (TI.getIntWidth() > TI.getShortWidth()) {
988 if (TI.getLongWidth() > TI.getIntWidth()) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
MicrosoftCXXABI.cpp 271 unsigned IntSize = Target.getIntWidth();
ASTContext.cpp 2034 Width = Target->getIntWidth();
6311 return 1 + (getIntWidth(BoolTy) << 3);
6316 return 2 + (getIntWidth(CharTy) << 3);
6319 return 3 + (getIntWidth(ShortTy) << 3);
6322 return 4 + (getIntWidth(IntTy) << 3);
6325 return 5 + (getIntWidth(LongTy) << 3);
6328 return 6 + (getIntWidth(LongLongTy) << 3);
6331 return 7 + (getIntWidth(Int128Ty) << 3);
6431 uint64_t PromotableSize = getIntWidth(Promotable);
6432 uint64_t IntSize = getIntWidth(IntTy)
    [all...]
ExprConstant.cpp 2526 unsigned DestWidth = Info.Ctx.getIntWidth(DestType);
2611 unsigned DestWidth = Info.Ctx.getIntWidth(DestType);
2983 APSInt EltResult{Info.Ctx.getIntWidth(EltTy),
7020 unsigned IntWidth = Info.Ctx.getIntWidth(QualType(T, 0));
8908 unsigned SrcWidth = Info.Ctx.getIntWidth(ForType);
10613 assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
10625 assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
10766 assert(V.getWidth() == Info.Ctx.getIntWidth(E->getType()) &&
10864 == Info.Ctx.getIntWidth(E->getType()));
10874 Val = Val.extOrTrunc(Info.Ctx.getIntWidth(E->getType()))
    [all...]
Expr.cpp 819 assert(V.getBitWidth() == C.getIntWidth(type) &&
2177 llvm::APSInt IntVal(Ctx.getIntWidth(Ctx.UnsignedIntTy),
  /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
Mips.cpp 186 Builder.defineMacro("_MIPS_SZINT", Twine(getIntWidth()));
NVPTX.cpp 116 IntWidth = HostTarget->getIntWidth();
  /src/external/apache2/llvm/dist/clang/lib/Lex/
LiteralSupport.cpp 1297 assert(PP.getTargetInfo().getIntWidth() <= 64 &&
1298 (PP.getTargetInfo().getIntWidth() & 7) == 0 &&
1406 llvm::APInt LitVal(PP.getTargetInfo().getIntWidth(), 0);
PPExpressions.cpp 386 NumBits = TI.getIntWidth();
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
SValBuilder.cpp 670 const unsigned BitWidth = Context.getIntWidth(CastTy);
735 const unsigned BitWidth = Context.getIntWidth(CastTy);
913 const unsigned CastSize = Context.getIntWidth(CastTy);
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
TargetInfo.h 388 /// For example, SignedInt -> getIntWidth().
449 /// getIntWidth/Align - Return the size of 'signed int' and 'unsigned int' for
451 unsigned getIntWidth() const { return IntWidth; }
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 242 unsigned MaxAlignmentBits = S.Context.getIntWidth(SrcTy) - 1;
336 S.getASTContext().getIntWidth(Ty) > 128)
3322 unsigned Width = Context.getIntWidth(EltTy);
10701 return IntRange(C.getIntWidth(QualType(T, 0)),
10721 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
10747 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
11045 unsigned opWidth = C.getIntWidth(GetExprType(E));
11081 unsigned opWidth = C.getIntWidth(T);
11122 return GetExprRange(C, E, C.getIntWidth(GetExprType(E)), InConstantContext,
11599 unsigned comparisonWidth = S.Context.getIntWidth(T)
    [all...]
SemaExpr.cpp 1268 } else if (S.Context.getIntWidth(LHSType) != S.Context.getIntWidth(RHSType)) {
1886 llvm::APInt Len(Context.getIntWidth(SizeType), Literal.GetNumStringChars());
1906 unsigned CharBits = Context.getIntWidth(CharTy);
3584 unsigned IntSize = Context.getTargetInfo().getIntWidth();
3754 unsigned CharBits = Context.getIntWidth(Context.CharTy);
3929 unsigned IntSize = Context.getTargetInfo().getIntWidth();
9818 if (Order < 0 && S.Context.getIntWidth(OtherIntTy) < NumBits)
9825 NumBits > S.Context.getIntWidth(OtherIntTy));
9855 llvm::APSInt ConvertBack(S.Context.getIntWidth(IntTy)
    [all...]
SemaStmt.cpp 1209 unsigned CondWidth = HasDependentValue ? 0 : Context.getIntWidth(CondType);
1217 = HasDependentValue ? 0 : Context.getIntWidth(CondTypeBeforePromotion);
1601 unsigned DstWidth = Context.getIntWidth(DstType);
SemaDecl.cpp 16612 uint64_t TypeWidth = Context.getIntWidth(FieldTy);
17637 unsigned BitWidth = Context.getIntWidth(T);
17678 unsigned IntWidth = Context.getTargetInfo().getIntWidth();
17822 EnumVal = EnumVal.zextOrTrunc(Context.getIntWidth(EltTy));
17844 EnumVal = EnumVal.extOrTrunc(Context.getIntWidth(EltTy));
18155 unsigned IntWidth = Context.getTargetInfo().getIntWidth();
18217 BestWidth = Context.getIntWidth(BestType);
SemaExprCXX.cpp 1809 llvm::APSInt Value(Context.getIntWidth(Context.getSizeType()));
2039 assert(Context.getTargetInfo().getIntWidth() && "Builtin type of size 0?");
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTContext.h 2747 unsigned getIntWidth(QualType T) const;
2786 unsigned Width = getIntWidth(Type);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenModule.cpp 128 IntTy = llvm::IntegerType::get(LLVMContext, C.getTargetInfo().getIntWidth());
6024 F->getReturnType()->isIntegerTy(Context.getTargetInfo().getIntWidth()))

Completed in 96 milliseconds

1 2