Lines Matching refs:CodeGenOpts

148       CodeGenOpts(std::make_shared<CodeGenOptions>()),  in CompilerInvocationBase()
165 CodeGenOpts = make_shared_copy(X.getCodeGenOpts()); in deep_copy_assign()
185 CodeGenOpts = X.CodeGenOpts; in shallow_copy_assign()
243 return ensureOwned(CodeGenOpts); in getMutCodeGenOpts()
564 CodeGenOptions &CodeGenOpts = Invocation.getCodeGenOpts(); in FixupInvocation() local
567 CodeGenOpts.XRayInstrumentFunctions = LangOpts.XRayInstrument; in FixupInvocation()
568 CodeGenOpts.XRayAlwaysEmitCustomEvents = LangOpts.XRayAlwaysEmitCustomEvents; in FixupInvocation()
569 CodeGenOpts.XRayAlwaysEmitTypedEvents = LangOpts.XRayAlwaysEmitTypedEvents; in FixupInvocation()
570 CodeGenOpts.DisableFree = FrontendOpts.DisableFree; in FixupInvocation()
573 CodeGenOpts.ClearASTBeforeBackend = false; in FixupInvocation()
574 LangOpts.SanitizeCoverage = CodeGenOpts.hasSanitizeCoverage(); in FixupInvocation()
575 LangOpts.ForceEmitVTables = CodeGenOpts.ForceEmitVTables; in FixupInvocation()
576 LangOpts.SpeculativeLoadHardening = CodeGenOpts.SpeculativeLoadHardening; in FixupInvocation()
582 CodeGenOpts.CodeModel = TargetOpts.CodeModel; in FixupInvocation()
583 CodeGenOpts.LargeDataThreshold = TargetOpts.LargeDataThreshold; in FixupInvocation()
1455 const CodeGenOptions &CodeGenOpts = Opts; in GenerateCodeGenArgs() local
1715 CodeGenOptions &CodeGenOpts = Opts; in ParseCodeGenArgs() local
4312 const CodeGenOptions &CodeGenOpts) { in GeneratePreprocessorArgs() argument
4335 !CodeGenOpts.CFProtectionReturn && CodeGenOpts.CFProtectionBranch) in GeneratePreprocessorArgs()
4337 if (M.first == "__CET__=2" && !M.second && CodeGenOpts.CFProtectionReturn && in GeneratePreprocessorArgs()
4338 !CodeGenOpts.CFProtectionBranch) in GeneratePreprocessorArgs()
4340 if (M.first == "__CET__=3" && !M.second && CodeGenOpts.CFProtectionReturn && in GeneratePreprocessorArgs()
4341 CodeGenOpts.CFProtectionBranch) in GeneratePreprocessorArgs()
4802 #define DEBUGOPT(Name, Bits, Default) HBuilder.add(CodeGenOpts->Name); in getModuleHash()
4803 #define VALUE_DEBUGOPT(Name, Bits, Default) HBuilder.add(CodeGenOpts->Name); in getModuleHash()
4805 HBuilder.add(static_cast<unsigned>(CodeGenOpts->get##Name())); in getModuleHash()