Lines Matching refs:Options
285 // Common utility function tightly tied to the options listed here. Initializes
288 TargetOptions Options;
289 Options.LessPreciseFPMADOption = EnableFPMAD;
290 Options.AllowFPOpFusion = FuseFPOps;
291 Options.Reciprocals = TargetRecip(ReciprocalOps);
292 Options.UnsafeFPMath = EnableUnsafeFPMath;
293 Options.NoInfsFPMath = EnableNoInfsFPMath;
294 Options.NoNaNsFPMath = EnableNoNaNsFPMath;
295 Options.HonorSignDependentRoundingFPMathOption =
298 Options.FloatABIType = FloatABIForCalls;
299 Options.NoZerosInBSS = DontPlaceZerosInBSS;
300 Options.GuaranteedTailCallOpt = EnableGuaranteedTailCallOpt;
301 Options.StackAlignmentOverride = OverrideStackAlignment;
302 Options.StackSymbolOrdering = StackSymbolOrdering;
303 Options.UseInitArray = !UseCtors;
304 Options.DataSections = DataSections;
305 Options.FunctionSections = FunctionSections;
306 Options.UniqueSectionNames = UniqueSectionNames;
307 Options.EmulatedTLS = EmulatedTLS;
308 Options.ExceptionModel = ExceptionModel;
310 Options.MCOptions = InitMCTargetOptionsFromFlags();
311 Options.JTType = JTableType;
313 Options.ThreadModel = TMModel;
314 Options.EABIVersion = EABIVersion;
315 Options.DebuggerTuning = DebuggerTuningOpt;
317 return Options;