Searched refs:hasSignedIntegerRepresentation (Results 1 – 14 of 14) sorted by relevance
/openbsd/gnu/llvm/clang/include/clang/AST/ |
H A D | CanonicalType.h | 305 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, hasSignedIntegerRepresentation)
|
H A D | Type.h | 2359 bool hasSignedIntegerRepresentation() const;
|
/openbsd/gnu/llvm/clang/include/clang/CodeGen/ |
H A D | CGFunctionInfo.h | 185 if (Ty->hasSignedIntegerRepresentation())
|
/openbsd/gnu/llvm/clang/lib/CodeGen/ |
H A D | CGStmtOpenMP.cpp | 2815 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); in EmitOMPOuterLoop() 2987 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); in EmitOMPForOuterLoop() 3043 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); in EmitOMPDistributeOuterLoop() 6097 RMWOp = X.getType()->hasSignedIntegerRepresentation() in emitOMPAtomicRMW() 6108 RMWOp = X.getType()->hasSignedIntegerRepresentation() in emitOMPAtomicRMW() 6153 X.getType()->hasSignedIntegerRepresentation()); in emitOMPAtomicRMW() 6403 E->getType()->hasSignedIntegerRepresentation()); in emitOMPAtomicCompareExpr() 6408 D->getType()->hasSignedIntegerRepresentation()); in emitOMPAtomicCompareExpr() 6412 X->getType()->hasSignedIntegerRepresentation(), in emitOMPAtomicCompareExpr() 6419 V->getType()->hasSignedIntegerRepresentation(), in emitOMPAtomicCompareExpr() [all …]
|
H A D | CGExprScalar.cpp | 105 LHSCI, RHSCI, Opcode, Ty->hasSignedIntegerRepresentation(), Result); in mayHaveIntegerOverflow() 3400 Ops.Ty->hasSignedIntegerRepresentation() && in EmitUndefinedBehaviorIntegerDivAndRemCheck() 4101 Ops.Ty->hasSignedIntegerRepresentation() && in EmitShl() 4347 } else if (LHSTy->hasSignedIntegerRepresentation()) { in EmitCompare()
|
H A D | CGExpr.cpp | 4004 LowerBound->getType()->hasSignedIntegerRepresentation()); in EmitOMPArraySectionExpr() 4039 LowerBound->getType()->hasSignedIntegerRepresentation()) in EmitOMPArraySectionExpr() 4045 Length->getType()->hasSignedIntegerRepresentation()) in EmitOMPArraySectionExpr() 4075 Length->getType()->hasSignedIntegerRepresentation()); in EmitOMPArraySectionExpr()
|
H A D | CGExprAgg.cpp | 1016 ArgTy->hasSignedIntegerRepresentation() ? InstInfo.SCmp : InstInfo.UCmp; in EmitCompare()
|
H A D | CGOpenMPRuntimeGPU.cpp | 1365 CastTy->hasSignedIntegerRepresentation()); in castValueToType()
|
/openbsd/gnu/llvm/clang/lib/AST/ |
H A D | FormatString.cpp | 521 if (PromoArg->hasSignedIntegerRepresentation() && in matchesType()
|
H A D | Type.cpp | 2082 bool Type::hasSignedIntegerRepresentation() const { in hasSignedIntegerRepresentation() function in Type
|
H A D | ASTContext.cpp | 4008 EltTy->hasSignedIntegerRepresentation() == IsSigned) || \ in getScalableVectorType() 4026 EltTy->hasSignedIntegerRepresentation() == IsSigned) || \ in getScalableVectorType() 11054 (T->hasSignedIntegerRepresentation() || T->isSignedFixedPointType()) && in getCorrespondingSignedType()
|
/openbsd/gnu/llvm/clang/lib/Sema/ |
H A D | SemaExpr.cpp | 1293 bool LHSSigned = LHSType->hasSignedIntegerRepresentation(); in handleIntegerConversion() 1294 bool RHSSigned = RHSType->hasSignedIntegerRepresentation(); in handleIntegerConversion() 9571 else if (lhptee->hasSignedIntegerRepresentation()) in checkPointerTypesForAssignment() 9576 else if (rhptee->hasSignedIntegerRepresentation()) in checkPointerTypesForAssignment() 10490 bool IntSigned = IntTy->hasSignedIntegerRepresentation(); in canConvertIntToOtherIntTy() 10491 bool OtherIntSigned = OtherIntTy->hasSignedIntegerRepresentation(); in canConvertIntToOtherIntTy() 10536 Float.convertFromAPInt(Result, IntTy->hasSignedIntegerRepresentation(), in canConvertIntTyToFloatTy() 10539 !IntTy->hasSignedIntegerRepresentation()); in canConvertIntTyToFloatTy()
|
H A D | SemaOpenMP.cpp | 8021 bool IsUnsigned = !NewStep->getType()->hasSignedIntegerRepresentation(); in setStep() 8542 if ((LowerSize <= UpperSize && UpperTy->hasSignedIntegerRepresentation()) || in calculateNumIters() 8543 (LowerSize > UpperSize && LowerTy->hasSignedIntegerRepresentation())) { in calculateNumIters() 8818 bool IsSigned = UseVarType ? VarType->hasSignedIntegerRepresentation() in buildNumIterations() 8819 : Type->hasSignedIntegerRepresentation(); in buildNumIterations() 8837 NewSize, Type->hasSignedIntegerRepresentation() || in buildNumIterations() 9704 LastIteration32.get()->getType()->hasSignedIntegerRepresentation(), in checkOpenMPLoop() 19488 bool IsSigned = Type->hasSignedIntegerRepresentation(); in actOnOMPReductionKindClause()
|
H A D | SemaChecking.cpp | 13206 if (LHS->getType()->hasSignedIntegerRepresentation()) { in AnalyzeComparison() 13207 assert(!RHS->getType()->hasSignedIntegerRepresentation() && in AnalyzeComparison() 13211 } else if (RHS->getType()->hasSignedIntegerRepresentation()) { in AnalyzeComparison()
|