Lines Matching refs:Conf

284   Config Conf;  in run()  local
286 Conf.CPU = codegen::getMCPU(); in run()
287 Conf.Options = codegen::InitTargetOptionsFromCodeGenFlags(Triple()); in run()
288 Conf.MAttrs = codegen::getMAttrs(); in run()
290 Conf.RelocModel = *RM; in run()
291 Conf.CodeModel = codegen::getExplicitCodeModel(); in run()
293 Conf.DebugPassManager = DebugPassManager; in run()
308 check(Conf.addSaveTemps(OutputFilename + ".", false, SaveTempsArgs), in run()
313 Conf.RemarksFilename = RemarksFilename; in run()
314 Conf.RemarksPasses = RemarksPasses; in run()
315 Conf.RemarksWithHotness = RemarksWithHotness; in run()
316 Conf.RemarksHotnessThreshold = RemarksHotnessThreshold; in run()
317 Conf.RemarksFormat = RemarksFormat; in run()
319 Conf.SampleProfile = SamplePGOFile; in run()
320 Conf.CSIRProfile = CSPGOFile; in run()
321 Conf.RunCSIRInstr = RunCSIRInstr; in run()
324 Conf.OptPipeline = OptPipeline; in run()
325 Conf.AAPipeline = AAPipeline; in run()
327 Conf.OptLevel = OptLevel - '0'; in run()
328 Conf.Freestanding = EnableFreestanding; in run()
330 Conf.PassPlugins.push_back(PluginFN); in run()
332 Conf.CGOptLevel = *Level; in run()
339 Conf.CGFileType = *FT; in run()
341 Conf.OverrideTriple = OverrideTriple; in run()
342 Conf.DefaultTriple = DefaultTriple; in run()
343 Conf.StatsFile = StatsFile; in run()
344 Conf.PTO.LoopVectorization = Conf.OptLevel > 1; in run()
345 Conf.PTO.SLPVectorization = Conf.OptLevel > 1; in run()
369 Conf.DiagHandler = [&](const DiagnosticInfo &DI) { in run()
390 LTO Lto(std::move(Conf), std::move(Backend), 1, LTOMode); in run()