LLVM  4.0.0
Public Member Functions | Public Attributes | List of all members
llvm::TargetOptions Class Reference

#include <TargetOptions.h>

Collaboration diagram for llvm::TargetOptions:
[legend]

Public Member Functions

 TargetOptions ()
 
bool DisableFramePointerElim (const MachineFunction &MF) const
 DisableFramePointerElim - This returns true if frame pointer elimination optimization should be disabled for the given machine function. More...
 
bool LessPreciseFPMAD () const
 LessPreciseFPMAD - This flag return true when -enable-fp-mad option is specified on the command line. More...
 
bool HonorSignDependentRoundingFPMath () const
 HonorSignDependentRoundingFPMath - Return true if the codegen must assume that the rounding mode of the FPU can change from its default. More...
 

Public Attributes

unsigned PrintMachineCode: 1
 PrintMachineCode - This flag is enabled when the -print-machineinstrs option is specified on the command line, and should enable debugging output from the code generator. More...
 
unsigned LessPreciseFPMADOption: 1
 LessPreciseFPMAD - This flag is enabled when the -enable-fp-mad is specified on the command line. More...
 
unsigned UnsafeFPMath: 1
 UnsafeFPMath - This flag is enabled when the -enable-unsafe-fp-math flag is specified on the command line. More...
 
unsigned NoInfsFPMath: 1
 NoInfsFPMath - This flag is enabled when the -enable-no-infs-fp-math flag is specified on the command line. More...
 
unsigned NoNaNsFPMath: 1
 NoNaNsFPMath - This flag is enabled when the -enable-no-nans-fp-math flag is specified on the command line. More...
 
unsigned NoTrappingFPMath: 1
 NoTrappingFPMath - This flag is enabled when the -enable-no-trapping-fp-math is specified on the command line. More...
 
unsigned HonorSignDependentRoundingFPMathOption: 1
 HonorSignDependentRoundingFPMath - This returns true when the -enable-sign-dependent-rounding-fp-math is specified. More...
 
unsigned NoZerosInBSS: 1
 NoZerosInBSS - By default some codegens place zero-initialized data to .bss section. More...
 
unsigned GuaranteedTailCallOpt: 1
 GuaranteedTailCallOpt - This flag is enabled when -tailcallopt is specified on the commandline. More...
 
unsigned StackAlignmentOverride
 StackAlignmentOverride - Override default stack alignment for target. More...
 
unsigned StackSymbolOrdering: 1
 StackSymbolOrdering - When true, this will allow CodeGen to order the local stack symbols (for code size, code locality, or any other heuristics). More...
 
unsigned EnableFastISel: 1
 EnableFastISel - This flag enables fast-path instruction selection which trades away generated code quality in favor of reducing compile time. More...
 
unsigned UseInitArray: 1
 UseInitArray - Use .init_array instead of .ctors for static constructors. More...
 
unsigned DisableIntegratedAS: 1
 Disable the integrated assembler. More...
 
unsigned CompressDebugSections: 1
 Compress DWARF debug sections. More...
 
unsigned RelaxELFRelocations: 1
 
unsigned FunctionSections: 1
 Emit functions into separate sections. More...
 
unsigned DataSections: 1
 Emit data into separate sections. More...
 
unsigned UniqueSectionNames: 1
 
unsigned TrapUnreachable: 1
 Emit target-specific trap instruction for 'unreachable' IR instructions. More...
 
unsigned EmulatedTLS: 1
 EmulatedTLS - This flag enables emulated TLS model, using emutls function in the runtime library. More...
 
unsigned EnableIPRA: 1
 This flag enables InterProcedural Register Allocation (IPRA). More...
 
FloatABI::ABIType FloatABIType
 FloatABIType - This setting is set by -float-abi=xxx option is specfied on the command line. More...
 
FPOpFusion::FPOpFusionMode AllowFPOpFusion
 AllowFPOpFusion - This flag is set by the -fuse-fp-ops=xxx option. More...
 
ThreadModel::Model ThreadModel
 ThreadModel - This flag specifies the type of threading model to assume for things like atomics. More...
 
EABI EABIVersion
 EABIVersion - This flag specifies the EABI version. More...
 
DebuggerKind DebuggerTuning
 Which debugger to tune for. More...
 
