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

References

tools/clang/lib/CodeGen/BackendUtil.cpp
  427       llvm::StringSwitch<llvm::ThreadModel::Model>(CodeGenOpts.ThreadModel)
  432   assert((CodeGenOpts.FloatABI == "soft" || CodeGenOpts.FloatABI == "softfp" ||
  432   assert((CodeGenOpts.FloatABI == "soft" || CodeGenOpts.FloatABI == "softfp" ||
  433           CodeGenOpts.FloatABI == "hard" || CodeGenOpts.FloatABI.empty()) &&
  433           CodeGenOpts.FloatABI == "hard" || CodeGenOpts.FloatABI.empty()) &&
  436       llvm::StringSwitch<llvm::FloatABI::ABIType>(CodeGenOpts.FloatABI)
  457   Options.UseInitArray = CodeGenOpts.UseInitArray;
  458   Options.DisableIntegratedAS = CodeGenOpts.DisableIntegratedAS;
  459   Options.CompressDebugSections = CodeGenOpts.getCompressDebugSections();
  460   Options.RelaxELFRelocations = CodeGenOpts.RelaxELFRelocations;
  474   Options.NoInfsFPMath = CodeGenOpts.NoInfsFPMath;
  475   Options.NoNaNsFPMath = CodeGenOpts.NoNaNsFPMath;
  476   Options.NoZerosInBSS = CodeGenOpts.NoZeroInitializedInBSS;
  477   Options.UnsafeFPMath = CodeGenOpts.UnsafeFPMath;
  478   Options.StackAlignmentOverride = CodeGenOpts.StackAlignment;
  479   Options.FunctionSections = CodeGenOpts.FunctionSections;
  480   Options.DataSections = CodeGenOpts.DataSections;
  481   Options.UniqueSectionNames = CodeGenOpts.UniqueSectionNames;
  482   Options.EmulatedTLS = CodeGenOpts.EmulatedTLS;
  483   Options.ExplicitEmulatedTLS = CodeGenOpts.ExplicitEmulatedTLS;
  484   Options.DebuggerTuning = CodeGenOpts.getDebuggerTuning();
  485   Options.EmitStackSizeSection = CodeGenOpts.StackSizeSection;
  486   Options.EmitAddrsig = CodeGenOpts.Addrsig;
  487   Options.EnableDebugEntryValues = CodeGenOpts.EnableDebugEntryValues;
  489   Options.MCOptions.SplitDwarfFile = CodeGenOpts.SplitDwarfFile;
  490   Options.MCOptions.MCRelaxAll = CodeGenOpts.RelaxAll;
  491   Options.MCOptions.MCSaveTempLabels = CodeGenOpts.SaveTempLabels;
  492   Options.MCOptions.MCUseDwarfDirectory = !CodeGenOpts.NoDwarfDirectoryAsm;
  493   Options.MCOptions.MCNoExecStack = CodeGenOpts.NoExecStack;
  495       CodeGenOpts.IncrementalLinkerCompatible;
  496   Options.MCOptions.MCPIECopyRelocations = CodeGenOpts.PIECopyRelocations;
  497   Options.MCOptions.MCFatalWarnings = CodeGenOpts.FatalWarnings;
  498   Options.MCOptions.MCNoWarn = CodeGenOpts.NoWarn;
  499   Options.MCOptions.AsmVerbose = CodeGenOpts.AsmVerbose;
  500   Options.MCOptions.PreserveAsmComments = CodeGenOpts.PreserveAsmComments;