LLVM 23.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;
36template <typename T> class SmallVectorImpl;
38
39/// Return true if this is always a dereferenceable pointer. If the context
40/// instruction is specified perform context-sensitive analysis and return true
41/// if the pointer is dereferenceable at the specified instruction.
42/// If \p IgnoreFree is set, ignore potential frees of the object.
44 const SimplifyQuery &Q,
45 bool IgnoreFree = false);
46
47/// Returns true if V is always a dereferenceable pointer with alignment
48/// greater or equal than requested. If the context instruction is specified
49/// performs context-sensitive analysis and returns true if the pointer is
50/// dereferenceable at the specified instruction.
51/// If \p IgnoreFree is set, ignore potential frees of the object.
53 Align Alignment,
54 const SimplifyQuery &Q,
55 bool IgnoreFree = false);
56
57/// Returns true if V is always dereferenceable for Size byte with alignment
58/// greater or equal than requested. If the context instruction is specified
59/// performs context-sensitive analysis and returns true if the pointer is
60/// dereferenceable at the specified instruction.
61/// If \p IgnoreFree is set, ignore potential frees of the object.
63 Align Alignment,
64 const APInt &Size,
65 const SimplifyQuery &Q,
66 bool IgnoreFree = false);
67
68/// Return true if we know that executing a load from this value cannot trap.
69///
70/// If ScanFrom is specified this method performs context-sensitive analysis
71/// and returns true if it is safe to load immediately before ScanFrom.
72///
73/// If it is not obviously safe to load from the specified pointer, we do a
74/// quick local scan of the basic block containing ScanFrom, to determine if
75/// the address is already accessed.
77 Value *V, Align Alignment, const APInt &Size, const DataLayout &DL,
78 Instruction *ScanFrom, AssumptionCache *AC = nullptr,
79 const DominatorTree *DT = nullptr, const TargetLibraryInfo *TLI = nullptr);
80
81/// Return true if we can prove that the given load (which is assumed to be
82/// within the specified loop) would access only dereferenceable memory, and
83/// be properly aligned on every iteration of the specified loop regardless of
84/// its placement within the loop. (i.e. does not require predication beyond
85/// that required by the header itself and could be hoisted into the header
86/// if desired.) This is more powerful than the variants above when the
87/// address loaded from is analyzeable by SCEV.
90 AssumptionCache *AC = nullptr,
91 SmallVectorImpl<const SCEVPredicate *> *Predicates = nullptr);
92
93/// Overload for isDereferenceableAndAlignedInLoop taking the pointer and access
94/// size directly as SCEVs.
96 const SCEV *PtrSCEV, Align Alignment, const SCEV *EltSizeSCEV, Loop *L,
97 ScalarEvolution &SE, DominatorTree &DT, AssumptionCache *AC = nullptr,
98 SmallVectorImpl<const SCEVPredicate *> *Predicates = nullptr);
99
100/// Returns true if the loop contains read-only memory accesses and doesn't
101/// throw. Puts loads that may fault into \p NonDereferenceableAndAlignedLoads.
102LLVM_ABI bool
104 AssumptionCache *AC,
105 SmallVectorImpl<LoadInst *> &NonDereferenceableAndAlignedLoads,
106 SmallVectorImpl<const SCEVPredicate *> *Predicates = nullptr);
107
108/// Return true if we know that executing a load from this value cannot trap.
109///
110/// If DT and ScanFrom are specified this method performs context-sensitive
111/// analysis and returns true if it is safe to load immediately before ScanFrom.
112///
113/// If it is not obviously safe to load from the specified pointer, we do a
114/// quick local scan of the basic block containing ScanFrom, to determine if
115/// the address is already accessed.
117 Value *V, Type *Ty, Align Alignment, const DataLayout &DL,
118 Instruction *ScanFrom, AssumptionCache *AC = nullptr,
119 const DominatorTree *DT = nullptr, const TargetLibraryInfo *TLI = nullptr);
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.
166FindAvailableLoadedValue(LoadInst *Load, BatchAAResults &AA, bool *IsLoadCSE,
167 unsigned MaxInstsToScan = DefMaxInstsToScan);
168
169/// Scan backwards to see if we have the value of the given pointer available
170/// locally within a small number of instructions.
171///
172/// You can use this function to scan across multiple blocks: after you call
173/// this function, if ScanFrom points at the beginning of the block, it's safe
174/// to continue scanning the predecessors.
175///
176/// \param Loc The location we want the load and store to originate from.
177/// \param AccessTy The access type of the pointer.
178/// \param AtLeastAtomic Are we looking for at-least an atomic load/store ? In
179/// case it is false, we can return an atomic or non-atomic load or store. In
180/// case it is true, we need to return an atomic load or store.
181/// \param ScanBB The basic block to scan.
182/// \param [in,out] ScanFrom The location to start scanning from. When this
183/// function returns, it points at the last instruction scanned.
184/// \param MaxInstsToScan The maximum number of instructions to scan. If this
185/// is zero, the whole block will be scanned.
186/// \param AA Optional pointer to alias analysis, to make the scan more
187/// precise.
188/// \param [out] IsLoadCSE Whether the returned value is a load from the same
189/// location in memory, as opposed to the value operand of a store.
190///
191/// \returns The found value, or nullptr if no value is found.
193 const MemoryLocation &Loc, Type *AccessTy, bool AtLeastAtomic,
194 BasicBlock *ScanBB, BasicBlock::iterator &ScanFrom, unsigned MaxInstsToScan,
195 BatchAAResults *AA, bool *IsLoadCSE, unsigned *NumScanedInst);
196
197/// Returns true if a pointer value \p From can be replaced with another pointer
198/// value \To if they are deemed equal through some means (e.g. information from
199/// conditions).
200/// NOTE: The current implementation allows replacement in Icmp and PtrToInt
201/// instructions, as well as when we are replacing with a null pointer.
202/// Additionally it also allows replacement of pointers when both pointers have
203/// the same underlying object.
204LLVM_ABI bool canReplacePointersIfEqual(const Value *From, const Value *To,
205 const DataLayout &DL);
206LLVM_ABI bool canReplacePointersInUseIfEqual(const Use &U, const Value *To,
207 const DataLayout &DL);
208
209/// Linear expression BasePtr + Index * Scale + Offset.
210/// Index, Scale and Offset all have the same bit width, which matches the
211/// pointer index size of BasePtr.
212/// Index may be nullptr if Scale is 0.
223
224/// Decompose a pointer into a linear expression. This may look through
225/// multiple GEPs.
226LLVM_ABI LinearExpression decomposeLinearExpression(const DataLayout &DL,
227 Value *Ptr);
228}
229
230#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:213
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:151
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...
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.
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:685
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:441
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:550
LLVM_ABI bool canReplacePointersInUseIfEqual(const Use &U, const Value *To, const DataLayout &DL)
Definition Loads.cpp:858
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:878
LLVM_ABI LinearExpression decomposeLinearExpression(const DataLayout &DL, Value *Ptr)
Decompose a pointer into a linear expression.
Definition Loads.cpp:906
LLVM_ABI bool isSafeToLoadUnconditionally(Value *V, Align Alignment, const APInt &Size, const DataLayout &DL, Instruction *ScanFrom, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr, const TargetLibraryInfo *TLI=nullptr)
Return true if we know that executing a load from this value cannot trap.
Definition Loads.cpp:445
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:245
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:888
LLVM_ABI bool isDereferenceablePointer(const Value *V, Type *Ty, const SimplifyQuery &Q, bool IgnoreFree=false)
Return true if this is always a dereferenceable pointer.
Definition Loads.cpp:265
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:300
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:220
GEPNoWrapFlags Flags
Definition Loads.h:218