FPDenormal::DenormalMode FPDenormalMode
 FPDenormalMode - This flags specificies which denormal numbers the code is permitted to require. More...
 
ExceptionHandling ExceptionModel
 What exception model to use. More...
 
MCTargetOptions MCOptions
 Machine level options. More...
 

Detailed Description

Definition at line 99 of file TargetOptions.h.

Constructor & Destructor Documentation

llvm::TargetOptions::TargetOptions ( )
inline

Definition at line 101 of file TargetOptions.h.

Member Function Documentation

bool TargetOptions::DisableFramePointerElim ( const MachineFunction MF) const
bool TargetOptions::HonorSignDependentRoundingFPMath ( ) const

HonorSignDependentRoundingFPMath - Return true if the codegen must assume that the rounding mode of the FPU can change from its default.

Definition at line 47 of file TargetOptionsImpl.cpp.

References HonorSignDependentRoundingFPMathOption, and UnsafeFPMath.

Referenced by GetNegatedExpression().

bool TargetOptions::LessPreciseFPMAD ( ) const

LessPreciseFPMAD - This flag return true when -enable-fp-mad option is specified on the command line.

When this flag is off(default), the code generator is not allowed to generate mad (multiply add) if the result is "less precise" than doing those operations individually.

Definition at line 41 of file TargetOptionsImpl.cpp.

References LessPreciseFPMADOption, and UnsafeFPMath.

Member Data Documentation

FPOpFusion::FPOpFusionMode llvm::TargetOptions::AllowFPOpFusion

AllowFPOpFusion - This flag is set by the -fuse-fp-ops=xxx option.

This controls the creation of fused FP ops that store intermediate results in higher precision than IEEE allows (E.g. FMAs).

Fast mode - allows formation of fused FP ops whenever they're profitable. Standard mode - allow fusion only for 'blessed' FP ops. At present the only blessed op is the fmuladd intrinsic. In the future more blessed ops may be added. Strict mode - allow fusion only if/when it can be proven that the excess precision won't effect the result.

Note: This option only controls formation of fused ops by the optimizers. Fused operations that are explicitly specified (e.g. FMA via the llvm.fma.* intrinsic) will always be honored, regardless of the value of this option.

Definition at line 252 of file TargetOptions.h.

Referenced by llvm::NVPTXTargetLowering::allowFMA(), InitTargetOptionsFromCodeGenFlags(), isCombineInstrCandidateFP(), isFMAddSub(), and llvm::AArch64TargetLowering::isProfitableToHoist().

unsigned llvm::TargetOptions::CompressDebugSections

Compress DWARF debug sections.

Definition at line 206 of file TargetOptions.h.

Referenced by llvm::LLVMTargetMachine::initAsmInfo().

unsigned llvm::TargetOptions::DataSections

Emit data into separate sections.

Definition at line 214 of file TargetOptions.h.

Referenced by computeCacheKey(), llvm::TargetMachine::getDataSections(), and InitTargetOptionsFromCodeGenFlags().

DebuggerKind llvm::TargetOptions::DebuggerTuning

Which debugger to tune for.

Definition at line 262 of file TargetOptions.h.

Referenced by computeCacheKey(), llvm::DwarfDebug::DwarfDebug(), and InitTargetOptionsFromCodeGenFlags().

unsigned llvm::TargetOptions::DisableIntegratedAS

Disable the integrated assembler.

Definition at line 203 of file TargetOptions.h.

Referenced by llvm::LLVMTargetMachine::initAsmInfo().

EABI llvm::TargetOptions::EABIVersion

EABIVersion - This flag specifies the EABI version.

Definition at line 259 of file TargetOptions.h.

Referenced by llvm::ARMBaseTargetMachine::ARMBaseTargetMachine(), llvm::ARMTargetLowering::ARMTargetLowering(), and InitTargetOptionsFromCodeGenFlags().

unsigned llvm::TargetOptions::EmulatedTLS

EmulatedTLS - This flag enables emulated TLS model, using emutls function in the runtime library.

Definition at line 223 of file TargetOptions.h.

Referenced by addPassesToGenerateCode(), llvm::AsmPrinter::EmitGlobalVariable(), llvm::DwarfCompileUnit::getOrCreateGlobalVariableDIE(), InitTargetOptionsFromCodeGenFlags(), and llvm::SparcTargetLowering::LowerGlobalTLSAddress().

