LLVM 24.0.0git
AArch64MachineFunctionInfo.cpp
Go to the documentation of this file.
1//=- AArch64MachineFunctionInfo.cpp - AArch64 Machine Function Info ---------=//
2
3//
4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7//
8//===----------------------------------------------------------------------===//
9///
10/// \file
11/// This file implements AArch64-specific per-machine-function
12/// information.
13///
14//===----------------------------------------------------------------------===//
15
17#include "AArch64InstrInfo.h"
18#include "AArch64Subtarget.h"
20#include "llvm/IR/Constants.h"
22#include "llvm/IR/Metadata.h"
23#include "llvm/IR/Module.h"
24#include "llvm/MC/MCAsmInfo.h"
25
26using namespace llvm;
27
28static std::optional<uint64_t>
30 uint64_t (AArch64FunctionInfo::*GetStackSize)() const) {
32 return std::nullopt;
33 return (MFI.*GetStackSize)();
34}
35
38 : HasRedZone(MFI.hasRedZone()),
40 getSVEStackSize(MFI, &llvm::AArch64FunctionInfo::getStackSizeZPR)),
42 getSVEStackSize(MFI, &llvm::AArch64FunctionInfo::getStackSizePPR)),
43 HasStackFrame(MFI.hasStackFrame()
44 ? std::optional<bool>(MFI.hasStackFrame())
45 : std::nullopt),
47 MFI.hasStreamingModeChanges()
48 ? std::optional<bool>(MFI.hasStreamingModeChanges())
49 : std::nullopt) {}
50
54
56 const yaml::AArch64FunctionInfo &YamlMFI) {
57 if (YamlMFI.HasRedZone)
58 HasRedZone = YamlMFI.HasRedZone;
59 if (YamlMFI.StackSizeZPR || YamlMFI.StackSizePPR)
60 setStackSizeSVE(YamlMFI.StackSizeZPR.value_or(0),
61 YamlMFI.StackSizePPR.value_or(0));
62 if (YamlMFI.HasStackFrame)
64 if (YamlMFI.HasStreamingModeChanges)
66}
67
69 if (F.hasFnAttribute("ptrauth-returns"))
71
72 // The function should be signed in the following situations:
73 // - sign-return-address=all
74 // - sign-return-address=non-leaf and the functions spills the LR
75 if (!F.hasFnAttribute("sign-return-address"))
77
78 StringRef Scope = F.getFnAttribute("sign-return-address").getValueAsString();
83}
84
85static bool ShouldSignWithBKey(const Function &F, const AArch64Subtarget &STI) {
86 if (F.hasFnAttribute("ptrauth-returns"))
87 return true;
88 if (!F.hasFnAttribute("sign-return-address-key")) {
89 if (STI.getTargetTriple().isOSWindows())
90 return true;
91 return false;
92 }
93
94 const StringRef Key =
95 F.getFnAttribute("sign-return-address-key").getValueAsString();
96 assert(Key == "a_key" || Key == "b_key");
97 if (STI.getTargetTriple().isOSWindows() && Key == "a_key" &&
99 F.getContext().diagnose(DiagnosticInfoUnsupported{
100 F, "A-key return address signing is unsupported on AArch64 Windows"});
101 return true;
102 }
103 return Key == "b_key";
104}
105
107 const AArch64Subtarget *STI) {
108 if (!STI->getTargetTriple().isOSBinFormatELF())
109 return false;
110 const Module *M = F.getParent();
111 const auto *Flag = mdconst::extract_or_null<ConstantInt>(
112 M->getModuleFlag("ptrauth-elf-got"));
113 if (Flag && Flag->getZExtValue() == 1)
114 return true;
115 return false;
116}
117
119 const AArch64Subtarget *STI) {
120 // If we already know that the function doesn't have a redzone, set
121 // HasRedZone here.
122 if (F.hasFnAttribute(Attribute::NoRedZone))
123 HasRedZone = false;
124 SignCondition = GetSignReturnAddress(F);
125 SignWithBKey = ShouldSignWithBKey(F, *STI);
126 HasELFSignedGOT = hasELFSignedGOTHelper(F, STI);
127 // TODO: skip functions that have no instrumented allocas for optimization
128 IsMTETagged = F.hasFnAttribute(Attribute::SanitizeMemTag);
129
130 // BTI/PAuthLR are set on the function attribute.
131 BranchTargetEnforcement = F.hasFnAttribute("branch-target-enforcement");
132 BranchProtectionPAuthLR = F.hasFnAttribute("branch-protection-pauth-lr");
133
134 // Parse the SME function attributes.
135 SMEFnAttrs = SMEAttrs(F);
136
137 // The default stack probe size is 4096 if the function has no
138 // stack-probe-size attribute. This is a safe default because it is the
139 // smallest possible guard page size.
140 uint64_t ProbeSize = 4096;
141 if (F.hasFnAttribute("stack-probe-size"))
142 ProbeSize = F.getFnAttributeAsParsedInteger("stack-probe-size");
143 else if (const auto *PS = mdconst::extract_or_null<ConstantInt>(
144 F.getParent()->getModuleFlag("stack-probe-size")))
145 ProbeSize = PS->getZExtValue();
146 assert(int64_t(ProbeSize) > 0 && "Invalid stack probe size");
147
148 if (STI->isTargetWindows()) {
149 if (!F.hasFnAttribute("no-stack-arg-probe"))
150 StackProbeSize = ProbeSize;
151 } else {
152 // Round down to the stack alignment.
153 uint64_t StackAlign =
155 ProbeSize = std::max(StackAlign, ProbeSize & ~(StackAlign - 1U));
156 StringRef ProbeKind;
157 if (F.hasFnAttribute("probe-stack"))
158 ProbeKind = F.getFnAttribute("probe-stack").getValueAsString();
159 else if (const auto *PS = dyn_cast_or_null<MDString>(
160 F.getParent()->getModuleFlag("probe-stack")))
161 ProbeKind = PS->getString();
162 if (ProbeKind.size()) {
163 if (ProbeKind != "inline-asm")
164 report_fatal_error("Unsupported stack probing method");
165 StackProbeSize = ProbeSize;
166 }
167 }
168}
169
176
177static bool isLRSpilled(const MachineFunction &MF) {
178 return llvm::any_of(
179 MF.getFrameInfo().getCalleeSavedInfo(),
180 [](const auto &Info) { return Info.getReg() == AArch64::LR; });
181}
182
184 bool IsLRSpilled) {
185 switch (Condition) {
187 return false;
189 return IsLRSpilled;
191 return true;
192 }
193 llvm_unreachable("Unknown SignReturnAddress enum");
194}
195
197 const MachineFunction &MF) const {
198 return shouldSignReturnAddress(SignCondition, isLRSpilled(MF));
199}
200
202 MachineFunction &MF) const {
203 if (!(isLRSpilled(MF) &&
204 MF.getFunction().hasFnAttribute(Attribute::ShadowCallStack)))
205 return false;
206
208 report_fatal_error("Must reserve x18 to use shadow call stack");
209
210 return true;
211}
212
214 const MachineFunction &MF) const {
215 if (!NeedsDwarfUnwindInfo)
216 NeedsDwarfUnwindInfo =
218
219 return *NeedsDwarfUnwindInfo;
220}
221
223 const MachineFunction &MF) const {
224 if (!NeedsAsyncDwarfUnwindInfo) {
225 const Function &F = MF.getFunction();
227 // The check got "minsize" is because epilogue unwind info is not emitted
228 // (yet) for homogeneous epilogues, outlined functions, and functions
229 // outlined from.
230 NeedsAsyncDwarfUnwindInfo =
232 ((F.getUWTableKind() == UWTableKind::Async && !F.hasMinSize()) ||
234 }
235 return *NeedsAsyncDwarfUnwindInfo;
236}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static SignReturnAddress GetSignReturnAddress(const Function &F)
static std::optional< uint64_t > getSVEStackSize(const AArch64FunctionInfo &MFI, uint64_t(AArch64FunctionInfo::*GetStackSize)() const)
static bool ShouldSignWithBKey(const Function &F, const AArch64Subtarget &STI)
static bool hasELFSignedGOTHelper(const Function &F, const AArch64Subtarget *STI)
static bool isLRSpilled(const MachineFunction &MF)
This file contains the declarations for the subclasses of Constant, which represent the different fla...
Module.h This file contains the declarations for the Module class.
#define F(x, y, z)
Definition MD5.cpp:54
This file contains the declarations for metadata subclasses.
This file implements the StringSwitch template, which mimics a switch() statement whose cases are str...
AArch64FunctionInfo - This class is derived from MachineFunctionInfo and contains private AArch64-spe...
bool needsShadowCallStackPrologueEpilogue(MachineFunction &MF) const
void setStackSizeSVE(uint64_t ZPR, uint64_t PPR)
AArch64FunctionInfo(const Function &F, const AArch64Subtarget *STI)
bool needsDwarfUnwindInfo(const MachineFunction &MF) const
static bool shouldSignReturnAddress(SignReturnAddress Condition, bool IsLRSpilled)
void initializeBaseYamlFields(const yaml::AArch64FunctionInfo &YamlMFI)
bool needsAsyncDwarfUnwindInfo(const MachineFunction &MF) const
MachineFunctionInfo * clone(BumpPtrAllocator &Allocator, MachineFunction &DestMF, const DenseMap< MachineBasicBlock *, MachineBasicBlock * > &Src2DstMBB) const override
Make a functionally equivalent copy of this MachineFunctionInfo in MF.
void setHasStreamingModeChanges(bool HasChanges)
const Triple & getTargetTriple() const
bool isXRegisterReserved(size_t i) const
const AArch64FrameLowering * getFrameLowering() const override
Diagnostic information for unsupported feature in backend.
bool hasFnAttribute(Attribute::AttrKind Kind) const
Return true if the function has the attribute.
Definition Function.cpp:723
bool usesWindowsCFI() const
Definition MCAsmInfo.h:675
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
bool needsFrameMoves() const
True if this function needs frame moves for debug or exceptions.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
Function & getFunction()
Return the LLVM function that this machine code represents.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
Ty * cloneInfo(const Ty &Old)
const TargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
SMEAttrs is a utility class to parse the SME ACLE attributes on functions.
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
constexpr size_t size() const
Get the string size.
Definition StringRef.h:144
A switch()-like statement whose cases are string literals.
StringSwitch & Case(StringLiteral S, T Value)
Align getTransientStackAlign() const
getTransientStackAlignment - This method returns the number of bytes to which the stack pointer must ...
const MCAsmInfo & getMCAsmInfo() const
Return target specific asm information.
bool isOSWindows() const
Tests whether the OS is Windows.
Definition Triple.h:775
bool isOSBinFormatELF() const
Tests whether the OS uses the ELF binary format.
Definition Triple.h:864
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract_or_null(Y &&MD)
Extract a Value from Metadata, allowing null.
Definition Metadata.h:683
This is an optimization pass for GlobalISel generic memory operations.
SignReturnAddress
Condition of signing the return address in a function.
auto dyn_cast_or_null(const Y &Val)
Definition Casting.h:753
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1746
@ Async
"Asynchronous" unwind tables (instr precise)
Definition CodeGen.h:157
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:163
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:390
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:878
constexpr uint64_t value() const
This is a hole in the type system and should not be abused.
Definition Alignment.h:77
MachineFunctionInfo - This class can be derived from and used by targets to hold private target-speci...
void mappingImpl(yaml::IO &YamlIO) override
This class should be specialized by any type that needs to be converted to/from a YAML mapping.
Definition YAMLTraits.h:63