29#include "clang/Config/config.h"
44#include "llvm/ADT/APInt.h"
45#include "llvm/ADT/ArrayRef.h"
46#include "llvm/ADT/CachedHashString.h"
47#include "llvm/ADT/FloatingPointMode.h"
48#include "llvm/ADT/STLExtras.h"
49#include "llvm/ADT/SmallVector.h"
50#include "llvm/ADT/StringRef.h"
51#include "llvm/ADT/StringSwitch.h"
52#include "llvm/ADT/Twine.h"
53#include "llvm/Config/llvm-config.h"
54#include "llvm/Frontend/Debug/Options.h"
55#include "llvm/IR/DebugInfoMetadata.h"
56#include "llvm/Linker/Linker.h"
57#include "llvm/MC/MCTargetOptions.h"
58#include "llvm/Option/Arg.h"
59#include "llvm/Option/ArgList.h"
60#include "llvm/Option/OptSpecifier.h"
61#include "llvm/Option/OptTable.h"
62#include "llvm/Option/Option.h"
63#include "llvm/ProfileData/InstrProfReader.h"
64#include "llvm/Remarks/HotnessThresholdParser.h"
65#include "llvm/Support/CodeGen.h"
66#include "llvm/Support/Compiler.h"
67#include "llvm/Support/Error.h"
68#include "llvm/Support/ErrorHandling.h"
69#include "llvm/Support/ErrorOr.h"
70#include "llvm/Support/FileSystem.h"
71#include "llvm/Support/HashBuilder.h"
72#include "llvm/Support/MathExtras.h"
73#include "llvm/Support/MemoryBuffer.h"
74#include "llvm/Support/Path.h"
75#include "llvm/Support/Process.h"
76#include "llvm/Support/Regex.h"
77#include "llvm/Support/VersionTuple.h"
78#include "llvm/Support/VirtualFileSystem.h"
79#include "llvm/Support/raw_ostream.h"
80#include "llvm/Target/TargetOptions.h"
81#include "llvm/TargetParser/Host.h"
82#include "llvm/TargetParser/Triple.h"
110 if (Arg.getAsInteger(10, Val))
111 return llvm::createStringError(llvm::inconvertibleErrorCode(),
112 "Not an integer: %s", Arg.data());
121 return std::make_shared<T>(
X);
195 if (Storage.use_count() > 1)
196 Storage = std::make_shared<T>(*Storage);
263#define OPTTABLE_STR_TABLE_CODE
264#include "clang/Options/Options.inc"
265#undef OPTTABLE_STR_TABLE_CODE
268 return OptionStrTable[Offset];
271#define SIMPLE_ENUM_VALUE_TABLE
272#include "clang/Options/Options.inc"
273#undef SIMPLE_ENUM_VALUE_TABLE
279 if (Args.hasArg(Opt))
288 if (Args.hasArg(Opt))
298 unsigned SpellingOffset, Option::OptionClass,
303 const Twine &Spelling, Option::OptionClass,
309 return !std::is_same_v<T, uint64_t> && llvm::is_integral_or_enum<T>::value;
313 std::enable_if_t<!is_uint64_t_convertible<T>(),
bool> =
false>
315 return [
Value](OptSpecifier Opt,
unsigned,
const ArgList &Args,
317 if (Args.hasArg(Opt))
324 std::enable_if_t<is_uint64_t_convertible<T>(),
bool> =
false>
330 OptSpecifier OtherOpt) {
331 return [
Value, OtherValue,
332 OtherOpt](OptSpecifier Opt,
unsigned,
const ArgList &Args,
334 if (
const Arg *A = Args.getLastArg(Opt, OtherOpt)) {
335 return A->getOption().matches(Opt) ?
Value : OtherValue;
343 Option::OptionClass,
unsigned,
bool KeyPath) {
344 if (KeyPath ==
Value)
350 const Twine &Spelling,
351 Option::OptionClass OptClass,
unsigned,
352 const Twine &
Value) {
354 case Option::SeparateClass:
355 case Option::JoinedOrSeparateClass:
356 case Option::JoinedAndSeparateClass:
360 case Option::JoinedClass:
361 case Option::CommaJoinedClass:
362 Consumer(Spelling +
Value);
365 llvm_unreachable(
"Cannot denormalize an option with option class "
366 "incompatible with string denormalization.");
373 Option::OptionClass OptClass,
unsigned TableIndex, T
Value) {
375 TableIndex, Twine(
Value));
380 Option::OptionClass OptClass,
unsigned TableIndex,
385static std::optional<SimpleEnumValue>
387 for (
int I = 0, E = Table.Size; I != E; ++I)
388 if (Name == Table.Table[I].Name)
389 return Table.Table[I];
394static std::optional<SimpleEnumValue>
396 for (
int I = 0, E = Table.Size; I != E; ++I)
398 return Table.Table[I];
407 assert(TableIndex < SimpleEnumValueTablesSize);
408 const SimpleEnumValueTable &Table = SimpleEnumValueTables[TableIndex];
410 auto *Arg = Args.getLastArg(Opt);
414 StringRef ArgValue = Arg->getValue();
416 return MaybeEnumVal->Value;
418 Diags.
Report(diag::err_drv_invalid_value)
419 << Arg->getAsString(Args) << ArgValue;
424 unsigned SpellingOffset,
425 Option::OptionClass OptClass,
426 unsigned TableIndex,
unsigned Value) {
427 assert(TableIndex < SimpleEnumValueTablesSize);
428 const SimpleEnumValueTable &Table = SimpleEnumValueTables[TableIndex];
431 TableIndex, MaybeEnumVal->Name);
433 llvm_unreachable(
"The simple enum value was not correctly defined in "
434 "the tablegen option description");
440 unsigned SpellingOffset,
441 Option::OptionClass OptClass,
442 unsigned TableIndex, T
Value) {
444 TableIndex,
static_cast<unsigned>(
Value));
451 auto *Arg = Args.getLastArg(Opt);
454 return std::string(Arg->getValue());
457template <
typename IntTy>
461 auto *Arg = Args.getLastArg(Opt);
465 if (StringRef(Arg->getValue()).getAsInteger(0, Res)) {
466 Diags.
Report(diag::err_drv_invalid_int_value)
467 << Arg->getAsString(Args) << Arg->getValue();
473static std::optional<std::vector<std::string>>
476 return Args.getAllArgValues(Opt);
480 unsigned SpellingOffset,
481 Option::OptionClass OptClass,
483 const std::vector<std::string> &Values) {
485 case Option::CommaJoinedClass: {
486 std::string CommaJoinedValue;
487 if (!Values.empty()) {
488 CommaJoinedValue.append(Values.front());
489 for (
const std::string &
Value : llvm::drop_begin(Values, 1)) {
490 CommaJoinedValue.append(
",");
491 CommaJoinedValue.append(
Value);
495 Option::OptionClass::JoinedClass, TableIndex,
499 case Option::JoinedClass:
500 case Option::SeparateClass:
501 case Option::JoinedOrSeparateClass:
502 for (
const std::string &
Value : Values)
506 llvm_unreachable(
"Cannot denormalize an option with option class "
507 "incompatible with string vector denormalization.");
515 auto *Arg = Args.getLastArg(Opt);
518 return llvm::Triple::normalize(Arg->getValue());
521#define PARSE_OPTION_WITH_MARSHALLING( \
522 ARGS, DIAGS, PREFIX_TYPE, SPELLING_OFFSET, ID, KIND, GROUP, ALIAS, \
523 ALIASARGS, FLAGS, VISIBILITY, PARAM, HELPTEXT, HELPTEXTSFORVARIANTS, \
524 METAVAR, VALUES, SUBCOMMANDIDS_OFFSET, SHOULD_PARSE, ALWAYS_EMIT, KEYPATH, \
525 DEFAULT_VALUE, IMPLIED_CHECK, IMPLIED_VALUE, NORMALIZER, DENORMALIZER, \
527 if ((VISIBILITY) & options::CC1Option) { \
528 KEYPATH = static_cast<decltype(KEYPATH)>(DEFAULT_VALUE); \
530 KEYPATH = static_cast<decltype(KEYPATH)>(IMPLIED_VALUE); \
532 if (auto MaybeValue = NORMALIZER(OPT_##ID, TABLE_INDEX, ARGS, DIAGS)) \
533 KEYPATH = static_cast<decltype(KEYPATH)>(*MaybeValue); \
536#define GENERATE_OPTION_WITH_MARSHALLING( \
537 CONSUMER, PREFIX_TYPE, SPELLING_OFFSET, ID, KIND, GROUP, ALIAS, ALIASARGS, \
538 FLAGS, VISIBILITY, PARAM, HELPTEXT, HELPTEXTSFORVARIANTS, METAVAR, VALUES, \
539 SUBCOMMANDIDS_OFFSET, SHOULD_PARSE, ALWAYS_EMIT, KEYPATH, DEFAULT_VALUE, \
540 IMPLIED_CHECK, IMPLIED_VALUE, NORMALIZER, DENORMALIZER, TABLE_INDEX) \
541 if ((VISIBILITY) & options::CC1Option) { \
542 if (ALWAYS_EMIT || (KEYPATH != static_cast<decltype(KEYPATH)>( \
543 ((IMPLIED_CHECK) ? (IMPLIED_VALUE) \
544 : (DEFAULT_VALUE))))) \
545 DENORMALIZER(CONSUMER, SPELLING_OFFSET, Option::KIND##Class, \
546 TABLE_INDEX, KEYPATH); \
560 CodeGenOpts.XRayInstrumentFunctions = LangOpts.XRayInstrument;
561 CodeGenOpts.XRayAlwaysEmitCustomEvents = LangOpts.XRayAlwaysEmitCustomEvents;
562 CodeGenOpts.XRayAlwaysEmitTypedEvents = LangOpts.XRayAlwaysEmitTypedEvents;
563 CodeGenOpts.DisableFree = FrontendOpts.
DisableFree;
566 CodeGenOpts.ClearASTBeforeBackend =
false;
568 LangOpts.ForceEmitVTables = CodeGenOpts.ForceEmitVTables;
569 LangOpts.SpeculativeLoadHardening = CodeGenOpts.SpeculativeLoadHardening;
572 llvm::Triple T(TargetOpts.
Triple);
573 llvm::Triple::ArchType
Arch = T.getArch();
578 if (CodeGenOpts.getExceptionHandling() !=
580 T.isWindowsMSVCEnvironment())
581 Diags.
Report(diag::err_fe_invalid_exception_model)
582 <<
static_cast<unsigned>(CodeGenOpts.getExceptionHandling()) << T.str();
584 if (LangOpts.AppleKext && !LangOpts.CPlusPlus)
585 Diags.
Report(diag::warn_c_kext);
587 if (LangOpts.NewAlignOverride &&
588 !llvm::isPowerOf2_32(LangOpts.NewAlignOverride)) {
589 Arg *A = Args.getLastArg(OPT_fnew_alignment_EQ);
590 Diags.
Report(diag::err_fe_invalid_alignment)
591 << A->getAsString(Args) << A->getValue();
592 LangOpts.NewAlignOverride = 0;
597 if (LangOpts.CPlusPlus11) {
598 if (Args.hasArg(OPT_fraw_string_literals, OPT_fno_raw_string_literals)) {
599 Args.claimAllArgs(OPT_fraw_string_literals, OPT_fno_raw_string_literals);
600 Diags.
Report(diag::warn_drv_fraw_string_literals_in_cxx11)
601 <<
bool(LangOpts.RawStringLiterals);
605 LangOpts.RawStringLiterals =
true;
608 if (Args.hasArg(OPT_freflection) && !LangOpts.CPlusPlus26) {
609 Diags.
Report(diag::err_drv_reflection_requires_cxx26)
610 << Args.getLastArg(options::OPT_freflection)->getAsString(Args);
613 LangOpts.NamedLoops =
614 Args.hasFlag(OPT_fnamed_loops, OPT_fno_named_loops, LangOpts.C2y);
617 if (LangOpts.SYCLIsDevice && LangOpts.SYCLIsHost)
618 Diags.
Report(diag::err_drv_argument_not_allowed_with) <<
"-fsycl-is-device"
622 if ((LangOpts.SYCLIsDevice || LangOpts.SYCLIsHost) && !LangOpts.CPlusPlus)
623 Diags.
Report(diag::err_drv_argument_not_allowed_with)
626 if (Args.hasArg(OPT_fgnu89_inline) && LangOpts.CPlusPlus)
627 Diags.
Report(diag::err_drv_argument_not_allowed_with)
630 if (Args.hasArg(OPT_hlsl_entrypoint) && !LangOpts.HLSL)
631 Diags.
Report(diag::err_drv_argument_not_allowed_with)
634 if (Args.hasArg(OPT_fdx_rootsignature_version) && !LangOpts.HLSL)
635 Diags.
Report(diag::err_drv_argument_not_allowed_with)
638 if (Args.hasArg(OPT_fdx_rootsignature_define) && !LangOpts.HLSL)
639 Diags.
Report(diag::err_drv_argument_not_allowed_with)
642 if (Args.hasArg(OPT_fgpu_allow_device_init) && !LangOpts.HIP)
643 Diags.
Report(diag::warn_ignored_hip_only_option)
644 << Args.getLastArg(OPT_fgpu_allow_device_init)->getAsString(Args);
646 if (Args.hasArg(OPT_gpu_max_threads_per_block_EQ) && !LangOpts.HIP)
647 Diags.
Report(diag::warn_ignored_hip_only_option)
648 << Args.getLastArg(OPT_gpu_max_threads_per_block_EQ)->getAsString(Args);
654 if (!llvm::is_contained(Warnings,
"conversion"))
655 Warnings.insert(Warnings.begin(),
"conversion");
656 if (!llvm::is_contained(Warnings,
"vector-conversion"))
657 Warnings.insert(Warnings.begin(),
"vector-conversion");
658 if (!llvm::is_contained(Warnings,
"matrix-conversion"))
659 Warnings.insert(Warnings.begin(),
"matrix-conversion");
669 if (Args.hasArg(OPT_ffp_eval_method_EQ)) {
670 if (LangOpts.ApproxFunc)
671 Diags.
Report(diag::err_incompatible_fp_eval_method_options) << 0;
672 if (LangOpts.AllowFPReassoc)
673 Diags.
Report(diag::err_incompatible_fp_eval_method_options) << 1;
674 if (LangOpts.AllowRecip)
675 Diags.
Report(diag::err_incompatible_fp_eval_method_options) << 2;
681 if (Args.getLastArg(OPT_cl_strict_aliasing) &&
683 Diags.
Report(diag::warn_option_invalid_ocl_version)
685 << Args.getLastArg(OPT_cl_strict_aliasing)->getAsString(Args);
687 if (Arg *A = Args.getLastArg(OPT_fdefault_calling_conv_EQ)) {
688 auto DefaultCC = LangOpts.getDefaultCallingConv();
692 Arch != llvm::Triple::x86;
698 Diags.
Report(diag::err_drv_argument_not_allowed_with)
699 << A->getSpelling() << T.getTriple();
710 llvm::opt::OptSpecifier OptSpecifier) {
713 Option::OptionClass::FlagClass, 0);
717 llvm::opt::OptSpecifier OptSpecifier,
718 const Twine &
Value) {
756 bool CheckAgainstOriginalInvocation =
false,
757 bool ForceRoundTrip =
false) {
759 bool DoRoundTripDefault =
true;
761 bool DoRoundTripDefault =
false;
764 bool DoRoundTrip = DoRoundTripDefault;
765 if (ForceRoundTrip) {
768 for (
const auto *Arg : CommandLineArgs) {
769 if (Arg == StringRef(
"-round-trip-args"))
771 if (Arg == StringRef(
"-no-round-trip-args"))
779 return Parse(RealInvocation, CommandLineArgs, Diags, Argv0);
784 llvm::raw_string_ostream OS(Buffer);
785 for (
const char *Arg : Args) {
786 llvm::sys::printArg(OS, Arg,
true);
799 if (!
Parse(DummyInvocation, CommandLineArgs, DummyDiags, Argv0) ||
806 auto Success =
Parse(RealInvocation, CommandLineArgs, Diags, Argv0);
812 Diags.
Report(diag::err_cc1_round_trip_fail_then_ok);
813 Diags.
Report(diag::note_cc1_round_trip_original)
814 << SerializeArgs(CommandLineArgs);
819 llvm::BumpPtrAllocator Alloc;
820 llvm::StringSaver StringPool(Alloc);
821 auto SA = [&StringPool](
const Twine &Arg) {
822 return StringPool.save(Arg).data();
829 Generate(DummyInvocation, GeneratedArgs, SA);
835 bool Success2 =
Parse(RealInvocation, GeneratedArgs, Diags, Argv0);
840 Diags.
Report(diag::err_cc1_round_trip_ok_then_fail);
841 Diags.
Report(diag::note_cc1_round_trip_generated)
842 << 1 << SerializeArgs(GeneratedArgs);
847 if (CheckAgainstOriginalInvocation)
849 ComparisonArgs.assign(CommandLineArgs.begin(), CommandLineArgs.end());
853 Generate(RealInvocation, ComparisonArgs, SA);
858 return llvm::equal(A, B, [](
const char *AElem,
const char *BElem) {
859 return StringRef(AElem) == StringRef(BElem);
866 if (!
Equal(GeneratedArgs, ComparisonArgs)) {
867 Diags.
Report(diag::err_cc1_round_trip_mismatch);
868 Diags.
Report(diag::note_cc1_round_trip_generated)
869 << 1 << SerializeArgs(GeneratedArgs);
870 Diags.
Report(diag::note_cc1_round_trip_generated)
871 << 2 << SerializeArgs(ComparisonArgs);
875 Diags.
Report(diag::remark_cc1_round_trip_generated)
876 << 1 << SerializeArgs(GeneratedArgs);
877 Diags.
Report(diag::remark_cc1_round_trip_generated)
878 << 2 << SerializeArgs(ComparisonArgs);
890 return CreateFromArgsImpl(Invocation, CommandLineArgs, Diags, Argv0);
894 Args.push_back(
"-cc1");
897 DummyInvocation1, DummyInvocation2, Args, Diags, Argv0,
902 OptSpecifier GroupWithValue,
903 std::vector<std::string> &Diagnostics) {
904 for (
auto *A : Args.filtered(Group)) {
905 if (A->getOption().getKind() == Option::FlagClass) {
908 Diagnostics.push_back(
909 std::string(A->getOption().getName().drop_front(1)));
910 }
else if (A->getOption().matches(GroupWithValue)) {
913 Diagnostics.push_back(
914 std::string(A->getOption().getName().drop_front(1).rtrim(
"=-")));
917 Diagnostics.push_back(A->getValue());
928 std::vector<std::string> &Funcs) {
929 std::vector<std::string> Values = Args.getAllArgValues(OPT_fno_builtin_);
931 Funcs.insert(Funcs.end(), Values.begin(), BuiltinEnd);
938#define ANALYZER_OPTION_WITH_MARSHALLING(...) \
939 GENERATE_OPTION_WITH_MARSHALLING(Consumer, __VA_ARGS__)
940#include "clang/Options/Options.inc"
941#undef ANALYZER_OPTION_WITH_MARSHALLING
945#define ANALYSIS_CONSTRAINTS(NAME, CMDFLAG, DESC, CREATFN) \
947 GenerateArg(Consumer, OPT_analyzer_constraints, CMDFLAG); \
949#include "clang/StaticAnalyzer/Core/Analyses.def"
951 llvm_unreachable(
"Tried to generate unknown analysis constraint.");
957#define ANALYSIS_DIAGNOSTICS(NAME, CMDFLAG, DESC, CREATFN) \
959 GenerateArg(Consumer, OPT_analyzer_output, CMDFLAG); \
961#include "clang/StaticAnalyzer/Core/Analyses.def"
963 llvm_unreachable(
"Tried to generate unknown analysis diagnostic client.");
969#define ANALYSIS_PURGE(NAME, CMDFLAG, DESC) \
971 GenerateArg(Consumer, OPT_analyzer_purge, CMDFLAG); \
973#include "clang/StaticAnalyzer/Core/Analyses.def"
975 llvm_unreachable(
"Tried to generate unknown analysis purge mode.");
981#define ANALYSIS_INLINING_MODE(NAME, CMDFLAG, DESC) \
983 GenerateArg(Consumer, OPT_analyzer_inlining_mode, CMDFLAG); \
985#include "clang/StaticAnalyzer/Core/Analyses.def"
987 llvm_unreachable(
"Tried to generate unknown analysis inlining mode.");
993 CP.second ? OPT_analyzer_checker : OPT_analyzer_disable_checker;
1002 for (
const auto &
C : Opts.
Config)
1003 SortedConfigOpts.emplace_back(
C.getKey(),
C.getValue());
1004 llvm::sort(SortedConfigOpts, llvm::less_first());
1006 for (
const auto &[Key,
Value] : SortedConfigOpts) {
1009 auto Entry = ConfigOpts.
Config.find(Key);
1010 if (Entry != ConfigOpts.
Config.end() && Entry->getValue() ==
Value)
1023#define SSAF_OPTION_WITH_MARSHALLING(...) \
1024 GENERATE_OPTION_WITH_MARSHALLING(Consumer, __VA_ARGS__)
1025#include "clang/Options/Options.inc"
1026#undef SSAF_OPTION_WITH_MARSHALLING
1035#define SSAF_OPTION_WITH_MARSHALLING(...) \
1036 PARSE_OPTION_WITH_MARSHALLING(Args, Diags, __VA_ARGS__)
1037#include "clang/Options/Options.inc"
1038#undef SSAF_OPTION_WITH_MARSHALLING
1049#define ANALYZER_OPTION_WITH_MARSHALLING(...) \
1050 PARSE_OPTION_WITH_MARSHALLING(Args, Diags, __VA_ARGS__)
1051#include "clang/Options/Options.inc"
1052#undef ANALYZER_OPTION_WITH_MARSHALLING
1054 if (Arg *A = Args.getLastArg(OPT_analyzer_constraints)) {
1055 StringRef Name = A->getValue();
1057#define ANALYSIS_CONSTRAINTS(NAME, CMDFLAG, DESC, CREATFN) \
1058 .Case(CMDFLAG, NAME##Model)
1059#include "clang/StaticAnalyzer/Core/Analyses.def"
1062 Diags.
Report(diag::err_drv_invalid_value)
1063 << A->getAsString(Args) << Name;
1066 if (
Value == AnalysisConstraints::Z3ConstraintsModel) {
1067 Diags.
Report(diag::err_analyzer_not_built_with_z3);
1074 if (Arg *A = Args.getLastArg(OPT_analyzer_output)) {
1075 StringRef Name = A->getValue();
1077#define ANALYSIS_DIAGNOSTICS(NAME, CMDFLAG, DESC, CREATFN) \
1078 .Case(CMDFLAG, PD_##NAME)
1079#include "clang/StaticAnalyzer/Core/Analyses.def"
1082 Diags.
Report(diag::err_drv_invalid_value)
1083 << A->getAsString(Args) << Name;
1089 if (Arg *A = Args.getLastArg(OPT_analyzer_purge)) {
1090 StringRef Name = A->getValue();
1092#define ANALYSIS_PURGE(NAME, CMDFLAG, DESC) \
1093 .Case(CMDFLAG, NAME)
1094#include "clang/StaticAnalyzer/Core/Analyses.def"
1097 Diags.
Report(diag::err_drv_invalid_value)
1098 << A->getAsString(Args) << Name;
1104 if (Arg *A = Args.getLastArg(OPT_analyzer_inlining_mode)) {
1105 StringRef Name = A->getValue();
1107#define ANALYSIS_INLINING_MODE(NAME, CMDFLAG, DESC) \
1108 .Case(CMDFLAG, NAME)
1109#include "clang/StaticAnalyzer/Core/Analyses.def"
1112 Diags.
Report(diag::err_drv_invalid_value)
1113 << A->getAsString(Args) << Name;
1121 Args.filtered(OPT_analyzer_checker, OPT_analyzer_disable_checker)) {
1123 bool IsEnabled = A->getOption().getID() == OPT_analyzer_checker;
1126 StringRef CheckerAndPackageList = A->getValue();
1128 CheckerAndPackageList.split(CheckersAndPackages,
",");
1129 for (
const StringRef &CheckerOrPackage : CheckersAndPackages)
1135 for (
const auto *A : Args.filtered(OPT_analyzer_config)) {
1139 StringRef configList = A->getValue();
1141 configList.split(configVals,
",");
1142 for (
const auto &configVal : configVals) {
1144 std::tie(key, val) = configVal.split(
"=");
1147 diag::err_analyzer_config_no_value) << configVal;
1150 if (val.contains(
'=')) {
1152 diag::err_analyzer_config_multiple_values)
1161 Diags.
Report(diag::err_analyzer_config_unknown) << key;
1166 Opts.
Config[key] = std::string(val);
1176 for (
unsigned i = 0; i < Args.getNumInputArgStrings(); ++i) {
1179 os << Args.getArgString(i);
1186 StringRef OptionName, StringRef DefaultVal) {
1187 return Config.insert({OptionName, std::string(DefaultVal)}).first->second;
1192 StringRef &OptionField, StringRef Name,
1193 StringRef DefaultVal) {
1202 bool &OptionField, StringRef Name,
bool DefaultVal) {
1203 auto PossiblyInvalidVal =
1204 llvm::StringSwitch<std::optional<bool>>(
1207 .Case(
"false",
false)
1208 .Default(std::nullopt);
1210 if (!PossiblyInvalidVal) {
1212 Diags->
Report(diag::err_analyzer_config_invalid_input)
1213 << Name <<
"a boolean";
1215 OptionField = DefaultVal;
1217 OptionField = *PossiblyInvalidVal;
1222 unsigned &OptionField, StringRef Name,
1223 unsigned DefaultVal) {
1225 OptionField = DefaultVal;
1226 bool HasFailed =
getStringOption(Config, Name, std::to_string(DefaultVal))
1227 .getAsInteger(0, OptionField);
1228 if (Diags && HasFailed)
1229 Diags->
Report(diag::err_analyzer_config_invalid_input)
1230 << Name <<
"an unsigned";
1236 unsigned DefaultVal) {
1239 if (Parsed.has_value()) {
1240 OptionField = Parsed.value();
1243 if (Diags && !Parsed.has_value())
1244 Diags->
Report(diag::err_analyzer_config_invalid_input)
1245 << Name <<
"a positive";
1247 OptionField = DefaultVal;
1255#define ANALYZER_OPTION(TYPE, NAME, CMDFLAG, DESC, DEFAULT_VAL) \
1256 initOption(AnOpts.Config, Diags, AnOpts.NAME, CMDFLAG, DEFAULT_VAL);
1257#define ANALYZER_OPTION_DEPENDS_ON_USER_MODE(...)
1258#include "clang/StaticAnalyzer/Core/AnalyzerOptions.def"
1260 assert(AnOpts.UserMode ==
"shallow" || AnOpts.UserMode ==
"deep");
1261 const bool InShallowMode = AnOpts.UserMode ==
"shallow";
1263#define ANALYZER_OPTION(...)
1264#define ANALYZER_OPTION_DEPENDS_ON_USER_MODE(TYPE, NAME, CMDFLAG, DESC, \
1265 SHALLOW_VAL, DEEP_VAL) \
1266 initOption(AnOpts.Config, Diags, AnOpts.NAME, CMDFLAG, \
1267 InShallowMode ? SHALLOW_VAL : DEEP_VAL);
1268#include "clang/StaticAnalyzer/Core/AnalyzerOptions.def"
1275 if (!AnOpts.RawSilencedCheckersAndPackages.empty()) {
1276 std::vector<StringRef> Checkers =
1278 std::vector<StringRef> Packages =
1282 AnOpts.RawSilencedCheckersAndPackages.split(CheckersAndPackages,
";");
1284 for (
const StringRef &CheckerOrPackage : CheckersAndPackages) {
1286 bool IsChecker = CheckerOrPackage.contains(
'.');
1287 bool IsValidName = IsChecker
1288 ? llvm::is_contained(Checkers, CheckerOrPackage)
1289 : llvm::is_contained(Packages, CheckerOrPackage);
1292 Diags->
Report(diag::err_unknown_analyzer_checker_or_package)
1293 << CheckerOrPackage;
1303 if (AnOpts.ShouldTrackConditionsDebug && !AnOpts.ShouldTrackConditions)
1304 Diags->
Report(diag::err_analyzer_config_invalid_input)
1305 <<
"track-conditions-debug" <<
"'track-conditions' to also be enabled";
1313 if (
Remark.hasValidPattern()) {
1318 GenerateArg(Consumer, OPT_R_Joined, StringRef(
"no-") + Name);
1327 OptSpecifier OptEQ, StringRef Name) {
1330 auto InitializeResultPattern = [&Diags, &Args, &
Result](
const Arg *A,
1331 StringRef Pattern) {
1332 Result.Pattern = Pattern.str();
1334 std::string RegexError;
1335 Result.Regex = std::make_shared<llvm::Regex>(
Result.Pattern);
1336 if (!
Result.Regex->isValid(RegexError)) {
1337 Diags.
Report(diag::err_drv_optimization_remark_pattern)
1338 << RegexError << A->getAsString(Args);
1345 for (Arg *A : Args) {
1346 if (A->getOption().matches(OPT_R_Joined)) {
1347 StringRef
Value = A->getValue();
1351 else if (
Value ==
"everything")
1353 else if (
Value.split(
'-') == std::make_pair(StringRef(
"no"), Name))
1355 else if (
Value ==
"no-everything")
1365 InitializeResultPattern(A,
".*");
1367 }
else if (A->getOption().matches(OptEQ)) {
1369 if (!InitializeResultPattern(A, A->getValue()))
1378 const std::vector<std::string> &Levels,
1382 for (
const auto &Level : Levels) {
1384 llvm::StringSwitch<DiagnosticLevelMask>(Level)
1392 Diags.
Report(diag::err_drv_invalid_value) << FlagName << Level;
1400 const std::vector<std::string> &Sanitizers,
1402 for (
const auto &Sanitizer : Sanitizers) {
1405 Diags.
Report(diag::err_drv_invalid_value) << FlagName << Sanitizer;
1419 const std::vector<std::string> &Sanitizers,
1422 for (
const auto &Sanitizer : Sanitizers) {
1424 Diags.
Report(diag::err_drv_invalid_value) << FlagName << Sanitizer;
1433 llvm::SplitString(Bundle, BundleParts,
",");
1434 for (
const auto &B : BundleParts) {
1438 D.
Report(diag::err_drv_invalid_value) << FlagName << Bundle;
1452 llvm::raw_string_ostream OS(Buffer);
1453 llvm::interleave(BundleParts, OS, [&OS](StringRef Part) { OS << Part; },
",");
1459 const llvm::Triple &Triple) {
1460 assert(Triple.getArch() == llvm::Triple::aarch64);
1467 LangOpts.PointerAuthFunctionTypeDiscrimination ? Discrimination::Type
1468 : Discrimination::None);
1471 Key::ASDA,
LangOpts.PointerAuthVTPtrAddressDiscrimination,
1472 LangOpts.PointerAuthVTPtrTypeDiscrimination ? Discrimination::Type
1473 : Discrimination::None);
1475 if (
LangOpts.PointerAuthTypeInfoVTPtrDiscrimination)
1490 if (
LangOpts.PointerAuthInitFini) {
1492 Key::ASIA,
LangOpts.PointerAuthInitFiniAddressDiscrimination,
1502 if (
LangOpts.PointerAuthBlockDescriptorPointers)
1521 if (
LangOpts.PointerAuthObjcClassROPointers)
1534 const llvm::Triple &Triple,
1536 if (!LangOpts.PointerAuthCalls && !LangOpts.PointerAuthReturns &&
1537 !LangOpts.PointerAuthAuthTraps && !LangOpts.PointerAuthIndirectGotos &&
1538 !LangOpts.AArch64JumpTableHardening)
1544void CompilerInvocationBase::GenerateCodeGenArgs(
const CodeGenOptions &Opts,
1546 const llvm::Triple &T,
1547 const std::string &OutputFile,
1551 if (Opts.OptimizationLevel == 0)
1554 GenerateArg(Consumer, OPT_O, Twine(Opts.OptimizationLevel));
1556#define CODEGEN_OPTION_WITH_MARSHALLING(...) \
1557 GENERATE_OPTION_WITH_MARSHALLING(Consumer, __VA_ARGS__)
1558#include "clang/Options/Options.inc"
1559#undef CODEGEN_OPTION_WITH_MARSHALLING
1561 if (Opts.OptimizationLevel > 0) {
1565 GenerateArg(Consumer, OPT_finline_hint_functions);
1570 if (Opts.DirectAccessExternalData &&
LangOpts->PICLevel != 0)
1571 GenerateArg(Consumer, OPT_fdirect_access_external_data);
1572 else if (!Opts.DirectAccessExternalData &&
LangOpts->PICLevel == 0)
1573 GenerateArg(Consumer, OPT_fno_direct_access_external_data);
1575 std::optional<StringRef> DebugInfoVal;
1576 switch (Opts.DebugInfo) {
1577 case llvm::codegenoptions::DebugLineTablesOnly:
1578 DebugInfoVal =
"line-tables-only";
1580 case llvm::codegenoptions::DebugDirectivesOnly:
1581 DebugInfoVal =
"line-directives-only";
1583 case llvm::codegenoptions::DebugInfoConstructor:
1584 DebugInfoVal =
"constructor";
1586 case llvm::codegenoptions::LimitedDebugInfo:
1587 DebugInfoVal =
"limited";
1589 case llvm::codegenoptions::FullDebugInfo:
1590 DebugInfoVal =
"standalone";
1592 case llvm::codegenoptions::UnusedTypeInfo:
1593 DebugInfoVal =
"unused-types";
1595 case llvm::codegenoptions::NoDebugInfo:
1596 DebugInfoVal = std::nullopt;
1598 case llvm::codegenoptions::LocTrackingOnly:
1599 DebugInfoVal = std::nullopt;
1603 GenerateArg(Consumer, OPT_debug_info_kind_EQ, *DebugInfoVal);
1607 Prefix.first +
"=" + Prefix.second);
1610 GenerateArg(Consumer, OPT_fcoverage_prefix_map_EQ,
1611 Prefix.first +
"=" + Prefix.second);
1613 if (Opts.NewStructPathTBAA)
1616 if (Opts.OptimizeSize == 1)
1618 else if (Opts.OptimizeSize == 2)
1626 if (Opts.UnrollLoops && Opts.OptimizationLevel <= 1)
1628 else if (!Opts.UnrollLoops && Opts.OptimizationLevel > 1)
1631 if (Opts.InterchangeLoops)
1637 GenerateArg(Consumer, OPT_fexperimental_loop_fusion);
1642 if (Opts.DebugNameTable ==
1643 static_cast<unsigned>(llvm::DICompileUnit::DebugNameTableKind::GNU))
1645 else if (Opts.DebugNameTable ==
1646 static_cast<unsigned>(
1647 llvm::DICompileUnit::DebugNameTableKind::Default))
1650 if (Opts.DebugTemplateAlias)
1653 auto TNK = Opts.getDebugSimpleTemplateNames();
1654 if (TNK != llvm::codegenoptions::DebugTemplateNamesKind::Full) {
1655 if (TNK == llvm::codegenoptions::DebugTemplateNamesKind::Simple)
1656 GenerateArg(Consumer, OPT_gsimple_template_names_EQ,
"simple");
1657 else if (TNK == llvm::codegenoptions::DebugTemplateNamesKind::Mangled)
1658 GenerateArg(Consumer, OPT_gsimple_template_names_EQ,
"mangled");
1663 if (Opts.TimePasses) {
1664 if (Opts.TimePassesPerRun)
1665 GenerateArg(Consumer, OPT_ftime_report_EQ,
"per-pass-run");
1669 if (Opts.TimePassesJson)
1673 if (Opts.PrepareForLTO && !Opts.PrepareForThinLTO)
1676 if (Opts.PrepareForThinLTO)
1685 StringRef MemProfileBasename(
"memprof.profraw");
1706 std::string InstrBundle =
1708 if (!InstrBundle.empty())
1709 GenerateArg(Consumer, OPT_fxray_instrumentation_bundle, InstrBundle);
1712 if (Opts.CFProtectionReturn && Opts.CFProtectionBranch)
1713 GenerateArg(Consumer, OPT_fcf_protection_EQ,
"full");
1714 else if (Opts.CFProtectionReturn)
1715 GenerateArg(Consumer, OPT_fcf_protection_EQ,
"return");
1716 else if (Opts.CFProtectionBranch)
1717 GenerateArg(Consumer, OPT_fcf_protection_EQ,
"branch");
1719 if (Opts.CFProtectionBranch) {
1720 switch (Opts.getCFBranchLabelScheme()) {
1723#define CF_BRANCH_LABEL_SCHEME(Kind, FlagVal) \
1724 case CFBranchLabelSchemeKind::Kind: \
1725 GenerateArg(Consumer, OPT_mcf_branch_label_scheme_EQ, #FlagVal); \
1727#include "clang/Basic/CFProtectionOptions.def"
1731 if (Opts.FunctionReturnThunks)
1732 GenerateArg(Consumer, OPT_mfunction_return_EQ,
"thunk-extern");
1735 bool Builtint = F.LinkFlags == llvm::Linker::Flags::LinkOnlyNeeded &&
1736 F.PropagateAttrs && F.Internalize;
1738 Builtint ? OPT_mlink_builtin_bitcode : OPT_mlink_bitcode_file,
1742 if (Opts.EmulatedTLS)
1750 GenerateArg(Consumer, OPT_fdenormal_fp_math_f32_EQ,
1755 T.isPPC32() ? OPT_maix_struct_return : OPT_fpcc_struct_return;
1759 T.isPPC32() ? OPT_msvr4_struct_return : OPT_freg_struct_return;
1763 if (Opts.EnableAIXExtendedAltivecABI)
1766 if (Opts.XCOFFReadOnlyPointers)
1784 GenerateArg(Consumer, OPT_fdiagnostics_hotness_threshold_EQ,
1789 GenerateArg(Consumer, OPT_fdiagnostics_misexpect_tolerance_EQ,
1793 GenerateArg(Consumer, OPT_fsanitize_recover_EQ, Sanitizer);
1796 GenerateArg(Consumer, OPT_fsanitize_trap_EQ, Sanitizer);
1798 for (StringRef Sanitizer :
1800 GenerateArg(Consumer, OPT_fsanitize_merge_handlers_EQ, Sanitizer);
1802 SmallVector<std::string, 4> Values;
1804 for (std::string Sanitizer : Values)
1805 GenerateArg(Consumer, OPT_fsanitize_skip_hot_cutoff_EQ, Sanitizer);
1808 GenerateArg(Consumer, OPT_fallow_runtime_check_skip_hot_cutoff_EQ,
1812 for (StringRef Sanitizer :
1814 GenerateArg(Consumer, OPT_fsanitize_annotate_debug_info_EQ, Sanitizer);
1816 if (!Opts.EmitVersionIdentMetadata)
1819 switch (Opts.FiniteLoops) {
1830 if (Opts.StaticClosure)
1834bool CompilerInvocation::ParseCodeGenArgs(
CodeGenOptions &Opts, ArgList &Args,
1837 const llvm::Triple &T,
1838 const std::string &OutputFile,
1849 const LangOptions *
LangOpts = &LangOptsRef;
1851#define CODEGEN_OPTION_WITH_MARSHALLING(...) \
1852 PARSE_OPTION_WITH_MARSHALLING(Args, Diags, __VA_ARGS__)
1853#include "clang/Options/Options.inc"
1854#undef CODEGEN_OPTION_WITH_MARSHALLING
1858 if (Opts.OptimizationLevel == 0) {
1860 }
else if (
const Arg *A = Args.getLastArg(options::OPT_finline_functions,
1861 options::OPT_finline_hint_functions,
1862 options::OPT_fno_inline_functions,
1863 options::OPT_fno_inline)) {
1866 if (A->getOption().matches(options::OPT_finline_functions))
1868 else if (A->getOption().matches(options::OPT_finline_hint_functions))
1878 Opts.DirectAccessExternalData =
1879 Args.hasArg(OPT_fdirect_access_external_data) ||
1880 (!Args.hasArg(OPT_fno_direct_access_external_data) &&
1883 if (Arg *A = Args.getLastArg(OPT_debug_info_kind_EQ)) {
1885 llvm::StringSwitch<unsigned>(A->getValue())
1886 .Case(
"line-tables-only", llvm::codegenoptions::DebugLineTablesOnly)
1887 .Case(
"line-directives-only",
1888 llvm::codegenoptions::DebugDirectivesOnly)
1889 .Case(
"constructor", llvm::codegenoptions::DebugInfoConstructor)
1890 .Case(
"limited", llvm::codegenoptions::LimitedDebugInfo)
1891 .Case(
"standalone", llvm::codegenoptions::FullDebugInfo)
1892 .Case(
"unused-types", llvm::codegenoptions::UnusedTypeInfo)
1895 Diags.
Report(diag::err_drv_invalid_value) << A->getAsString(Args)
1898 Opts.setDebugInfo(
static_cast<llvm::codegenoptions::DebugInfoKind
>(Val));
1904 Args.getLastArg(OPT_fuse_ctor_homing, OPT_fno_use_ctor_homing)) {
1905 if (A->getOption().matches(OPT_fuse_ctor_homing) &&
1906 Opts.getDebugInfo() == llvm::codegenoptions::LimitedDebugInfo)
1907 Opts.setDebugInfo(llvm::codegenoptions::DebugInfoConstructor);
1908 if (A->getOption().matches(OPT_fno_use_ctor_homing) &&
1909 Opts.getDebugInfo() == llvm::codegenoptions::DebugInfoConstructor)
1910 Opts.setDebugInfo(llvm::codegenoptions::LimitedDebugInfo);
1913 for (
const auto &Arg : Args.getAllArgValues(OPT_fdebug_prefix_map_EQ)) {
1914 auto Split = StringRef(Arg).split(
'=');
1918 for (
const auto &Arg : Args.getAllArgValues(OPT_fcoverage_prefix_map_EQ)) {
1919 auto Split = StringRef(Arg).split(
'=');
1923 const llvm::Triple::ArchType DebugEntryValueArchs[] = {
1924 llvm::Triple::x86, llvm::Triple::x86_64, llvm::Triple::aarch64,
1925 llvm::Triple::arm, llvm::Triple::armeb, llvm::Triple::mips,
1926 llvm::Triple::mipsel, llvm::Triple::mips64, llvm::Triple::mips64el,
1927 llvm::Triple::riscv32, llvm::Triple::riscv64};
1930 llvm::is_contained(DebugEntryValueArchs, T.getArch()))
1931 Opts.EmitCallSiteInfo =
true;
1934 Diags.
Report(diag::warn_ignoring_verify_debuginfo_preserve_export)
1939 Opts.NewStructPathTBAA = !Args.hasArg(OPT_no_struct_path_tbaa) &&
1940 Args.hasArg(OPT_new_struct_path_tbaa);
1942 Opts.SimplifyLibCalls = !
LangOpts->NoBuiltin;
1943 if (Opts.SimplifyLibCalls)
1946 Args.hasFlag(OPT_funroll_loops, OPT_fno_unroll_loops,
1947 (Opts.OptimizationLevel > 1));
1948 Opts.InterchangeLoops =
1949 Args.hasFlag(OPT_floop_interchange, OPT_fno_loop_interchange,
false);
1950 Opts.FuseLoops = Args.hasFlag(OPT_fexperimental_loop_fusion,
1951 OPT_fno_experimental_loop_fusion,
false);
1953 std::string(Args.getLastArgValue(OPT_fbinutils_version_EQ));
1955 Opts.DebugTemplateAlias = Args.hasArg(OPT_gtemplate_alias);
1957 Opts.DebugNameTable =
static_cast<unsigned>(
1958 Args.hasArg(OPT_ggnu_pubnames)
1959 ? llvm::DICompileUnit::DebugNameTableKind::GNU
1960 : Args.hasArg(OPT_gpubnames)
1961 ? llvm::DICompileUnit::DebugNameTableKind::Default
1962 : llvm::DICompileUnit::DebugNameTableKind::None);
1963 if (
const Arg *A = Args.getLastArg(OPT_gsimple_template_names_EQ)) {
1964 StringRef
Value = A->getValue();
1966 Diags.
Report(diag::err_drv_unsupported_option_argument)
1967 << A->getSpelling() << A->getValue();
1968 Opts.setDebugSimpleTemplateNames(
1969 StringRef(A->getValue()) ==
"simple"
1970 ? llvm::codegenoptions::DebugTemplateNamesKind::Simple
1971 : llvm::codegenoptions::DebugTemplateNamesKind::Mangled);
1974 if (Args.hasArg(OPT_ftime_report, OPT_ftime_report_EQ, OPT_ftime_report_json,
1975 OPT_stats_file_timers)) {
1976 Opts.TimePasses =
true;
1979 if (
const Arg *EQ = Args.getLastArg(OPT_ftime_report_EQ)) {
1980 StringRef Val =
EQ->getValue();
1981 if (Val ==
"per-pass")
1982 Opts.TimePassesPerRun =
false;
1983 else if (Val ==
"per-pass-run")
1984 Opts.TimePassesPerRun =
true;
1986 Diags.
Report(diag::err_drv_invalid_value)
1987 <<
EQ->getAsString(Args) <<
EQ->getValue();
1990 if (Args.getLastArg(OPT_ftime_report_json))
1991 Opts.TimePassesJson =
true;
1994 Opts.PrepareForLTO =
false;
1995 Opts.PrepareForThinLTO =
false;
1996 if (Arg *A = Args.getLastArg(OPT_flto_EQ)) {
1997 Opts.PrepareForLTO =
true;
1998 StringRef S = A->getValue();
2000 Opts.PrepareForThinLTO =
true;
2001 else if (S !=
"full")
2002 Diags.
Report(diag::err_drv_invalid_value) << A->getAsString(Args) << S;
2003 if (Args.hasArg(OPT_funified_lto))
2004 Opts.PrepareForThinLTO =
true;
2006 if (Arg *A = Args.getLastArg(OPT_fthinlto_index_EQ)) {
2008 Diags.
Report(diag::err_drv_argument_only_allowed_with)
2009 << A->getAsString(Args) <<
"-x ir";
2011 std::string(Args.getLastArgValue(OPT_fthinlto_index_EQ));
2013 if (Arg *A = Args.getLastArg(OPT_save_temps_EQ))
2015 llvm::StringSwitch<std::string>(A->getValue())
2016 .Case(
"obj", OutputFile)
2017 .Default(llvm::sys::path::filename(OutputFile).str());
2020 const char *MemProfileBasename =
"memprof.profraw";
2021 if (Args.hasArg(OPT_fmemory_profile_EQ)) {
2022 SmallString<128> Path(Args.getLastArgValue(OPT_fmemory_profile_EQ));
2023 llvm::sys::path::append(Path, MemProfileBasename);
2025 }
else if (Args.hasArg(OPT_fmemory_profile))
2029 if (Args.hasArg(OPT_coverage_version_EQ)) {
2030 StringRef CoverageVersion = Args.getLastArgValue(OPT_coverage_version_EQ);
2031 if (CoverageVersion.size() != 4) {
2032 Diags.
Report(diag::err_drv_invalid_value)
2033 << Args.getLastArg(OPT_coverage_version_EQ)->getAsString(Args)
2043 for (
const auto &A : Args) {
2045 if (A->getOption().getID() == options::OPT_o ||
2046 A->getOption().getID() == options::OPT_INPUT ||
2047 A->getOption().getID() == options::OPT_x ||
2048 A->getOption().getID() == options::OPT_fembed_bitcode ||
2049 A->getOption().matches(options::OPT_W_Group))
2052 A->render(Args, ASL);
2053 for (
const auto &arg : ASL) {
2054 StringRef ArgStr(arg);
2055 llvm::append_range(Opts.
CmdArgs, ArgStr);
2061 auto XRayInstrBundles =
2062 Args.getAllArgValues(OPT_fxray_instrumentation_bundle);
2063 if (XRayInstrBundles.empty())
2066 for (
const auto &A : XRayInstrBundles)
2070 if (
const Arg *A = Args.getLastArg(OPT_fcf_protection_EQ)) {
2071 StringRef Name = A->getValue();
2072 if (Name ==
"full") {
2073 Opts.CFProtectionReturn = 1;
2074 Opts.CFProtectionBranch = 1;
2075 }
else if (Name ==
"return")
2076 Opts.CFProtectionReturn = 1;
2077 else if (Name ==
"branch")
2078 Opts.CFProtectionBranch = 1;
2079 else if (Name !=
"none")
2080 Diags.
Report(diag::err_drv_invalid_value) << A->getAsString(Args) << Name;
2083 if (Opts.CFProtectionBranch && T.isRISCV()) {
2084 if (
const Arg *A = Args.getLastArg(OPT_mcf_branch_label_scheme_EQ)) {
2086 llvm::StringSwitch<CFBranchLabelSchemeKind>(A->getValue())
2087#define CF_BRANCH_LABEL_SCHEME(Kind, FlagVal) \
2088 .Case(#FlagVal, CFBranchLabelSchemeKind::Kind)
2089#include "clang/Basic/CFProtectionOptions.def"
2092 Opts.setCFBranchLabelScheme(Scheme);
2094 Diags.
Report(diag::err_drv_invalid_value)
2095 << A->getAsString(Args) << A->getValue();
2099 if (
const Arg *A = Args.getLastArg(OPT_mfunction_return_EQ)) {
2100 auto Val = llvm::StringSwitch<llvm::FunctionReturnThunksKind>(A->getValue())
2101 .Case(
"keep", llvm::FunctionReturnThunksKind::Keep)
2102 .Case(
"thunk-extern", llvm::FunctionReturnThunksKind::Extern)
2103 .Default(llvm::FunctionReturnThunksKind::Invalid);
2106 Diags.
Report(diag::err_drv_argument_not_allowed_with)
2107 << A->getSpelling() << T.getTriple();
2108 else if (Val == llvm::FunctionReturnThunksKind::Invalid)
2109 Diags.
Report(diag::err_drv_invalid_value)
2110 << A->getAsString(Args) << A->getValue();
2111 else if (Val == llvm::FunctionReturnThunksKind::Extern &&
2112 Args.getLastArgValue(OPT_mcmodel_EQ) ==
"large")
2113 Diags.
Report(diag::err_drv_argument_not_allowed_with)
2114 << A->getAsString(Args)
2115 << Args.getLastArg(OPT_mcmodel_EQ)->getAsString(Args);
2117 Opts.FunctionReturnThunks =
static_cast<unsigned>(Val);
2121 Args.filtered(OPT_mlink_bitcode_file, OPT_mlink_builtin_bitcode)) {
2122 CodeGenOptions::BitcodeFileToLink F;
2124 if (A->getOption().matches(OPT_mlink_builtin_bitcode)) {
2125 F.
LinkFlags = llvm::Linker::Flags::LinkOnlyNeeded;
2134 if (Arg *A = Args.getLastArg(OPT_fdenormal_fp_math_EQ)) {
2135 StringRef Val = A->getValue();
2139 Diags.
Report(diag::err_drv_invalid_value) << A->getAsString(Args) << Val;
2142 if (Arg *A = Args.getLastArg(OPT_fdenormal_fp_math_f32_EQ)) {
2143 StringRef Val = A->getValue();
2146 Diags.
Report(diag::err_drv_invalid_value) << A->getAsString(Args) << Val;
2152 Args.getLastArg(OPT_fpcc_struct_return, OPT_freg_struct_return,
2153 OPT_maix_struct_return, OPT_msvr4_struct_return)) {
2157 Diags.
Report(diag::err_drv_unsupported_opt_for_target)
2158 << A->getSpelling() << T.str();
2160 const Option &O = A->getOption();
2161 if (O.matches(OPT_fpcc_struct_return) ||
2162 O.matches(OPT_maix_struct_return)) {
2165 assert(O.matches(OPT_freg_struct_return) ||
2166 O.matches(OPT_msvr4_struct_return));
2171 if (Arg *A = Args.getLastArg(OPT_mxcoff_roptr)) {
2173 Diags.
Report(diag::err_drv_unsupported_opt_for_target)
2174 << A->getSpelling() << T.str();
2184 if (!Args.hasFlag(OPT_fdata_sections, OPT_fno_data_sections,
false))
2185 Diags.
Report(diag::err_roptr_requires_data_sections);
2187 Opts.XCOFFReadOnlyPointers =
true;
2190 if (Arg *A = Args.getLastArg(OPT_mabi_EQ_quadword_atomics)) {
2191 if (!T.isOSAIX() || T.isPPC32())
2192 Diags.
Report(diag::err_drv_unsupported_opt_for_target)
2193 << A->getSpelling() << T.str();
2196 bool NeedLocTracking =
false;
2199 NeedLocTracking =
true;
2201 if (Arg *A = Args.getLastArg(OPT_opt_record_passes)) {
2203 NeedLocTracking =
true;
2206 if (Arg *A = Args.getLastArg(OPT_opt_record_format)) {
2208 NeedLocTracking =
true;
2218 Diags, Args, OPT_Rpass_analysis_EQ,
"pass-analysis");
2228 if (Opts.DiagnosticsWithHotness && !UsingProfile &&
2231 Diags.
Report(diag::warn_drv_diagnostics_hotness_requires_pgo)
2232 <<
"-fdiagnostics-show-hotness";
2236 Args.getLastArg(options::OPT_fdiagnostics_hotness_threshold_EQ)) {
2238 llvm::remarks::parseHotnessThresholdOption(
arg->getValue());
2241 Diags.
Report(diag::err_drv_invalid_diagnotics_hotness_threshold)
2242 <<
"-fdiagnostics-hotness-threshold=";
2248 Diags.
Report(diag::warn_drv_diagnostics_hotness_requires_pgo)
2249 <<
"-fdiagnostics-hotness-threshold=";
2254 Args.getLastArg(options::OPT_fdiagnostics_misexpect_tolerance_EQ)) {
2258 Diags.
Report(diag::err_drv_invalid_diagnotics_misexpect_tolerance)
2259 <<
"-fdiagnostics-misexpect-tolerance=";
2265 Diags.
Report(diag::warn_drv_diagnostics_misexpect_requires_pgo)
2266 <<
"-fdiagnostics-misexpect-tolerance=";
2273 if (UsingSampleProfile)
2274 NeedLocTracking =
true;
2277 NeedLocTracking =
true;
2281 if (NeedLocTracking &&
2282 Opts.getDebugInfo() == llvm::codegenoptions::NoDebugInfo)
2283 Opts.setDebugInfo(llvm::codegenoptions::LocTrackingOnly);
2288 Args.getAllArgValues(OPT_fsanitize_recover_EQ), Diags,
2291 Args.getAllArgValues(OPT_fsanitize_trap_EQ), Diags,
2294 Args.getAllArgValues(OPT_fsanitize_merge_handlers_EQ),
2299 "-fsanitize-skip-hot-cutoff=",
2300 Args.getAllArgValues(OPT_fsanitize_skip_hot_cutoff_EQ), Diags);
2303 "-fsanitize-annotate-debug-info=",
2304 Args.getAllArgValues(OPT_fsanitize_annotate_debug_info_EQ), Diags,
2308 Args.getLastArgValue(OPT_fallow_runtime_check_skip_hot_cutoff_EQ);
2311 if (
V.getAsDouble(A) || A < 0.0 || A > 1.0) {
2312 Diags.
Report(diag::err_drv_invalid_value)
2313 <<
"-fallow-runtime-check-skip-hot-cutoff=" <<
V;
2319 Opts.EmitVersionIdentMetadata = Args.hasFlag(OPT_Qy, OPT_Qn,
true);
2324 if (Args.hasArg(options::OPT_ffinite_loops))
2326 else if (Args.hasArg(options::OPT_fno_finite_loops))
2329 Opts.EmitIEEENaNCompliantInsts = Args.hasFlag(
2330 options::OPT_mamdgpu_ieee, options::OPT_mno_amdgpu_ieee,
true);
2331 if (!Opts.EmitIEEENaNCompliantInsts && !LangOptsRef.NoHonorNaNs)
2332 Diags.
Report(diag::err_drv_amdgpu_ieee_without_no_honor_nans);
2334 Opts.StaticClosure = Args.hasArg(options::OPT_static_libclosure);
2340 Diags.
Report(diag::err_drv_invalid_escaped_command_line)
2341 << llvm::toString(ParsedArgs.takeError());
2352#define DEPENDENCY_OUTPUT_OPTION_WITH_MARSHALLING(...) \
2353 GENERATE_OPTION_WITH_MARSHALLING(Consumer, __VA_ARGS__)
2354#include "clang/Options/Options.inc"
2355#undef DEPENDENCY_OUTPUT_OPTION_WITH_MARSHALLING
2360 for (
const auto &Dep : Opts.
ExtraDeps) {
2361 switch (Dep.second) {
2374 GenerateArg(Consumer, OPT_fdepfile_entry, Dep.first);
2383 bool ShowLineMarkers) {
2387#define DEPENDENCY_OUTPUT_OPTION_WITH_MARSHALLING(...) \
2388 PARSE_OPTION_WITH_MARSHALLING(Args, Diags, __VA_ARGS__)
2389#include "clang/Options/Options.inc"
2390#undef DEPENDENCY_OUTPUT_OPTION_WITH_MARSHALLING
2392 if (Args.hasArg(OPT_show_includes)) {
2407 if (!Args.hasArg(OPT_fno_sanitize_ignorelist)) {
2408 for (
const auto *A : Args.filtered(OPT_fsanitize_ignorelist_EQ)) {
2409 StringRef Val = A->getValue();
2410 if (!Val.contains(
'='))
2414 for (
const auto *A : Args.filtered(OPT_fsanitize_system_ignorelist_EQ)) {
2415 StringRef Val = A->getValue();
2416 if (!Val.contains(
'='))
2423 for (
const auto &Filename : Args.getAllArgValues(OPT_fprofile_list_EQ))
2427 for (
const auto *A : Args.filtered(OPT_fdepfile_entry))
2431 for (
const auto *A : Args.filtered(OPT_fmodule_file)) {
2432 StringRef Val = A->getValue();
2433 if (!Val.contains(
'='))
2441 if (Args.hasArg(OPT_header_include_format_EQ))
2442 Diags.
Report(diag::err_drv_print_header_cc1_invalid_combination)
2446 Diags.
Report(diag::err_drv_print_header_cc1_invalid_filtering)
2450 if (Args.hasArg(OPT_header_include_filtering_EQ))
2451 Diags.
Report(diag::err_drv_print_header_cc1_invalid_combination)
2455 Diags.
Report(diag::err_drv_print_header_cc1_invalid_format)
2463 bool DefaultColor) {
2470 for (
auto *A : Args) {
2471 const Option &O = A->getOption();
2472 if (O.matches(options::OPT_fcolor_diagnostics)) {
2474 }
else if (O.matches(options::OPT_fno_color_diagnostics)) {
2476 }
else if (O.matches(options::OPT_fdiagnostics_color_EQ)) {
2477 StringRef
Value(A->getValue());
2478 if (
Value ==
"always")
2480 else if (
Value ==
"never")
2482 else if (
Value ==
"auto")
2492 for (
const auto &Prefix : VerifyPrefixes) {
2495 auto BadChar = llvm::find_if(Prefix, [](
char C) {
2498 if (BadChar != Prefix.end() || !
isLetter(Prefix[0])) {
2500 Diags.
Report(diag::err_drv_invalid_value) <<
"-verify=" << Prefix;
2501 Diags.
Report(diag::note_drv_verify_prefix_spelling);
2511#define FILE_SYSTEM_OPTION_WITH_MARSHALLING(...) \
2512 GENERATE_OPTION_WITH_MARSHALLING(Consumer, __VA_ARGS__)
2513#include "clang/Options/Options.inc"
2514#undef FILE_SYSTEM_OPTION_WITH_MARSHALLING
2523#define FILE_SYSTEM_OPTION_WITH_MARSHALLING(...) \
2524 PARSE_OPTION_WITH_MARSHALLING(Args, Diags, __VA_ARGS__)
2525#include "clang/Options/Options.inc"
2526#undef FILE_SYSTEM_OPTION_WITH_MARSHALLING
2534#define MIGRATOR_OPTION_WITH_MARSHALLING(...) \
2535 GENERATE_OPTION_WITH_MARSHALLING(Consumer, __VA_ARGS__)
2536#include "clang/Options/Options.inc"
2537#undef MIGRATOR_OPTION_WITH_MARSHALLING
2546#define MIGRATOR_OPTION_WITH_MARSHALLING(...) \
2547 PARSE_OPTION_WITH_MARSHALLING(Args, Diags, __VA_ARGS__)
2548#include "clang/Options/Options.inc"
2549#undef MIGRATOR_OPTION_WITH_MARSHALLING
2554void CompilerInvocationBase::GenerateDiagnosticArgs(
2556 bool DefaultDiagColor) {
2558#define DIAG_OPTION_WITH_MARSHALLING(...) \
2559 GENERATE_OPTION_WITH_MARSHALLING(Consumer, __VA_ARGS__)
2560#include "clang/Options/Options.inc"
2561#undef DIAG_OPTION_WITH_MARSHALLING
2564 GenerateArg(Consumer, OPT_diagnostic_serialized_file,
2567 switch (Opts.getShowColors()) {
2578 if (Opts.VerifyDiagnostics &&
2583 if (Prefix !=
"expected")
2586 if (Opts.VerifyDirectives) {
2594 GenerateArg(Consumer, OPT_verify_ignore_unexpected);
2597 GenerateArg(Consumer, OPT_verify_ignore_unexpected_EQ,
"note");
2599 GenerateArg(Consumer, OPT_verify_ignore_unexpected_EQ,
"remark");
2601 GenerateArg(Consumer, OPT_verify_ignore_unexpected_EQ,
"warning");
2603 GenerateArg(Consumer, OPT_verify_ignore_unexpected_EQ,
"error");
2608 if (
Warning ==
"undef-prefix")
2611 if (
Warning ==
"invalid-constexpr" ||
Warning ==
"no-invalid-constexpr")
2613 Consumer(StringRef(
"-W") +
Warning);
2619 StringRef IgnoredRemarks[] = {
"pass",
"no-pass",
2620 "pass-analysis",
"no-pass-analysis",
2621 "pass-missed",
"no-pass-missed"};
2622 if (llvm::is_contained(IgnoredRemarks,
Remark))
2625 Consumer(StringRef(
"-R") +
Remark);
2629 GenerateArg(Consumer, OPT_warning_suppression_mappings_EQ,
2634std::unique_ptr<DiagnosticOptions>
2636 auto DiagOpts = std::make_unique<DiagnosticOptions>();
2637 unsigned MissingArgIndex, MissingArgCount;
2639 Argv.slice(1), MissingArgIndex, MissingArgCount);
2641 bool ShowColors =
true;
2642 if (std::optional<std::string> NoColor =
2643 llvm::sys::Process::GetEnv(
"NO_COLOR");
2644 NoColor && !NoColor->empty()) {
2659 bool DefaultDiagColor) {
2660 std::optional<DiagnosticOptions> IgnoringDiagOpts;
2661 std::optional<DiagnosticsEngine> IgnoringDiags;
2663 IgnoringDiagOpts.emplace();
2666 Diags = &*IgnoringDiags;
2675#define DIAG_OPTION_WITH_MARSHALLING(...) \
2676 PARSE_OPTION_WITH_MARSHALLING(Args, *Diags, __VA_ARGS__)
2677#include "clang/Options/Options.inc"
2678#undef DIAG_OPTION_WITH_MARSHALLING
2680 llvm::sys::Process::UseANSIEscapeCodes(Opts.UseANSIEscapeCodes);
2683 Args.getLastArg(OPT_diagnostic_serialized_file, OPT__serialize_diags))
2687 Opts.VerifyDiagnostics = Args.hasArg(OPT_verify) || Args.hasArg(OPT_verify_EQ);
2688 Opts.VerifyDirectives = Args.hasArg(OPT_verify_directives);
2690 if (Args.hasArg(OPT_verify))
2695 Opts.VerifyDiagnostics =
false;
2700 "-verify-ignore-unexpected=",
2701 Args.getAllArgValues(OPT_verify_ignore_unexpected_EQ), *Diags, DiagMask);
2702 if (Args.hasArg(OPT_verify_ignore_unexpected))
2704 Opts.setVerifyIgnoreUnexpected(DiagMask);
2706 Diags->
Report(diag::warn_ignoring_ftabstop_value)
2711 if (
const Arg *A = Args.getLastArg(OPT_warning_suppression_mappings_EQ))
2722 unsigned DefaultOpt = 0;
2725 !Args.hasArg(OPT_cl_opt_disable))
2728 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) {
2729 if (A->getOption().matches(options::OPT_O0))
2732 if (A->getOption().matches(options::OPT_Ofast))
2735 assert(A->getOption().matches(options::OPT_O));
2737 StringRef S(A->getValue());
2738 if (S ==
"s" || S ==
"z")
2747 unsigned MaxOptLevel = 3;
2748 if (DefaultOpt > MaxOptLevel) {
2751 Diags.
Report(diag::warn_drv_optimization_value)
2752 << Args.getLastArg(OPT_O)->getAsString(Args) <<
"-O" << MaxOptLevel;
2753 DefaultOpt = MaxOptLevel;
2760 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) {
2761 if (A->getOption().matches(options::OPT_O)) {
2762 switch (A->getValue()[0]) {
2780 std::string &BlockName,
2781 unsigned &MajorVersion,
2782 unsigned &MinorVersion,
2784 std::string &UserInfo) {
2786 Arg.split(Args,
':', 5);
2787 if (Args.size() < 5)
2790 BlockName = std::string(Args[0]);
2791 if (Args[1].getAsInteger(10, MajorVersion))
return true;
2792 if (Args[2].getAsInteger(10, MinorVersion))
return true;
2793 if (Args[3].getAsInteger(2, Hashed))
return true;
2794 if (Args.size() > 4)
2795 UserInfo = std::string(Args[4]);
2804 static const std::pair<frontend::ActionKind, unsigned> Table[] = {
2835 OPT_emit_reduced_module_interface},
2852 OPT_print_dependency_directives_minimized_source},
2859static std::optional<frontend::ActionKind>
2862 if (ActionOpt.second == Opt.getID())
2863 return ActionOpt.first;
2865 return std::nullopt;
2869static std::optional<OptSpecifier>
2872 if (ActionOpt.first == ProgramAction)
2873 return OptSpecifier(ActionOpt.second);
2875 return std::nullopt;
2881#define FRONTEND_OPTION_WITH_MARSHALLING(...) \
2882 GENERATE_OPTION_WITH_MARSHALLING(Consumer, __VA_ARGS__)
2883#include "clang/Options/Options.inc"
2884#undef FRONTEND_OPTION_WITH_MARSHALLING
2886 std::optional<OptSpecifier> ProgramActionOpt =
2894 if (!ProgramActionOpt) {
2897 "Frontend action without option.");
2898 GenerateProgramAction = [&]() {
2905 GenerateProgramAction = [&]() {
2913 llvm_unreachable(
"Default AST dump format.");
2920 GenerateArg(Consumer, OPT_ast_dump_all_EQ, Format);
2933 GenerateProgramAction = [&]() {
2938 GenerateProgramAction();
2940 for (
const auto &PluginArgs : Opts.
PluginArgs) {
2942 for (
const auto &PluginArg : PluginArgs.second)
2944 Opt.getPrefix() + Opt.getName() + PluginArgs.first,
2945 Opt.getKind(), 0, PluginArg);
2949 if (
auto *TestExt = dyn_cast_or_null<TestModuleFileExtension>(Ext.get()))
2950 GenerateArg(Consumer, OPT_ftest_module_file_extension_EQ, TestExt->str());
2956 for (
const auto &Plugin : Opts.
Plugins)
2962 GenerateArg(Consumer, OPT_fmodule_file, ModuleFile);
2975 StringRef HeaderUnit =
"";
2980 HeaderUnit =
"-user";
2983 HeaderUnit =
"-system";
2986 HeaderUnit =
"-header-unit";
2989 StringRef Header = IsHeader ?
"-header" :
"";
3012 Lang =
"objective-c";
3015 Lang =
"objective-c++";
3018 Lang =
"assembler-with-cpp";
3022 "Generating -x argument for unknown language (not precompiled).");
3037 Lang + HeaderUnit + Header +
ModuleMap + Preprocessed);
3041 for (
const auto &Input : Opts.
Inputs)
3042 Consumer(Input.getFile());
3051#define FRONTEND_OPTION_WITH_MARSHALLING(...) \
3052 PARSE_OPTION_WITH_MARSHALLING(Args, Diags, __VA_ARGS__)
3053#include "clang/Options/Options.inc"
3054#undef FRONTEND_OPTION_WITH_MARSHALLING
3057 if (
const Arg *A = Args.getLastArg(OPT_Action_Group)) {
3058 OptSpecifier Opt = OptSpecifier(A->getOption().getID());
3060 assert(ProgramAction &&
"Option specifier not in Action_Group.");
3063 (Opt == OPT_ast_dump_all_EQ || Opt == OPT_ast_dump_EQ)) {
3064 unsigned Val = llvm::StringSwitch<unsigned>(A->getValue())
3067 .Default(std::numeric_limits<unsigned>::max());
3069 if (Val != std::numeric_limits<unsigned>::max())
3072 Diags.
Report(diag::err_drv_invalid_value)
3073 << A->getAsString(Args) << A->getValue();
3083 Args.hasArg(OPT_interface_stub_version_EQ)
3084 ? Args.getLastArgValue(OPT_interface_stub_version_EQ)
3086 if (ArgStr ==
"experimental-yaml-elf-v1" ||
3087 ArgStr ==
"experimental-ifs-v1" || ArgStr ==
"experimental-ifs-v2" ||
3088 ArgStr ==
"experimental-tapi-elf-v1") {
3089 std::string ErrorMessage =
3090 "Invalid interface stub format: " + ArgStr.str() +
3092 Diags.
Report(diag::err_drv_invalid_value)
3093 <<
"Must specify a valid interface stub format type, ie: "
3094 "-interface-stub-version=ifs-v1"
3097 }
else if (!ArgStr.starts_with(
"ifs-")) {
3098 std::string ErrorMessage =
3099 "Invalid interface stub format: " + ArgStr.str() +
".";
3100 Diags.
Report(diag::err_drv_invalid_value)
3101 <<
"Must specify a valid interface stub format type, ie: "
3102 "-interface-stub-version=ifs-v1"
3117 if (!A->getSpelling().starts_with(
"-ast-dump")) {
3118 const Arg *SavedAction =
nullptr;
3119 for (
const Arg *AA :
3120 Args.filtered(OPT_Action_Group, OPT_main_file_name)) {
3121 if (AA->getOption().matches(OPT_main_file_name)) {
3122 SavedAction =
nullptr;
3123 }
else if (!SavedAction) {
3126 if (!A->getOption().matches(OPT_ast_dump_EQ))
3127 Diags.
Report(diag::err_fe_invalid_multiple_actions)
3128 << SavedAction->getSpelling() << A->getSpelling();
3135 if (
const Arg* A = Args.getLastArg(OPT_plugin)) {
3136 Opts.
Plugins.emplace_back(A->getValue(0));
3140 for (
const auto *AA : Args.filtered(OPT_plugin_arg))
3141 Opts.
PluginArgs[AA->getValue(0)].emplace_back(AA->getValue(1));
3143 for (
const std::string &Arg :
3144 Args.getAllArgValues(OPT_ftest_module_file_extension_EQ)) {
3145 std::string BlockName;
3146 unsigned MajorVersion;
3147 unsigned MinorVersion;
3149 std::string UserInfo;
3151 MinorVersion, Hashed, UserInfo)) {
3152 Diags.
Report(diag::err_test_module_file_extension_format) << Arg;
3159 std::make_shared<TestModuleFileExtension>(
3160 BlockName, MajorVersion, MinorVersion, Hashed, UserInfo));
3163 if (
const Arg *A = Args.getLastArg(OPT_code_completion_at)) {
3167 Diags.
Report(diag::err_drv_invalid_value)
3168 << A->getAsString(Args) << A->getValue();
3169 Diags.
Report(diag::note_command_line_code_loc_requirement);
3173 Opts.
Plugins = Args.getAllArgValues(OPT_load);
3174 Opts.
ASTDumpDecls = Args.hasArg(OPT_ast_dump, OPT_ast_dump_EQ);
3175 Opts.
ASTDumpAll = Args.hasArg(OPT_ast_dump_all, OPT_ast_dump_all_EQ);
3177 for (
const auto *A : Args.filtered(OPT_fmodule_file)) {
3178 StringRef Val = A->getValue();
3179 if (!Val.contains(
'='))
3184 Diags.
Report(diag::err_drv_argument_only_allowed_with) <<
"-fsystem-module"
3186 if (Args.hasArg(OPT_fclangir) || Args.hasArg(OPT_emit_cir))
3190 if (Args.hasArg(OPT_clangir_disable_passes))
3193 if (Args.hasArg(OPT_clangir_disable_verifier))
3196 if (Args.hasArg(OPT_clangir_lib_opt) || Args.hasArg(OPT_clangir_lib_opt_EQ))
3200 if (Args.hasArg(OPT_aux_target_cpu))
3201 Opts.
AuxTargetCPU = std::string(Args.getLastArgValue(OPT_aux_target_cpu));
3202 if (Args.hasArg(OPT_aux_target_feature))
3206 if (
const Arg *A = Args.getLastArg(OPT_x)) {
3207 StringRef XValue = A->getValue();
3212 bool Preprocessed = XValue.consume_back(
"-cpp-output");
3213 bool ModuleMap = XValue.consume_back(
"-module-map");
3216 XValue !=
"precompiled-header" && XValue.consume_back(
"-header");
3222 if (IsHeader || Preprocessed) {
3223 if (XValue.consume_back(
"-header-unit"))
3225 else if (XValue.consume_back(
"-system"))
3227 else if (XValue.consume_back(
"-user"))
3233 IsHeaderFile = IsHeader && !Preprocessed && !
ModuleMap &&
3237 DashX = llvm::StringSwitch<InputKind>(XValue)
3253 DashX = llvm::StringSwitch<InputKind>(XValue)
3261 DashX = llvm::StringSwitch<InputKind>(XValue)
3264 .Cases({
"ast",
"pcm",
"precompiled-header"},
3271 Diags.
Report(diag::err_drv_invalid_value)
3272 << A->getAsString(Args) << A->getValue();
3279 IsHeaderFile =
true;
3280 }
else if (IsHeaderFile)
3287 std::vector<std::string> Inputs = Args.getAllArgValues(OPT_INPUT);
3290 Inputs.push_back(
"-");
3294 Diags.
Report(diag::err_drv_header_unit_extra_inputs) << Inputs[1];
3296 for (
unsigned i = 0, e = Inputs.size(); i != e; ++i) {
3300 StringRef(Inputs[i]).rsplit(
'.').second);
3309 bool IsSystem =
false;
3318 Opts.
Inputs.emplace_back(std::move(Inputs[i]), IK, IsSystem);
3335#define HEADER_SEARCH_OPTION_WITH_MARSHALLING(...) \
3336 GENERATE_OPTION_WITH_MARSHALLING(Consumer, __VA_ARGS__)
3337#include "clang/Options/Options.inc"
3338#undef HEADER_SEARCH_OPTION_WITH_MARSHALLING
3347 GenerateArg(Consumer, OPT_fprebuilt_module_path, Path);
3354 std::optional<bool> IsFramework,
3355 std::optional<bool> IgnoreSysRoot) {
3356 return llvm::is_contained(Groups, Entry.
Group) &&
3357 (!IsFramework || (Entry.
IsFramework == *IsFramework)) &&
3358 (!IgnoreSysRoot || (Entry.
IgnoreSysRoot == *IgnoreSysRoot));
3367 OptSpecifier Opt = [It, Matches]() {
3372 llvm_unreachable(
"Unexpected HeaderSearchOptions::Entry.");
3386 It->Group ==
frontend::After ? OPT_iwithprefix : OPT_iwithprefixbefore;
3393 for (; It < End && Matches(*It, {
frontend::After},
false,
true); ++It)
3399 GenerateArg(Consumer, It->IgnoreSysRoot ? OPT_isystem : OPT_iwithsysroot,
3404 GenerateArg(Consumer, OPT_iframeworkwithsysroot, It->Path);
3412 GenerateArg(Consumer, OPT_objc_isystem, It->Path);
3414 GenerateArg(Consumer, OPT_objcxx_isystem, It->Path);
3424 ? OPT_internal_isystem
3425 : OPT_internal_externc_isystem;
3429 GenerateArg(Consumer, OPT_internal_iframework, It->Path);
3431 assert(It == End &&
"Unhandled HeaderSearchOption::Entry.");
3435 OptSpecifier Opt = P.IsSystemHeader ? OPT_system_header_prefix
3436 : OPT_no_system_header_prefix;
3450#define HEADER_SEARCH_OPTION_WITH_MARSHALLING(...) \
3451 PARSE_OPTION_WITH_MARSHALLING(Args, Diags, __VA_ARGS__)
3452#include "clang/Options/Options.inc"
3453#undef HEADER_SEARCH_OPTION_WITH_MARSHALLING
3455 if (
const Arg *A = Args.getLastArg(OPT_stdlib_EQ))
3456 Opts.
UseLibcxx = (strcmp(A->getValue(),
"libc++") == 0);
3459 for (
const auto *A : Args.filtered(OPT_fmodule_file)) {
3460 StringRef Val = A->getValue();
3461 if (Val.contains(
'=')) {
3462 auto Split = Val.split(
'=');
3464 std::string(Split.first), std::string(Split.second));
3467 for (
const auto *A : Args.filtered(OPT_fprebuilt_module_path))
3470 for (
const auto *A : Args.filtered(OPT_fmodules_ignore_macro)) {
3471 StringRef MacroDef = A->getValue();
3473 llvm::CachedHashString(MacroDef.split(
'=').first));
3477 bool IsSysrootSpecified =
3478 Args.hasArg(OPT__sysroot_EQ) || Args.hasArg(OPT_isysroot);
3482 auto PrefixHeaderPath = [IsSysrootSpecified,
3483 &Opts](
const llvm::opt::Arg *A,
3484 bool IsFramework =
false) -> std::string {
3485 assert(A->getNumValues() &&
"Unexpected empty search path flag!");
3486 if (IsSysrootSpecified && !IsFramework && A->getValue()[0] ==
'=') {
3488 llvm::sys::path::append(Buffer, Opts.
Sysroot,
3489 llvm::StringRef(A->getValue()).substr(1));
3490 return std::string(Buffer);
3492 return A->getValue();
3495 for (
const auto *A : Args.filtered(OPT_I, OPT_F)) {
3496 bool IsFramework = A->getOption().matches(OPT_F);
3502 StringRef Prefix =
"";
3503 for (
const auto *A :
3504 Args.filtered(OPT_iprefix, OPT_iwithprefix, OPT_iwithprefixbefore)) {
3505 if (A->getOption().matches(OPT_iprefix))
3506 Prefix = A->getValue();
3507 else if (A->getOption().matches(OPT_iwithprefix))
3513 for (
const auto *A : Args.filtered(OPT_idirafter))
3515 for (
const auto *A : Args.filtered(OPT_iquote))
3518 for (
const auto *A : Args.filtered(OPT_isystem, OPT_iwithsysroot)) {
3519 if (A->getOption().matches(OPT_iwithsysroot)) {
3526 for (
const auto *A : Args.filtered(OPT_iframework))
3528 for (
const auto *A : Args.filtered(OPT_iframeworkwithsysroot))
3533 for (
const auto *A : Args.filtered(OPT_c_isystem))
3535 for (
const auto *A : Args.filtered(OPT_cxx_isystem))
3537 for (
const auto *A : Args.filtered(OPT_objc_isystem))
3539 for (
const auto *A : Args.filtered(OPT_objcxx_isystem))
3543 for (
const auto *A :
3544 Args.filtered(OPT_internal_isystem, OPT_internal_externc_isystem)) {
3546 if (A->getOption().matches(OPT_internal_externc_isystem))
3548 Opts.
AddPath(A->getValue(), Group,
false,
true);
3550 for (
const auto *A : Args.filtered(OPT_internal_iframework))
3554 for (
const auto *A :
3555 Args.filtered(OPT_system_header_prefix, OPT_no_system_header_prefix))
3557 A->getValue(), A->getOption().matches(OPT_system_header_prefix));
3559 for (
const auto *A : Args.filtered(OPT_ivfsoverlay, OPT_vfsoverlay))
3568 GenerateArg(Consumer, OPT_fapinotes_swift_version,
3572 GenerateArg(Consumer, OPT_iapinotes_modules, Path);
3577 if (
const Arg *A = Args.getLastArg(OPT_fapinotes_swift_version)) {
3579 diags.
Report(diag::err_drv_invalid_value)
3580 << A->getAsString(Args) << A->getValue();
3582 for (
const Arg *A : Args.filtered(OPT_iapinotes_modules))
3588 if (Opts.PointerAuthIntrinsics)
3590 if (Opts.PointerAuthCalls)
3592 if (Opts.PointerAuthReturns)
3594 if (Opts.PointerAuthIndirectGotos)
3595 GenerateArg(Consumer, OPT_fptrauth_indirect_gotos);
3596 if (Opts.PointerAuthAuthTraps)
3598 if (Opts.PointerAuthVTPtrAddressDiscrimination)
3599 GenerateArg(Consumer, OPT_fptrauth_vtable_pointer_address_discrimination);
3600 if (Opts.PointerAuthVTPtrTypeDiscrimination)
3601 GenerateArg(Consumer, OPT_fptrauth_vtable_pointer_type_discrimination);
3602 if (Opts.PointerAuthTypeInfoVTPtrDiscrimination)
3603 GenerateArg(Consumer, OPT_fptrauth_type_info_vtable_pointer_discrimination);
3604 if (Opts.PointerAuthFunctionTypeDiscrimination)
3605 GenerateArg(Consumer, OPT_fptrauth_function_pointer_type_discrimination);
3606 if (Opts.PointerAuthInitFini)
3608 if (Opts.PointerAuthInitFiniAddressDiscrimination)
3609 GenerateArg(Consumer, OPT_fptrauth_init_fini_address_discrimination);
3610 if (Opts.PointerAuthELFGOT)
3612 if (Opts.AArch64JumpTableHardening)
3613 GenerateArg(Consumer, OPT_faarch64_jump_table_hardening);
3614 if (Opts.PointerAuthObjcIsa)
3616 if (Opts.PointerAuthObjcInterfaceSel)
3617 GenerateArg(Consumer, OPT_fptrauth_objc_interface_sel);
3618 if (Opts.PointerAuthObjcClassROPointers)
3619 GenerateArg(Consumer, OPT_fptrauth_objc_class_ro);
3620 if (Opts.PointerAuthBlockDescriptorPointers)
3621 GenerateArg(Consumer, OPT_fptrauth_block_descriptor_pointers);
3626 Opts.PointerAuthIntrinsics = Args.hasArg(OPT_fptrauth_intrinsics);
3627 Opts.PointerAuthCalls = Args.hasArg(OPT_fptrauth_calls);
3628 Opts.PointerAuthReturns = Args.hasArg(OPT_fptrauth_returns);
3629 Opts.PointerAuthIndirectGotos = Args.hasArg(OPT_fptrauth_indirect_gotos);
3630 Opts.PointerAuthAuthTraps = Args.hasArg(OPT_fptrauth_auth_traps);
3631 Opts.PointerAuthVTPtrAddressDiscrimination =
3632 Args.hasArg(OPT_fptrauth_vtable_pointer_address_discrimination);
3633 Opts.PointerAuthVTPtrTypeDiscrimination =
3634 Args.hasArg(OPT_fptrauth_vtable_pointer_type_discrimination);
3635 Opts.PointerAuthTypeInfoVTPtrDiscrimination =
3636 Args.hasArg(OPT_fptrauth_type_info_vtable_pointer_discrimination);
3637 Opts.PointerAuthFunctionTypeDiscrimination =
3638 Args.hasArg(OPT_fptrauth_function_pointer_type_discrimination);
3639 Opts.PointerAuthInitFini = Args.hasArg(OPT_fptrauth_init_fini);
3640 Opts.PointerAuthInitFiniAddressDiscrimination =
3641 Args.hasArg(OPT_fptrauth_init_fini_address_discrimination);
3642 Opts.PointerAuthELFGOT = Args.hasArg(OPT_fptrauth_elf_got);
3643 Opts.AArch64JumpTableHardening =
3644 Args.hasArg(OPT_faarch64_jump_table_hardening);
3645 Opts.PointerAuthBlockDescriptorPointers =
3646 Args.hasArg(OPT_fptrauth_block_descriptor_pointers);
3647 Opts.PointerAuthObjcIsa = Args.hasArg(OPT_fptrauth_objc_isa);
3648 Opts.PointerAuthObjcClassROPointers = Args.hasArg(OPT_fptrauth_objc_class_ro);
3649 Opts.PointerAuthObjcInterfaceSel =
3650 Args.hasArg(OPT_fptrauth_objc_interface_sel);
3652 if (Opts.PointerAuthObjcInterfaceSel)
3653 Opts.PointerAuthObjcInterfaceSelKey =
3664 llvm_unreachable(
"should not parse language flags for this input");
3699 llvm_unreachable(
"unexpected input language");
3708 return "Objective-C";
3712 return "Objective-C++";
3716 return "C++ for OpenCL";
3735 llvm_unreachable(
"unknown input language");
3738void CompilerInvocationBase::GenerateLangArgs(
const LangOptions &Opts,
3740 const llvm::Triple &T,
3745 if (Opts.ObjCAutoRefCount)
3747 if (Opts.PICLevel != 0)
3748 GenerateArg(Consumer, OPT_pic_level, Twine(Opts.PICLevel));
3752 GenerateArg(Consumer, OPT_fsanitize_EQ, Sanitizer);
3753 for (StringRef Sanitizer :
3755 GenerateArg(Consumer, OPT_fsanitize_ignore_for_ubsan_feature_EQ,
3761 OptSpecifier StdOpt;
3763 case LangStandard::lang_opencl10:
3764 case LangStandard::lang_opencl11:
3765 case LangStandard::lang_opencl12:
3766 case LangStandard::lang_opencl20:
3767 case LangStandard::lang_opencl30:
3768 case LangStandard::lang_openclcpp10:
3769 case LangStandard::lang_openclcpp2021:
3770 StdOpt = OPT_cl_std_EQ;
3773 StdOpt = OPT_std_EQ;
3778 GenerateArg(Consumer, StdOpt, LangStandard.getName());
3780 if (Opts.IncludeDefaultHeader)
3781 GenerateArg(Consumer, OPT_finclude_default_header);
3782 if (Opts.DeclareOpenCLBuiltins)
3783 GenerateArg(Consumer, OPT_fdeclare_opencl_builtins);
3785 const LangOptions *
LangOpts = &Opts;
3787#define LANG_OPTION_WITH_MARSHALLING(...) \
3788 GENERATE_OPTION_WITH_MARSHALLING(Consumer, __VA_ARGS__)
3789#include "clang/Options/Options.inc"
3790#undef LANG_OPTION_WITH_MARSHALLING
3801 else if (Opts.ObjCAutoRefCount == 1)
3804 if (Opts.ObjCWeakRuntime)
3805 GenerateArg(Consumer, OPT_fobjc_runtime_has_weak);
3810 if (Opts.ObjCSubscriptingLegacyRuntime)
3811 GenerateArg(Consumer, OPT_fobjc_subscripting_legacy_runtime);
3814 if (Opts.GNUCVersion != 0) {
3815 unsigned Major = Opts.GNUCVersion / 100 / 100;
3816 unsigned Minor = (Opts.GNUCVersion / 100) % 100;
3817 unsigned Patch = Opts.GNUCVersion % 100;
3819 Twine(Major) +
"." + Twine(Minor) +
"." + Twine(Patch));
3822 if (Opts.IgnoreXCOFFVisibility)
3823 GenerateArg(Consumer, OPT_mignore_xcoff_visibility);
3829 if (!Opts.MSVCCompat)
3831 }
else if (Opts.MSVCCompat) {
3834 if (Opts.PointerOverflowDefined)
3837 if (Opts.MSCompatibilityVersion != 0) {
3838 unsigned Major = Opts.MSCompatibilityVersion / 10000000;
3839 unsigned Minor = (Opts.MSCompatibilityVersion / 100000) % 100;
3840 unsigned Subminor = Opts.MSCompatibilityVersion % 100000;
3841 GenerateArg(Consumer, OPT_fms_compatibility_version,
3842 Twine(Major) +
"." + Twine(Minor) +
"." + Twine(Subminor));
3845 if ((!Opts.GNUMode && !Opts.MSVCCompat && !Opts.CPlusPlus17 && !Opts.C23) ||
3847 if (!Opts.Trigraphs)
3854 if (T.isOSzOS() && !Opts.ZOSExt)
3856 else if (Opts.ZOSExt)
3859 if (Opts.Blocks && !(Opts.OpenCL && Opts.OpenCLVersion == 200))
3862 if (Opts.ConvergentFunctions)
3865 GenerateArg(Consumer, OPT_fno_convergent_functions);
3867 if (Opts.NoBuiltin && !Opts.Freestanding)
3870 if (!Opts.NoBuiltin)
3874 if (Opts.LongDoubleSize == 128)
3876 else if (Opts.LongDoubleSize == 64)
3878 else if (Opts.LongDoubleSize == 80)
3885 if (Opts.OpenMP && !Opts.OpenMPSimd) {
3888 if (Opts.OpenMP != 51)
3889 GenerateArg(Consumer, OPT_fopenmp_version_EQ, Twine(Opts.OpenMP));
3891 if (!Opts.OpenMPUseTLS)
3894 if (Opts.OpenMPIsTargetDevice)
3895 GenerateArg(Consumer, OPT_fopenmp_is_target_device);
3897 if (Opts.OpenMPIRBuilder)
3898 GenerateArg(Consumer, OPT_fopenmp_enable_irbuilder);
3901 if (Opts.OpenMPSimd) {
3904 if (Opts.OpenMP != 51)
3905 GenerateArg(Consumer, OPT_fopenmp_version_EQ, Twine(Opts.OpenMP));
3908 if (Opts.OpenMPThreadSubscription)
3909 GenerateArg(Consumer, OPT_fopenmp_assume_threads_oversubscription);
3911 if (Opts.OpenMPTeamSubscription)
3912 GenerateArg(Consumer, OPT_fopenmp_assume_teams_oversubscription);
3914 if (Opts.OpenMPTargetDebug != 0)
3915 GenerateArg(Consumer, OPT_fopenmp_target_debug_EQ,
3916 Twine(Opts.OpenMPTargetDebug));
3918 if (Opts.OpenMPCUDANumSMs != 0)
3919 GenerateArg(Consumer, OPT_fopenmp_cuda_number_of_sm_EQ,
3920 Twine(Opts.OpenMPCUDANumSMs));
3922 if (Opts.OpenMPCUDABlocksPerSM != 0)
3923 GenerateArg(Consumer, OPT_fopenmp_cuda_blocks_per_sm_EQ,
3924 Twine(Opts.OpenMPCUDABlocksPerSM));
3927 std::string Targets;
3928 llvm::raw_string_ostream
OS(Targets);
3931 [&OS](
const llvm::Triple &T) { OS << T.str(); },
",");
3932 GenerateArg(Consumer, OPT_offload_targets_EQ, Targets);
3935 if (Opts.OpenMPCUDAMode)
3951 GenerateArg(Consumer, OPT_ffp_contract,
"fast-honor-pragmas");
3954 GenerateArg(Consumer, OPT_fsanitize_EQ, Sanitizer);
3955 for (StringRef Sanitizer :
3957 GenerateArg(Consumer, OPT_fsanitize_ignore_for_ubsan_feature_EQ, Sanitizer);
3961 GenerateArg(Consumer, OPT_fsanitize_ignorelist_EQ, F);
3963 switch (Opts.getClangABICompat()) {
3964#define ABI_VER_MAJOR_MINOR(Major, Minor) \
3965 case LangOptions::ClangABI::Ver##Major##_##Minor: \
3966 GenerateArg(Consumer, OPT_fclang_abi_compat_EQ, #Major "." #Minor); \
3968#define ABI_VER_MAJOR(Major) \
3969 case LangOptions::ClangABI::Ver##Major: \
3970 GenerateArg(Consumer, OPT_fclang_abi_compat_EQ, #Major ".0"); \
3972#define ABI_VER_LATEST(Latest) \
3973 case LangOptions::ClangABI::Latest: \
3975#include "clang/Basic/ABIVersions.def"
3978 if (Opts.getSignReturnAddressScope() ==
3980 GenerateArg(Consumer, OPT_msign_return_address_EQ,
"all");
3981 else if (Opts.getSignReturnAddressScope() ==
3983 GenerateArg(Consumer, OPT_msign_return_address_EQ,
"non-leaf");
3985 if (Opts.getSignReturnAddressKey() ==
3987 GenerateArg(Consumer, OPT_msign_return_address_key_EQ,
"b_key");
3993 if (Opts.RelativeCXXABIVTables)
3994 GenerateArg(Consumer, OPT_fexperimental_relative_cxx_abi_vtables);
3996 GenerateArg(Consumer, OPT_fno_experimental_relative_cxx_abi_vtables);
4004 GenerateArg(Consumer, OPT_fmacro_prefix_map_EQ, MP.first +
"=" + MP.second);
4014 StringRef S = llvm::getAllocTokenModeAsString(*Opts.
AllocTokenMode);
4015 GenerateArg(Consumer, OPT_falloc_token_mode_EQ, S);
4018 if (Opts.MatrixTypes) {
4019 if (Opts.getDefaultMatrixMemoryLayout() ==
4021 GenerateArg(Consumer, OPT_fmatrix_memory_layout_EQ,
"column-major");
4022 if (Opts.getDefaultMatrixMemoryLayout() ==
4024 GenerateArg(Consumer, OPT_fmatrix_memory_layout_EQ,
"row-major");
4028bool CompilerInvocation::ParseLangArgs(
LangOptions &Opts, ArgList &Args,
4030 std::vector<std::string> &Includes,
4040 if (Args.hasArg(OPT_fobjc_arc))
4041 Opts.ObjCAutoRefCount = 1;
4045 Opts.PIE = Args.hasArg(OPT_pic_is_pie);
4049 "-fsanitize-ignore-for-ubsan-feature=",
4050 Args.getAllArgValues(OPT_fsanitize_ignore_for_ubsan_feature_EQ), Diags,
4061 if (
const Arg *A = Args.getLastArg(OPT_std_EQ)) {
4064 Diags.
Report(diag::err_drv_invalid_value)
4065 << A->getAsString(Args) << A->getValue();
4067 for (
unsigned KindValue = 0;
4073 auto Diag = Diags.
Report(diag::note_drv_use_standard);
4075 unsigned NumAliases = 0;
4076#define LANGSTANDARD(id, name, lang, desc, features, version)
4077#define LANGSTANDARD_ALIAS(id, alias) \
4078 if (KindValue == LangStandard::lang_##id) ++NumAliases;
4079#define LANGSTANDARD_ALIAS_DEPR(id, alias)
4080#include "clang/Basic/LangStandards.def"
4082#define LANGSTANDARD(id, name, lang, desc, features, version)
4083#define LANGSTANDARD_ALIAS(id, alias) \
4084 if (KindValue == LangStandard::lang_##id) Diag << alias;
4085#define LANGSTANDARD_ALIAS_DEPR(id, alias)
4086#include "clang/Basic/LangStandards.def"
4094 Diags.
Report(diag::err_drv_argument_not_allowed_with)
4102 if (
const Arg *A = Args.getLastArg(OPT_cl_std_EQ)) {
4104 llvm::StringSwitch<LangStandard::Kind>(A->getValue())
4105 .Cases({
"cl",
"CL"}, LangStandard::lang_opencl10)
4106 .Cases({
"cl1.0",
"CL1.0"}, LangStandard::lang_opencl10)
4107 .Cases({
"cl1.1",
"CL1.1"}, LangStandard::lang_opencl11)
4108 .Cases({
"cl1.2",
"CL1.2"}, LangStandard::lang_opencl12)
4109 .Cases({
"cl2.0",
"CL2.0"}, LangStandard::lang_opencl20)
4110 .Cases({
"cl3.0",
"CL3.0"}, LangStandard::lang_opencl30)
4111 .Cases({
"cl3.1",
"CL3.1"}, LangStandard::lang_opencl31)
4112 .Cases({
"clc++",
"CLC++"}, LangStandard::lang_openclcpp10)
4113 .Cases({
"clc++1.0",
"CLC++1.0"}, LangStandard::lang_openclcpp10)
4114 .Cases({
"clc++2021",
"CLC++2021"}, LangStandard::lang_openclcpp2021)
4118 Diags.
Report(diag::err_drv_invalid_value)
4119 << A->getAsString(Args) << A->getValue();
4122 LangStd = OpenCLLangStd;
4126 Opts.IncludeDefaultHeader = Args.hasArg(OPT_finclude_default_header);
4127 Opts.DeclareOpenCLBuiltins = Args.hasArg(OPT_fdeclare_opencl_builtins);
4135#define LANG_OPTION_WITH_MARSHALLING(...) \
4136 PARSE_OPTION_WITH_MARSHALLING(Args, Diags, __VA_ARGS__)
4137#include "clang/Options/Options.inc"
4138#undef LANG_OPTION_WITH_MARSHALLING
4143 Opts.Modules = Opts.ClangModules || Opts.CPlusPlusModules;
4145 if (
const Arg *A = Args.getLastArg(OPT_fcf_protection_EQ)) {
4146 StringRef Name = A->getValue();
4147 if (Name ==
"full") {
4148 Opts.CFProtectionBranch = 1;
4149 Opts.CFProtectionReturn = 1;
4150 }
else if (Name ==
"branch") {
4151 Opts.CFProtectionBranch = 1;
4152 }
else if (Name ==
"return") {
4153 Opts.CFProtectionReturn = 1;
4157 if (Opts.CFProtectionBranch) {
4158 if (
const Arg *A = Args.getLastArg(OPT_mcf_branch_label_scheme_EQ)) {
4160 llvm::StringSwitch<CFBranchLabelSchemeKind>(A->getValue())
4161#define CF_BRANCH_LABEL_SCHEME(Kind, FlagVal) \
4162 .Case(#FlagVal, CFBranchLabelSchemeKind::Kind)
4163#include "clang/Basic/CFProtectionOptions.def"
4165 Opts.setCFBranchLabelScheme(Scheme);
4169 if ((Args.hasArg(OPT_fsycl_is_device) || Args.hasArg(OPT_fsycl_is_host)) &&
4170 !Args.hasArg(OPT_sycl_std_EQ)) {
4180 if (Arg *arg = Args.getLastArg(OPT_fobjc_runtime_EQ)) {
4181 StringRef value =
arg->getValue();
4183 Diags.
Report(diag::err_drv_unknown_objc_runtime) << value;
4186 if (Args.hasArg(OPT_fobjc_gc_only))
4188 else if (Args.hasArg(OPT_fobjc_gc))
4190 else if (Args.hasArg(OPT_fobjc_arc)) {
4191 Opts.ObjCAutoRefCount = 1;
4193 Diags.
Report(diag::err_arc_unsupported_on_runtime);
4200 if (Args.hasArg(OPT_fobjc_runtime_has_weak))
4201 Opts.ObjCWeakRuntime = 1;
4207 if (
auto weakArg = Args.getLastArg(OPT_fobjc_weak, OPT_fno_objc_weak)) {
4208 if (!weakArg->getOption().matches(OPT_fobjc_weak)) {
4209 assert(!Opts.ObjCWeak);
4211 Diags.
Report(diag::err_objc_weak_with_gc);
4212 }
else if (!Opts.ObjCWeakRuntime) {
4213 Diags.
Report(diag::err_objc_weak_unsupported);
4217 }
else if (Opts.ObjCAutoRefCount) {
4218 Opts.ObjCWeak = Opts.ObjCWeakRuntime;
4221 if (Args.hasArg(OPT_fobjc_subscripting_legacy_runtime))
4222 Opts.ObjCSubscriptingLegacyRuntime =
4226 if (Arg *A = Args.getLastArg(options::OPT_fgnuc_version_EQ)) {
4229 VersionTuple GNUCVer;
4230 bool Invalid = GNUCVer.tryParse(A->getValue());
4231 unsigned Major = GNUCVer.getMajor();
4232 unsigned Minor = GNUCVer.getMinor().value_or(0);
4233 unsigned Patch = GNUCVer.getSubminor().value_or(0);
4234 if (
Invalid || GNUCVer.getBuild() || Minor >= 100 || Patch >= 100) {
4235 Diags.
Report(diag::err_drv_invalid_value)
4236 << A->getAsString(Args) << A->getValue();
4238 Opts.GNUCVersion = Major * 100 * 100 + Minor * 100 + Patch;
4241 if (T.isOSAIX() && (Args.hasArg(OPT_mignore_xcoff_visibility)))
4242 Opts.IgnoreXCOFFVisibility = 1;
4244 if (Args.hasArg(OPT_ftrapv)) {
4248 std::string(Args.getLastArgValue(OPT_ftrapv_handler));
4249 }
else if (Args.hasFlag(OPT_fwrapv, OPT_fno_wrapv, Opts.MSVCCompat)) {
4252 if (Args.hasArg(OPT_fwrapv_pointer))
4253 Opts.PointerOverflowDefined =
true;
4255 Opts.MSCompatibilityVersion = 0;
4256 if (
const Arg *A = Args.getLastArg(OPT_fms_compatibility_version)) {
4258 if (VT.tryParse(A->getValue()))
4259 Diags.
Report(diag::err_drv_invalid_value) << A->getAsString(Args)
4261 Opts.MSCompatibilityVersion = VT.getMajor() * 10000000 +
4262 VT.getMinor().value_or(0) * 100000 +
4263 VT.getSubminor().value_or(0);
4271 (!Opts.GNUMode && !Opts.MSVCCompat && !Opts.CPlusPlus17 && !Opts.C23) ||
4274 Args.hasFlag(OPT_ftrigraphs, OPT_fno_trigraphs, Opts.Trigraphs);
4277 Args.hasFlag(OPT_fzos_extensions, OPT_fno_zos_extensions, T.isOSzOS());
4279 Opts.Blocks = Args.hasArg(OPT_fblocks) || (Opts.OpenCL
4280 && Opts.OpenCLVersion == 200);
4282 bool HasConvergentOperations = Opts.
isTargetDevice() || Opts.OpenCL ||
4283 Opts.HLSL || T.isAMDGPU() || T.isNVPTX();
4284 Opts.ConvergentFunctions =
4285 Args.hasFlag(OPT_fconvergent_functions, OPT_fno_convergent_functions,
4286 HasConvergentOperations);
4288 Opts.NoBuiltin = Args.hasArg(OPT_fno_builtin) || Opts.Freestanding;
4289 if (!Opts.NoBuiltin)
4291 if (Arg *A = Args.getLastArg(options::OPT_LongDouble_Group)) {
4292 if (A->getOption().matches(options::OPT_mlong_double_64))
4293 Opts.LongDoubleSize = 64;
4294 else if (A->getOption().matches(options::OPT_mlong_double_80))
4295 Opts.LongDoubleSize = 80;
4296 else if (A->getOption().matches(options::OPT_mlong_double_128))
4297 Opts.LongDoubleSize = 128;
4299 Opts.LongDoubleSize = 0;
4301 if (Opts.FastRelaxedMath || Opts.CLUnsafeMath)
4307 if (Arg *A = Args.getLastArg(OPT_mrtd)) {
4309 Diags.
Report(diag::err_drv_argument_not_allowed_with)
4310 << A->getSpelling() <<
"-fdefault-calling-conv";
4312 switch (T.getArch()) {
4313 case llvm::Triple::x86:
4316 case llvm::Triple::m68k:
4320 Diags.
Report(diag::err_drv_argument_not_allowed_with)
4321 << A->getSpelling() << T.getTriple();
4327 Opts.OpenMP = Args.hasArg(OPT_fopenmp) ? 51 : 0;
4329 bool IsSimdSpecified =
4330 Args.hasFlag(options::OPT_fopenmp_simd, options::OPT_fno_openmp_simd,
4332 Opts.OpenMPSimd = !Opts.OpenMP && IsSimdSpecified;
4334 Opts.OpenMP && !Args.hasArg(options::OPT_fnoopenmp_use_tls);
4335 Opts.OpenMPIsTargetDevice =
4336 Opts.OpenMP && Args.hasArg(options::OPT_fopenmp_is_target_device);
4337 Opts.OpenMPIRBuilder =
4338 Opts.OpenMP && Args.hasArg(options::OPT_fopenmp_enable_irbuilder);
4339 bool IsTargetSpecified =
4340 Opts.OpenMPIsTargetDevice || Args.hasArg(options::OPT_offload_targets_EQ);
4342 if (Opts.OpenMP || Opts.OpenMPSimd) {
4344 Args, OPT_fopenmp_version_EQ,
4345 (IsSimdSpecified || IsTargetSpecified) ? 51 : Opts.OpenMP, Diags))
4346 Opts.OpenMP = Version;
4349 if (!Opts.OpenMPIsTargetDevice) {
4350 switch (T.getArch()) {
4354 case llvm::Triple::nvptx:
4355 case llvm::Triple::nvptx64:
4356 Diags.
Report(diag::err_drv_omp_host_target_not_supported) << T.str();
4364 if ((Opts.OpenMPIsTargetDevice && T.isGPU()) || Opts.OpenCLCPlusPlus) {
4366 Opts.Exceptions = 0;
4367 Opts.CXXExceptions = 0;
4369 if (Opts.OpenMPIsTargetDevice && T.isNVPTX()) {
4370 Opts.OpenMPCUDANumSMs =
4372 Opts.OpenMPCUDANumSMs, Diags);
4373 Opts.OpenMPCUDABlocksPerSM =
4375 Opts.OpenMPCUDABlocksPerSM, Diags);
4380 if (Opts.OpenMPIsTargetDevice && (Args.hasArg(OPT_fopenmp_target_debug) ||
4381 Args.hasArg(OPT_fopenmp_target_debug_EQ))) {
4383 Args, OPT_fopenmp_target_debug_EQ, Opts.OpenMPTargetDebug, Diags);
4384 if (!Opts.OpenMPTargetDebug && Args.hasArg(OPT_fopenmp_target_debug))
4385 Opts.OpenMPTargetDebug = 1;
4388 if (Opts.OpenMPIsTargetDevice) {
4389 if (Args.hasArg(OPT_fopenmp_assume_teams_oversubscription))
4390 Opts.OpenMPTeamSubscription =
true;
4391 if (Args.hasArg(OPT_fopenmp_assume_threads_oversubscription))
4392 Opts.OpenMPThreadSubscription =
true;
4396 if (Arg *A = Args.getLastArg(options::OPT_offload_targets_EQ)) {
4397 enum ArchPtrSize { Arch16Bit, Arch32Bit, Arch64Bit };
4398 auto getArchPtrSize = [](
const llvm::Triple &T) {
4399 if (T.isArch16Bit())
4401 if (T.isArch32Bit())
4403 assert(T.isArch64Bit() &&
"Expected 64-bit architecture");
4407 for (
unsigned i = 0; i < A->getNumValues(); ++i) {
4408 llvm::Triple TT(A->getValue(i));
4410 if (TT.getArch() == llvm::Triple::UnknownArch ||
4411 !(TT.getArch() == llvm::Triple::aarch64 || TT.isPPC() ||
4412 TT.getArch() == llvm::Triple::spirv64 ||
4413 TT.getArch() == llvm::Triple::systemz ||
4414 TT.getArch() == llvm::Triple::loongarch64 ||
4415 TT.getArch() == llvm::Triple::nvptx ||
4416 TT.getArch() == llvm::Triple::nvptx64 || TT.isAMDGCN() ||
4417 TT.getArch() == llvm::Triple::x86 ||
4418 TT.getArch() == llvm::Triple::x86_64))
4419 Diags.
Report(diag::err_drv_invalid_omp_target) << A->getValue(i);
4420 else if (getArchPtrSize(T) != getArchPtrSize(TT))
4421 Diags.
Report(diag::err_drv_incompatible_omp_arch)
4422 << A->getValue(i) << T.str();
4429 Opts.OpenMPCUDAMode = Opts.OpenMPIsTargetDevice &&
4430 (T.isNVPTX() || T.isAMDGCN()) &&
4431 Args.hasArg(options::OPT_fopenmp_cuda_mode);
4434 if (Args.hasArg(options::OPT_fopenacc))
4435 Opts.OpenACC =
true;
4437 if (Arg *A = Args.getLastArg(OPT_ffp_contract)) {
4438 StringRef Val = A->getValue();
4441 else if (Val ==
"on")
4443 else if (Val ==
"off")
4445 else if (Val ==
"fast-honor-pragmas")
4448 Diags.
Report(diag::err_drv_invalid_value) << A->getAsString(Args) << Val;
4452 Args.getLastArg(OPT_fsanitize_undefined_ignore_overflow_pattern_EQ)) {
4453 for (
int i = 0, n = A->getNumValues(); i != n; ++i) {
4455 llvm::StringSwitch<unsigned>(A->getValue(i))
4458 .Case(
"add-unsigned-overflow-test",
4460 .Case(
"add-signed-overflow-test",
4463 .Case(
"unsigned-post-decr-while",
4473 "-fsanitize-ignore-for-ubsan-feature=",
4474 Args.getAllArgValues(OPT_fsanitize_ignore_for_ubsan_feature_EQ), Diags,
4476 Opts.
NoSanitizeFiles = Args.getAllArgValues(OPT_fsanitize_ignorelist_EQ);
4477 std::vector<std::string> systemIgnorelists =
4478 Args.getAllArgValues(OPT_fsanitize_system_ignorelist_EQ);
4480 systemIgnorelists.begin(),
4481 systemIgnorelists.end());
4483 if (Arg *A = Args.getLastArg(OPT_fclang_abi_compat_EQ)) {
4484 Opts.setClangABICompat(LangOptions::ClangABI::Latest);
4486 StringRef Ver = A->getValue();
4487 std::pair<StringRef, StringRef> VerParts = Ver.split(
'.');
4488 int Major, Minor = 0;
4492 if (!VerParts.first.starts_with(
"0") &&
4493 !VerParts.first.getAsInteger(10, Major) && 3 <= Major &&
4494 Major <= MAX_CLANG_ABI_COMPAT_VERSION &&
4496 ? VerParts.second.size() == 1 &&
4497 !VerParts.second.getAsInteger(10, Minor)
4498 : VerParts.first.size() == Ver.size() || VerParts.second ==
"0")) {
4500#define ABI_VER_MAJOR_MINOR(Major_, Minor_) \
4501 if (std::tuple(Major, Minor) <= std::tuple(Major_, Minor_)) \
4502 Opts.setClangABICompat(LangOptions::ClangABI::Ver##Major_##_##Minor_); \
4504#define ABI_VER_MAJOR(Major_) \
4505 if (Major <= Major_) \
4506 Opts.setClangABICompat(LangOptions::ClangABI::Ver##Major_); \
4508#define ABI_VER_LATEST(Latest) \
4511#include "clang/Basic/ABIVersions.def"
4512 }
else if (Ver !=
"latest") {
4513 Diags.
Report(diag::err_drv_invalid_value)
4514 << A->getAsString(Args) << A->getValue();
4518 if (Arg *A = Args.getLastArg(OPT_msign_return_address_EQ)) {
4519 StringRef SignScope = A->getValue();
4521 if (SignScope.equals_insensitive(
"none"))
4522 Opts.setSignReturnAddressScope(
4524 else if (SignScope.equals_insensitive(
"all"))
4525 Opts.setSignReturnAddressScope(
4527 else if (SignScope.equals_insensitive(
"non-leaf"))
4528 Opts.setSignReturnAddressScope(
4531 Diags.
Report(diag::err_drv_invalid_value)
4532 << A->getAsString(Args) << SignScope;
4534 if (Arg *A = Args.getLastArg(OPT_msign_return_address_key_EQ)) {
4535 StringRef SignKey = A->getValue();
4536 if (!SignScope.empty() && !SignKey.empty()) {
4537 if (SignKey ==
"a_key")
4538 Opts.setSignReturnAddressKey(
4540 else if (SignKey ==
"b_key")
4541 Opts.setSignReturnAddressKey(
4544 Diags.
Report(diag::err_drv_invalid_value)
4545 << A->getAsString(Args) << SignKey;
4551 StringRef
CXXABI = Args.getLastArgValue(OPT_fcxx_abi_EQ);
4558 Diags.
Report(diag::err_unsupported_cxx_abi) <<
CXXABI << T.str();
4564 Opts.RelativeCXXABIVTables =
4565 Args.hasFlag(options::OPT_fexperimental_relative_cxx_abi_vtables,
4566 options::OPT_fno_experimental_relative_cxx_abi_vtables,
4570 bool HasRTTI = !Args.hasArg(options::OPT_fno_rtti);
4571 Opts.OmitVTableRTTI =
4572 Args.hasFlag(options::OPT_fexperimental_omit_vtable_rtti,
4573 options::OPT_fno_experimental_omit_vtable_rtti,
false);
4574 if (Opts.OmitVTableRTTI && HasRTTI)
4575 Diags.
Report(diag::err_drv_using_omit_rtti_component_without_no_rtti);
4577 for (
const auto &A : Args.getAllArgValues(OPT_fmacro_prefix_map_EQ)) {
4578 auto Split = StringRef(A).split(
'=');
4580 {std::string(
Split.first), std::string(
Split.second)});
4584 !Args.getLastArg(OPT_fno_file_reproducible) &&
4585 (Args.getLastArg(OPT_ffile_compilation_dir_EQ) ||
4586 Args.getLastArg(OPT_fmacro_prefix_map_EQ) ||
4587 Args.getLastArg(OPT_ffile_reproducible));
4590 if (Arg *A = Args.getLastArg(options::OPT_mvscale_min_EQ)) {
4592 if (StringRef(A->getValue()).getAsInteger(10, VScaleMin) || VScaleMin == 0)
4593 Diags.
Report(diag::err_cc1_unbounded_vscale_min);
4595 if (Arg *A = Args.getLastArg(options::OPT_mvscale_streaming_min_EQ)) {
4597 if (StringRef(A->getValue()).getAsInteger(10, VScaleMin) || VScaleMin == 0)
4598 Diags.
Report(diag::err_cc1_unbounded_vscale_min);
4601 if (
const Arg *A = Args.getLastArg(OPT_frandomize_layout_seed_file_EQ)) {
4602 std::ifstream SeedFile(A->getValue(0));
4604 if (!SeedFile.is_open())
4605 Diags.
Report(diag::err_drv_cannot_open_randomize_layout_seed_file)
4611 if (
const Arg *A = Args.getLastArg(OPT_frandomize_layout_seed_EQ))
4614 if (
const auto *Arg = Args.getLastArg(options::OPT_falloc_token_max_EQ)) {
4615 StringRef S = Arg->getValue();
4617 if (S.getAsInteger(0,
Value))
4618 Diags.
Report(diag::err_drv_invalid_value) << Arg->getAsString(Args) << S;
4623 if (
const auto *Arg = Args.getLastArg(options::OPT_falloc_token_mode_EQ)) {
4624 StringRef S = Arg->getValue();
4625 if (
auto Mode = getAllocTokenModeFromString(S))
4628 Diags.
Report(diag::err_drv_invalid_value) << Arg->getAsString(Args) << S;
4632 if (Opts.MatrixTypes) {
4633 if (
const Arg *A = Args.getLastArg(OPT_fmatrix_memory_layout_EQ)) {
4634 StringRef ClangValue = A->getValue();
4635 if (ClangValue ==
"row-major")
4636 Opts.setDefaultMatrixMemoryLayout(
4639 Opts.setDefaultMatrixMemoryLayout(
4642 for (Arg *A : Args.filtered(options::OPT_mllvm)) {
4643 StringRef OptValue = A->getValue();
4644 if (OptValue.consume_front(
"-matrix-default-layout=") &&
4645 ClangValue != OptValue)
4646 Diags.
Report(diag::err_conflicting_matrix_layout_flags)
4647 << ClangValue << OptValue;
4656 if (T.isDXIL() || T.isSPIRVLogical()) {
4658 enum {
OS, Environment };
4660 int ExpectedOS = T.isSPIRVLogical() ? VulkanEnv : ShaderModel;
4662 if (T.getOSName().empty()) {
4663 Diags.
Report(diag::err_drv_hlsl_bad_shader_required_in_target)
4664 << ExpectedOS <<
OS << T.str();
4665 }
else if (T.getEnvironmentName().empty()) {
4666 Diags.
Report(diag::err_drv_hlsl_bad_shader_required_in_target)
4668 }
else if (!T.isShaderStageEnvironment()) {
4669 Diags.
Report(diag::err_drv_hlsl_bad_shader_unsupported)
4670 <<
ShaderStage << T.getEnvironmentName() << T.str();
4674 if (!T.isShaderModelOS() || T.getOSVersion() == VersionTuple(0)) {
4675 Diags.
Report(diag::err_drv_hlsl_bad_shader_unsupported)
4676 << ShaderModel << T.getOSName() << T.str();
4681 if (Args.getLastArg(OPT_fnative_half_type) ||
4682 Args.getLastArg(OPT_fnative_int16_type)) {
4683 const LangStandard &Std =
4685 if (!(Opts.
LangStd >= LangStandard::lang_hlsl2018 &&
4686 T.getOSVersion() >= VersionTuple(6, 2)))
4687 Diags.
Report(diag::err_drv_hlsl_16bit_types_unsupported)
4688 <<
"-enable-16bit-types" <<
true << Std.
getName()
4689 << T.getOSVersion().getAsString();
4691 }
else if (T.isSPIRVLogical()) {
4692 if (!T.isVulkanOS() || T.getVulkanVersion() == VersionTuple(0)) {
4693 Diags.
Report(diag::err_drv_hlsl_bad_shader_unsupported)
4694 << VulkanEnv << T.getOSName() << T.str();
4696 if (Args.getLastArg(OPT_fnative_half_type) ||
4697 Args.getLastArg(OPT_fnative_int16_type)) {
4698 const char *Str = Args.getLastArg(OPT_fnative_half_type)
4699 ?
"-fnative-half-type"
4700 :
"-fnative-int16-type";
4701 const LangStandard &Std =
4703 if (!(Opts.
LangStd >= LangStandard::lang_hlsl2018))
4704 Diags.
Report(diag::err_drv_hlsl_16bit_types_unsupported)
4705 << Str <<
false << Std.
getName();
4708 llvm_unreachable(
"expected DXIL or SPIR-V target");
4711 Diags.
Report(diag::err_drv_hlsl_unsupported_target) << T.str();
4713 if (Opts.
LangStd < LangStandard::lang_hlsl202x) {
4714 const LangStandard &Requested =
4716 const LangStandard &Recommended =
4718 Diags.
Report(diag::warn_hlsl_langstd_minimal)
4769 llvm_unreachable(
"invalid frontend action");
4814 llvm_unreachable(
"invalid frontend action");
4824#define PREPROCESSOR_OPTION_WITH_MARSHALLING(...) \
4825 GENERATE_OPTION_WITH_MARSHALLING(Consumer, __VA_ARGS__)
4826#include "clang/Options/Options.inc"
4827#undef PREPROCESSOR_OPTION_WITH_MARSHALLING
4830 GenerateArg(Consumer, OPT_pch_through_hdrstop_use);
4833 GenerateArg(Consumer, OPT_error_on_deserialized_pch_decl, D);
4840 for (
const auto &M : Opts.
Macros) {
4843 if (M.first ==
"__CET__=1" && !M.second &&
4844 !CodeGenOpts.CFProtectionReturn && CodeGenOpts.CFProtectionBranch)
4846 if (M.first ==
"__CET__=2" && !M.second && CodeGenOpts.CFProtectionReturn &&
4847 !CodeGenOpts.CFProtectionBranch)
4849 if (M.first ==
"__CET__=3" && !M.second && CodeGenOpts.CFProtectionReturn &&
4850 CodeGenOpts.CFProtectionBranch)
4853 GenerateArg(Consumer, M.second ? OPT_U : OPT_D, M.first);
4856 for (
const auto &I : Opts.
Includes) {
4859 if (LangOpts.OpenCL && LangOpts.IncludeDefaultHeader &&
4860 ((LangOpts.DeclareOpenCLBuiltins && I ==
"opencl-c-base.h") ||
4865 if (LangOpts.HLSL && I ==
"hlsl.h")
4875 GenerateArg(Consumer, OPT_remap_file, RF.first +
";" + RF.second);
4881 GenerateArg(Consumer, OPT_fdefine_target_os_macros);
4884 GenerateArg(Consumer, OPT_embed_dir_EQ, EmbedEntry);
4898#define PREPROCESSOR_OPTION_WITH_MARSHALLING(...) \
4899 PARSE_OPTION_WITH_MARSHALLING(Args, Diags, __VA_ARGS__)
4900#include "clang/Options/Options.inc"
4901#undef PREPROCESSOR_OPTION_WITH_MARSHALLING
4903 Opts.
PCHWithHdrStop = Args.hasArg(OPT_pch_through_hdrstop_create) ||
4904 Args.hasArg(OPT_pch_through_hdrstop_use);
4906 for (
const auto *A : Args.filtered(OPT_error_on_deserialized_pch_decl))
4909 if (
const Arg *A = Args.getLastArg(OPT_preamble_bytes_EQ)) {
4910 StringRef
Value(A->getValue());
4911 size_t Comma =
Value.find(
',');
4913 unsigned EndOfLine = 0;
4915 if (Comma == StringRef::npos ||
4916 Value.substr(0, Comma).getAsInteger(10, Bytes) ||
4917 Value.substr(Comma + 1).getAsInteger(10, EndOfLine))
4918 Diags.
Report(diag::err_drv_preamble_format);
4926 for (
const auto *A : Args.filtered(OPT_D, OPT_U)) {
4927 if (A->getOption().matches(OPT_D))
4934 for (
const auto *A : Args.filtered(OPT_include))
4935 Opts.
Includes.emplace_back(A->getValue());
4937 for (
const auto *A : Args.filtered(OPT_chain_include))
4940 for (
const auto *A : Args.filtered(OPT_remap_file)) {
4941 std::pair<StringRef, StringRef> Split = StringRef(A->getValue()).split(
';');
4943 if (Split.second.empty()) {
4944 Diags.
Report(diag::err_drv_invalid_remap_file) << A->getAsString(Args);
4951 if (
const Arg *A = Args.getLastArg(OPT_source_date_epoch)) {
4952 StringRef Epoch = A->getValue();
4956 const uint64_t MaxTimestamp =
4957 std::min<uint64_t>(std::numeric_limits<time_t>::max(), 253402300799);
4959 if (Epoch.getAsInteger(10,
V) ||
V > MaxTimestamp) {
4960 Diags.
Report(diag::err_fe_invalid_source_date_epoch)
4961 << Epoch << MaxTimestamp;
4967 for (
const auto *A : Args.filtered(OPT_embed_dir_EQ)) {
4968 StringRef Val = A->getValue();
4979 Args.hasFlag(OPT_fdefine_target_os_macros,
4991#define PREPROCESSOR_OUTPUT_OPTION_WITH_MARSHALLING(...) \
4992 GENERATE_OPTION_WITH_MARSHALLING(Consumer, __VA_ARGS__)
4993#include "clang/Options/Options.inc"
4994#undef PREPROCESSOR_OUTPUT_OPTION_WITH_MARSHALLING
5012#define PREPROCESSOR_OUTPUT_OPTION_WITH_MARSHALLING(...) \
5013 PARSE_OPTION_WITH_MARSHALLING(Args, Diags, __VA_ARGS__)
5014#include "clang/Options/Options.inc"
5015#undef PREPROCESSOR_OUTPUT_OPTION_WITH_MARSHALLING
5018 Opts.
ShowMacros = Args.hasArg(OPT_dM) || Args.hasArg(OPT_dD);
5027#define TARGET_OPTION_WITH_MARSHALLING(...) \
5028 GENERATE_OPTION_WITH_MARSHALLING(Consumer, __VA_ARGS__)
5029#include "clang/Options/Options.inc"
5030#undef TARGET_OPTION_WITH_MARSHALLING
5036 GenerateArg(Consumer, OPT_darwin_target_variant_sdk_version_EQ,
5046#define TARGET_OPTION_WITH_MARSHALLING(...) \
5047 PARSE_OPTION_WITH_MARSHALLING(Args, Diags, __VA_ARGS__)
5048#include "clang/Options/Options.inc"
5049#undef TARGET_OPTION_WITH_MARSHALLING
5051 if (Arg *A = Args.getLastArg(options::OPT_target_sdk_version_EQ)) {
5052 llvm::VersionTuple Version;
5053 if (Version.tryParse(A->getValue()))
5054 Diags.
Report(diag::err_drv_invalid_value)
5055 << A->getAsString(Args) << A->getValue();
5060 Args.getLastArg(options::OPT_darwin_target_variant_sdk_version_EQ)) {
5061 llvm::VersionTuple Version;
5062 if (Version.tryParse(A->getValue()))
5063 Diags.
Report(diag::err_drv_invalid_value)
5064 << A->getAsString(Args) << A->getValue();
5072bool CompilerInvocation::CreateFromArgsImpl(
5080 unsigned MissingArgIndex, MissingArgCount;
5081 InputArgList Args = Opts.ParseArgs(CommandLineArgs, MissingArgIndex,
5082 MissingArgCount, VisibilityMask);
5086 if (MissingArgCount)
5087 Diags.
Report(diag::err_drv_missing_argument)
5088 << Args.getArgString(MissingArgIndex) << MissingArgCount;
5091 for (
const auto *A : Args.filtered(OPT_UNKNOWN)) {
5092 auto ArgString = A->getAsString(Args);
5093 std::string Nearest;
5094 if (Opts.findNearest(ArgString, Nearest, VisibilityMask) > 1)
5095 Diags.
Report(diag::err_drv_unknown_argument) << ArgString;
5097 Diags.
Report(diag::err_drv_unknown_argument_with_suggestion)
5098 << ArgString << Nearest;
5131 !Diags.
isIgnored(diag::warn_profile_data_misexpect, SourceLocation())) {
5145 Diags.
Report(diag::warn_drv_openacc_without_cir);
5153 if (!Args.hasArg(options::OPT_triple))
5165 !
LangOpts.Sanitize.has(SanitizerKind::Address) &&
5166 !
LangOpts.Sanitize.has(SanitizerKind::KernelAddress) &&
5167 !
LangOpts.Sanitize.has(SanitizerKind::Memory) &&
5168 !
LangOpts.Sanitize.has(SanitizerKind::KernelMemory);
5181 Diags.
Report(diag::err_fe_dependency_file_requires_MT);
5187 Diags.
Report(diag::warn_drv_fine_grained_bitfield_accesses_ignored);
5198 llvm::driver::ProfileInstrKind::ProfileNone)
5199 Diags.
Report(diag::err_drv_profile_instrument_use_path_with_no_kind);
5209 const char *Argv0) {
5215 return CreateFromArgsImpl(Invocation, CommandLineArgs, Diags, Argv0);
5219 Args.push_back(
"-cc1");
5222 Invocation, DummyInvocation, CommandLineArgs, Diags, Argv0);
5227 llvm::HashBuilder<llvm::MD5, llvm::endianness::native> HBuilder;
5242#define LANGOPT(Name, Bits, Default, Compatibility, Description) \
5243 if constexpr (CK::Compatibility != CK::Benign) \
5244 HBuilder.add(LangOpts->Name);
5245#define ENUM_LANGOPT(Name, Type, Bits, Default, Compatibility, Description) \
5246 if constexpr (CK::Compatibility != CK::Benign) \
5247 HBuilder.add(static_cast<unsigned>(LangOpts->get##Name()));
5248#include "clang/Basic/LangOptions.def"
5253 HBuilder.addRange(
getLangOpts().CommentOpts.BlockCommandNames);
5270 StringRef MacroDef =
Macro.first;
5272 llvm::CachedHashString(MacroDef.split(
'=').first)))
5276 HBuilder.add(
Macro);
5292#define DIAGOPT(Name, Bits, Default) HBuilder.add(diagOpts.Name);
5293#define ENUM_DIAGOPT(Name, Type, Bits, Default) \
5294 HBuilder.add(diagOpts.get##Name());
5295#include "clang/Basic/DiagnosticOptions.def"
5305 ext->hashExtension(HBuilder);
5312 HBuilder.add(*Minor);
5313 if (
auto Subminor =
APINotesOpts.SwiftVersion.getSubminor())
5314 HBuilder.add(*Subminor);
5316 HBuilder.add(*Build);
5322#define CODEGENOPT(Name, Bits, Default, Compatibility) \
5323 if constexpr (CK::Compatibility != CK::Benign) \
5324 HBuilder.add(CodeGenOpts->Name);
5325#define ENUM_CODEGENOPT(Name, Type, Bits, Default, Compatibility) \
5326 if constexpr (CK::Compatibility != CK::Benign) \
5327 HBuilder.add(static_cast<unsigned>(CodeGenOpts->get##Name()));
5328#define DEBUGOPT(Name, Bits, Default, Compatibility)
5329#define VALUE_DEBUGOPT(Name, Bits, Default, Compatibility)
5330#define ENUM_DEBUGOPT(Name, Type, Bits, Default, Compatibility)
5331#include "clang/Basic/CodeGenOptions.def"
5343#define DEBUGOPT(Name, Bits, Default, Compatibility) \
5344 if constexpr (CK::Compatibility != CK::Benign) \
5345 HBuilder.add(CodeGenOpts->Name);
5346#define VALUE_DEBUGOPT(Name, Bits, Default, Compatibility) \
5347 if constexpr (CK::Compatibility != CK::Benign) \
5348 HBuilder.add(CodeGenOpts->Name);
5349#define ENUM_DEBUGOPT(Name, Type, Bits, Default, Compatibility) \
5350 if constexpr (CK::Compatibility != CK::Benign) \
5351 HBuilder.add(static_cast<unsigned>(CodeGenOpts->get##Name()));
5352#include "clang/Basic/DebugOptions.def"
5359 if (!SanHash.
empty())
5360 HBuilder.add(SanHash.
Mask);
5362 llvm::MD5::MD5Result
Result;
5363 HBuilder.getHasher().final(
Result);
5365 return toString(llvm::APInt(64, Hash), 36,
false);
5369 llvm::function_ref<
VisitMutResult(StringRef, std::string &)> Cb) {
5370 std::string NewValue;
5372#define RETURN_IF(OPTS, PATH) \
5374 VisitMutResult Res = Cb(PATH, NewValue); \
5375 if (Res.Replace) { \
5376 (void)ensureOwned(OPTS); \
5378 std::swap(PATH, NewValue); \
5380 if (Res.Terminate) \
5384#define RETURN_IF_MANY(OPTS, PATHS) \
5386 for (unsigned I = 0, E = PATHS.size(); I != E; ++I) \
5387 RETURN_IF(OPTS, PATHS[I]); \
5392 for (
auto &Entry :
HSOpts->UserEntries)
5393 if (Entry.IgnoreSysRoot)
5398 for (
auto &[Name,
File] :
HSOpts->PrebuiltModuleFiles)
5410 if (Input.isBuffer())
5448 [&Cb](StringRef Path, std::string &) {
return Cb(Path); });
5477 std::vector<std::string> Args{
"-cc1"};
5479 [&Args](
const Twine &Arg) { Args.push_back(Arg.str()); });
5505 llvm::vfs::getRealFileSystem());
5513 Diags, std::move(BaseFS));
5519 if (VFSOverlayFiles.empty())
5524 for (
const auto &
File : VFSOverlayFiles) {
5525 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> Buffer =
5528 Diags.
Report(diag::err_missing_vfs_overlay_file) <<
File;
5533 std::move(Buffer.get()),
nullptr,
File,
5536 Diags.
Report(diag::err_invalid_vfs_overlay) <<
File;
Defines the Diagnostic-related interfaces.
Defines enum values for all the target-independent builtin functions.
static void getAllNoBuiltinFuncValues(ArgList &Args, std::vector< std::string > &Funcs)
static std::optional< IntTy > normalizeStringIntegral(OptSpecifier Opt, int, const ArgList &Args, DiagnosticsEngine &Diags)
static std::optional< std::string > normalizeString(OptSpecifier Opt, int TableIndex, const ArgList &Args, DiagnosticsEngine &Diags)
static auto makeBooleanOptionNormalizer(bool Value, bool OtherValue, OptSpecifier OtherOpt)
static void parsePointerAuthOptions(PointerAuthOptions &Opts, const LangOptions &LangOpts, const llvm::Triple &Triple, DiagnosticsEngine &Diags)
static void denormalizeString(ArgumentConsumer Consumer, unsigned SpellingOffset, Option::OptionClass OptClass, unsigned TableIndex, T Value)
static SmallVector< StringRef, 4 > serializeSanitizerKinds(SanitizerSet S)
static void parseXRayInstrumentationBundle(StringRef FlagName, StringRef Bundle, ArgList &Args, DiagnosticsEngine &D, XRayInstrSet &S)
static void GenerateFrontendArgs(const FrontendOptions &Opts, ArgumentConsumer Consumer, bool IsHeader)
static std::optional< SimpleEnumValue > findValueTableByValue(const SimpleEnumValueTable &Table, unsigned Value)
static void GenerateSSAFArgs(const ssaf::SSAFOptions &Opts, ArgumentConsumer Consumer)
static bool ParseTargetArgs(TargetOptions &Opts, ArgList &Args, DiagnosticsEngine &Diags)
static auto makeFlagToValueNormalizer(T Value)
#define RETURN_IF_MANY(OPTS, PATHS)
static CodeGenOptions::OptRemark ParseOptimizationRemark(DiagnosticsEngine &Diags, ArgList &Args, OptSpecifier OptEQ, StringRef Name)
Parse a remark command line argument.
static bool ParseFileSystemArgs(FileSystemOptions &Opts, const ArgList &Args, DiagnosticsEngine &Diags)
static constexpr bool is_uint64_t_convertible()
static void GeneratePointerAuthArgs(const LangOptions &Opts, ArgumentConsumer Consumer)
static std::optional< SimpleEnumValue > findValueTableByName(const SimpleEnumValueTable &Table, StringRef Name)
static std::optional< OptSpecifier > getProgramActionOpt(frontend::ActionKind ProgramAction)
Maps frontend action to command line option.
static bool parseDiagnosticLevelMask(StringRef FlagName, const std::vector< std::string > &Levels, DiagnosticsEngine &Diags, DiagnosticLevelMask &M)
static std::optional< bool > normalizeSimpleFlag(OptSpecifier Opt, unsigned TableIndex, const ArgList &Args, DiagnosticsEngine &Diags)
CompilerInvocation::ArgumentConsumer ArgumentConsumer
static void denormalizeSimpleEnumImpl(ArgumentConsumer Consumer, unsigned SpellingOffset, Option::OptionClass OptClass, unsigned TableIndex, unsigned Value)
static void GenerateArg(ArgumentConsumer Consumer, llvm::opt::OptSpecifier OptSpecifier)
static void addDiagnosticArgs(ArgList &Args, OptSpecifier Group, OptSpecifier GroupWithValue, std::vector< std::string > &Diagnostics)
static bool ParseAnalyzerArgs(AnalyzerOptions &Opts, ArgList &Args, DiagnosticsEngine &Diags)
static void ParsePointerAuthArgs(LangOptions &Opts, ArgList &Args, DiagnosticsEngine &Diags)
static void parseAnalyzerConfigs(AnalyzerOptions &AnOpts, DiagnosticsEngine *Diags)
static void denormalizeSimpleFlag(ArgumentConsumer Consumer, unsigned SpellingOffset, Option::OptionClass, unsigned,...)
The tblgen-erated code passes in a fifth parameter of an arbitrary type, but denormalizeSimpleFlags n...
static bool ParsePreprocessorArgs(PreprocessorOptions &Opts, ArgList &Args, DiagnosticsEngine &Diags, frontend::ActionKind Action, const FrontendOptions &FrontendOpts)
static std::optional< unsigned > normalizeSimpleEnum(OptSpecifier Opt, unsigned TableIndex, const ArgList &Args, DiagnosticsEngine &Diags)
static StringRef GetInputKindName(InputKind IK)
Get language name for given input kind.
static void initOption(AnalyzerOptions::ConfigTable &Config, DiagnosticsEngine *Diags, StringRef &OptionField, StringRef Name, StringRef DefaultVal)
#define RETURN_IF(OPTS, PATH)
static std::optional< std::string > normalizeTriple(OptSpecifier Opt, int TableIndex, const ArgList &Args, DiagnosticsEngine &Diags)
T & ensureOwned(std::shared_ptr< T > &Storage)
static void GenerateMigratorArgs(const MigratorOptions &Opts, ArgumentConsumer Consumer)
static const auto & getFrontendActionTable()
Return a table that associates command line option specifiers with the frontend action.
static void GenerateTargetArgs(const TargetOptions &Opts, ArgumentConsumer Consumer)
static std::optional< frontend::ActionKind > getFrontendAction(OptSpecifier &Opt)
Maps command line option to frontend action.
static bool checkVerifyPrefixes(const std::vector< std::string > &VerifyPrefixes, DiagnosticsEngine &Diags)
static SanitizerMaskCutoffs parseSanitizerWeightedKinds(StringRef FlagName, const std::vector< std::string > &Sanitizers, DiagnosticsEngine &Diags)
static ShowColorsKind parseShowColorsMode(const ArgList &Args, bool DefaultColor)
static void GenerateAPINotesArgs(const APINotesOptions &Opts, ArgumentConsumer Consumer)
static bool isCodeGenAction(frontend::ActionKind Action)
static std::optional< bool > normalizeSimpleNegativeFlag(OptSpecifier Opt, unsigned, const ArgList &Args, DiagnosticsEngine &)
static void GenerateFileSystemArgs(const FileSystemOptions &Opts, ArgumentConsumer Consumer)
static bool IsInputCompatibleWithStandard(InputKind IK, const LangStandard &S)
Check if input file kind and language standard are compatible.
static void denormalizeStringImpl(ArgumentConsumer Consumer, const Twine &Spelling, Option::OptionClass OptClass, unsigned, const Twine &Value)
static llvm::StringRef lookupStrInTable(unsigned Offset)
static bool ParseSSAFArgs(ssaf::SSAFOptions &Opts, ArgList &Args, DiagnosticsEngine &Diags)
static void GeneratePreprocessorArgs(const PreprocessorOptions &Opts, ArgumentConsumer Consumer, const LangOptions &LangOpts, const FrontendOptions &FrontendOpts, const CodeGenOptions &CodeGenOpts)
static bool ParseFrontendArgs(FrontendOptions &Opts, ArgList &Args, DiagnosticsEngine &Diags, bool &IsHeaderFile)
static auto makeBooleanOptionDenormalizer(bool Value)
static void GeneratePreprocessorOutputArgs(const PreprocessorOutputOptions &Opts, ArgumentConsumer Consumer, frontend::ActionKind Action)
static bool isStrictlyPreprocessorAction(frontend::ActionKind Action)
static std::string serializeXRayInstrumentationBundle(const XRayInstrSet &S)
static bool ParseMigratorArgs(MigratorOptions &Opts, const ArgList &Args, DiagnosticsEngine &Diags)
static void ParseAPINotesArgs(APINotesOptions &Opts, ArgList &Args, DiagnosticsEngine &diags)
static void denormalizeStringVector(ArgumentConsumer Consumer, unsigned SpellingOffset, Option::OptionClass OptClass, unsigned TableIndex, const std::vector< std::string > &Values)
static bool ParseDependencyOutputArgs(DependencyOutputOptions &Opts, ArgList &Args, DiagnosticsEngine &Diags, frontend::ActionKind Action, bool ShowLineMarkers)
static Expected< std::optional< uint32_t > > parseToleranceOption(StringRef Arg)
static std::optional< std::vector< std::string > > normalizeStringVector(OptSpecifier Opt, int, const ArgList &Args, DiagnosticsEngine &)
static void GenerateAnalyzerArgs(const AnalyzerOptions &Opts, ArgumentConsumer Consumer)
static void GenerateOptimizationRemark(ArgumentConsumer Consumer, OptSpecifier OptEQ, StringRef Name, const CodeGenOptions::OptRemark &Remark)
Generate a remark argument. This is an inverse of ParseOptimizationRemark.
static bool ParsePreprocessorOutputArgs(PreprocessorOutputOptions &Opts, ArgList &Args, DiagnosticsEngine &Diags, frontend::ActionKind Action)
llvm::function_ref< void( CompilerInvocation &, SmallVectorImpl< const char * > &, CompilerInvocation::StringAllocator)> GenerateFn
static bool RoundTrip(ParseFn Parse, GenerateFn Generate, CompilerInvocation &RealInvocation, CompilerInvocation &DummyInvocation, ArrayRef< const char * > CommandLineArgs, DiagnosticsEngine &Diags, const char *Argv0, bool CheckAgainstOriginalInvocation=false, bool ForceRoundTrip=false)
May perform round-trip of command line arguments.
static void denormalizeSimpleEnum(ArgumentConsumer Consumer, unsigned SpellingOffset, Option::OptionClass OptClass, unsigned TableIndex, T Value)
std::shared_ptr< T > make_shared_copy(const T &X)
llvm::function_ref< bool(CompilerInvocation &, ArrayRef< const char * >, DiagnosticsEngine &, const char *)> ParseFn
static bool parseTestModuleFileExtensionArg(StringRef Arg, std::string &BlockName, unsigned &MajorVersion, unsigned &MinorVersion, bool &Hashed, std::string &UserInfo)
Parse the argument to the -ftest-module-file-extension command-line argument.
static bool ParseHeaderSearchArgs(HeaderSearchOptions &Opts, ArgList &Args, DiagnosticsEngine &Diags)
static void GenerateDependencyOutputArgs(const DependencyOutputOptions &Opts, ArgumentConsumer Consumer)
static StringRef getStringOption(AnalyzerOptions::ConfigTable &Config, StringRef OptionName, StringRef DefaultVal)
static bool FixupInvocation(CompilerInvocation &Invocation, DiagnosticsEngine &Diags, const ArgList &Args, InputKind IK)
static void parseSanitizerKinds(StringRef FlagName, const std::vector< std::string > &Sanitizers, DiagnosticsEngine &Diags, SanitizerSet &S)
static void GenerateHeaderSearchArgs(const HeaderSearchOptions &Opts, ArgumentConsumer Consumer)
Defines the clang::FileSystemOptions interface.
Result
Implement __builtin_bit_cast and related operations.
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Defines the clang::LangOptions interface.
static DiagnosticBuilder Diag(DiagnosticsEngine *Diags, const LangOptions &Features, FullSourceLoc TokLoc, const char *TokBegin, const char *TokRangeBegin, const char *TokRangeEnd, unsigned DiagID)
Produce a diagnostic highlighting some portion of a literal.
Defines types useful for describing an Objective-C runtime.
static std::string toString(const clang::SanitizerSet &Sanitizers)
Produce a string containing comma-separated names of sanitizers in Sanitizers set.
Defines the clang::SanitizerKind enum.
Defines the clang::SourceLocation class and associated facilities.
#define CXXABI(Name, Str)
Defines the clang::TargetOptions class.
Defines version macros and version-related utility functions for Clang.
Defines the clang::XRayInstrKind enum.
__DEVICE__ void * memcpy(void *__a, const void *__b, size_t __c)
Tracks various options which control how API notes are found and handled.
llvm::VersionTuple SwiftVersion
The Swift version which should be used for API notes.
std::vector< std::string > ModuleSearchPaths
The set of search paths where we API notes can be found for particular modules.
Stores options for the analyzer from the command line.
static std::vector< StringRef > getRegisteredPackages(bool IncludeExperimental=false)
Retrieves the list of packages generated from Checkers.td.
std::vector< std::pair< std::string, bool > > CheckersAndPackages
Pairs of checker/package name and enable/disable.
std::vector< std::string > SilencedCheckersAndPackages
Vector of checker/package names which will not emit warnings.
AnalysisDiagClients AnalysisDiagOpt
AnalysisConstraints AnalysisConstraintsOpt
ConfigTable Config
A key-value table of use-specified configuration values.
unsigned ShouldEmitErrorsOnInvalidConfigValue
AnalysisPurgeMode AnalysisPurgeOpt
bool isUnknownAnalyzerConfig(llvm::StringRef Name)
static std::vector< StringRef > getRegisteredCheckers(bool IncludeExperimental=false)
Retrieves the list of checkers generated from Checkers.td.
llvm::StringMap< std::string > ConfigTable
std::string FullCompilerInvocation
Store full compiler invocation for reproducible instructions in the generated report.
AnalysisInliningMode InliningMode
The mode of function selection used during inlining.
static bool isBuiltinFunc(llvm::StringRef Name)
Returns true if this is a libc/libm function without the '__builtin_' prefix.
CompatibilityKind
For ASTs produced with different option value, signifies their level of compatibility.
CodeGenOptions - Track various options which control how the code is optimized and passed to the back...
llvm::SmallVector< std::pair< std::string, std::string >, 0 > CoveragePrefixMap
Prefix replacement map for source-based code coverage to remap source file paths in coverage mapping.
SanitizerSet SanitizeMergeHandlers
Set of sanitizer checks that can merge handlers (smaller code size at the expense of debuggability).
std::string StackUsageFile
Name of the stack usage file (i.e., .su file) if user passes -fstack-usage.
llvm::SmallVector< std::pair< std::string, std::string >, 0 > DebugPrefixMap
std::string OptRecordFile
The name of the file to which the backend should save YAML optimization records.
std::string BinutilsVersion
std::vector< BitcodeFileToLink > LinkBitcodeFiles
The files specified here are linked in to the module before optimizations.
std::optional< uint64_t > DiagnosticsHotnessThreshold
The minimum hotness value a diagnostic needs in order to be included in optimization diagnostics.
char CoverageVersion[4]
The version string to put into coverage files.
std::string HLSLRecordCommandLine
The string containing the commandline for the dx.source.args metadata, if non-empty.
llvm::DenormalMode FPDenormalMode
The floating-point denormal mode to use.
std::string CoverageNotesFile
The filename with path we use for coverage notes files.
std::string ProfileInstrumentUsePath
Name of the profile file to use as input for -fprofile-instr-use.
std::string SampleProfileFile
Name of the profile file to use with -fprofile-sample-use.
uint64_t LargeDataThreshold
The code model-specific large data threshold to use (-mlarge-data-threshold).
std::string MemoryProfileOutput
Name of the profile file to use as output for with -fmemory-profile.
std::string CodeModel
The code model to use (-mcmodel).
std::string CoverageDataFile
The filename with path we use for coverage data files.
std::optional< uint32_t > DiagnosticsMisExpectTolerance
The maximum percentage profiling weights can deviate from the expected values in order to be included...
std::string OptRecordPasses
The regex that filters the passes that should be saved to the optimization records.
std::string SaveTempsFilePrefix
Prefix to use for -save-temps output.
XRayInstrSet XRayInstrumentationBundle
Set of XRay instrumentation kinds to emit.
bool hasSanitizeCoverage() const
SanitizerSet SanitizeAnnotateDebugInfo
Set of sanitizer checks, for which the instrumentation will be annotated with extra debug info.
PointerAuthOptions PointerAuth
Configuration for pointer-signing.
llvm::DenormalMode FP32DenormalMode
The floating-point denormal mode to use, for float.
SanitizerSet SanitizeTrap
Set of sanitizer checks that trap rather than diagnose.
SanitizerSet SanitizeRecover
Set of sanitizer checks that are non-fatal (i.e.
bool hasReducedDebugInfo() const
Check if type and variable info should be emitted.
OptRemark OptimizationRemark
Selected optimizations for which we should enable optimization remarks.
std::string ThinLTOIndexFile
Name of the function summary index file to use for ThinLTO function importing.
const char * Argv0
Executable and command-line used to create a given CompilerInvocation.
llvm::SmallVector< llvm::SmallString< 8 > > HLSLParsedCommandLine
The vector contains parsed commandline for the dx.source.args metadata, if parsing was successful.
SanitizerMaskCutoffs SanitizeSkipHotCutoffs
Set of thresholds in a range [0.0, 1.0]: the top hottest code responsible for the given fraction of P...
std::vector< std::string > NoBuiltinFuncs
A list of all -fno-builtin-* function names (e.g., memset).
std::vector< uint8_t > CmdArgs
List of backend command-line options for -fembed-bitcode.
OptRemark OptimizationRemarkAnalysis
Selected optimizations for which we should enable optimization analyses.
std::optional< double > AllowRuntimeCheckSkipHotCutoff
std::vector< std::string > CommandLineArgs
void resetNonModularOptions(StringRef ModuleFormat)
Reset all of the options that are not considered when building a module.
std::string OptRecordFormat
The format used for serializing remarks (default: YAML)
std::string DIBugsReportFilePath
The file to use for dumping bug report by Debugify for original debug info.
OptRemark OptimizationRemarkMissed
Selected optimizations for which we should enable missed optimization remarks.
The base class of CompilerInvocation.
std::shared_ptr< DiagnosticOptions > DiagnosticOpts
Options controlling the diagnostic engine.
std::shared_ptr< AnalyzerOptions > AnalyzerOpts
Options controlling the static analyzer.
std::shared_ptr< MigratorOptions > MigratorOpts
std::shared_ptr< PreprocessorOutputOptions > PreprocessorOutputOpts
Options controlling preprocessed output.
std::shared_ptr< APINotesOptions > APINotesOpts
Options controlling API notes.
std::shared_ptr< TargetOptions > TargetOpts
Options controlling the target.
const FrontendOptions & getFrontendOpts() const
std::shared_ptr< ssaf::SSAFOptions > SSAFOpts
Options controlling the Scalable Static Analysis Framework (SSAF).
const CodeGenOptions & getCodeGenOpts() const
llvm::function_ref< const char *(const Twine &)> StringAllocator
Command line generation.
const FileSystemOptions & getFileSystemOpts() const
std::shared_ptr< PreprocessorOptions > PPOpts
Options controlling the preprocessor (aside from #include handling).
const PreprocessorOutputOptions & getPreprocessorOutputOpts() const
const ssaf::SSAFOptions & getSSAFOpts() const
std::vector< std::string > getCC1CommandLine() const
Generate cc1-compatible command line arguments from this instance, wrapping the result as a std::vect...
std::shared_ptr< FileSystemOptions > FSOpts
Options controlling file system operations.
const AnalyzerOptions & getAnalyzerOpts() const
const MigratorOptions & getMigratorOpts() const
void generateCC1CommandLine(llvm::SmallVectorImpl< const char * > &Args, StringAllocator SA) const
Generate cc1-compatible command line arguments from this instance.
CompilerInvocationBase & deep_copy_assign(const CompilerInvocationBase &X)
const DependencyOutputOptions & getDependencyOutputOpts() const
CompilerInvocationBase & shallow_copy_assign(const CompilerInvocationBase &X)
const TargetOptions & getTargetOpts() const
std::shared_ptr< CodeGenOptions > CodeGenOpts
Options controlling IRgen and the backend.
std::shared_ptr< LangOptions > LangOpts
Options controlling the language variant.
const APINotesOptions & getAPINotesOpts() const
const HeaderSearchOptions & getHeaderSearchOpts() const
std::shared_ptr< HeaderSearchOptions > HSOpts
Options controlling the #include directive.
const PreprocessorOptions & getPreprocessorOpts() const
const DiagnosticOptions & getDiagnosticOpts() const
const LangOptions & getLangOpts() const
Const getters.
std::shared_ptr< FrontendOptions > FrontendOpts
Options controlling the frontend itself.
llvm::function_ref< void(const Twine &)> ArgumentConsumer
std::shared_ptr< DependencyOutputOptions > DependencyOutputOpts
Options controlling dependency output.
Helper class for holding the data necessary to invoke the compiler.
PreprocessorOptions & getPreprocessorOpts()
void clearImplicitModuleBuildOptions()
Disable implicit modules and canonicalize options that are only used by implicit modules.
MigratorOptions & getMigratorOpts()
AnalyzerOptions & getAnalyzerOpts()
APINotesOptions & getAPINotesOpts()
static bool CreateFromArgs(CompilerInvocation &Res, ArrayRef< const char * > CommandLineArgs, DiagnosticsEngine &Diags, const char *Argv0=nullptr)
Create a compiler invocation from a list of input options.
ssaf::SSAFOptions & getSSAFOpts()
LangOptions & getLangOpts()
Mutable getters.
static bool checkCC1RoundTrip(ArrayRef< const char * > Args, DiagnosticsEngine &Diags, const char *Argv0=nullptr)
Check that Args can be parsed and re-serialized without change, emiting diagnostics for any differenc...
DependencyOutputOptions & getDependencyOutputOpts()
CompilerInvocation()=default
void resetNonModularOptions()
Reset all of the options that are not considered when building a module.
FrontendOptions & getFrontendOpts()
FileSystemOptions & getFileSystemOpts()
CompilerInvocation & operator=(const CompilerInvocation &X)
static void setDefaultPointerAuthOptions(PointerAuthOptions &Opts, const LangOptions &LangOpts, const llvm::Triple &Triple)
Populate Opts with the default set of pointer authentication-related options given LangOpts and Tripl...
CodeGenOptions & getCodeGenOpts()
TargetOptions & getTargetOpts()
std::string computeContextHash() const
Compute the context hash - a string that uniquely identifies compiler settings.
HeaderSearchOptions & getHeaderSearchOpts()
DiagnosticOptions & getDiagnosticOpts()
PreprocessorOutputOptions & getPreprocessorOutputOpts()
Same as CompilerInvocation, but with copy-on-write optimization.
FrontendOptions & getMutFrontendOpts()
LangOptions & getMutLangOpts()
Mutable getters.
HeaderSearchOptions & getMutHeaderSearchOpts()
MigratorOptions & getMutMigratorOpts()
PreprocessorOptions & getMutPreprocessorOpts()
APINotesOptions & getMutAPINotesOpts()
PreprocessorOutputOptions & getMutPreprocessorOutputOpts()
CodeGenOptions & getMutCodeGenOpts()
TargetOptions & getMutTargetOpts()
FileSystemOptions & getMutFileSystemOpts()
AnalyzerOptions & getMutAnalyzerOpts()
void visitMutPaths(llvm::function_ref< VisitMutResult(StringRef, std::string &)> Cb)
Visits paths stored in the invocation, allowing the callback to mutate them via the out-param.
DiagnosticOptions & getMutDiagnosticOpts()
DependencyOutputOptions & getMutDependencyOutputOpts()
CowCompilerInvocation()=default
void visitPaths(llvm::function_ref< VisitConstResult(StringRef)> Cb) const
Visits paths stored in the invocation.
ssaf::SSAFOptions & getMutSSAFOpts()
DependencyOutputOptions - Options for controlling the compiler dependency file generation.
ShowIncludesDestination ShowIncludesDest
Destination of cl.exe style /showIncludes info.
HeaderIncludeFormatKind HeaderIncludeFormat
The format of header information.
std::string OutputFile
The file to write dependency output to.
HeaderIncludeFilteringKind HeaderIncludeFiltering
Determine whether header information should be filtered.
std::vector< std::string > Targets
A list of names to use as the targets in the dependency file; this list must contain at least one ent...
std::vector< std::pair< std::string, ExtraDepKind > > ExtraDeps
A list of extra dependencies (filename and kind) to be used for every target.
unsigned IncludeSystemHeaders
Include system header dependencies.
static llvm::IntrusiveRefCntPtr< DiagnosticIDs > create()
Options for controlling the compiler diagnostics engine.
std::string DiagnosticSuppressionMappingsFile
Path for the file that defines diagnostic suppression mappings.
std::vector< std::string > Remarks
The list of -R... options used to alter the diagnostic mappings, with the prefixes removed.
std::vector< std::string > Warnings
The list of -W... options used to alter the diagnostic mappings, with the prefixes removed.
std::vector< std::string > VerifyPrefixes
The prefixes for comment directives sought by -verify ("expected" by default).
std::string DiagnosticSerializationFile
The file to serialize diagnostics to (non-appending).
Concrete class used by the front-end to report problems and issues.
DiagnosticBuilder Report(SourceLocation Loc, unsigned DiagID)
Issue the message to the client.
void setClient(DiagnosticConsumer *client, bool ShouldOwnClient=true)
Set the diagnostic client associated with this diagnostic object.
unsigned getNumErrors() const
bool isIgnored(unsigned DiagID, SourceLocation Loc) const
Determine whether the diagnostic is known to be ignored.
unsigned getNumWarnings() const
Keeps track of options that affect how file operations are performed.
FrontendOptions - Options for controlling the behavior of the frontend.
InputKind DashX
The input kind, either specified via -x argument or deduced from the input file name.
std::vector< std::string > ModuleFiles
The list of additional prebuilt module files to load before processing the input.
unsigned ClangIRDisablePasses
Disable Clang IR specific (CIR) passes.
std::map< std::string, std::vector< std::string > > PluginArgs
Args to pass to the plugins.
unsigned ClangIRDisableCIRVerifier
Disable Clang IR (CIR) verifier.
unsigned IsSystemModule
When using -emit-module, treat the modulemap as a system module.
unsigned ClangIRLibOptEnabled
Enable ClangIR library optimization.
unsigned UseClangIRPipeline
Use Clang IR pipeline to emit code.
ASTDumpOutputFormat ASTDumpFormat
Specifies the output format of the AST.
std::optional< std::string > AuxTargetCPU
Auxiliary target CPU for CUDA/HIP compilation.
std::string OutputFile
The output file, if any.
unsigned ShowStats
Show frontend performance metrics and statistics.
unsigned GenReducedBMI
Whether to generate reduced BMI for C++20 named modules.
std::string ActionName
The name of the action to run when using a plugin action.
std::vector< std::shared_ptr< ModuleFileExtension > > ModuleFileExtensions
The list of module file extensions.
ParsedSourceLocation CodeCompletionAt
If given, enable code completion at the provided location.
std::string FixItSuffix
If given, the new suffix for fix-it rewritten files.
static InputKind getInputKindForExtension(StringRef Extension)
getInputKindForExtension - Return the appropriate input kind for a file extension.
std::vector< std::string > Plugins
The list of plugins to load.
unsigned ASTDumpAll
Whether we deserialize all decls when forming AST dumps.
unsigned GenerateGlobalModuleIndex
Whether we can generate the global module index if needed.
unsigned DisableFree
Disable memory freeing on exit.
SmallVector< FrontendInputFile, 0 > Inputs
The input files and their types.
frontend::ActionKind ProgramAction
The frontend action to perform.
std::optional< std::vector< std::string > > AuxTargetFeatures
Auxiliary target features for CUDA/HIP compilation.
std::string AuxTriple
Auxiliary triple for CUDA/HIP/SYCL compilation.
unsigned UseGlobalModuleIndex
Whether we can use the global module index if available.
unsigned ASTDumpDecls
Whether we include declaration dumps in AST dumps.
A diagnostic client that ignores all diagnostics.
@ None
No signing for any function.
@ NonLeaf
Sign the return address of functions that spill LR.
@ All
Sign the return address of all functions,.
@ BKey
Return address signing uses APIB key.
@ AKey
Return address signing uses APIA key.
@ None
Don't exclude any overflow patterns from sanitizers.
@ AddUnsignedOverflowTest
if (a + b < a)
@ All
Exclude all overflow patterns (below)
@ AddSignedOverflowTest
if (a + b < a)
@ PostDecrInWhile
while (count–)
CompatibilityKind
For ASTs produced with different option value, signifies their level of compatibility.
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
SanitizerSet UBSanFeatureIgnoredSanitize
Set of (UBSan) sanitizers that when enabled do not cause __has_feature(undefined_behavior_sanitizer) ...
void resetNonModularOptions()
Reset all of the options that are not considered when building a module.
std::optional< TargetCXXABI::Kind > CXXABI
C++ ABI to compile with, if specified by the frontend through -fc++-abi=.
std::vector< std::string > NoBuiltinFuncs
A list of all -fno-builtin-* function names (e.g., memset).
std::string ModuleName
The module currently being compiled as specified by -fmodule-name.
clang::ObjCRuntime ObjCRuntime
std::string getOpenCLVersionString() const
Return the OpenCL C or C++ for OpenCL language name and version as a string.
unsigned OverflowPatternExclusionMask
Which overflow patterns should be excluded from sanitizer instrumentation.
SanitizerSet Sanitize
Set of enabled sanitizers.
std::optional< llvm::AllocTokenMode > AllocTokenMode
The allocation token mode.
bool UseTargetPathSeparator
Indicates whether to use target's platform-specific file separator when FILE macro is used and when c...
static void setLangDefaults(LangOptions &Opts, Language Lang, const llvm::Triple &T, std::vector< std::string > &Includes, LangStandard::Kind LangStd=LangStandard::lang_unspecified)
Set language defaults for the given input language and language standard in the given LangOptions obj...
std::string OverflowHandler
The name of the handler function to be called when -ftrapv is specified.
std::string RandstructSeed
The seed used by the randomize structure layout feature.
std::map< std::string, std::string, std::greater< std::string > > MacroPrefixMap
A prefix map for FILE, BASE_FILE and __builtin_FILE().
bool isTargetDevice() const
True when compiling for an offloading target device.
std::optional< uint64_t > AllocTokenMax
Maximum number of allocation tokens (0 = target SIZE_MAX), nullopt if none set (use target SIZE_MAX).
LangStandard::Kind LangStd
The used language standard.
unsigned getOpenCLCompatibleVersion() const
Return the OpenCL version that kernel language is compatible with.
bool SanitizeCoverage
Is at least one coverage instrumentation type enabled.
std::vector< llvm::Triple > OMPTargetTriples
Triples of the OpenMP targets that the host code codegen should take into account in order to generat...
std::vector< std::string > NoSanitizeFiles
Paths to files specifying which objects (files, functions, variables) should not be instrumented.
std::string CurrentModule
The name of the current module, of which the main source file is a part.
std::vector< std::string > ModuleFeatures
The names of any features to enable in module 'requires' decls in addition to the hard-coded list in ...
The basic abstraction for the target Objective-C runtime.
bool allowsWeak() const
Does this runtime allow the use of __weak?
bool tryParse(StringRef input)
Try to parse an Objective-C runtime specification from the given string.
std::string getAsString() const
bool allowsARC() const
Does this runtime allow ARC at all?
@ FragileMacOSX
'macosx-fragile' is the Apple-provided NeXT-derived runtime on Mac OS X platforms that use the fragil...
Discrimination
Forms of extra discrimination.
ARM8_3Key
Hardware pointer-signing keys in ARM8.3.
static constexpr std::optional< PositiveAnalyzerOption > create(unsigned Val)
PreprocessorOptions - This class is used for passing the various options used in preprocessor initial...
std::vector< std::pair< std::string, std::string > > RemappedFiles
The set of file remappings, which take existing files on the system (the first part of each pair) and...
bool PCHWithHdrStopCreate
When true, we are creating a PCH or creating the PCH object while expecting a pragma hdrstop to separ...
std::vector< std::string > Includes
std::pair< unsigned, bool > PrecompiledPreambleBytes
If non-zero, the implicit PCH include is actually a precompiled preamble that covers this number of b...
bool LexEditorPlaceholders
When enabled, the preprocessor will construct editor placeholder tokens.
void resetNonModularOptions()
Reset any options that are not considered when building a module.
void addMacroUndef(StringRef Name)
std::set< std::string > DeserializedPCHDeclsToErrorOn
This is a set of names for decls that we do not want to be deserialized, and we emit an error if they...
std::vector< std::string > EmbedEntries
User specified embed entries.
void addMacroDef(StringRef Name)
bool DefineTargetOSMacros
Indicates whether to predefine target OS macros.
bool DetailedRecord
Whether we should maintain a detailed record of all macro definitions and expansions.
std::vector< std::string > ChainedIncludes
Headers that will be converted to chained PCHs in memory.
bool PCHWithHdrStop
When true, we are creating or using a PCH where a pragma hdrstop is expected to indicate the beginnin...
std::optional< uint64_t > SourceDateEpoch
If set, the UNIX timestamp specified by SOURCE_DATE_EPOCH.
bool UsePredefines
Initialize the preprocessor with the compiler and target specific predefines.
void addRemappedFile(StringRef From, StringRef To)
std::vector< std::pair< std::string, bool > > Macros
PreprocessorOutputOptions - Options for controlling the C preprocessor output (e.g....
unsigned ShowMacros
Print macro definitions.
unsigned ShowCPP
Print normal preprocessed output.
unsigned ShowLineMarkers
Show #line markers.
unsigned DirectivesOnly
Process directives but do not expand macros.
Encodes a location in the source.
static bool isSupportedCXXABI(const llvm::Triple &T, Kind Kind)
static const auto & getSpelling(Kind ABIKind)
static bool usesRelativeVTables(const llvm::Triple &T)
static bool isABI(StringRef Name)
Options for controlling the target.
std::string Triple
The name of the target triple to compile for.
llvm::VersionTuple SDKVersion
The version of the SDK which was used during the compilation.
uint64_t LargeDataThreshold
llvm::VersionTuple DarwinTargetVariantSDKVersion
The version of the darwin target variant SDK which was used during the compilation.
std::string HostTriple
When compiling for the device side, contains the triple used to compile for the host.
constexpr XRayInstrMask None
constexpr XRayInstrMask All
@ OS
Indicates that the tracking object is a descendant of a referenced-counted OSObject,...
IncludeDirGroup
IncludeDirGroup - Identifies the group an include Entry belongs to, representing its relative positiv...
@ CXXSystem
Like System, but only used for C++.
@ Angled
Paths for '#include <>' added by '-I'.
@ CSystem
Like System, but only used for C.
@ System
Like Angled, but marks system directories.
@ Quoted
'#include ""' paths, added by 'gcc -iquote'.
@ ExternCSystem
Like System, but headers are implicitly wrapped in extern "C".
@ ObjCSystem
Like System, but only used for ObjC.
@ ObjCXXSystem
Like System, but only used for ObjC++.
@ After
Like System, but searched after the system directories.
@ GenerateHeaderUnit
Generate a C++20 header unit module from a header file.
@ VerifyPCH
Load and verify that a PCH file is usable.
@ PrintPreprocessedInput
-E mode.
@ RewriteTest
Rewriter playground.
@ ParseSyntaxOnly
Parse and perform semantic analysis.
@ TemplightDump
Dump template instantiations.
@ GenerateModuleInterface
Generate pre-compiled module from a standard C++ module interface unit.
@ EmitLLVM
Emit a .ll file.
@ PrintPreamble
Print the "preamble" of the input file.
@ InitOnly
Only execute frontend initialization.
@ ASTView
Parse ASTs and view them in Graphviz.
@ PluginAction
Run a plugin action,.
@ DumpRawTokens
Dump out raw tokens.
@ PrintDependencyDirectivesSourceMinimizerOutput
Print the output of the dependency directives source minimizer.
@ RewriteObjC
ObjC->C Rewriter.
@ RunPreprocessorOnly
Just lex, no output.
@ ModuleFileInfo
Dump information about a module file.
@ EmitCIR
Emit a .cir file.
@ DumpCompilerOptions
Dump the compiler configuration.
@ RunAnalysis
Run one or more source code analyses.
@ ASTPrint
Parse ASTs and print them.
@ GenerateReducedModuleInterface
Generate reduced module interface for a standard C++ module interface unit.
@ GenerateInterfaceStubs
Generate Interface Stub Files.
@ ASTDump
Parse ASTs and dump them.
@ DumpTokens
Dump out preprocessed tokens.
@ FixIt
Parse and apply any fixits to the source.
@ EmitAssembly
Emit a .s file.
@ EmitCodeGenOnly
Generate machine code, but don't emit anything.
@ RewriteMacros
Expand macros but not #includes.
@ EmitHTML
Translate input source into HTML.
@ GeneratePCH
Generate pre-compiled header.
@ EmitLLVMOnly
Generate LLVM IR, but do not emit anything.
@ GenerateModule
Generate pre-compiled module from a module map.
@ ASTDeclList
Parse ASTs and list Decl nodes.
bool EQ(InterpState &S, CodePtr OpPC)
const unsigned VERSION_MINOR
AST file minor version number supported by this version of Clang.
const unsigned VERSION_MAJOR
AST file major version number supported by this version of Clang.
The JSON file list parser is used to communicate input to InstallAPI.
ASTDumpOutputFormat
Used to specify the format for printing AST dump information.
bool ParseDiagnosticArgs(DiagnosticOptions &Opts, llvm::opt::ArgList &Args, DiagnosticsEngine *Diags=nullptr, bool DefaultDiagColor=true)
Fill out Opts based on the options given in Args.
SanitizerMask getPPTransparentSanitizers()
Return the sanitizers which do not affect preprocessing.
IntrusiveRefCntPtr< llvm::vfs::FileSystem > createVFSFromOverlayFiles(ArrayRef< std::string > VFSOverlayFiles, DiagnosticsEngine &Diags, IntrusiveRefCntPtr< llvm::vfs::FileSystem > BaseFS)
DiagnosticLevelMask
A bitmask representing the diagnostic levels used by VerifyDiagnosticConsumer.
const char * headerIncludeFormatKindToString(HeaderIncludeFormatKind K)
std::unique_ptr< DiagnosticOptions > CreateAndPopulateDiagOpts(ArrayRef< const char * > Argv)
constexpr uint16_t BlockDescriptorConstantDiscriminator
Constant discriminator to be used with block descriptor pointers.
constexpr uint16_t IsaPointerConstantDiscriminator
Constant discriminator to be used with objective-c isa pointers.
const char * headerIncludeFilteringKindToString(HeaderIncludeFilteringKind K)
std::vector< std::string > Macros
A list of macros of the form <definition>=<expansion> .
AnalysisConstraints
AnalysisConstraints - Set of available constraint models.
@ Success
Annotation was successful.
@ Parse
Parse the block; this code is always used.
constexpr uint16_t SuperPointerConstantDiscriminator
Constant discriminator to be used with objective-c superclass pointers.
void serializeSanitizerSet(SanitizerSet Set, SmallVectorImpl< StringRef > &Values)
Serialize a SanitizerSet into values for -fsanitize= or -fno-sanitize=.
LLVM_READONLY bool isLetter(unsigned char c)
Return true if this character is an ASCII letter: [a-zA-Z].
LLVM_READONLY bool isAlphanumeric(unsigned char c)
Return true if this character is an ASCII letter or digit: [a-zA-Z0-9].
constexpr uint16_t MethodListPointerConstantDiscriminator
Constant discriminator to be used with method list pointers.
constexpr uint16_t ClassROConstantDiscriminator
Constant discriminator to be used with objective-c class_ro_t pointers.
constexpr uint16_t InitFiniPointerConstantDiscriminator
Constant discriminator to be used with function pointers in .init_array and .fini_array.
@ C
Languages that the frontend can parse and compile.
@ CIR
LLVM IR & CIR: we accept these so that we can run the optimizer on them, and compile them to assembly...
@ Asm
Assembly: we accept this only so that we can preprocess it.
@ Default
Set to the current date and time.
bool parseSanitizerWeightedValue(StringRef Value, bool AllowGroups, SanitizerMaskCutoffs &Cutoffs)
Parse a single weighted value (e.g., 'undefined=0.05') from a -fsanitize= or -fno-sanitize= value lis...
@ Result
The result type of a method or function.
unsigned getOptimizationLevel(const llvm::opt::ArgList &Args, InputKind IK, DiagnosticsEngine &Diags)
XRayInstrMask parseXRayInstrValue(StringRef Value)
Parses a command line argument into a mask.
IntrusiveRefCntPtr< llvm::vfs::FileSystem > createVFSFromCompilerInvocation(const CompilerInvocation &CI, DiagnosticsEngine &Diags)
void serializeXRayInstrValue(XRayInstrSet Set, SmallVectorImpl< StringRef > &Values)
Serializes a set into a list of command line arguments.
unsigned getOptimizationLevelSize(const llvm::opt::ArgList &Args)
AnalysisPurgeMode
AnalysisPurgeModes - Set of available strategies for dead symbol removal.
llvm::Expected< llvm::SmallVector< llvm::SmallString< 8 > > > parseEscapedCommandLine(const char *CommandLine)
Parse a space-separated command line with escaped spaces and backslashes.
void serializeSanitizerMaskCutoffs(const SanitizerMaskCutoffs &Cutoffs, SmallVectorImpl< std::string > &Values)
Serialize a SanitizerMaskCutoffs into command line arguments.
ShowColorsKind
Controls whether to show colors in diagnostic output.
@ Auto
Emit colors only if the output stream is detected to support them.
@ On
Always emit colors regardless of the output stream.
@ Off
Never emit colors regardless of the output stream.
ShaderStage
Shader programs run in specific pipeline stages.
constexpr uint16_t StdTypeInfoVTablePointerConstantDiscrimination
Constant discriminator for std::type_info vtable pointers: 0xB1EA/45546 The value is ptrauth_string_d...
SanitizerMask parseSanitizerValue(StringRef Value, bool AllowGroups)
Parse a single value from a -fsanitize= or -fno-sanitize= value list.
const llvm::opt::OptTable & getDriverOptTable()
AnalysisDiagClients
AnalysisDiagClients - Set of available diagnostic clients for rendering analysis results.
@ NUM_ANALYSIS_DIAG_CLIENTS
std::string getClangFullRepositoryVersion()
Retrieves the full repository version that is an amalgamation of the information in getClangRepositor...
int getLastArgIntValue(const llvm::opt::ArgList &Args, llvm::opt::OptSpecifier Id, int Default, DiagnosticsEngine *Diags=nullptr, unsigned Base=0)
Return the value of the last argument as an integer, or a default.
AnalysisInliningMode
AnalysisInlineFunctionSelection - Set of inlining function selection heuristics.
int const char * function
__DEVICE__ _Tp arg(const std::complex< _Tp > &__c)
__packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 __packed_splat2 __packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 uint32_t
bool Internalize
If true, we use LLVM module internalizer.
bool PropagateAttrs
If true, we set attributes functions in the bitcode library according to our CodeGenOptions,...
std::string Filename
The filename of the bitcode file to link in.
unsigned LinkFlags
Bitwise combination of llvm::Linker::Flags, passed to the LLVM linker.
Dummy tag type whose instance can be passed into the constructor to prevent creation of the reference...
The result of const visitation.
The result of mutable visitation.
LangStandard - Information about the properties of a particular language standard.
clang::Language getLanguage() const
Get the language that this standard describes.
const char * getDescription() const
getDescription - Get the description of this standard.
static const LangStandard & getLangStandardForKind(Kind K)
const char * getName() const
getName - Get the name of this standard.
static Kind getLangKind(StringRef Name)
static ParsedSourceLocation FromString(StringRef Str)
Construct a parsed source location from a string; the Filename is empty on error.
std::string ToString() const
Serialize ParsedSourceLocation back to a string.
PointerAuthSchema BlockDescriptorPointers
The ABI for pointers to block descriptors.
PointerAuthSchema BlockHelperFunctionPointers
The ABI for block object copy/destroy function pointers.
PointerAuthSchema CXXVTablePointers
The ABI for C++ virtual table pointers (the pointer to the table itself) as installed in an actual cl...
PointerAuthSchema InitFiniPointers
The ABI for function addresses in .init_array and .fini_array.
PointerAuthSchema BlockInvocationFunctionPointers
The ABI for block invocation function pointers.
PointerAuthSchema BlockByrefHelperFunctionPointers
The ABI for __block variable copy/destroy function pointers.
PointerAuthSchema CXXVTTVTablePointers
The ABI for C++ virtual table pointers as installed in a VTT.
bool ReturnAddresses
Should return addresses be authenticated?
PointerAuthSchema CXXTypeInfoVTablePointer
TypeInfo has external ABI requirements and is emitted without actually having parsed the libcxx defin...
bool AArch64JumpTableHardening
Use hardened lowering for jump-table dispatch?
PointerAuthSchema ObjCMethodListPointer
The ABI for a reference to an Objective-C method list in _class_ro_t.
PointerAuthSchema FunctionPointers
The ABI for C function pointers.
PointerAuthSchema ObjCSuperPointers
The ABI for Objective-C superclass pointers.
bool AuthTraps
Do authentication failures cause a trap?
PointerAuthSchema CXXMemberFunctionPointers
The ABI for C++ member function pointers.
PointerAuthSchema CXXVirtualVariadicFunctionPointers
The ABI for variadic C++ virtual function pointers.
PointerAuthSchema ObjCMethodListFunctionPointers
The ABI for Objective-C method lists.
PointerAuthSchema ObjCClassROPointers
The ABI for Objective-C class_ro_t pointers.
PointerAuthSchema CXXVirtualFunctionPointers
The ABI for most C++ virtual function pointers, i.e. v-table entries.
PointerAuthSchema ObjCIsaPointers
The ABI for Objective-C isa pointers.
bool IndirectGotos
Do indirect goto label addresses need to be authenticated?
void clear(SanitizerMask K=SanitizerKind::All)
Disable the sanitizers specified in K.
void set(SanitizerMask K, bool Value)
Enable or disable a certain (single) sanitizer.
bool empty() const
Returns true if no sanitizers are enabled.
SanitizerMask Mask
Bitmask of enabled sanitizers.
void set(XRayInstrMask K, bool Value)