Home
last modified time | relevance | path

Searched refs:Converted (Results 1 – 25 of 38) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DYAMLOutputStyle.cpp256 auto Converted = in dumpDbiStream() local
258 if (!Converted) in dumpDbiStream()
259 return Converted.takeError(); in dumpDbiStream()
260 DMI.Subsections.push_back(*Converted); in dumpDbiStream()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64PromoteConstant.cpp364 auto Converted = PromotionCache.insert( in shouldConvert() local
366 if (Converted.second) in shouldConvert()
367 Converted.first->second.ShouldConvert = shouldConvertImpl(&C); in shouldConvert()
368 return Converted.first->second.ShouldConvert; in shouldConvert()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExceptionSpec.cpp92 ExprResult Converted = CheckConvertedConstantExpression( in ActOnNoexceptSpec() local
95 if (Converted.isInvalid()) { in ActOnNoexceptSpec()
105 if (Converted.get()->isValueDependent()) { in ActOnNoexceptSpec()
107 return Converted; in ActOnNoexceptSpec()
110 if (!Converted.isInvalid()) in ActOnNoexceptSpec()
112 return Converted; in ActOnNoexceptSpec()
H A DSemaConcept.cpp572 llvm::SmallVectorImpl<Expr *> &Converted, in CheckConstraintSatisfaction() argument
603 Converted.push_back(Res.get()); in CheckConstraintSatisfaction()
607 Converted.append(ConstraintExprs.size() - Converted.size(), nullptr); in CheckConstraintSatisfaction()
1134 llvm::SmallVector<Expr *, 1> Converted; in CheckInstantiatedFunctionTemplateConstraints() local
1135 return CheckConstraintSatisfaction(Template, TemplateAC, Converted, *MLTAL, in CheckInstantiatedFunctionTemplateConstraints()
H A DSemaExprMember.cpp1011 ExprResult Converted = TemporaryMaterializationConversion(BaseExpr); in BuildMemberReferenceExpr() local
1012 if (Converted.isInvalid()) in BuildMemberReferenceExpr()
1014 BaseExpr = Converted.get(); in BuildMemberReferenceExpr()
H A DSemaOverload.cpp319 const Expr *Converted) { in IgnoreNarrowingConversion() argument
322 if (auto *EWC = dyn_cast<ExprWithCleanups>(Converted)) { in IgnoreNarrowingConversion()
329 while (auto *ICE = dyn_cast<ImplicitCastExpr>(Converted)) { in IgnoreNarrowingConversion()
339 Converted = ICE->getSubExpr(); in IgnoreNarrowingConversion()
343 return Converted; in IgnoreNarrowingConversion()
347 return Converted; in IgnoreNarrowingConversion()
362 ASTContext &Ctx, const Expr *Converted, APValue &ConstantValue, in getNarrowingKind() argument
402 const Expr *Initializer = IgnoreNarrowingConversion(Ctx, Converted); in getNarrowingKind()
441 const Expr *Initializer = IgnoreNarrowingConversion(Ctx, Converted); in getNarrowingKind()
457 llvm::APFloat Converted = FloatVal; in getNarrowingKind() local
[all …]
H A DSemaTemplateInstantiateDecl.cpp248 ExprResult Converted = S.PerformContextuallyConvertToBool(Cond); in instantiateDependentFunctionAttrCondition() local
249 if (Converted.isInvalid()) in instantiateDependentFunctionAttrCondition()
251 Cond = Converted.get(); in instantiateDependentFunctionAttrCondition()
4017 ArrayRef<TemplateArgument> Converted, in VisitVarTemplateSpecializationDecl() argument
4036 VarTemplate, DI->getType(), DI, D->getStorageClass(), Converted); in VisitVarTemplateSpecializationDecl()
4040 VarTemplate->findSpecialization(Converted, InsertPos); in VisitVarTemplateSpecializationDecl()
5217 SmallVectorImpl<TemplateArgument> &Converted, in BuildVarTemplateInstantiation() argument
5247 MultiLevelList.addOuterTemplateArguments(VarTemplate, Converted, in BuildVarTemplateInstantiation()
5260 VarTemplate, FromVar, TemplateArgsInfo, Converted)); in BuildVarTemplateInstantiation()
H A DSemaTemplate.cpp3063 ArrayRef<TemplateArgument> Converted, in checkBuiltinTemplateIdType() argument
3073 QualType OrigType = Converted[1].getAsType(); in checkBuiltinTemplateIdType()
3082 TemplateArgument NumArgsArg = Converted[2]; in checkBuiltinTemplateIdType()
3085 Converted); in checkBuiltinTemplateIdType()
3113 return SemaRef.CheckTemplateIdType(Converted[0].getAsTemplate(), in checkBuiltinTemplateIdType()
3121 assert(Converted.size() == 2 && in checkBuiltinTemplateIdType()
3124 TemplateArgument IndexArg = Converted[0], Ts = Converted[1]; in checkBuiltinTemplateIdType()
3127 Converted); in checkBuiltinTemplateIdType()
H A DSemaStmt.cpp507 ExprResult Converted = CorrectDelayedTyposInExpr( in ActOnCaseExpr() local
510 if (Converted.get() == Val.get()) in ActOnCaseExpr()
511 Converted = CheckAndFinish(Val.get()); in ActOnCaseExpr()
512 return Converted; in ActOnCaseExpr()
H A DSemaExprObjC.cpp888 ExprResult Converted = CheckObjCCollectionLiteralElement( in BuildObjCArrayLiteral() local
890 if (Converted.isInvalid()) in BuildObjCArrayLiteral()
893 ElementsBuffer[I] = Converted.get(); in BuildObjCArrayLiteral()
H A DSemaDeclCXX.cpp13675 ExprResult Converted = CheckConvertedConstantExpression( in tryResolveExplicitSpecifier() local
13677 ExplicitSpec.setExpr(Converted.get()); in tryResolveExplicitSpecifier()
13678 if (Converted.isUsable() && !Converted.get()->isValueDependent()) { in tryResolveExplicitSpecifier()
17287 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr); in BuildStaticAssertDeclaration() local
17288 if (Converted.isInvalid()) in BuildStaticAssertDeclaration()
17292 ActOnFinishFullExpr(Converted.get(), StaticAssertLoc, in BuildStaticAssertDeclaration()
17346 findFailedBooleanCondition(Converted.get()); in BuildStaticAssertDeclaration()
H A DSemaChecking.cpp4943 ExprResult Converted = DefaultLvalueConversion(Arg); in BuiltinComplex() local
4944 if (Converted.isInvalid()) in BuiltinComplex()
4946 TheCall->setArg(I, Converted.get()); in BuiltinComplex()
14333 ExprResult Converted = UsualUnaryConversions(TheCall->getArg(I)); in BuiltinElementwiseTernaryMath() local
14334 if (Converted.isInvalid()) in BuiltinElementwiseTernaryMath()
14336 Args[I] = Converted.get(); in BuiltinElementwiseTernaryMath()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULateCodeGenPrepare.cpp267 Instruction *Converted = in convertFromOptType() local
274 return Builder.CreateShuffleVector(Converted, ShuffleMask); in convertFromOptType()
H A DSIPeepholeSDWA.cpp1168 bool Converted = false; in convertToSDWA() local
1182 Converted |= Operand->convertToSDWA(*SDWAInst, TII); in convertToSDWA()
1185 if (Converted) { in convertToSDWA()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclTemplate.cpp1120 ArrayRef<TemplateArgument> Converted) { in setTemplateArguments() argument
1121 assert(Converted.size() == NumTemplateArgs); in setTemplateArguments()
1122 std::uninitialized_copy(Converted.begin(), Converted.end(), in setTemplateArguments()
H A DType.cpp4258 const TemplateArgumentListInfo &Args, ArrayRef<TemplateArgument> Converted) { in anyDependentTemplateArguments() argument
4259 return anyDependentTemplateArguments(Args.arguments(), Converted); in anyDependentTemplateArguments()
4263 ArrayRef<TemplateArgumentLoc> Args, ArrayRef<TemplateArgument> Converted) { in anyDependentTemplateArguments() argument
4264 for (const TemplateArgument &Arg : Converted) in anyDependentTemplateArguments()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp580 bool Converted = in DiagnoseInvalidUnicodeCharacterName() local
582 (void)Converted; in DiagnoseInvalidUnicodeCharacterName()
583 assert(Converted && "Found a match wich is not a unicode character"); in DiagnoseInvalidUnicodeCharacterName()
/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/
H A DX86.cpp1718 std::string Converted = "{" + std::string(Constraint, Len) + "}"; in convertConstraint() local
1720 return Converted; in convertConstraint()
H A DAArch64.cpp1385 std::string Converted = "{" + std::string(Constraint, Len) + "}"; in convertConstraint() local
1387 return Converted; in convertConstraint()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DTemplate.h710 ArrayRef<TemplateArgument> Converted,
H A DOverload.h412 getNarrowingKind(ASTContext &Context, const Expr *Converted,
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp2144 if (Init *Converted = convertInitializerTo(Ty)) { in getCastTo() local
2145 assert(!isa<TypedInit>(Converted) || in getCastTo()
2146 cast<TypedInit>(Converted)->getType()->typeIsA(Ty)); in getCastTo()
2147 return Converted; in getCastTo()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp3234 APSInt Converted(64, false); in transformFixedFloatingPointConversion() local
3236 ToConvert.convertToInteger(Converted, llvm::RoundingMode::NearestTiesToEven, in transformFixedFloatingPointConversion()
3238 if (!IsExact || !Converted.isPowerOf2()) in transformFixedFloatingPointConversion()
3241 unsigned FracBits = Converted.logBase2(); in transformFixedFloatingPointConversion()
/freebsd/contrib/kyua/
H A DNEWS.md128 * Converted the `INSTALL`, `NEWS`, and `README` distribution documents to
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclTemplate.h3209 void setTemplateArguments(ArrayRef<TemplateArgument> Converted);

12