unsigned llvm::TargetOptions::EnableFastISel

EnableFastISel - This flag enables fast-path instruction selection which trades away generated code quality in favor of reducing compile time.

Definition at line 196 of file TargetOptions.h.

Referenced by llvm::MipsTargetLowering::createFastISel(), LLVMCreateMCJITCompilerForModule(), llvm::OptLevelChanger::OptLevelChanger(), promoteToConstantPool(), llvm::SelectionDAGISel::runOnMachineFunction(), llvm::TargetMachine::setFastISel(), and llvm::ARMSubtarget::useFastISel().

unsigned llvm::TargetOptions::EnableIPRA
ExceptionHandling llvm::TargetOptions::ExceptionModel
FloatABI::ABIType llvm::TargetOptions::FloatABIType

FloatABIType - This setting is set by -float-abi=xxx option is specfied on the command line.

This setting may either be Default, Soft, or Hard. Default selects the target's default behavior. Soft selects the ABI for software floating point, but does not indicate that FP hardware may not be used. Such a combination is unfortunately popular (e.g. arm-apple-darwin). Hard presumes that the normal FP ABI is used.

Definition at line 234 of file TargetOptions.h.

Referenced by llvm::ARMBaseTargetMachine::ARMBaseTargetMachine(), and InitTargetOptionsFromCodeGenFlags().

FPDenormal::DenormalMode llvm::TargetOptions::FPDenormalMode

FPDenormalMode - This flags specificies which denormal numbers the code is permitted to require.

Definition at line 266 of file TargetOptions.h.

Referenced by InitTargetOptionsFromCodeGenFlags(), and llvm::TargetMachine::resetTargetOptions().

unsigned llvm::TargetOptions::FunctionSections

Emit functions into separate sections.

Definition at line 211 of file TargetOptions.h.

Referenced by computeCacheKey(), llvm::TargetMachine::getFunctionSections(), and InitTargetOptionsFromCodeGenFlags().

unsigned llvm::TargetOptions::GuaranteedTailCallOpt

GuaranteedTailCallOpt - This flag is enabled when -tailcallopt is specified on the commandline.

When the flag is on, participating targets will perform tail call optimization on all calls which use the fastcc calling convention and which satisfy certain target-independent criteria (being at the end of a function, having the same return type as their parent function, etc.), using an alternate ABI if necessary.

Definition at line 182 of file TargetOptions.h.

Referenced by llvm::PPCFrameLowering::determineCalleeSaves(), llvm::PPCFrameLowering::eliminateCallFramePseudoInstr(), llvm::PPCFrameLowering::emitEpilogue(), InitTargetOptionsFromCodeGenFlags(), llvm::isInTailCallPosition(), llvm::PPCFrameLowering::needsFP(), and llvm::PPCFrameLowering::processFunctionBeforeFrameFinalized().

unsigned llvm::TargetOptions::HonorSignDependentRoundingFPMathOption

HonorSignDependentRoundingFPMath - This returns true when the -enable-sign-dependent-rounding-fp-math is specified.

If this returns false (the default), the code generator is allowed to assume that the rounding behavior is the default (round-to-zero for all floating point to integer conversions, and round-to-nearest for all other arithmetic truncations). If this is enabled (set to true), the code generator must assume that the rounding mode may dynamically change.

Definition at line 168 of file TargetOptions.h.

Referenced by HonorSignDependentRoundingFPMath(), and InitTargetOptionsFromCodeGenFlags().

unsigned llvm::TargetOptions::LessPreciseFPMADOption

LessPreciseFPMAD - This flag is enabled when the -enable-fp-mad is specified on the command line.

When this flag is off (the default), the code generator is not allowed to generate mad (multiply add) if the result is "less precise" than doing those operations individually.

Definition at line 133 of file TargetOptions.h.

Referenced by InitTargetOptionsFromCodeGenFlags(), and LessPreciseFPMAD().

MCTargetOptions llvm::TargetOptions::MCOptions
unsigned llvm::TargetOptions::NoInfsFPMath

NoInfsFPMath - This flag is enabled when the -enable-no-infs-fp-math flag is specified on the command line.

