LLVM 19.0.0git
ModRef.h
Go to the documentation of this file.
1//===--- ModRef.h - Memory effect modelling ---------------------*- 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// Definitions of ModRefInfo and MemoryEffects, which are used to
10// describe the memory effects of instructions.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_SUPPORT_MODREF_H
15#define LLVM_SUPPORT_MODREF_H
16
18#include "llvm/ADT/Sequence.h"
20
21namespace llvm {
22
23/// Flags indicating whether a memory access modifies or references memory.
24///
25/// This is no access at all, a modification, a reference, or both
26/// a modification and a reference.
27enum class ModRefInfo : uint8_t {
28 /// The access neither references nor modifies the value stored in memory.
29 NoModRef = 0,
30 /// The access may reference the value stored in memory.
31 Ref = 1,
32 /// The access may modify the value stored in memory.
33 Mod = 2,
34 /// The access may reference and may modify the value stored in memory.
35 ModRef = Ref | Mod,
37};
38
39[[nodiscard]] inline bool isNoModRef(const ModRefInfo MRI) {
40 return MRI == ModRefInfo::NoModRef;
41}
42[[nodiscard]] inline bool isModOrRefSet(const ModRefInfo MRI) {
43 return MRI != ModRefInfo::NoModRef;
44}
45[[nodiscard]] inline bool isModAndRefSet(const ModRefInfo MRI) {
46 return MRI == ModRefInfo::ModRef;
47}
48[[nodiscard]] inline bool isModSet(const ModRefInfo MRI) {
49 return static_cast<int>(MRI) & static_cast<int>(ModRefInfo::Mod);
50}
51[[nodiscard]] inline bool isRefSet(const ModRefInfo MRI) {
52 return static_cast<int>(MRI) & static_cast<int>(ModRefInfo::Ref);
53}
54
55/// Debug print ModRefInfo.
56raw_ostream &operator<<(raw_ostream &OS, ModRefInfo MR);
57
58/// The locations at which a function might access memory.
59enum class IRMemLocation {
60 /// Access to memory via argument pointers.
61 ArgMem = 0,
62 /// Memory that is inaccessible via LLVM IR.
64 /// Any other memory.
65 Other = 2,
66
67 /// Helpers to iterate all locations in the MemoryEffectsBase class.
68 First = ArgMem,
69 Last = Other,
70};
71
72template <typename LocationEnum> class MemoryEffectsBase {
73public:
74 using Location = LocationEnum;
75
76private:
77 uint32_t Data = 0;
78
79 static constexpr uint32_t BitsPerLoc = 2;
80 static constexpr uint32_t LocMask = (1 << BitsPerLoc) - 1;
81
82 static uint32_t getLocationPos(Location Loc) {
83 return (uint32_t)Loc * BitsPerLoc;
84 }
85
86 MemoryEffectsBase(uint32_t Data) : Data(Data) {}
87
88 void setModRef(Location Loc, ModRefInfo MR) {
89 Data &= ~(LocMask << getLocationPos(Loc));
90 Data |= static_cast<uint32_t>(MR) << getLocationPos(Loc);
91 }
92
93public:
94 /// Returns iterator over all supported location kinds.
95 static auto locations() {
96 return enum_seq_inclusive(Location::First, Location::Last,
98 }
99
100 /// Create MemoryEffectsBase that can access only the given location with the
101 /// given ModRefInfo.
102 MemoryEffectsBase(Location Loc, ModRefInfo MR) { setModRef(Loc, MR); }
103
104 /// Create MemoryEffectsBase that can access any location with the given
105 /// ModRefInfo.
107 for (Location Loc : locations())
108 setModRef(Loc, MR);
109 }
110
111 /// Create MemoryEffectsBase that can read and write any memory.
114 }
115
116 /// Create MemoryEffectsBase that cannot read or write any memory.
119 }
120
121 /// Create MemoryEffectsBase that can read any memory.
124 }
125
126 /// Create MemoryEffectsBase that can write any memory.
129 }
130
131 /// Create MemoryEffectsBase that can only access argument memory.
133 return MemoryEffectsBase(Location::ArgMem, MR);
134 }
135
136 /// Create MemoryEffectsBase that can only access inaccessible memory.
137 static MemoryEffectsBase
139 return MemoryEffectsBase(Location::InaccessibleMem, MR);
140 }
141
142 /// Create MemoryEffectsBase that can only access inaccessible or argument
143 /// memory.
144 static MemoryEffectsBase
146 MemoryEffectsBase FRMB = none();
147 FRMB.setModRef(Location::ArgMem, MR);
148 FRMB.setModRef(Location::InaccessibleMem, MR);
149 return FRMB;
150 }
151
152 /// Create MemoryEffectsBase from an encoded integer value (used by memory
153 /// attribute).
155 return MemoryEffectsBase(Data);
156 }
157
158 /// Convert MemoryEffectsBase into an encoded integer value (used by memory
159 /// attribute).
161 return Data;
162 }
163
164 /// Get ModRefInfo for the given Location.
166 return ModRefInfo((Data >> getLocationPos(Loc)) & LocMask);
167 }
168
169 /// Get new MemoryEffectsBase with modified ModRefInfo for Loc.
171 MemoryEffectsBase ME = *this;
172 ME.setModRef(Loc, MR);
173 return ME;
174 }
175
176 /// Get new MemoryEffectsBase with NoModRef on the given Loc.
178 MemoryEffectsBase ME = *this;
179 ME.setModRef(Loc, ModRefInfo::NoModRef);
180 return ME;
181 }
182
183 /// Get ModRefInfo for any location.
186 for (Location Loc : locations())
187 MR |= getModRef(Loc);
188 return MR;
189 }
190
191 /// Whether this function accesses no memory.
192 bool doesNotAccessMemory() const { return Data == 0; }
193
194 /// Whether this function only (at most) reads memory.
195 bool onlyReadsMemory() const { return !isModSet(getModRef()); }
196
197 /// Whether this function only (at most) writes memory.
198 bool onlyWritesMemory() const { return !isRefSet(getModRef()); }
199
200 /// Whether this function only (at most) accesses argument memory.
202 return getWithoutLoc(Location::ArgMem).doesNotAccessMemory();
203 }
204
205 /// Whether this function may access argument memory.
207 return isModOrRefSet(getModRef(Location::ArgMem));
208 }
209
210 /// Whether this function only (at most) accesses inaccessible memory.
212 return getWithoutLoc(Location::InaccessibleMem).doesNotAccessMemory();
213 }
214
215 /// Whether this function only (at most) accesses argument and inaccessible
216 /// memory.
218 return getWithoutLoc(Location::InaccessibleMem)
219 .getWithoutLoc(Location::ArgMem)
221 }
222
223 /// Intersect with other MemoryEffectsBase.
225 return MemoryEffectsBase(Data & Other.Data);
226 }
227
228 /// Intersect (in-place) with other MemoryEffectsBase.
230 Data &= Other.Data;
231 return *this;
232 }
233
234 /// Union with other MemoryEffectsBase.
236 return MemoryEffectsBase(Data | Other.Data);
237 }
238
239 /// Union (in-place) with other MemoryEffectsBase.
241 Data |= Other.Data;
242 return *this;
243 }
244
245 /// Subtract other MemoryEffectsBase.
247 return MemoryEffectsBase(Data & ~Other.Data);
248 }
249
250 /// Subtract (in-place) with other MemoryEffectsBase.
252 Data &= ~Other.Data;
253 return *this;
254 }
255
256 /// Check whether this is the same as other MemoryEffectsBase.
257 bool operator==(MemoryEffectsBase Other) const { return Data == Other.Data; }
258
259 /// Check whether this is different from other MemoryEffectsBase.
261};
262
263/// Summary of how a function affects memory in the program.
264///
265/// Loads from constant globals are not considered memory accesses for this
266/// interface. Also, functions may freely modify stack space local to their
267/// invocation without having to report it through these interfaces.
269
270/// Debug print MemoryEffects.
272
273// Legacy alias.
275
276} // namespace llvm
277
278#endif
unsigned const MachineRegisterInfo * MRI
raw_pwrite_stream & OS
Provides some synthesis utilities to produce sequences of values.
MemoryEffectsBase operator&(MemoryEffectsBase Other) const
Intersect with other MemoryEffectsBase.
Definition: ModRef.h:224
static MemoryEffectsBase readOnly()
Create MemoryEffectsBase that can read any memory.
Definition: ModRef.h:122
bool onlyWritesMemory() const
Whether this function only (at most) writes memory.
Definition: ModRef.h:198
MemoryEffectsBase getWithoutLoc(Location Loc) const
Get new MemoryEffectsBase with NoModRef on the given Loc.
Definition: ModRef.h:177
MemoryEffectsBase & operator|=(MemoryEffectsBase Other)
Union (in-place) with other MemoryEffectsBase.
Definition: ModRef.h:240
MemoryEffectsBase getWithModRef(Location Loc, ModRefInfo MR) const
Get new MemoryEffectsBase with modified ModRefInfo for Loc.
Definition: ModRef.h:170
bool operator!=(MemoryEffectsBase Other) const
Check whether this is different from other MemoryEffectsBase.
Definition: ModRef.h:260
MemoryEffectsBase operator-(MemoryEffectsBase Other) const
Subtract other MemoryEffectsBase.
Definition: ModRef.h:246
bool doesNotAccessMemory() const
Whether this function accesses no memory.
Definition: ModRef.h:192
static MemoryEffectsBase argMemOnly(ModRefInfo MR=ModRefInfo::ModRef)
Create MemoryEffectsBase that can only access argument memory.
Definition: ModRef.h:132
MemoryEffectsBase(ModRefInfo MR)
Create MemoryEffectsBase that can access any location with the given ModRefInfo.
Definition: ModRef.h:106
bool doesAccessArgPointees() const
Whether this function may access argument memory.
Definition: ModRef.h:206
static MemoryEffectsBase inaccessibleMemOnly(ModRefInfo MR=ModRefInfo::ModRef)
Create MemoryEffectsBase that can only access inaccessible memory.
Definition: ModRef.h:138
bool onlyAccessesInaccessibleMem() const
Whether this function only (at most) accesses inaccessible memory.
Definition: ModRef.h:211
MemoryEffectsBase(Location Loc, ModRefInfo MR)
Create MemoryEffectsBase that can access only the given location with the given ModRefInfo.
Definition: ModRef.h:102
ModRefInfo getModRef(Location Loc) const
Get ModRefInfo for the given Location.
Definition: ModRef.h:165
MemoryEffectsBase & operator&=(MemoryEffectsBase Other)
Intersect (in-place) with other MemoryEffectsBase.
Definition: ModRef.h:229
ModRefInfo getModRef() const
Get ModRefInfo for any location.
Definition: ModRef.h:184
LocationEnum Location
Definition: ModRef.h:74
bool onlyAccessesArgPointees() const
Whether this function only (at most) accesses argument memory.
Definition: ModRef.h:201
bool onlyReadsMemory() const
Whether this function only (at most) reads memory.
Definition: ModRef.h:195
static MemoryEffectsBase createFromIntValue(uint32_t Data)
Create MemoryEffectsBase from an encoded integer value (used by memory attribute).
Definition: ModRef.h:154
MemoryEffectsBase & operator-=(MemoryEffectsBase Other)
Subtract (in-place) with other MemoryEffectsBase.
Definition: ModRef.h:251
static MemoryEffectsBase writeOnly()
Create MemoryEffectsBase that can write any memory.
Definition: ModRef.h:127
MemoryEffectsBase operator|(MemoryEffectsBase Other) const
Union with other MemoryEffectsBase.
Definition: ModRef.h:235
static auto locations()
Returns iterator over all supported location kinds.
Definition: ModRef.h:95
uint32_t toIntValue() const
Convert MemoryEffectsBase into an encoded integer value (used by memory attribute).
Definition: ModRef.h:160
static MemoryEffectsBase inaccessibleOrArgMemOnly(ModRefInfo MR=ModRefInfo::ModRef)
Create MemoryEffectsBase that can only access inaccessible or argument memory.
Definition: ModRef.h:145
static MemoryEffectsBase none()
Create MemoryEffectsBase that cannot read or write any memory.
Definition: ModRef.h:117
bool operator==(MemoryEffectsBase Other) const
Check whether this is the same as other MemoryEffectsBase.
Definition: ModRef.h:257
bool onlyAccessesInaccessibleOrArgMem() const
Whether this function only (at most) accesses argument and inaccessible memory.
Definition: ModRef.h:217
static MemoryEffectsBase unknown()
Create MemoryEffectsBase that can read and write any memory.
Definition: ModRef.h:112
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
auto enum_seq_inclusive(EnumT Begin, EnumT End)
Iterate over an enum type from Begin to End inclusive.
Definition: Sequence.h:364
constexpr force_iteration_on_noniterable_enum_t force_iteration_on_noniterable_enum
Definition: Sequence.h:108
bool isModSet(const ModRefInfo MRI)
Definition: ModRef.h:48
MemoryEffectsBase< IRMemLocation > MemoryEffects
Summary of how a function affects memory in the program.
Definition: ModRef.h:268
bool isModOrRefSet(const ModRefInfo MRI)
Definition: ModRef.h:42
ModRefInfo
Flags indicating whether a memory access modifies or references memory.
Definition: ModRef.h:27
@ Ref
The access may reference the value stored in memory.
@ ModRef
The access may reference and may modify the value stored in memory.
@ Mod
The access may modify the value stored in memory.
@ NoModRef
The access neither references nor modifies the value stored in memory.
IRMemLocation
The locations at which a function might access memory.
Definition: ModRef.h:59
@ ArgMem
Access to memory via argument pointers.
@ Other
Any other memory.
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
@ InaccessibleMem
Memory that is inaccessible via LLVM IR.
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)
Definition: APFixedPoint.h:293
bool isModAndRefSet(const ModRefInfo MRI)
Definition: ModRef.h:45
bool isNoModRef(const ModRefInfo MRI)
Definition: ModRef.h:39
bool isRefSet(const ModRefInfo MRI)
Definition: ModRef.h:51