reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/CodeGen/CommandFlags.inc
  283   Options.AllowFPOpFusion = FuseFPOps;
  284   Options.UnsafeFPMath = EnableUnsafeFPMath;
  285   Options.NoInfsFPMath = EnableNoInfsFPMath;
  286   Options.NoNaNsFPMath = EnableNoNaNsFPMath;
  287   Options.NoSignedZerosFPMath = EnableNoSignedZerosFPMath;
  288   Options.NoTrappingFPMath = EnableNoTrappingFPMath;
  289   Options.FPDenormalMode = DenormalMode;
  290   Options.HonorSignDependentRoundingFPMathOption =
  293     Options.FloatABIType = FloatABIForCalls;
  294   Options.NoZerosInBSS = DontPlaceZerosInBSS;
  295   Options.GuaranteedTailCallOpt = EnableGuaranteedTailCallOpt;
  296   Options.StackAlignmentOverride = OverrideStackAlignment;
  297   Options.StackSymbolOrdering = StackSymbolOrdering;
  298   Options.UseInitArray = !UseCtors;
  299   Options.RelaxELFRelocations = RelaxELFRelocations;
  300   Options.DataSections = DataSections;
  301   Options.FunctionSections = FunctionSections;
  302   Options.UniqueSectionNames = UniqueSectionNames;
  303   Options.EmulatedTLS = EmulatedTLS;
  304   Options.ExplicitEmulatedTLS = EmulatedTLS.getNumOccurrences() > 0;
  305   Options.ExceptionModel = ExceptionModel;
  306   Options.EmitStackSizeSection = EnableStackSizeSection;
  307   Options.EmitAddrsig = EnableAddrsig;
  308   Options.EnableDebugEntryValues = EnableDebugEntryValues;
  310   Options.MCOptions = InitMCTargetOptionsFromFlags();
  312   Options.ThreadModel = TMModel;
  313   Options.EABIVersion = EABIVersion;
  314   Options.DebuggerTuning = DebuggerTuningOpt;
  316   return Options;