Lines Matching defs:CodeGenOpts
148 CodeGenOpts(std::make_shared<CodeGenOptions>()),
165 CodeGenOpts = make_shared_copy(X.getCodeGenOpts());
185 CodeGenOpts = X.CodeGenOpts;
254 return ensureOwned(CodeGenOpts);
575 CodeGenOptions &CodeGenOpts = Invocation.getCodeGenOpts();
578 CodeGenOpts.XRayInstrumentFunctions = LangOpts.XRayInstrument;
579 CodeGenOpts.XRayAlwaysEmitCustomEvents = LangOpts.XRayAlwaysEmitCustomEvents;
580 CodeGenOpts.XRayAlwaysEmitTypedEvents = LangOpts.XRayAlwaysEmitTypedEvents;
581 CodeGenOpts.DisableFree = FrontendOpts.DisableFree;
584 CodeGenOpts.ClearASTBeforeBackend = false;
585 LangOpts.SanitizeCoverage = CodeGenOpts.hasSanitizeCoverage();
586 LangOpts.ForceEmitVTables = CodeGenOpts.ForceEmitVTables;
587 LangOpts.SpeculativeLoadHardening = CodeGenOpts.SpeculativeLoadHardening;
593 CodeGenOpts.CodeModel = TargetOpts.CodeModel;
594 CodeGenOpts.LargeDataThreshold = TargetOpts.LargeDataThreshold;
1528 const CodeGenOptions &CodeGenOpts = Opts;
1790 // "CodeGenOpts.". Let's provide the expected variable name and type.
1791 CodeGenOptions &CodeGenOpts = Opts;
3591 // The '-fcf-protection=' option is generated by CodeGenOpts generator.
4511 const CodeGenOptions &CodeGenOpts) {
4534 !CodeGenOpts.CFProtectionReturn && CodeGenOpts.CFProtectionBranch)
4536 if (M.first == "__CET__=2" && !M.second && CodeGenOpts.CFProtectionReturn &&
4537 !CodeGenOpts.CFProtectionBranch)
4539 if (M.first == "__CET__=3" && !M.second && CodeGenOpts.CFProtectionReturn &&
4540 CodeGenOpts.CFProtectionBranch)
5012 #define DEBUGOPT(Name, Bits, Default) HBuilder.add(CodeGenOpts->Name);
5013 #define VALUE_DEBUGOPT(Name, Bits, Default) HBuilder.add(CodeGenOpts->Name);
5015 HBuilder.add(static_cast<unsigned>(CodeGenOpts->get##Name()));