Lines Matching refs:Conf
1066 lto::Config Conf; in runThinLTOBackend() local
1068 if (Error E = Conf.addSaveTemps(CGOpts.SaveTempsFilePrefix + ".", in runThinLTOBackend()
1076 Conf.CPU = TOpts.CPU; in runThinLTOBackend()
1077 Conf.CodeModel = getCodeModel(CGOpts); in runThinLTOBackend()
1078 Conf.MAttrs = TOpts.Features; in runThinLTOBackend()
1079 Conf.RelocModel = CGOpts.RelocationModel; in runThinLTOBackend()
1080 Conf.CGOptLevel = getCGOptLevel(CGOpts); in runThinLTOBackend()
1081 Conf.OptLevel = CGOpts.OptimizationLevel; in runThinLTOBackend()
1082 initTargetOptions(Diags, Conf.Options, CGOpts, TOpts, LOpts, HeaderOpts); in runThinLTOBackend()
1083 Conf.SampleProfile = std::move(SampleProfile); in runThinLTOBackend()
1084 Conf.PTO.LoopUnrolling = CGOpts.UnrollLoops; in runThinLTOBackend()
1087 Conf.PTO.LoopInterleaving = CGOpts.UnrollLoops; in runThinLTOBackend()
1088 Conf.PTO.LoopVectorization = CGOpts.VectorizeLoop; in runThinLTOBackend()
1089 Conf.PTO.SLPVectorization = CGOpts.VectorizeSLP; in runThinLTOBackend()
1092 Conf.PTO.CallGraphProfile = !CGOpts.DisableIntegratedAS; in runThinLTOBackend()
1096 Conf.RunCSIRInstr = true; in runThinLTOBackend()
1097 Conf.CSIRProfile = std::move(CGOpts.InstrProfileOutput); in runThinLTOBackend()
1099 Conf.RunCSIRInstr = false; in runThinLTOBackend()
1100 Conf.CSIRProfile = std::move(CGOpts.ProfileInstrumentUsePath); in runThinLTOBackend()
1103 Conf.ProfileRemapping = std::move(ProfileRemapping); in runThinLTOBackend()
1104 Conf.DebugPassManager = CGOpts.DebugPassManager; in runThinLTOBackend()
1105 Conf.RemarksWithHotness = CGOpts.DiagnosticsWithHotness; in runThinLTOBackend()
1106 Conf.RemarksFilename = CGOpts.OptRecordFile; in runThinLTOBackend()
1107 Conf.RemarksPasses = CGOpts.OptRecordPasses; in runThinLTOBackend()
1108 Conf.RemarksFormat = CGOpts.OptRecordFormat; in runThinLTOBackend()
1109 Conf.SplitDwarfFile = CGOpts.SplitDwarfFile; in runThinLTOBackend()
1110 Conf.SplitDwarfOutput = CGOpts.SplitDwarfOutput; in runThinLTOBackend()
1113 Conf.PreCodeGenModuleHook = [](size_t Task, const Module &Mod) { in runThinLTOBackend()
1118 Conf.PreCodeGenModuleHook = [&](size_t Task, const Module &Mod) { in runThinLTOBackend()
1124 Conf.PreCodeGenModuleHook = [&](size_t Task, const Module &Mod) { in runThinLTOBackend()
1130 Conf.CGFileType = getCodeGenFileType(Action); in runThinLTOBackend()
1134 thinBackend(Conf, -1, AddStream, *M, *CombinedIndex, ImportList, in runThinLTOBackend()