• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/

Lines Matching defs:Options

419 codegen::getBBSectionsMode(llvm::TargetOptions &Options) {
433 Options.BBSectionsFuncListBuf = std::move(*MBOrErr);
442 TargetOptions Options;
443 Options.AllowFPOpFusion = getFuseFPOps();
444 Options.UnsafeFPMath = getEnableUnsafeFPMath();
445 Options.NoInfsFPMath = getEnableNoInfsFPMath();
446 Options.NoNaNsFPMath = getEnableNoNaNsFPMath();
447 Options.NoSignedZerosFPMath = getEnableNoSignedZerosFPMath();
448 Options.NoTrappingFPMath = getEnableNoTrappingFPMath();
453 Options.setFPDenormalMode(DenormalMode(DenormKind, DenormKind));
455 Options.HonorSignDependentRoundingFPMathOption =
458 Options.FloatABIType = getFloatABIForCalls();
459 Options.NoZerosInBSS = getDontPlaceZerosInBSS();
460 Options.GuaranteedTailCallOpt = getEnableGuaranteedTailCallOpt();
461 Options.StackAlignmentOverride = getOverrideStackAlignment();
462 Options.StackSymbolOrdering = getStackSymbolOrdering();
463 Options.UseInitArray = !getUseCtors();
464 Options.RelaxELFRelocations = getRelaxELFRelocations();
465 Options.DataSections = getDataSections();
466 Options.FunctionSections = getFunctionSections();
467 Options.BBSections = getBBSectionsMode(Options);
468 Options.UniqueSectionNames = getUniqueSectionNames();
469 Options.UniqueBasicBlockSectionNames = getUniqueBasicBlockSectionNames();
470 Options.TLSSize = getTLSSize();
471 Options.EmulatedTLS = getEmulatedTLS();
472 Options.ExplicitEmulatedTLS = EmulatedTLSView->getNumOccurrences() > 0;
473 Options.ExceptionModel = getExceptionModel();
474 Options.EmitStackSizeSection = getEnableStackSizeSection();
475 Options.EmitAddrsig = getEnableAddrsig();
476 Options.EmitCallSiteInfo = getEmitCallSiteInfo();
477 Options.EnableDebugEntryValues = getEnableDebugEntryValues();
478 Options.ForceDwarfFrameSection = getForceDwarfFrameSection();
479 Options.XRayOmitFunctionIndex = getXRayOmitFunctionIndex();
481 Options.MCOptions = mc::InitMCTargetOptionsFromFlags();
483 Options.ThreadModel = getThreadModel();
484 Options.EABIVersion = getEABIVersion();
485 Options.DebuggerTuning = getDebuggerTuningOpt();
487 return Options;