LLVM 24.0.0git
Loads.h
Go to the documentation of this file.
1//===- Loads.h - Local load analysis --------------------------------------===//
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 simple local analyses for load instructions.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_ANALYSIS_LOADS_H
14#define LLVM_ANALYSIS_LOADS_H
15
16#include "llvm/ADT/APInt.h"
18#include "llvm/IR/BasicBlock.h"
22
23namespace llvm {
24
25class BatchAAResults;
26class AssumptionCache;
27class DataLayout;
28class DominatorTree;
29class Instruction;
30class LoadInst;
31class Loop;
32class MemoryLocation;
33class SCEV;
34class ScalarEvolution;
35class SCEVPredicate;
36class StoreInst;
37template <typename T> class SmallVectorImpl;
39
40/// Returns true if V is always a dereferenceable pointer with alignment
41/// greater or equal than requested. If the context instruction is specified
42/// performs context-sensitive analysis and returns true if the pointer is
43/// dereferenceable at the specified instruction.
44/// If \p IgnoreFree is set, ignore potential frees of the object.
46 Align Alignment,
47 const SimplifyQuery &Q,
48 bool IgnoreFree = false);
49
50/// Returns true if V is always dereferenceable for Size byte with alignment
51/// greater or equal than requested. If the context instruction is specified
52/// performs context-sensitive analysis and returns true if the pointer is
53/// dereferenceable at the specified instruction.
54/// If \p IgnoreFree is set, ignore potential frees of the object.
56 Align Alignment,
57 const APInt &Size,
58 const SimplifyQuery &Q,
59 bool IgnoreFree = false);
60
61/// Equivalent to isDereferenceableAndAlignedPointer with an alignment of 1.
63 const SimplifyQuery &Q,
64 bool IgnoreFree = false);
65
66/// Equivalent to isDereferenceableAndAlignedPointer with an alignment of 1.
68 const SimplifyQuery &Q,
69 bool IgnoreFree = false);
70
71/// Return true if we know that executing a load from this value cannot trap.
72///
73/// If SQ.CxtI is specified this method performs context-sensitive analysis
74/// and returns true if it is safe to load immediately before SQ.CxtI.
75///
76/// If it is not obviously safe to load from the specified pointer, we do a
77/// quick local scan of the basic block containing SQ.CxtI, to determine if
78/// the address is already accessed.
80 const APInt &Size,
81 const SimplifyQuery &SQ);
82
83/// Return true if we can prove that the given load (which is assumed to be
84/// within the specified loop) would access only dereferenceable memory, and
85/// be properly aligned on every iteration of the specified loop regardless of
86/// its placement within the loop. (i.e. does not require predication beyond
87/// that required by the header itself and could be hoisted into the header
88/// if desired.) This is more powerful than the variants above when the
89/// address loaded from is analyzeable by SCEV.
92 AssumptionCache *AC = nullptr,
93 SmallVectorImpl<const SCEVPredicate *> *Predicates = nullptr);
94
95/// Overload for isDereferenceableAndAlignedInLoop taking the pointer and access
96/// size directly as SCEVs.
98 const SCEV *PtrSCEV, Align Alignment, const SCEV *EltSizeSCEV, Loop *L,
99 ScalarEvolution &SE, DominatorTree &DT, AssumptionCache *AC = nullptr,
100 SmallVectorImpl<const SCEVPredicate *> *Predicates = nullptr);
101
102/// Returns true if the loop contains read-only memory accesses and doesn't
103/// throw. Puts loads that may fault into \p NonDereferenceableAndAlignedLoads.
104LLVM_ABI bool
106 AssumptionCache *AC,
107 SmallVectorImpl<LoadInst *> &NonDereferenceableAndAlignedLoads,
108 SmallVectorImpl<const SCEVPredicate *> *Predicates = nullptr);
109
110/// Return true if we know that executing a load from this value cannot trap.
111///
112/// If SQ.CxtI is specified this method performs context-sensitive analysis
113/// and returns true if it is safe to load immediately before SQ.CxtI.
114///
115/// If it is not obviously safe to load from the specified pointer, we do a
116/// quick local scan of the basic block containing SQ.CxtI, to determine if
117/// the address is already accessed.
118LLVM_ABI bool isSafeToLoadUnconditionally(Value *V, Type *Ty, Align Alignment,
119 const SimplifyQuery &SQ);
120
121/// Return true if speculation of the given load must be suppressed to avoid
122/// ordering or interfering with an active sanitizer. If not suppressed,
123/// dereferenceability and alignment must be proven separately. Note: This
124/// is only needed for raw reasoning; if you use the interface below
125/// (isSafeToSpeculativelyExecute), this is handled internally.
127
128/// The default number of maximum instructions to scan in the block, used by
129/// FindAvailableLoadedValue().
131
132/// Scan backwards to see if we have the value of the given load available
133/// locally within a small number of instructions.
134///
135/// You can use this function to scan across multiple blocks: after you call
136/// this function, if ScanFrom points at the beginning of the block, it's safe
137/// to continue scanning the predecessors.
138///
139/// Note that performing load CSE requires special care to make sure the
140/// metadata is set appropriately. In particular, aliasing metadata needs
141/// to be merged. (This doesn't matter for store-to-load forwarding because
142/// the only relevant load gets deleted.)
143///
144/// \param Load The load we want to replace.
145/// \param ScanBB The basic block to scan.
146/// \param [in,out] ScanFrom The location to start scanning from. When this
147/// function returns, it points at the last instruction scanned.
148/// \param MaxInstsToScan The maximum number of instructions to scan. If this
149/// is zero, the whole block will be scanned.
150/// \param AA Optional pointer to alias analysis, to make the scan more
151/// precise.
152/// \param [out] IsLoadCSE Whether the returned value is a load from the same
153/// location in memory, as opposed to the value operand of a store.
154///
155/// \returns The found value, or nullptr if no value is found.
157 LoadInst *Load, BasicBlock *ScanBB, BasicBlock::iterator &ScanFrom,
158 unsigned MaxInstsToScan = DefMaxInstsToScan, BatchAAResults *AA = nullptr,
159 bool *IsLoadCSE = nullptr, unsigned *NumScanedInst = nullptr);
160
161/// This overload provides a more efficient implementation of
162/// FindAvailableLoadedValue() for the case where we are not interested in
163/// finding the closest clobbering instruction if no available load is found.
164/// This overload cannot be used to scan across multiple blocks.
167 unsigned MaxInstsToScan = DefMaxInstsToScan);
168
169/// Check whether \p SI, which may alias \p MemLoc, can be safely skipped.
170/// This is possible when \p SI does only MustAlias or NoAlias \p MemLoc (no
171/// partial overlap possible), and it stores the value \p MemLoc currently
172/// holds (loaded before the store and not modified in between).
174 const MemoryLocation &MemLoc,
175 Align MemLocAlign,
177 unsigned ScanLimit);
178
179/// Scan backwards to see if we have the value of the given pointer available
180/// locally within a small number of instructions.
181///
182/// You can use this function to scan across multiple blocks: after you call
183/// this function, if ScanFrom points at the beginning of the block, it's safe
184/// to continue scanning the predecessors.
185///
186/// \param Loc The location we want the load and store to originate from.
187/// \param AccessTy The access type of the pointer.
188/// \param AtLeastAtomic Are we looking for at-least an atomic load/store ? In
189/// case it is false, we can return an atomic or non-atomic load or store. In
190/// case it is true, we need to return an atomic load or store.
191/// \param ScanBB The basic block to scan.
192/// \param [in,out] ScanFrom The location to start scanning from. When this
193/// function returns, it points at the last instruction scanned.
194/// \param MaxInstsToScan The maximum number of instructions to scan. If this
195/// is zero, the whole block will be scanned.
196/// \param AA Optional pointer to alias analysis, to make the scan more
197/// precise.
198/// \param [out] IsLoadCSE Whether the returned value is a load from the same
199/// location in memory, as opposed to the value operand of a store.
200///
201/// \returns The found value, or nullptr if no value is found.
203 const MemoryLocation &Loc, Type *AccessTy, bool AtLeastAtomic,
204 BasicBlock *ScanBB, BasicBlock::iterator &ScanFrom, unsigned MaxInstsToScan,
205 BatchAAResults *AA, bool *IsLoadCSE, unsigned *NumScanedInst);
206
207/// Returns true if a pointer value \p From can be replaced with another pointer
208/// value \To if they are deemed equal through some means (e.g. information from
209/// conditions).
210/// NOTE: The current implementation allows replacement in Icmp and PtrToInt
211/// instructions, as well as when we are replacing with a null pointer.
212/// Additionally it also allows replacement of pointers when both pointers have
213/// the same underlying object.
214LLVM_ABI bool canReplacePointersIfEqual(const Value *From, const Value *To,
215 const DataLayout &DL);
216LLVM_ABI bool canReplacePointersInUseIfEqual(const Use &U, const Value *To,
217 const DataLayout &DL);
218
219/// Linear expression BasePtr + Index * Scale + Offset.
220/// Index, Scale and Offset all have the same bit width, which matches the
221/// pointer index size of BasePtr.
222/// Index may be nullptr if Scale is 0.
233
234/// Decompose a pointer into a linear expression. This may look through
235/// multiple GEPs.
236LLVM_ABI LinearExpression decomposeLinearExpression(const DataLayout &DL,
237 Value *Ptr);
238}
239
240#endif
This file implements a class to represent arbitrary precision integral constant values and operations...
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
#define LLVM_ABI
Definition Compiler.h:215
Class for arbitrary precision integers.
Definition APInt.h:78
A cache of @llvm.assume calls within a function.
LLVM Basic Block Representation.
Definition BasicBlock.h:62
InstListType::iterator iterator
Instruction iterators...
Definition BasicBlock.h:170
This class is a wrapper over an AAResults, and it is intended to be used only when there are no IR ch...
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
Definition Dominators.h:122
Represents flags for the getelementptr instruction/expression.
static GEPNoWrapFlags all()
An instruction for reading from memory.
Represents a single loop in the control flow graph.
Definition LoopInfo.h:40
Representation for a specific memory location.
This class represents an assumption made using SCEV expressions which can be checked at run-time.
This class represents an analyzed expression in the program.
The main scalar evolution driver.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
An instruction for storing to memory.
Provides information about what library functions are available for the current target.
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
A Use represents the edge between a Value definition and its users.
Definition Use.h:35
LLVM Value Representation.
Definition Value.h:75
Abstract Attribute helper functions.
Definition Attributor.h:165
This is an optimization pass for GlobalISel generic memory operations.
@ Load
The value being inserted comes from a load (InsertElement only).
LLVM_ABI bool isStorePreservingMemoryLocation(const StoreInst *SI, const MemoryLocation &MemLoc, Align MemLocAlign, BatchAAResults &AA, unsigned ScanLimit)
Check whether SI, which may alias MemLoc, can be safely skipped.
Definition Loads.cpp:816
LLVM_ABI Value * findAvailablePtrLoadStore(const MemoryLocation &Loc, Type *AccessTy, bool AtLeastAtomic, BasicBlock *ScanBB, BasicBlock::iterator &ScanFrom, unsigned MaxInstsToScan, BatchAAResults *AA, bool *IsLoadCSE, unsigned *NumScanedInst)
Scan backwards to see if we have the value of the given pointer available locally within a small numb...
Definition Loads.cpp:687
LLVM_ABI bool mustSuppressSpeculation(const LoadInst &LI)
Return true if speculation of the given load must be suppressed to avoid ordering or interfering with...
Definition Loads.cpp:452
LLVM_ABI Value * FindAvailableLoadedValue(LoadInst *Load, BasicBlock *ScanBB, BasicBlock::iterator &ScanFrom, unsigned MaxInstsToScan=DefMaxInstsToScan, BatchAAResults *AA=nullptr, bool *IsLoadCSE=nullptr, unsigned *NumScanedInst=nullptr)
Scan backwards to see if we have the value of the given load available locally within a small number ...
Definition Loads.cpp:552
LLVM_ABI bool canReplacePointersInUseIfEqual(const Use &U, const Value *To, const DataLayout &DL)
Definition Loads.cpp:897
LLVM_ABI bool canReplacePointersIfEqual(const Value *From, const Value *To, const DataLayout &DL)
Returns true if a pointer value From can be replaced with another pointer value \To if they are deeme...
Definition Loads.cpp:917
LLVM_ABI LinearExpression decomposeLinearExpression(const DataLayout &DL, Value *Ptr)
Decompose a pointer into a linear expression.
Definition Loads.cpp:945
LLVM_ABI cl::opt< unsigned > DefMaxInstsToScan
The default number of maximum instructions to scan in the block, used by FindAvailableLoadedValue().
LLVM_ABI bool isDereferenceableAndAlignedPointer(const Value *V, Type *Ty, Align Alignment, const SimplifyQuery &Q, bool IgnoreFree=false)
Returns true if V is always a dereferenceable pointer with alignment greater or equal than requested.
Definition Loads.cpp:244
constexpr unsigned BitWidth
LLVM_ABI bool isReadOnlyLoop(Loop *L, ScalarEvolution *SE, DominatorTree *DT, AssumptionCache *AC, SmallVectorImpl< LoadInst * > &NonDereferenceableAndAlignedLoads, SmallVectorImpl< const SCEVPredicate * > *Predicates=nullptr)
Returns true if the loop contains read-only memory accesses and doesn't throw.
Definition Loads.cpp:927
LLVM_ABI bool isSafeToLoadUnconditionally(Value *V, Align Alignment, const APInt &Size, const SimplifyQuery &SQ)
Return true if we know that executing a load from this value cannot trap.
Definition Loads.cpp:456
LLVM_ABI bool isDereferenceablePointer(const Value *V, Type *Ty, const SimplifyQuery &Q, bool IgnoreFree=false)
Equivalent to isDereferenceableAndAlignedPointer with an alignment of 1.
Definition Loads.cpp:264
LLVM_ABI bool isDereferenceableAndAlignedInLoop(LoadInst *LI, Loop *L, ScalarEvolution &SE, DominatorTree &DT, AssumptionCache *AC=nullptr, SmallVectorImpl< const SCEVPredicate * > *Predicates=nullptr)
Return true if we can prove that the given load (which is assumed to be within the specified loop) wo...
Definition Loads.cpp:304
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
LinearExpression(Value *BasePtr, unsigned BitWidth)
Definition Loads.h:230
GEPNoWrapFlags Flags
Definition Loads.h:228