Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Options

270 // Common utility function tightly tied to the options listed here. Initializes
273 TargetOptions Options;
274 Options.LessPreciseFPMADOption = EnableFPMAD;
275 Options.AllowFPOpFusion = FuseFPOps;
276 Options.Reciprocals = TargetRecip(ReciprocalOps);
277 Options.UnsafeFPMath = EnableUnsafeFPMath;
278 Options.NoInfsFPMath = EnableNoInfsFPMath;
279 Options.NoNaNsFPMath = EnableNoNaNsFPMath;
280 Options.HonorSignDependentRoundingFPMathOption =
283 Options.FloatABIType = FloatABIForCalls;
284 Options.NoZerosInBSS = DontPlaceZerosInBSS;
285 Options.GuaranteedTailCallOpt = EnableGuaranteedTailCallOpt;
286 Options.StackAlignmentOverride = OverrideStackAlignment;
287 Options.PositionIndependentExecutable = EnablePIE;
288 Options.UseInitArray = !UseCtors;
289 Options.DataSections = DataSections;
290 Options.FunctionSections = FunctionSections;
291 Options.UniqueSectionNames = UniqueSectionNames;
292 Options.EmulatedTLS = EmulatedTLS;
294 Options.MCOptions = InitMCTargetOptionsFromFlags();
295 Options.JTType = JTableType;
297 Options.ThreadModel = TMModel;
298 Options.EABIVersion = EABIVersion;
299 Options.DebuggerTuning = DebuggerTuningOpt;
301 return Options;