LLVM 20.0.0git
AArch64Subtarget.h
Go to the documentation of this file.
1//===--- AArch64Subtarget.h - Define Subtarget for the AArch64 -*- C++ -*--===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file declares the AArch64 specific subclass of TargetSubtarget.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_LIB_TARGET_AARCH64_AARCH64SUBTARGET_H
14#define LLVM_LIB_TARGET_AARCH64_AARCH64SUBTARGET_H
15
17#include "AArch64ISelLowering.h"
18#include "AArch64InstrInfo.h"
19#include "AArch64PointerAuth.h"
20#include "AArch64RegisterInfo.h"
28#include "llvm/IR/DataLayout.h"
29
30#define GET_SUBTARGETINFO_HEADER
31#include "AArch64GenSubtargetInfo.inc"
32
33namespace llvm {
34class GlobalValue;
35class StringRef;
36class Triple;
37
39public:
40 enum ARMProcFamilyEnum : uint8_t {
42#define ARM_PROCESSOR_FAMILY(ENUM) ENUM,
43#include "llvm/TargetParser/AArch64TargetParserDef.inc"
44#undef ARM_PROCESSOR_FAMILY
45 };
46
47protected:
48 /// ARMProcFamily - ARM processor family: Cortex-A53, Cortex-A57, and others.
50
51 // Enable 64-bit vectorization in SLP.
53
54// Bool members corresponding to the SubtargetFeatures defined in tablegen
55#define GET_SUBTARGETINFO_MACRO(ATTRIBUTE, DEFAULT, GETTER) \
56 bool ATTRIBUTE = DEFAULT;
57#include "AArch64GenSubtargetInfo.inc"
58
64 unsigned MaxPrefetchIterationsAhead = UINT_MAX;
69 unsigned MaxJumpTableSize = 0;
70
71 // ReserveXRegister[i] - X#i is not available as a general purpose register.
73
74 // ReserveXRegisterForRA[i] - X#i is not available for register allocator.
76
77 // CustomCallUsedXRegister[i] - X#i call saved.
79
81
86 unsigned VScaleForTuning = 2;
88
89 /// TargetTriple - What processor and OS we're targeting.
91
96
97 /// GlobalISel related APIs.
98 std::unique_ptr<CallLowering> CallLoweringInfo;
99 std::unique_ptr<InlineAsmLowering> InlineAsmLoweringInfo;
100 std::unique_ptr<InstructionSelector> InstSelector;
101 std::unique_ptr<LegalizerInfo> Legalizer;
102 std::unique_ptr<RegisterBankInfo> RegBankInfo;
103
104private:
105 /// initializeSubtargetDependencies - Initializes using CPUString and the
106 /// passed in feature string so that we can use initializer lists for
107 /// subtarget initialization.
108 AArch64Subtarget &initializeSubtargetDependencies(StringRef FS,
109 StringRef CPUString,
110 StringRef TuneCPUString,
111 bool HasMinSize);
112
113 /// Initialize properties based on the selected processor family.
114 void initializeProperties(bool HasMinSize);
115
116public:
117 /// This constructor initializes the data members to match that
118 /// of the specified triple.
119 AArch64Subtarget(const Triple &TT, StringRef CPU, StringRef TuneCPU,
120 StringRef FS, const TargetMachine &TM, bool LittleEndian,
121 unsigned MinSVEVectorSizeInBitsOverride = 0,
122 unsigned MaxSVEVectorSizeInBitsOverride = 0,
123 bool IsStreaming = false, bool IsStreamingCompatible = false,
124 bool HasMinSize = false);
125
126// Getters for SubtargetFeatures defined in tablegen
127#define GET_SUBTARGETINFO_MACRO(ATTRIBUTE, DEFAULT, GETTER) \
128 bool GETTER() const { return ATTRIBUTE; }
129#include "AArch64GenSubtargetInfo.inc"
130
132 return &TSInfo;
133 }
134 const AArch64FrameLowering *getFrameLowering() const override {
135 return &FrameLowering;
136 }
137 const AArch64TargetLowering *getTargetLowering() const override {
138 return &TLInfo;
139 }
140 const AArch64InstrInfo *getInstrInfo() const override { return &InstrInfo; }
141 const AArch64RegisterInfo *getRegisterInfo() const override {
142 return &getInstrInfo()->getRegisterInfo();
143 }
144 const CallLowering *getCallLowering() const override;
145 const InlineAsmLowering *getInlineAsmLowering() const override;
147 const LegalizerInfo *getLegalizerInfo() const override;
148 const RegisterBankInfo *getRegBankInfo() const override;
149 const Triple &getTargetTriple() const { return TargetTriple; }
150 bool enableMachineScheduler() const override { return true; }
151 bool enablePostRAScheduler() const override { return usePostRAScheduler(); }
152
153 bool enableMachinePipeliner() const override;
154 bool useDFAforSMS() const override { return false; }
155
156 /// Returns ARM processor family.
157 /// Avoid this function! CPU specifics should be kept local to this class
158 /// and preferably modeled with SubtargetFeatures or properties in
159 /// initializeProperties().
161 return ARMProcFamily;
162 }
163
164 bool isXRaySupported() const override { return true; }
165
166 /// Returns true if the function has a streaming body.
167 bool isStreaming() const { return IsStreaming; }
168
169 /// Returns true if the function has a streaming-compatible body.
171
172 /// Returns true if the target has NEON and the function at runtime is known
173 /// to have NEON enabled (e.g. the function is known not to be in streaming-SVE
174 /// mode, which disables NEON instructions).
175 bool isNeonAvailable() const {
176 return hasNEON() &&
177 (hasSMEFA64() || (!isStreaming() && !isStreamingCompatible()));
178 }
179
180 /// Returns true if the target has SVE and can use the full range of SVE
181 /// instructions, for example because it knows the function is known not to be
182 /// in streaming-SVE mode or when the target has FEAT_FA64 enabled.
183 bool isSVEAvailable() const {
184 return hasSVE() &&
185 (hasSMEFA64() || (!isStreaming() && !isStreamingCompatible()));
186 }
187
188 /// Returns true if the target has access to either the full range of SVE instructions,
189 /// or the streaming-compatible subset of SVE instructions.
191 return hasSVE() || (hasSME() && isStreaming());
192 }
193
195 // Don't assume any minimum vector size when PSTATE.SM may not be 0, because
196 // we don't yet support streaming-compatible codegen support that we trust
197 // is safe for functions that may be executed in streaming-SVE mode.
198 // By returning '0' here, we disable vectorization.
199 if (!isSVEAvailable() && !isNeonAvailable())
200 return 0;
202 }
203
204 bool isXRegisterReserved(size_t i) const { return ReserveXRegister[i]; }
205 bool isXRegisterReservedForRA(size_t i) const { return ReserveXRegisterForRA[i]; }
206 unsigned getNumXRegisterReserved() const {
207 BitVector AllReservedX(AArch64::GPR64commonRegClass.getNumRegs());
208 AllReservedX |= ReserveXRegister;
209 AllReservedX |= ReserveXRegisterForRA;
210 return AllReservedX.count();
211 }
212 bool isLRReservedForRA() const { return ReserveLRForRA; }
213 bool isXRegCustomCalleeSaved(size_t i) const {
214 return CustomCallSavedXRegs[i];
215 }
217
218 /// Return true if the CPU supports any kind of instruction fusion.
219 bool hasFusion() const {
220 return hasArithmeticBccFusion() || hasArithmeticCbzFusion() ||
221 hasFuseAES() || hasFuseArithmeticLogic() || hasFuseCCSelect() ||
222 hasFuseAdrpAdd() || hasFuseLiterals();
223 }
224
225 unsigned getMaxInterleaveFactor() const { return MaxInterleaveFactor; }
226 unsigned getVectorInsertExtractBaseCost() const;
227 unsigned getCacheLineSize() const override { return CacheLineSize; }
228 unsigned getPrefetchDistance() const override { return PrefetchDistance; }
229 unsigned getMinPrefetchStride(unsigned NumMemAccesses,
230 unsigned NumStridedMemAccesses,
231 unsigned NumPrefetches,
232 bool HasCall) const override {
233 return MinPrefetchStride;
234 }
235 unsigned getMaxPrefetchIterationsAhead() const override {
237 }
240 }
242
245 }
246
247 unsigned getMaximumJumpTableSize() const { return MaxJumpTableSize; }
248 unsigned getMinimumJumpTableEntries() const {
250 }
251
252 /// CPU has TBI (top byte of addresses is ignored during HW address
253 /// translation) and OS enables it.
255
256 bool isLittleEndian() const { return IsLittle; }
257
258 bool isTargetDarwin() const { return TargetTriple.isOSDarwin(); }
259 bool isTargetIOS() const { return TargetTriple.isiOS(); }
260 bool isTargetLinux() const { return TargetTriple.isOSLinux(); }
261 bool isTargetWindows() const { return TargetTriple.isOSWindows(); }
262 bool isTargetAndroid() const { return TargetTriple.isAndroid(); }
263 bool isTargetFuchsia() const { return TargetTriple.isOSFuchsia(); }
265
266 bool isTargetCOFF() const { return TargetTriple.isOSBinFormatCOFF(); }
267 bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
269
270 bool isTargetILP32() const {
271 return TargetTriple.isArch32Bit() ||
273 }
274
275 bool useAA() const override;
276
277 bool addrSinkUsingGEPs() const override {
278 // Keeping GEPs inbounds is important for exploiting AArch64
279 // addressing-modes in ILP32 mode.
280 return useAA() || isTargetILP32();
281 }
282
283 bool useSmallAddressing() const {
286 // Kernel is currently allowed only for Fuchsia targets,
287 // where it is the same as Small for almost all purposes.
288 case CodeModel::Small:
289 return true;
290 default:
291 return false;
292 }
293 }
294
295 /// ParseSubtargetFeatures - Parses features string setting specified
296 /// subtarget options. Definition of function is auto generated by tblgen.
298
299 /// ClassifyGlobalReference - Find the target operand flags that describe
300 /// how a global value should be referenced for the current subtarget.
301 unsigned ClassifyGlobalReference(const GlobalValue *GV,
302 const TargetMachine &TM) const;
303
305 const TargetMachine &TM) const;
306
307 /// This function is design to compatible with the function def in other
308 /// targets and escape build error about the virtual function def in base
309 /// class TargetSubtargetInfo. Updeate me if AArch64 target need to use it.
310 unsigned char
312 return 0;
313 }
314
316 unsigned NumRegionInstrs) const override;
317 void adjustSchedDependency(SUnit *Def, int DefOpIdx, SUnit *Use, int UseOpIdx,
318 SDep &Dep,
319 const TargetSchedModel *SchedModel) const override;
320
321 bool enableEarlyIfConversion() const override;
322
323 std::unique_ptr<PBQPRAConstraint> getCustomPBQPConstraints() const override;
324
325 bool isCallingConvWin64(CallingConv::ID CC, bool IsVarArg) const {
326 switch (CC) {
327 case CallingConv::C:
331 return isTargetWindows();
333 return IsVarArg && isTargetWindows();
335 return true;
336 default:
337 return false;
338 }
339 }
340
341 /// Return whether FrameLowering should always set the "extended frame
342 /// present" bit in FP, or set it based on a symbol in the runtime.
344 // Older OS versions (particularly system unwinders) are confused by the
345 // Swift extended frame, so when building code that might be run on them we
346 // must dynamically query the concurrency library to determine whether
347 // extended frames should be flagged as present.
348 const Triple &TT = getTargetTriple();
349
350 unsigned Major = TT.getOSVersion().getMajor();
351 switch(TT.getOS()) {
352 default:
353 return false;
354 case Triple::IOS:
355 case Triple::TvOS:
356 return Major < 15;
357 case Triple::WatchOS:
358 return Major < 8;
359 case Triple::MacOSX:
360 case Triple::Darwin:
361 return Major < 12;
362 }
363 }
364
365 void mirFileLoaded(MachineFunction &MF) const override;
366
367 // Return the known range for the bit length of SVE data registers. A value
368 // of 0 means nothing is known about that particular limit beyong what's
369 // implied by the architecture.
370 unsigned getMaxSVEVectorSizeInBits() const {
372 "Tried to get SVE vector length without SVE support!");
374 }
375
376 unsigned getMinSVEVectorSizeInBits() const {
378 "Tried to get SVE vector length without SVE support!");
380 }
381
384 return false;
385
386 // Prefer NEON unless larger SVE registers are available.
387 return !isNeonAvailable() || getMinSVEVectorSizeInBits() >= 256;
388 }
389
392 return false;
395 }
396
397 unsigned getVScaleForTuning() const { return VScaleForTuning; }
398
400 return DefaultSVETFOpts;
401 }
402
403 const char* getChkStkName() const {
404 if (isWindowsArm64EC())
405 return "#__chkstk_arm64ec";
406 return "__chkstk";
407 }
408
409 const char* getSecurityCheckCookieName() const {
410 if (isWindowsArm64EC())
411 return "#__security_check_cookie_arm64ec";
412 return "__security_check_cookie";
413 }
414
415 /// Choose a method of checking LR before performing a tail call.
417
418 /// Compute the integer discriminator for a given BlockAddress constant, if
419 /// blockaddress signing is enabled, or std::nullopt otherwise.
420 /// Blockaddress signing is controlled by the function attribute
421 /// "ptrauth-indirect-gotos" on the parent function.
422 /// Note that this assumes the discriminator is independent of the indirect
423 /// goto branch site itself, i.e., it's the same for all BlockAddresses in
424 /// a function.
425 std::optional<uint16_t>
427
429 return AddressCheckPSV.get();
430 }
431
432private:
433 /// Pseudo value representing memory load performed to check an address.
434 ///
435 /// This load operation is solely used for its side-effects: if the address
436 /// is not mapped (or not readable), it triggers CPU exception, otherwise
437 /// execution proceeds and the value is not used.
438 class AddressCheckPseudoSourceValue : public PseudoSourceValue {
439 public:
440 AddressCheckPseudoSourceValue(const TargetMachine &TM)
442
443 bool isConstant(const MachineFrameInfo *) const override { return false; }
444 bool isAliased(const MachineFrameInfo *) const override { return true; }
445 bool mayAlias(const MachineFrameInfo *) const override { return true; }
446 void printCustom(raw_ostream &OS) const override { OS << "AddressCheck"; }
447 };
448
449 std::unique_ptr<AddressCheckPseudoSourceValue> AddressCheckPSV;
450};
451} // End llvm namespace
452
453#endif
This file describes how to lower LLVM calls to machine code calls.
This file describes how to lower LLVM inline asm to machine code INLINEASM.
Interface for Targets to specify which operations they can successfully select and how the others sho...
const char LLVMTargetMachineRef TM
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
raw_pwrite_stream & OS
const AArch64RegisterInfo & getRegisterInfo() const
getRegisterInfo - TargetInstrInfo is a superset of MRegister info.
const AArch64SelectionDAGInfo * getSelectionDAGInfo() const override
const CallLowering * getCallLowering() const override
const AArch64RegisterInfo * getRegisterInfo() const override
bool isNeonAvailable() const
Returns true if the target has NEON and the function at runtime is known to have NEON enabled (e....
bool isLRReservedForRA() const
TailFoldingOpts DefaultSVETFOpts
unsigned getMinPrefetchStride(unsigned NumMemAccesses, unsigned NumStridedMemAccesses, unsigned NumPrefetches, bool HasCall) const override
bool addrSinkUsingGEPs() const override
std::unique_ptr< InstructionSelector > InstSelector
ARMProcFamilyEnum ARMProcFamily
ARMProcFamily - ARM processor family: Cortex-A53, Cortex-A57, and others.
unsigned getMinimumJumpTableEntries() const
std::unique_ptr< RegisterBankInfo > RegBankInfo
bool useSVEForFixedLengthVectors(EVT VT) const
const AArch64InstrInfo * getInstrInfo() const override
bool useSmallAddressing() const
bool hasFusion() const
Return true if the CPU supports any kind of instruction fusion.
AArch64SelectionDAGInfo TSInfo
const char * getSecurityCheckCookieName() const
unsigned getMaximumJumpTableSize() const
void overrideSchedPolicy(MachineSchedPolicy &Policy, unsigned NumRegionInstrs) const override
AArch64FrameLowering FrameLowering
bool enableEarlyIfConversion() const override
const InlineAsmLowering * getInlineAsmLowering() const override
unsigned getCacheLineSize() const override
unsigned getVectorInsertExtractBaseCost() const
bool enableMachinePipeliner() const override
ARMProcFamilyEnum getProcFamily() const
Returns ARM processor family.
std::unique_ptr< CallLowering > CallLoweringInfo
GlobalISel related APIs.
std::optional< uint16_t > getPtrAuthBlockAddressDiscriminatorIfEnabled(const Function &ParentFn) const
Compute the integer discriminator for a given BlockAddress constant, if blockaddress signing is enabl...
bool isXRegisterReservedForRA(size_t i) const
unsigned getNumXRegisterReserved() const
unsigned classifyGlobalFunctionReference(const GlobalValue *GV, const TargetMachine &TM) const
bool useAA() const override
const AArch64TargetLowering * getTargetLowering() const override
Align getPrefLoopAlignment() const
Align getPrefFunctionAlignment() const
unsigned getMaxBytesForLoopAlignment() const
bool supportsAddressTopByteIgnored() const
CPU has TBI (top byte of addresses is ignored during HW address translation) and OS enables it.
unsigned getMaxInterleaveFactor() 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 a...
const Triple & getTargetTriple() const
const PseudoSourceValue * getAddressCheckPSV() const
bool isStreamingCompatible() const
Returns true if the function has a streaming-compatible body.
const char * getChkStkName() const
bool isXRegCustomCalleeSaved(size_t i) const
void adjustSchedDependency(SUnit *Def, int DefOpIdx, SUnit *Use, int UseOpIdx, SDep &Dep, const TargetSchedModel *SchedModel) const override
void mirFileLoaded(MachineFunction &MF) const override
Triple TargetTriple
TargetTriple - What processor and OS we're targeting.
InstructionSelector * getInstructionSelector() const override
bool isSVEorStreamingSVEAvailable() const
Returns true if the target has access to either the full range of SVE instructions,...
TailFoldingOpts getSVETailFoldingDefaultOpts() const
bool useSVEForFixedLengthVectors() const
unsigned ClassifyGlobalReference(const GlobalValue *GV, const TargetMachine &TM) const
ClassifyGlobalReference - Find the target operand flags that describe how a global value should be re...
void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS)
ParseSubtargetFeatures - Parses features string setting specified subtarget options.
unsigned getMinVectorRegisterBitWidth() const
bool isStreaming() const
Returns true if the function has a streaming body.
AArch64PAuth::AuthCheckMethod getAuthenticatedLRCheckMethod() const
Choose a method of checking LR before performing a tail call.
bool isXRegisterReserved(size_t i) const
unsigned getMaxPrefetchIterationsAhead() const override
bool useDFAforSMS() const override
const LegalizerInfo * getLegalizerInfo() const override
bool enableMachineScheduler() const override
bool enablePostRAScheduler() const override
std::unique_ptr< PBQPRAConstraint > getCustomPBQPConstraints() const override
unsigned getMaxSVEVectorSizeInBits() const
bool isCallingConvWin64(CallingConv::ID CC, bool IsVarArg) const
unsigned getVScaleForTuning() const
unsigned getMinSVEVectorSizeInBits() const
AArch64InstrInfo InstrInfo
AArch64TargetLowering TLInfo
const RegisterBankInfo * getRegBankInfo() const override
std::unique_ptr< LegalizerInfo > Legalizer
std::unique_ptr< InlineAsmLowering > InlineAsmLoweringInfo
bool isXRaySupported() const override
bool isSVEAvailable() const
Returns true if the target has SVE and can use the full range of SVE instructions,...
bool hasCustomCallingConv() const
const AArch64FrameLowering * getFrameLowering() const override
bool swiftAsyncContextIsDynamicallySet() const
Return whether FrameLowering should always set the "extended frame present" bit in FP,...
unsigned getPrefetchDistance() const override
size_type count() const
count - Returns the number of bits which are set.
Definition: BitVector.h:162
bool any() const
any - Returns true if any bit is set.
Definition: BitVector.h:170
Special value supplied for machine level alias analysis.
Holds all the information related to register banks.
Scheduling dependency.
Definition: ScheduleDAG.h:49
Scheduling unit. This is a node in the scheduling DAG.
Definition: ScheduleDAG.h:242
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
const TargetMachine & getTargetMachine() const
Primary interface to the complete machine description for the target machine.
Definition: TargetMachine.h:77
CodeModel::Model getCodeModel() const
Returns the code model.
Provide an instruction scheduling machine model to CodeGen passes.
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
bool isAndroid() const
Tests whether the target is Android.
Definition: Triple.h:771
bool isOSBinFormatMachO() const
Tests whether the environment is MachO.
Definition: Triple.h:734
bool isOSBinFormatCOFF() const
Tests whether the OS uses the COFF binary format.
Definition: Triple.h:726
EnvironmentType getEnvironment() const
Get the parsed environment type of this triple.
Definition: Triple.h:392
bool isOSWindows() const
Tests whether the OS is Windows.
Definition: Triple.h:626
bool isOSLinux() const
Tests whether the OS is Linux.
Definition: Triple.h:680
bool isOSDarwin() const
Is this a "Darwin" OS (macOS, iOS, tvOS, watchOS, XROS, or DriverKit).
Definition: Triple.h:560
bool isWindowsArm64EC() const
Definition: Triple.h:642
bool isiOS() const
Is this an iOS triple.
Definition: Triple.h:533
bool isArch32Bit() const
Test whether the architecture is 32-bit.
Definition: Triple.cpp:1668
bool isOSFuchsia() const
Definition: Triple.h:590
bool isOSBinFormatELF() const
Tests whether the OS uses the ELF binary format.
Definition: Triple.h:721
A Use represents the edge between a Value definition and its users.
Definition: Use.h:43
AuthCheckMethod
Variants of check performed on an authenticated pointer.
static constexpr unsigned SVEBitsPerBlock
@ Swift
Calling convention for Swift.
Definition: CallingConv.h:69
@ Fast
Attempts to make calls as fast as possible (e.g.
Definition: CallingConv.h:41
@ PreserveNone
Used for runtime calls that preserves none general registers.
Definition: CallingConv.h:90
@ Win64
The C convention as implemented on Windows/x86-64 and AArch64.
Definition: CallingConv.h:159
@ SwiftTail
This follows the Swift calling convention in how arguments are passed but guarantees tail calls will ...
Definition: CallingConv.h:87
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
TailFoldingOpts
An enum to describe what types of loops we should attempt to tail-fold: Disabled: None Reductions: Lo...
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition: Alignment.h:39
Extended Value Type.
Definition: ValueTypes.h:34
uint64_t getFixedSizeInBits() const
Return the size of the specified fixed width value type in bits.
Definition: ValueTypes.h:366
bool isFixedLengthVector() const
Definition: ValueTypes.h:177
Define a generic scheduling policy for targets that don't provide their own MachineSchedStrategy.