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;
36template <typename T> class SmallVectorImpl;
38
39/// Returns true if V is always a dereferenceable pointer with alignment
40/// greater or equal than requested. If the context instruction is specified
41/// performs context-sensitive analysis and returns true if the pointer is
42/// dereferenceable at the specified instruction.
43/// If \p IgnoreFree is set, ignore potential frees of the object.
45 Align Alignment,
46 const SimplifyQuery &Q,
47 bool IgnoreFree = false);
48
49/// Returns true if V is always dereferenceable for Size byte with alignment
50/// greater or equal than requested. If the context instruction is specified
51/// performs context-sensitive analysis and returns true if the pointer is
52/// dereferenceable at the specified instruction.
53/// If \p IgnoreFree is set, ignore potential frees of the object.
55 Align Alignment,
56 const APInt &Size,
57 const SimplifyQuery &Q,
58 bool IgnoreFree = false);
59
60/// Equivalent to isDereferenceableAndAlignedPointer with an alignment of 1.
62 const SimplifyQuery &Q,
63 bool IgnoreFree = false);
64
65/// Equivalent to isDereferenceableAndAlignedPointer with an alignment of 1.
67 const SimplifyQuery &Q,
68 bool IgnoreFree = false);
69
70/// Return true if we know that executing a load from this value cannot trap.
71///
72/// If SQ.CxtI is specified this method performs context-sensitive analysis
73/// and returns true if it is safe to load immediately before SQ.CxtI.
74///
75/// If it is not obviously safe to load from the specified pointer, we do a
76/// quick local scan of the basic block containing SQ.CxtI, to determine if
77/// the address is already accessed.
79 const APInt &Size,
80 const SimplifyQuery &SQ);
81
82/// Return true if we can prove that the given load (which is assumed to be
83/// within the specified loop) would access only dereferenceable memory, and
84/// be properly aligned on every iteration of the specified loop regardless of
85/// its placement within the loop. (i.e. does not require predication beyond
86/// that required by the header itself and could be hoisted into the header
87/// if desired.) This is more powerful than the variants above when the
88/// address loaded from is analyzeable by SCEV.
91 AssumptionCache *AC = nullptr,
92 SmallVectorImpl<const SCEVPredicate *> *Predicates = nullptr);
93
94/// Overload for isDereferenceableAndAlignedInLoop taking the pointer and access
95/// size directly as SCEVs.
97 const SCEV *PtrSCEV, Align Alignment, const SCEV *EltSizeSCEV, Loop *L,
98 ScalarEvolution &SE, DominatorTree &DT, AssumptionCache *AC = nullptr,
99 SmallVectorImpl<const SCEVPredicate *> *Predicates = nullptr);
100
101/// Returns true if the loop contains read-only memory accesses and doesn't
102/// throw. Puts loads that may fault into \p NonDereferenceableAndAlignedLoads.
103LLVM_ABI bool
105 AssumptionCache *AC,
106 SmallVectorImpl<LoadInst *> &NonDereferenceableAndAlignedLoads,
107 SmallVectorImpl<const SCEVPredicate *> *Predicates = nullptr);
108
109/// Return true if we know that executing a load from this value cannot trap.
110///
111/// If SQ.CxtI is specified this method performs context-sensitive analysis
112/// and returns true if it is safe to load immediately before SQ.CxtI.
113///
114/// If it is not obviously safe to load from the specified pointer, we do a
115/// quick local scan of the basic block containing SQ.CxtI, to determine if
116/// the address is already accessed.
117LLVM_ABI bool isSafeToLoadUnconditionally(Value *V, Type *Ty, Align Alignment,
118 const SimplifyQuery &SQ);
119
120/// Return true if speculation of the given load must be suppressed to avoid
121/// ordering or interfering with an active sanitizer. If not suppressed,
122/// dereferenceability and alignment must be proven separately. Note: This
123/// is only needed for raw reasoning; if you use the interface below
124/// (isSafeToSpeculativelyExecute), this is handled internally.
126
127/// The default number of maximum instructions to scan in the block, used by
128/// FindAvailableLoadedValue().
130
131/// Scan backwards to see if we have the value of the given load available
132/// locally within a small number of instructions.
133///
134/// You can use this function to scan across multiple blocks: after you call
135/// this function, if ScanFrom points at the beginning of the block, it's safe
136/// to continue scanning the predecessors.
137///
138/// Note that performing load CSE requires special care to make sure the
139/// metadata is set appropriately. In particular, aliasing metadata needs
140/// to be merged. (This doesn't matter for store-to-load forwarding because
141/// the only relevant load gets deleted.)
142///
143/// \param Load The load we want to replace.
144/// \param ScanBB The basic block to scan.
145/// \param [in,out] ScanFrom The location to start scanning from. When this
146/// function returns, it points at the last instruction scanned.
147/// \param MaxInstsToScan The maximum number of instructions to scan. If this
148/// is zero, the whole block will be scanned.
149/// \param AA Optional pointer to alias analysis, to make the scan more
150/// precise.
151/// \param [out] IsLoadCSE Whether the returned value is a load from the same
152/// location in memory, as opposed to the value operand of a store.
153///
154/// \returns The found value, or nullptr if no value is found.
156 LoadInst *Load, BasicBlock *ScanBB, BasicBlock::iterator &ScanFrom,
157 unsigned MaxInstsToScan = DefMaxInstsToScan, BatchAAResults *AA = nullptr,
158 bool *IsLoadCSE = nullptr, unsigned *NumScanedInst = nullptr);
159
160/// This overload provides a more efficient implementation of
161/// FindAvailableLoadedValue() for the case where we are not interested in
162/// finding the closest clobbering instruction if no available load is found.
163/// This overload cannot be used to scan across multiple blocks.
166 unsigned MaxInstsToScan = DefMaxInstsToScan);
167
168/// Scan backwards to see if we have the value of the given pointer available
169/// locally within a small number of instructions.
170///
171/// You can use this function to scan across multiple blocks: after you call
172/// this function, if ScanFrom points at the beginning of the block, it's safe
173/// to continue scanning the predecessors.
174///
175/// \param Loc The location we want the load and store to originate from.
176/// \param AccessTy The access type of the pointer.
177/// \param AtLeastAtomic Are we looking for at-least an atomic load/store ? In
178/// case it is false, we can return an atomic or non-atomic load or store. In
179/// case it is true, we need to return an atomic load or store.
180/// \param ScanBB The basic block to scan.
181/// \param [in,out] ScanFrom The location to start scanning from. When this
182/// function returns, it points at the last instruction scanned.
183/// \param MaxInstsToScan The maximum number of instructions to scan. If this
184/// is zero, the whole block will be scanned.
185/// \param AA Optional pointer to alias analysis, to make the scan more
186/// precise.
187/// \param [out] IsLoadCSE Whether the returned value is a load from the same
188/// location in memory, as opposed to the value operand of a store.
189///
190/// \returns The found value, or nullptr if no value is found.
192 const MemoryLocation &Loc, Type *AccessTy, bool AtLeastAtomic,
193 BasicBlock *ScanBB, BasicBlock::iterator &ScanFrom, unsigned MaxInstsToScan,
194 BatchAAResults *AA, bool *IsLoadCSE, unsigned *NumScanedInst);
195
196/// Returns true if a pointer value \p From can be replaced with another pointer
197/// value \To if they are deemed equal through some means (e.g. information from
198/// conditions).
199/// NOTE: The current implementation allows replacement in Icmp and PtrToInt
200/// instructions, as well as when we are replacing with a null pointer.
201/// Additionally it also allows replacement of pointers when both pointers have
202/// the same underlying object.
203LLVM_ABI bool canReplacePointersIfEqual(const Value *From, const Value *To,
204 const DataLayout &DL);
205LLVM_ABI bool canReplacePointersInUseIfEqual(const Use &U, const Value *To,
206 const DataLayout &DL);
207
208/// Linear expression BasePtr + Index * Scale + Offset.
209/// Index, Scale and Offset all have the same bit width, which matches the
210/// pointer index size of BasePtr.
211/// Index may be nullptr if Scale is 0.
222
223/// Decompose a pointer into a linear expression. This may look through
224/// multiple GEPs.
225LLVM_ABI LinearExpression decomposeLinearExpression(const DataLayout &DL,
226 Value *Ptr);
227}
228
229#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...
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 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:867
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:887
LLVM_ABI LinearExpression decomposeLinearExpression(const DataLayout &DL, Value *Ptr)
Decompose a pointer into a linear expression.
Definition Loads.cpp:915
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:897
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:219
GEPNoWrapFlags Flags
Definition Loads.h:217