LLVM 22.0.0git
llvm::AArch64Subtarget Class Referencefinal

#include "Target/AArch64/AArch64Subtarget.h"

Inheritance diagram for llvm::AArch64Subtarget:
[legend]

Public Types

enum  ARMProcFamilyEnum : uint8_t { Generic }

Public Member Functions

 AArch64Subtarget (const Triple &TT, StringRef CPU, StringRef TuneCPU, StringRef FS, const TargetMachine &TM, bool LittleEndian, unsigned MinSVEVectorSizeInBitsOverride=0, unsigned MaxSVEVectorSizeInBitsOverride=0, bool IsStreaming=false, bool IsStreamingCompatible=false, bool HasMinSize=false)
 This constructor initializes the data members to match that of the specified triple.
virtual unsigned getHwModeSet () const override
const AArch64SelectionDAGInfogetSelectionDAGInfo () const override
const AArch64FrameLoweringgetFrameLowering () const override
const AArch64TargetLoweringgetTargetLowering () const override
const AArch64InstrInfogetInstrInfo () const override
const AArch64RegisterInfogetRegisterInfo () const override
const CallLoweringgetCallLowering () const override
const InlineAsmLoweringgetInlineAsmLowering () const override
InstructionSelectorgetInstructionSelector () const override
const LegalizerInfogetLegalizerInfo () const override
const RegisterBankInfogetRegBankInfo () const override
const TriplegetTargetTriple () const
bool enableMachineScheduler () const override
bool enablePostRAScheduler () const override
bool enableSubRegLiveness () const override
bool enableMachinePipeliner () const override
bool useDFAforSMS () const override
ARMProcFamilyEnum getProcFamily () const
 Returns ARM processor family.
bool isXRaySupported () const override
bool isStreaming () const
 Returns true if the function has a streaming body.
bool isStreamingCompatible () const
 Returns true if the function has a streaming-compatible body.
unsigned getStreamingHazardSize () const
 Returns the size of memory region that if accessed by both the CPU and the SME unit could result in a hazard.
