Home
last modified time | relevance | path

Searched refs:LaxVectorConversionKind (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h316 enum class LaxVectorConversionKind { enum
H A DLangOptions.def133 ENUM_LANGOPT(LaxVectorConversions, LaxVectorConversionKind, 2,
134 LaxVectorConversionKind::All, "lax vector conversions")
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp9486 const LangOptions::LaxVectorConversionKind LVCKind = in areLaxCompatibleSveTypes()
9506 if (LVCKind == LangOptions::LaxVectorConversionKind::All) in areLaxCompatibleSveTypes()
9511 if (LVCKind == LangOptions::LaxVectorConversionKind::Integer) in areLaxCompatibleSveTypes()
9588 const LangOptions::LaxVectorConversionKind LVCKind = in areLaxCompatibleRVVTypes()
9597 if (LVCKind == LangOptions::LaxVectorConversionKind::All) in areLaxCompatibleRVVTypes()
9602 if (LVCKind == LangOptions::LaxVectorConversionKind::Integer) in areLaxCompatibleRVVTypes()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td2811 NormalizedValues<["LangOptions::LaxVectorConversionKind::None",
2812 "LangOptions::LaxVectorConversionKind::Integer",
2813 "LangOptions::LaxVectorConversionKind::All"]>,
2816 " ? LangOptions::LaxVectorConversionKind::None" #
2817 " : LangOptions::LaxVectorConversionKind::All">;
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp8376 case LangOptions::LaxVectorConversionKind::None: in isLaxVectorConversion()
8379 case LangOptions::LaxVectorConversionKind::Integer: in isLaxVectorConversion()
8393 case LangOptions::LaxVectorConversionKind::All: in isLaxVectorConversion()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp528 Opts.setLaxVectorConversions(LangOptions::LaxVectorConversionKind::All); in ParseLangArgs()