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()
254 return ensureOwned(CodeGenOpts); in getMutCodeGenOpts()
575 CodeGenOptions &CodeGenOpts = Invocation.getCodeGenOpts(); in FixupInvocation() local
578 CodeGenOpts.XRayInstrumentFunctions = LangOpts.XRayInstrument; in FixupInvocation()
579 CodeGenOpts.XRayAlwaysEmitCustomEvents = LangOpts.XRayAlwaysEmitCustomEvents; in FixupInvocation()
580 CodeGenOpts.XRayAlwaysEmitTypedEvents = LangOpts.XRayAlwaysEmitTypedEvents; in FixupInvocation()
581 CodeGenOpts.DisableFree = FrontendOpts.DisableFree; in FixupInvocation()
584 CodeGenOpts.ClearASTBeforeBackend = false; in FixupInvocation()
585 LangOpts.SanitizeCoverage = CodeGenOpts.hasSanitizeCoverage(); in FixupInvocation()
586 LangOpts.ForceEmitVTables = CodeGenOpts.ForceEmitVTables; in FixupInvocation()
587 LangOpts.SpeculativeLoadHardening = CodeGenOpts.SpeculativeLoadHardening; in FixupInvocation()
593 CodeGenOpts.CodeModel = TargetOpts.CodeModel; in FixupInvocation()
594 CodeGenOpts.LargeDataThreshold = TargetOpts.LargeDataThreshold; in FixupInvocation()
1528 const CodeGenOptions &CodeGenOpts = Opts; in GenerateCodeGenArgs() local
1791 CodeGenOptions &CodeGenOpts = Opts; in ParseCodeGenArgs() local
4511 const CodeGenOptions &CodeGenOpts) { in GeneratePreprocessorArgs() argument
4534 !CodeGenOpts.CFProtectionReturn && CodeGenOpts.CFProtectionBranch) in GeneratePreprocessorArgs()
4536 if (M.first == "__CET__=2" && !M.second && CodeGenOpts.CFProtectionReturn && in GeneratePreprocessorArgs()
4537 !CodeGenOpts.CFProtectionBranch) in GeneratePreprocessorArgs()
4539 if (M.first == "__CET__=3" && !M.second && CodeGenOpts.CFProtectionReturn && in GeneratePreprocessorArgs()
4540 CodeGenOpts.CFProtectionBranch) in GeneratePreprocessorArgs()
5012 #define DEBUGOPT(Name, Bits, Default) HBuilder.add(CodeGenOpts->Name); in getModuleHash()
5013 #define VALUE_DEBUGOPT(Name, Bits, Default) HBuilder.add(CodeGenOpts->Name); in getModuleHash()
5015 HBuilder.add(static_cast<unsigned>(CodeGenOpts->get##Name())); in getModuleHash()