bool isNeonAvailable () const
 Returns true if the target has NEON and the function at runtime is known to have NEON enabled (e.g.
bool isSVEAvailable () const
 Returns true if the target has SVE and can use the full range of SVE instructions, for example because it knows the function is known not to be in streaming-SVE mode or when the target has FEAT_FA64 enabled.
bool isStreamingSVEAvailable () const
 Returns true if the target has access to the streaming-compatible subset of SVE instructions.
bool isSVEorStreamingSVEAvailable () const
 Returns true if the target has access to either the full range of SVE instructions, or the streaming-compatible subset of SVE instructions.
bool isNonStreamingSVEorSME2Available () const
 Returns true if the target has access to either the full range of SVE instructions, or the streaming-compatible subset of SVE instructions available to SME2.
unsigned getMinVectorRegisterBitWidth () const
bool isXRegisterReserved (size_t i) const
bool isXRegisterReservedForRA (size_t i) const
unsigned getNumXRegisterReserved () const
bool isLRReservedForRA () const
bool isXRegCustomCalleeSaved (size_t i) const
bool hasCustomCallingConv () const
bool hasFusion () const
 Return true if the CPU supports any kind of instruction fusion.
unsigned getEpilogueVectorizationMinVF () const
unsigned getMaxInterleaveFactor () const
unsigned getVectorInsertExtractBaseCost () const
unsigned getCacheLineSize () const override
unsigned getScatterOverhead () const
unsigned getGatherOverhead () const
unsigned getPrefetchDistance () const override
unsigned getMinPrefetchStride (unsigned NumMemAccesses, unsigned NumStridedMemAccesses, unsigned NumPrefetches, bool HasCall) const override
unsigned getMaxPrefetchIterationsAhead () const override
Align getPrefFunctionAlignment () const
Align getPrefLoopAlignment () const
unsigned getMaxBytesForLoopAlignment () const
unsigned getMaximumJumpTableSize () const
unsigned getMinimumJumpTableEntries () const
bool supportsAddressTopByteIgnored () const
 CPU has TBI (top byte of addresses is ignored during HW address translation) and OS enables it.
bool isLittleEndian () const
bool isTargetDarwin () const
bool isTargetIOS () const
bool isTargetLinux () const
bool isTargetWindows () const
bool isTargetAndroid () const
bool isTargetFuchsia () const
bool isWindowsArm64EC () const
bool isTargetCOFF () const
bool isTargetELF () const
bool isTargetMachO () const
bool isTargetILP32 () const
bool useAA () const override
bool addrSinkUsingGEPs () const override
bool useSmallAddressing () const
bool isX16X17Safer () const
 Returns whether the operating system makes it safer to store sensitive values in x16 and x17 as opposed to other registers.
void ParseSubtargetFeatures (StringRef CPU, StringRef TuneCPU, StringRef FS)
 ParseSubtargetFeatures - Parses features string setting specified subtarget options.
unsigned ClassifyGlobalReference (const GlobalValue *GV, const TargetMachine &TM) const
 ClassifyGlobalReference - Find the target operand flags that describe how a global value should be referenced for the current subtarget.
unsigned classifyGlobalFunctionReference (const GlobalValue *GV, const TargetMachine &TM) const
unsigned char classifyGlobalFunctionReference (const GlobalValue *GV) const override
 This function is design to compatible with the function def in other targets and escape build error about the virtual function def in base class TargetSubtargetInfo.
void overrideSchedPolicy (MachineSchedPolicy &Policy, const SchedRegion &Region) const override
void adjustSchedDependency (SUnit *Def, int DefOpIdx, SUnit *Use, int UseOpIdx, SDep &Dep, const TargetSchedModel *SchedModel) const override
bool enableEarlyIfConversion () const override
std::unique_ptr< PBQPRAConstraintgetCustomPBQPConstraints () const override
bool isCallingConvWin64 (CallingConv::ID CC, bool IsVarArg) const
bool swiftAsyncContextIsDynamicallySet () const
 Return whether FrameLowering should always set the "extended frame present" bit in FP, or set it based on a symbol in the runtime.
void mirFileLoaded (MachineFunction &MF) const override
unsigned getMaxSVEVectorSizeInBits () const
unsigned getMinSVEVectorSizeInBits () const
unsigned getSVEVectorSizeInBits () const
bool useSVEForFixedLengthVectors () const
bool useSVEForFixedLengthVectors (EVT VT) const
unsigned getVScaleForTuning () const
TailFoldingOpts getSVETailFoldingDefaultOpts () const
bool useScalarIncVL () const
 Returns true to use the addvl/inc/dec instructions, as opposed to separate add + cnt instructions.
const chargetChkStkName () const
AArch64PAuth::AuthCheckMethod getAuthenticatedLRCheckMethod (const MachineFunction &MF) const
 Choose a method of checking LR before performing a tail call.
std::optional< uint16_tgetPtrAuthBlockAddressDiscriminatorIfEnabled (const Function &ParentFn) const
 Compute the integer discriminator for a given BlockAddress constant, if blockaddress signing is enabled, or std::nullopt otherwise.

Protected Attributes

ARMProcFamilyEnum ARMProcFamily = Generic
 ARMProcFamily - ARM processor family: Cortex-A53, Cortex-A57, and others.
unsigned MinVectorRegisterBitWidth = 64
unsigned EpilogueVectorizationMinVF = 16
uint8_t MaxInterleaveFactor = 2
uint8_t VectorInsertExtractBaseCost = 2
uint16_t CacheLineSize = 0
unsigned ScatterOverhead = 10
unsigned GatherOverhead = 10
uint16_t PrefetchDistance = 0
uint16_t MinPrefetchStride = 1
unsigned MaxPrefetchIterationsAhead = UINT_MAX
Align PrefFunctionAlignment
Align PrefLoopAlignment
unsigned MaxBytesForLoopAlignment = 0
unsigned MinimumJumpTableEntries = 4
unsigned MaxJumpTableSize = 0
BitVector ReserveXRegister
BitVector ReserveXRegisterForRA
BitVector CustomCallSavedXRegs
bool IsLittle
bool IsStreaming
bool IsStreamingCompatible
std::optional< unsignedStreamingHazardSize
unsigned MinSVEVectorSizeInBits
unsigned MaxSVEVectorSizeInBits
unsigned VScaleForTuning = 1
TailFoldingOpts DefaultSVETFOpts = TailFoldingOpts::Disabled
bool EnableSubregLiveness
Triple TargetTriple
 TargetTriple - What processor and OS we're targeting.
AArch64FrameLowering FrameLowering
AArch64InstrInfo InstrInfo
AArch64SelectionDAGInfo TSInfo
AArch64TargetLowering TLInfo
std::unique_ptr< CallLoweringCallLoweringInfo
 GlobalISel related APIs.
std::unique_ptr< InlineAsmLoweringInlineAsmLoweringInfo
std::unique_ptr< InstructionSelectorInstSelector
std::unique_ptr< LegalizerInfoLegalizer
std::unique_ptr< RegisterBankInfoRegBankInfo

Detailed Description

Definition at line 38 of file AArch64Subtarget.h.

Member Enumeration Documentation

◆ ARMProcFamilyEnum

Enumerator
Generic 

Definition at line 40 of file AArch64Subtarget.h.

Constructor & Destructor Documentation

◆ AArch64Subtarget()

AArch64Subtarget::AArch64Subtarget ( const Triple & TT,
StringRef CPU,
StringRef TuneCPU,
StringRef FS,
const TargetMachine & TM,
bool LittleEndian,
unsigned MinSVEVectorSizeInBitsOverride = 0,
unsigned MaxSVEVectorSizeInBitsOverride = 0,
bool IsStreaming = false,
bool IsStreamingCompatible = false,
bool HasMinSize = false )

Member Function Documentation

◆ addrSinkUsingGEPs()

bool llvm::AArch64Subtarget::addrSinkUsingGEPs ( ) const
inlineoverride

Definition at line 310 of file AArch64Subtarget.h.

References isTargetILP32(), and useAA().

◆ adjustSchedDependency()

void AArch64Subtarget::adjustSchedDependency ( SUnit * Def,
int DefOpIdx,
SUnit * Use,
int UseOpIdx,
SDep & Dep,
const TargetSchedModel * SchedModel ) const
override

◆ classifyGlobalFunctionReference() [1/2]

unsigned char llvm::AArch64Subtarget::classifyGlobalFunctionReference ( const GlobalValue * GV) const
inlineoverride

This function is design to compatible with the function def in other targets and escape build error about the virtual function def in base class TargetSubtargetInfo.

Updeate me if AArch64 target need to use it.

Definition at line 348 of file AArch64Subtarget.h.

◆ classifyGlobalFunctionReference() [2/2]

◆ ClassifyGlobalReference()

unsigned AArch64Subtarget::ClassifyGlobalReference ( const GlobalValue * GV,
const TargetMachine & TM ) const

ClassifyGlobalReference - Find the target operand flags that describe how a global value should be referenced for the current subtarget.

Find the target operand flags that describe how a global value should be referenced for the current subtarget.

Definition at line 466 of file AArch64Subtarget.cpp.

References getTargetTriple(), llvm::GlobalValue::getValueType(), llvm::GlobalValue::hasDLLImportStorageClass(), llvm::GlobalValue::hasExternalWeakLinkage(), llvm::isa(), llvm::GlobalValue::isTagged(), isTargetMachO(), llvm::CodeModel::Large, llvm::AArch64II::MO_COFFSTUB, llvm::AArch64II::MO_DLLIMPORT, llvm::AArch64II::MO_GOT, llvm::AArch64II::MO_NC, llvm::AArch64II::MO_NO_FLAG, llvm::AArch64II::MO_TAGGED, llvm::CodeModel::Tiny, and useSmallAddressing().

Referenced by classifyGlobalFunctionReference(), and performGlobalAddressCombine().

◆ enableEarlyIfConversion()

bool AArch64Subtarget::enableEarlyIfConversion ( ) const
override

Definition at line 593 of file AArch64Subtarget.cpp.

References EnableEarlyIfConvert.

◆ enableMachinePipeliner()

bool AArch64Subtarget::enableMachinePipeliner ( ) const
override

Definition at line 680 of file AArch64Subtarget.cpp.

◆ enableMachineScheduler()

bool llvm::AArch64Subtarget::enableMachineScheduler ( ) const
inlineoverride

Definition at line 159 of file AArch64Subtarget.h.

◆ enablePostRAScheduler()

bool llvm::AArch64Subtarget::enablePostRAScheduler ( ) const
inlineoverride

Definition at line 160 of file AArch64Subtarget.h.

◆ enableSubRegLiveness()

bool llvm::AArch64Subtarget::enableSubRegLiveness ( ) const
inlineoverride

Definition at line 161 of file AArch64Subtarget.h.

References EnableSubregLiveness.

◆ getAuthenticatedLRCheckMethod()

AArch64PAuth::AuthCheckMethod AArch64Subtarget::getAuthenticatedLRCheckMethod ( const MachineFunction & MF) const

Choose a method of checking LR before performing a tail call.

Definition at line 648 of file AArch64Subtarget.cpp.

References AuthenticatedLRCheckMethod, llvm::MachineFunction::getFunction(), llvm::Function::hasFnAttribute(), llvm::AArch64PAuth::HighBitsNoTBI, and llvm::AArch64PAuth::None.

◆ getCacheLineSize()

unsigned llvm::AArch64Subtarget::getCacheLineSize ( ) const
inlineoverride

Definition at line 258 of file AArch64Subtarget.h.

References CacheLineSize.

◆ getCallLowering()

const CallLowering * AArch64Subtarget::getCallLowering ( ) const
override

Definition at line 443 of file AArch64Subtarget.cpp.

References CallLoweringInfo.

◆ getChkStkName()

const char * llvm::AArch64Subtarget::getChkStkName ( ) const
inline

Definition at line 455 of file AArch64Subtarget.h.

References isWindowsArm64EC().

◆ getCustomPBQPConstraints()

std::unique_ptr< PBQPRAConstraint > AArch64Subtarget::getCustomPBQPConstraints ( ) const
override

Definition at line 611 of file AArch64Subtarget.cpp.

◆ getEpilogueVectorizationMinVF()

unsigned llvm::AArch64Subtarget::getEpilogueVectorizationMinVF ( ) const
inline

Definition at line 253 of file AArch64Subtarget.h.

References EpilogueVectorizationMinVF.

◆ getFrameLowering()

const AArch64FrameLowering * llvm::AArch64Subtarget::getFrameLowering ( ) const
inlineoverride

Definition at line 143 of file AArch64Subtarget.h.

References FrameLowering.

Referenced by llvm::AArch64FunctionInfo::AArch64FunctionInfo().

◆ getGatherOverhead()

unsigned llvm::AArch64Subtarget::getGatherOverhead ( ) const
inline

Definition at line 260 of file AArch64Subtarget.h.

References GatherOverhead.

◆ getHwModeSet()

unsigned AArch64Subtarget::getHwModeSet ( ) const
overridevirtual

◆ getInlineAsmLowering()

const InlineAsmLowering * AArch64Subtarget::getInlineAsmLowering ( ) const
override

Definition at line 447 of file AArch64Subtarget.cpp.

References InlineAsmLoweringInfo.

◆ getInstrInfo()

const AArch64InstrInfo * llvm::AArch64Subtarget::getInstrInfo ( ) const
inlineoverride

◆ getInstructionSelector()

InstructionSelector * AArch64Subtarget::getInstructionSelector ( ) const
override

Definition at line 451 of file AArch64Subtarget.cpp.

References InstSelector.

◆ getLegalizerInfo()

const LegalizerInfo * AArch64Subtarget::getLegalizerInfo ( ) const
override

Definition at line 455 of file AArch64Subtarget.cpp.

References Legalizer.

◆ getMaxBytesForLoopAlignment()

unsigned llvm::AArch64Subtarget::getMaxBytesForLoopAlignment ( ) const
inline

◆ getMaximumJumpTableSize()

unsigned llvm::AArch64Subtarget::getMaximumJumpTableSize ( ) const
inline

Definition at line 280 of file AArch64Subtarget.h.

References MaxJumpTableSize.

Referenced by llvm::AArch64TargetLowering::AArch64TargetLowering().

◆ getMaxInterleaveFactor()

unsigned llvm::AArch64Subtarget::getMaxInterleaveFactor ( ) const
inline

Definition at line 256 of file AArch64Subtarget.h.

References MaxInterleaveFactor.

◆ getMaxPrefetchIterationsAhead()

unsigned llvm::AArch64Subtarget::getMaxPrefetchIterationsAhead ( ) const
inlineoverride

Definition at line 268 of file AArch64Subtarget.h.

References MaxPrefetchIterationsAhead.

◆ getMaxSVEVectorSizeInBits()

unsigned llvm::AArch64Subtarget::getMaxSVEVectorSizeInBits ( ) const
inline

◆ getMinimumJumpTableEntries()

unsigned llvm::AArch64Subtarget::getMinimumJumpTableEntries ( ) const
inline

Definition at line 281 of file AArch64Subtarget.h.

References MinimumJumpTableEntries.

◆ getMinPrefetchStride()

unsigned llvm::AArch64Subtarget::getMinPrefetchStride ( unsigned NumMemAccesses,
unsigned NumStridedMemAccesses,
unsigned NumPrefetches,
bool HasCall ) const
inlineoverride

Definition at line 262 of file AArch64Subtarget.h.

References MinPrefetchStride.

◆ getMinSVEVectorSizeInBits()

◆ getMinVectorRegisterBitWidth()

unsigned llvm::AArch64Subtarget::getMinVectorRegisterBitWidth ( ) const
inline

◆ getNumXRegisterReserved()

unsigned llvm::AArch64Subtarget::getNumXRegisterReserved ( ) const
inline

◆ getPrefetchDistance()

unsigned llvm::AArch64Subtarget::getPrefetchDistance ( ) const
inlineoverride

Definition at line 261 of file AArch64Subtarget.h.

References PrefetchDistance.

◆ getPrefFunctionAlignment()

Align llvm::AArch64Subtarget::getPrefFunctionAlignment ( ) const
inline

◆ getPrefLoopAlignment()

Align llvm::AArch64Subtarget::getPrefLoopAlignment ( ) const
inline

Definition at line 274 of file AArch64Subtarget.h.

References PrefLoopAlignment.

Referenced by llvm::AArch64TargetLowering::AArch64TargetLowering().

◆ getProcFamily()

ARMProcFamilyEnum llvm::AArch64Subtarget::getProcFamily ( ) const
inline

Returns ARM processor family.

Avoid this function! CPU specifics should be kept local to this class and preferably modeled with SubtargetFeatures or properties in initializeProperties().

Definition at line 170 of file AArch64Subtarget.h.

References ARMProcFamily.

◆ getPtrAuthBlockAddressDiscriminatorIfEnabled()

std::optional< uint16_t > AArch64Subtarget::getPtrAuthBlockAddressDiscriminatorIfEnabled ( const Function & ParentFn) const

Compute the integer discriminator for a given BlockAddress constant, if blockaddress signing is enabled, or std::nullopt otherwise.

Blockaddress signing is controlled by the function attribute "ptrauth-indirect-gotos" on the parent function. Note that this assumes the discriminator is independent of the indirect goto branch site itself, i.e., it's the same for all BlockAddresses in a function.

Definition at line 664 of file AArch64Subtarget.cpp.

References llvm::Value::getName(), llvm::getPointerAuthStableSipHash(), and llvm::Function::hasFnAttribute().

◆ getRegBankInfo()

const RegisterBankInfo * AArch64Subtarget::getRegBankInfo ( ) const
override

Definition at line 459 of file AArch64Subtarget.cpp.

References RegBankInfo.

Referenced by llvm::AArch64CallLowering::lowerCall().

◆ getRegisterInfo()

◆ getScatterOverhead()

unsigned llvm::AArch64Subtarget::getScatterOverhead ( ) const
inline

Definition at line 259 of file AArch64Subtarget.h.

References ScatterOverhead.

◆ getSelectionDAGInfo()

const AArch64SelectionDAGInfo * llvm::AArch64Subtarget::getSelectionDAGInfo ( ) const
inlineoverride

Definition at line 140 of file AArch64Subtarget.h.

References TSInfo.

◆ getStreamingHazardSize()

unsigned llvm::AArch64Subtarget::getStreamingHazardSize ( ) const
inline

Returns the size of memory region that if accessed by both the CPU and the SME unit could result in a hazard.

0 = disabled.

Definition at line 184 of file AArch64Subtarget.h.

References StreamingHazardSize.

◆ getSVETailFoldingDefaultOpts()

TailFoldingOpts llvm::AArch64Subtarget::getSVETailFoldingDefaultOpts ( ) const
inline

Definition at line 447 of file AArch64Subtarget.h.

References DefaultSVETFOpts.

◆ getSVEVectorSizeInBits()

unsigned llvm::AArch64Subtarget::getSVEVectorSizeInBits ( ) const
inline

◆ getTargetLowering()

◆ getTargetTriple()

const Triple & llvm::AArch64Subtarget::getTargetTriple ( ) const
inline

◆ getVectorInsertExtractBaseCost()

unsigned AArch64Subtarget::getVectorInsertExtractBaseCost ( ) const

◆ getVScaleForTuning()

unsigned llvm::AArch64Subtarget::getVScaleForTuning ( ) const
inline

Definition at line 445 of file AArch64Subtarget.h.

References VScaleForTuning.

◆ hasCustomCallingConv()

bool llvm::AArch64Subtarget::hasCustomCallingConv ( ) const
inline

Definition at line 244 of file AArch64Subtarget.h.

References CustomCallSavedXRegs.

Referenced by llvm::AArch64CallLowering::lowerCall().

◆ hasFusion()

bool llvm::AArch64Subtarget::hasFusion ( ) const
inline

Return true if the CPU supports any kind of instruction fusion.

Definition at line 247 of file AArch64Subtarget.h.

◆ isCallingConvWin64()

◆ isLittleEndian()

bool llvm::AArch64Subtarget::isLittleEndian ( ) const
inline

Definition at line 289 of file AArch64Subtarget.h.

References IsLittle.

◆ isLRReservedForRA()

bool llvm::AArch64Subtarget::isLRReservedForRA ( ) const
inline

Definition at line 240 of file AArch64Subtarget.h.

Referenced by llvm::AArch64RegisterInfo::getReservedRegs().

◆ isNeonAvailable()

bool llvm::AArch64Subtarget::isNeonAvailable ( ) const
inline

Returns true if the target has NEON and the function at runtime is known to have NEON enabled (e.g.

the function is known not to be in streaming-SVE mode, which disables NEON instructions).

Definition at line 192 of file AArch64Subtarget.h.

References isStreaming(), and isStreamingCompatible().

Referenced by llvm::AArch64FrameLowering::canUseRedZone(), GenerateFixedLengthSVETBL(), getMinVectorRegisterBitWidth(), performBuildVectorCombine(), performFpToIntCombine(), performIntToFpCombine(), tryAdvSIMDModImm16(), tryAdvSIMDModImm32(), useSVEForFixedLengthVectors(), and useSVEForFixedLengthVectors().

◆ isNonStreamingSVEorSME2Available()

bool llvm::AArch64Subtarget::isNonStreamingSVEorSME2Available ( ) const
inline

Returns true if the target has access to either the full range of SVE instructions, or the streaming-compatible subset of SVE instructions available to SME2.

Definition at line 218 of file AArch64Subtarget.h.

References isSVEAvailable(), and isSVEorStreamingSVEAvailable().

◆ isStreaming()

bool llvm::AArch64Subtarget::isStreaming ( ) const
inline

Returns true if the function has a streaming body.

Definition at line 177 of file AArch64Subtarget.h.

References IsStreaming.

Referenced by enableMultiVectorSpillFill(), getHwModeSet(), INITIALIZE_PASS(), isNeonAvailable(), isStreamingSVEAvailable(), isSVEAvailable(), and tryToReplaceScalarFPConversionWithSVE().

◆ isStreamingCompatible()

bool llvm::AArch64Subtarget::isStreamingCompatible ( ) const
inline

Returns true if the function has a streaming-compatible body.

Definition at line 180 of file AArch64Subtarget.h.

References IsStreamingCompatible.

Referenced by getHwModeSet(), isNeonAvailable(), isSVEAvailable(), and tryToReplaceScalarFPConversionWithSVE().

◆ isStreamingSVEAvailable()

bool llvm::AArch64Subtarget::isStreamingSVEAvailable ( ) const
inline

Returns true if the target has access to the streaming-compatible subset of SVE instructions.

Definition at line 207 of file AArch64Subtarget.h.

References isStreaming().

Referenced by isSVEorStreamingSVEAvailable().

◆ isSVEAvailable()

bool llvm::AArch64Subtarget::isSVEAvailable ( ) const
inline

Returns true if the target has SVE and can use the full range of SVE instructions, for example because it knows the function is known not to be in streaming-SVE mode or when the target has FEAT_FA64 enabled.

Definition at line 200 of file AArch64Subtarget.h.

References isStreaming(), and isStreamingCompatible().

Referenced by getMinVectorRegisterBitWidth(), and isNonStreamingSVEorSME2Available().

◆ isSVEorStreamingSVEAvailable()

bool llvm::AArch64Subtarget::isSVEorStreamingSVEAvailable ( ) const
inline

Returns true if the target has access to either the full range of SVE instructions, or the streaming-compatible subset of SVE instructions.

Definition at line 211 of file AArch64Subtarget.h.

References isStreamingSVEAvailable().

Referenced by getMaxSVEVectorSizeInBits(), getMinSVEVectorSizeInBits(), getSVEVectorSizeInBits(), isNonStreamingSVEorSME2Available(), tryToReplaceScalarFPConversionWithSVE(), and useSVEForFixedLengthVectors().

◆ isTargetAndroid()

bool llvm::AArch64Subtarget::isTargetAndroid ( ) const
inline

Definition at line 295 of file AArch64Subtarget.h.

References TargetTriple.

◆ isTargetCOFF()

bool llvm::AArch64Subtarget::isTargetCOFF ( ) const
inline

Definition at line 299 of file AArch64Subtarget.h.

References TargetTriple.

◆ isTargetDarwin()

◆ isTargetELF()

bool llvm::AArch64Subtarget::isTargetELF ( ) const
inline

Definition at line 300 of file AArch64Subtarget.h.

References TargetTriple.

◆ isTargetFuchsia()

bool llvm::AArch64Subtarget::isTargetFuchsia ( ) const
inline

Definition at line 296 of file AArch64Subtarget.h.

References TargetTriple.

◆ isTargetILP32()

bool llvm::AArch64Subtarget::isTargetILP32 ( ) const
inline

◆ isTargetIOS()

bool llvm::AArch64Subtarget::isTargetIOS ( ) const
inline

Definition at line 292 of file AArch64Subtarget.h.

References TargetTriple.

◆ isTargetLinux()

bool llvm::AArch64Subtarget::isTargetLinux ( ) const
inline

Definition at line 293 of file AArch64Subtarget.h.

References TargetTriple.

Referenced by llvm::AArch64RegisterInfo::getCustomEHPadPreservedMask().

◆ isTargetMachO()

bool llvm::AArch64Subtarget::isTargetMachO ( ) const
inline

◆ isTargetWindows()

◆ isWindowsArm64EC()

◆ isX16X17Safer()

bool AArch64Subtarget::isX16X17Safer ( ) const

Returns whether the operating system makes it safer to store sensitive values in x16 and x17 as opposed to other registers.

Definition at line 674 of file AArch64Subtarget.cpp.

References isTargetDarwin().

◆ isXRaySupported()

bool llvm::AArch64Subtarget::isXRaySupported ( ) const
inlineoverride

Definition at line 174 of file AArch64Subtarget.h.

◆ isXRegCustomCalleeSaved()

bool llvm::AArch64Subtarget::isXRegCustomCalleeSaved ( size_t i) const
inline

◆ isXRegisterReserved()

bool llvm::AArch64Subtarget::isXRegisterReserved ( size_t i) const
inline

◆ isXRegisterReservedForRA()

bool llvm::AArch64Subtarget::isXRegisterReservedForRA ( size_t i) const
inline

Definition at line 233 of file AArch64Subtarget.h.

References ReserveXRegisterForRA.

Referenced by llvm::AArch64RegisterInfo::getReservedRegs().

◆ mirFileLoaded()

◆ overrideSchedPolicy()

void AArch64Subtarget::overrideSchedPolicy ( MachineSchedPolicy & Policy,
const SchedRegion & Region ) const
override

◆ ParseSubtargetFeatures()

void llvm::AArch64Subtarget::ParseSubtargetFeatures ( StringRef CPU,
StringRef TuneCPU,
StringRef FS )

ParseSubtargetFeatures - Parses features string setting specified subtarget options.

Definition of function is auto generated by tblgen.

◆ supportsAddressTopByteIgnored()

bool AArch64Subtarget::supportsAddressTopByteIgnored ( ) const

CPU has TBI (top byte of addresses is ignored during HW address translation) and OS enables it.

Definition at line 597 of file AArch64Subtarget.cpp.

References TargetTriple, and UseAddressTopByteIgnored.

◆ swiftAsyncContextIsDynamicallySet()

bool llvm::AArch64Subtarget::swiftAsyncContextIsDynamicallySet ( ) const
inline

Return whether FrameLowering should always set the "extended frame present" bit in FP, or set it based on a symbol in the runtime.

Definition at line 381 of file AArch64Subtarget.h.

References llvm::Triple::Darwin, getTargetTriple(), llvm::Triple::IOS, llvm::Triple::MacOSX, llvm::Triple::TvOS, and llvm::Triple::WatchOS.

◆ useAA()

bool AArch64Subtarget::useAA ( ) const
override

Definition at line 625 of file AArch64Subtarget.cpp.

References UseAA.

Referenced by addrSinkUsingGEPs().

◆ useDFAforSMS()

bool llvm::AArch64Subtarget::useDFAforSMS ( ) const
inlineoverride

Definition at line 164 of file AArch64Subtarget.h.

◆ useScalarIncVL()

bool AArch64Subtarget::useScalarIncVL ( ) const

Returns true to use the addvl/inc/dec instructions, as opposed to separate add + cnt instructions.

Definition at line 627 of file AArch64Subtarget.cpp.

References UseScalarIncVL.

◆ useSmallAddressing()

bool llvm::AArch64Subtarget::useSmallAddressing ( ) const
inline

Definition at line 316 of file AArch64Subtarget.h.

References llvm::CodeModel::Kernel, llvm::CodeModel::Small, and TLInfo.

Referenced by ClassifyGlobalReference().

◆ useSVEForFixedLengthVectors() [1/2]

bool llvm::AArch64Subtarget::useSVEForFixedLengthVectors ( ) const
inline

◆ useSVEForFixedLengthVectors() [2/2]

bool llvm::AArch64Subtarget::useSVEForFixedLengthVectors ( EVT VT) const
inline

Member Data Documentation

◆ ARMProcFamily

ARMProcFamilyEnum llvm::AArch64Subtarget::ARMProcFamily = Generic
protected

ARMProcFamily - ARM processor family: Cortex-A53, Cortex-A57, and others.

Definition at line 49 of file AArch64Subtarget.h.

Referenced by getProcFamily().

◆ CacheLineSize

uint16_t llvm::AArch64Subtarget::CacheLineSize = 0
protected

Definition at line 62 of file AArch64Subtarget.h.

Referenced by getCacheLineSize().

◆ CallLoweringInfo

std::unique_ptr<CallLowering> llvm::AArch64Subtarget::CallLoweringInfo
protected

GlobalISel related APIs.

Definition at line 105 of file AArch64Subtarget.h.

Referenced by AArch64Subtarget(), and getCallLowering().

◆ CustomCallSavedXRegs

BitVector llvm::AArch64Subtarget::CustomCallSavedXRegs
protected

◆ DefaultSVETFOpts

TailFoldingOpts llvm::AArch64Subtarget::DefaultSVETFOpts = TailFoldingOpts::Disabled
protected

Definition at line 92 of file AArch64Subtarget.h.

Referenced by getSVETailFoldingDefaultOpts().

◆ EnableSubregLiveness

bool llvm::AArch64Subtarget::EnableSubregLiveness
protected

Definition at line 94 of file AArch64Subtarget.h.

Referenced by AArch64Subtarget(), and enableSubRegLiveness().

◆ EpilogueVectorizationMinVF

unsigned llvm::AArch64Subtarget::EpilogueVectorizationMinVF = 16
protected

Definition at line 59 of file AArch64Subtarget.h.

Referenced by getEpilogueVectorizationMinVF().

◆ FrameLowering

AArch64FrameLowering llvm::AArch64Subtarget::FrameLowering
protected

Definition at line 99 of file AArch64Subtarget.h.

Referenced by getFrameLowering().

◆ GatherOverhead

unsigned llvm::AArch64Subtarget::GatherOverhead = 10
protected

Definition at line 65 of file AArch64Subtarget.h.

Referenced by getGatherOverhead().

◆ InlineAsmLoweringInfo

std::unique_ptr<InlineAsmLowering> llvm::AArch64Subtarget::InlineAsmLoweringInfo
protected

Definition at line 106 of file AArch64Subtarget.h.

Referenced by AArch64Subtarget(), and getInlineAsmLowering().

◆ InstrInfo

AArch64InstrInfo llvm::AArch64Subtarget::InstrInfo
protected

Definition at line 100 of file AArch64Subtarget.h.

Referenced by AArch64Subtarget(), and getInstrInfo().

◆ InstSelector

std::unique_ptr<InstructionSelector> llvm::AArch64Subtarget::InstSelector
protected

Definition at line 107 of file AArch64Subtarget.h.

Referenced by AArch64Subtarget(), and getInstructionSelector().

◆ IsLittle

bool llvm::AArch64Subtarget::IsLittle
protected

Definition at line 84 of file AArch64Subtarget.h.

Referenced by AArch64Subtarget(), and isLittleEndian().

◆ IsStreaming

bool llvm::AArch64Subtarget::IsStreaming
protected

Definition at line 86 of file AArch64Subtarget.h.

Referenced by AArch64Subtarget(), and isStreaming().

◆ IsStreamingCompatible

bool llvm::AArch64Subtarget::IsStreamingCompatible
protected

Definition at line 87 of file AArch64Subtarget.h.

Referenced by AArch64Subtarget(), and isStreamingCompatible().

◆ Legalizer

std::unique_ptr<LegalizerInfo> llvm::AArch64Subtarget::Legalizer
protected

Definition at line 108 of file AArch64Subtarget.h.

Referenced by AArch64Subtarget(), and getLegalizerInfo().

◆ MaxBytesForLoopAlignment

unsigned llvm::AArch64Subtarget::MaxBytesForLoopAlignment = 0
protected

Definition at line 71 of file AArch64Subtarget.h.

Referenced by getMaxBytesForLoopAlignment().

◆ MaxInterleaveFactor

uint8_t llvm::AArch64Subtarget::MaxInterleaveFactor = 2
protected

Definition at line 60 of file AArch64Subtarget.h.

Referenced by getMaxInterleaveFactor().

◆ MaxJumpTableSize

unsigned llvm::AArch64Subtarget::MaxJumpTableSize = 0
protected

Definition at line 73 of file AArch64Subtarget.h.

Referenced by getMaximumJumpTableSize().

◆ MaxPrefetchIterationsAhead

unsigned llvm::AArch64Subtarget::MaxPrefetchIterationsAhead = UINT_MAX
protected

Definition at line 68 of file AArch64Subtarget.h.

Referenced by getMaxPrefetchIterationsAhead().

◆ MaxSVEVectorSizeInBits

unsigned llvm::AArch64Subtarget::MaxSVEVectorSizeInBits
protected

◆ MinimumJumpTableEntries

unsigned llvm::AArch64Subtarget::MinimumJumpTableEntries = 4
protected

Definition at line 72 of file AArch64Subtarget.h.

Referenced by getMinimumJumpTableEntries().

◆ MinPrefetchStride

uint16_t llvm::AArch64Subtarget::MinPrefetchStride = 1
protected

Definition at line 67 of file AArch64Subtarget.h.

Referenced by getMinPrefetchStride().

◆ MinSVEVectorSizeInBits

unsigned llvm::AArch64Subtarget::MinSVEVectorSizeInBits
protected

◆ MinVectorRegisterBitWidth

unsigned llvm::AArch64Subtarget::MinVectorRegisterBitWidth = 64
protected

Definition at line 52 of file AArch64Subtarget.h.

Referenced by getMinVectorRegisterBitWidth().

◆ PrefetchDistance

uint16_t llvm::AArch64Subtarget::PrefetchDistance = 0
protected

Definition at line 66 of file AArch64Subtarget.h.

Referenced by getPrefetchDistance().

◆ PrefFunctionAlignment

Align llvm::AArch64Subtarget::PrefFunctionAlignment
protected

Definition at line 69 of file AArch64Subtarget.h.

Referenced by getPrefFunctionAlignment().

◆ PrefLoopAlignment

Align llvm::AArch64Subtarget::PrefLoopAlignment
protected

Definition at line 70 of file AArch64Subtarget.h.

Referenced by getPrefLoopAlignment().

◆ RegBankInfo

std::unique_ptr<RegisterBankInfo> llvm::AArch64Subtarget::RegBankInfo
protected

Definition at line 109 of file AArch64Subtarget.h.

Referenced by AArch64Subtarget(), and getRegBankInfo().

◆ ReserveXRegister

BitVector llvm::AArch64Subtarget::ReserveXRegister
protected

◆ ReserveXRegisterForRA

BitVector llvm::AArch64Subtarget::ReserveXRegisterForRA
protected

◆ ScatterOverhead

unsigned llvm::AArch64Subtarget::ScatterOverhead = 10
protected

Definition at line 64 of file AArch64Subtarget.h.

Referenced by getScatterOverhead().

◆ StreamingHazardSize

std::optional<unsigned> llvm::AArch64Subtarget::StreamingHazardSize
protected

Definition at line 88 of file AArch64Subtarget.h.

Referenced by AArch64Subtarget(), and getStreamingHazardSize().

◆ TargetTriple

Triple llvm::AArch64Subtarget::TargetTriple
protected

◆ TLInfo

AArch64TargetLowering llvm::AArch64Subtarget::TLInfo
protected

Definition at line 102 of file AArch64Subtarget.h.

Referenced by AArch64Subtarget(), getTargetLowering(), and useSmallAddressing().

◆ TSInfo

AArch64SelectionDAGInfo llvm::AArch64Subtarget::TSInfo
protected

Definition at line 101 of file AArch64Subtarget.h.

Referenced by getSelectionDAGInfo().

◆ VectorInsertExtractBaseCost

uint8_t llvm::AArch64Subtarget::VectorInsertExtractBaseCost = 2
protected

Definition at line 61 of file AArch64Subtarget.h.

Referenced by getVectorInsertExtractBaseCost().

◆ VScaleForTuning

unsigned llvm::AArch64Subtarget::VScaleForTuning = 1
protected

Definition at line 91 of file AArch64Subtarget.h.

Referenced by getVScaleForTuning().


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