When this flag is off (the default), the code generator is not allowed to assume the FP arithmetic arguments and results are never +-Infs.

Definition at line 148 of file TargetOptions.h.

Referenced by InitTargetOptionsFromCodeGenFlags().

unsigned llvm::TargetOptions::NoNaNsFPMath

NoNaNsFPMath - This flag is enabled when the -enable-no-nans-fp-math flag is specified on the command line.

When this flag is off (the default), the code generator is not allowed to assume the FP arithmetic arguments and results are never NaNs.

Definition at line 154 of file TargetOptions.h.

Referenced by InitTargetOptionsFromCodeGenFlags().

unsigned llvm::TargetOptions::NoTrappingFPMath

NoTrappingFPMath - This flag is enabled when the -enable-no-trapping-fp-math is specified on the command line.

This specifies that there are no trap handlers to handle exceptions.

Definition at line 159 of file TargetOptions.h.

Referenced by InitTargetOptionsFromCodeGenFlags().

unsigned llvm::TargetOptions::NoZerosInBSS

NoZerosInBSS - By default some codegens place zero-initialized data to .bss section.

This flag disables such behaviour (necessary, e.g. for crt*.o compiling).

Definition at line 174 of file TargetOptions.h.

Referenced by llvm::TargetLoweringObjectFile::getKindForGlobal(), and InitTargetOptionsFromCodeGenFlags().

unsigned llvm::TargetOptions::PrintMachineCode

PrintMachineCode - This flag is enabled when the -print-machineinstrs option is specified on the command line, and should enable debugging output from the code generator.

Definition at line 122 of file TargetOptions.h.

Referenced by llvm::TargetMachine::shouldPrintMachineCode(), and llvm::TargetPassConfig::TargetPassConfig().

unsigned llvm::TargetOptions::RelaxELFRelocations
unsigned llvm::TargetOptions::StackAlignmentOverride

StackAlignmentOverride - Override default stack alignment for target.

Definition at line 185 of file TargetOptions.h.

Referenced by llvm::X86TargetMachine::getSubtargetImpl(), and InitTargetOptionsFromCodeGenFlags().

unsigned llvm::TargetOptions::StackSymbolOrdering

StackSymbolOrdering - When true, this will allow CodeGen to order the local stack symbols (for code size, code locality, or any other heuristics).

When false, the local symbols are left in whatever order they were generated. Default is true.

Definition at line 191 of file TargetOptions.h.

Referenced by InitTargetOptionsFromCodeGenFlags().

ThreadModel::Model llvm::TargetOptions::ThreadModel

ThreadModel - This flag specifies the type of threading model to assume for things like atomics.

Definition at line 256 of file TargetOptions.h.

Referenced by InitTargetOptionsFromCodeGenFlags().

unsigned llvm::TargetOptions::TrapUnreachable
unsigned llvm::TargetOptions::UniqueSectionNames
unsigned llvm::TargetOptions::UnsafeFPMath

UnsafeFPMath - This flag is enabled when the -enable-unsafe-fp-math flag is specified on the command line.

When this flag is off (the default), the code generator is not allowed to produce results that are "less precise" than IEEE allows. This includes use of X86 instructions like FSIN and FCOS instead of libcalls. UnsafeFPMath implies LessPreciseFPMAD.

Definition at line 142 of file TargetOptions.h.

Referenced by llvm::NVPTXTargetLowering::allowFMA(), canCombineSinCosLibcall(), combineFMinFMax(), combineSelect(), llvm::PPCInstrInfo::getMachineCombinerPatterns(), GetNegatedExpression(), llvm::SelectionDAG::getNode(), HonorSignDependentRoundingFPMath(), InitTargetOptionsFromCodeGenFlags(), llvm::AArch64InstrInfo::isAssociativeAndCommutative(), llvm::X86InstrInfo::isAssociativeAndCommutative(), isCombineInstrCandidateFP(), isFMAddSub(), isNegatibleForFree(), llvm::AArch64TargetLowering::isProfitableToHoist(), LessPreciseFPMAD(), lowerUINT_TO_FP_vXi32(), llvm::PPCTargetLowering::PPCTargetLowering(), and llvm::X86TargetLowering::X86TargetLowering().

unsigned llvm::TargetOptions::UseInitArray

The documentation for this class was generated from the following files: