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);
598 CodeGenOptions &CodeGenOpts = Invocation.getCodeGenOpts();
601 CodeGenOpts.XRayInstrumentFunctions = LangOpts.XRayInstrument;
602 CodeGenOpts.XRayAlwaysEmitCustomEvents = LangOpts.XRayAlwaysEmitCustomEvents;
603 CodeGenOpts.XRayAlwaysEmitTypedEvents = LangOpts.XRayAlwaysEmitTypedEvents;
604 CodeGenOpts.DisableFree = FrontendOpts.DisableFree;
607 CodeGenOpts.ClearASTBeforeBackend = false;
608 LangOpts.SanitizeCoverage = CodeGenOpts.hasSanitizeCoverage();
609 LangOpts.ForceEmitVTables = CodeGenOpts.ForceEmitVTables;
610 LangOpts.SpeculativeLoadHardening = CodeGenOpts.SpeculativeLoadHardening;
616 CodeGenOpts.CodeModel = TargetOpts.CodeModel;
617 CodeGenOpts.LargeDataThreshold = TargetOpts.LargeDataThreshold;
1586 const CodeGenOptions &CodeGenOpts = Opts;
1869 // "CodeGenOpts.". Let's provide the expected variable name and type.
1870 CodeGenOptions &CodeGenOpts = Opts;
3685 // The '-fcf-protection=' option is generated by CodeGenOpts generator.
4663 const CodeGenOptions &CodeGenOpts) {
4686 !CodeGenOpts.CFProtectionReturn && CodeGenOpts.CFProtectionBranch)
4688 if (M.first == "__CET__=2" && !M.second && CodeGenOpts.CFProtectionReturn &&
4689 !CodeGenOpts.CFProtectionBranch)
4691 if (M.first == "__CET__=3" && !M.second && CodeGenOpts.CFProtectionReturn &&
4692 CodeGenOpts.CFProtectionBranch)
5164 #define DEBUGOPT(Name, Bits, Default) HBuilder.add(CodeGenOpts->Name);
5165 #define VALUE_DEBUGOPT(Name, Bits, Default) HBuilder.add(CodeGenOpts->Name);
5167 HBuilder.add(static_cast<unsigned>(CodeGenOpts->get##Name()));