LLVM 17.0.0git
DemandedBits.h
Go to the documentation of this file.
1//===- llvm/Analysis/DemandedBits.h - Determine demanded bits ---*- 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// This pass implements a demanded bits analysis. A demanded bit is one that
10// contributes to a result; bits that are not demanded can be either zero or
11// one without affecting control or data flow. For example in this sequence:
12//
13// %1 = add i32 %x, %y
14// %2 = trunc i32 %1 to i16
15//
16// Only the lowest 16 bits of %1 are demanded; the rest are removed by the
17// trunc.
18//
19//===----------------------------------------------------------------------===//
20
21#ifndef LLVM_ANALYSIS_DEMANDEDBITS_H
22#define LLVM_ANALYSIS_DEMANDEDBITS_H
23
24#include "llvm/ADT/APInt.h"
25#include "llvm/ADT/DenseMap.h"
27#include "llvm/IR/PassManager.h"
28#include "llvm/Pass.h"
29#include <optional>
30
31namespace llvm {
32
33class AssumptionCache;
34class DominatorTree;
35class Function;
36class Instruction;
37struct KnownBits;
38class raw_ostream;
39
41public:
43 F(F), AC(AC), DT(DT) {}
44
45 /// Return the bits demanded from instruction I.
46 ///
47 /// For vector instructions individual vector elements are not distinguished:
48 /// A bit is demanded if it is demanded for any of the vector elements. The
49 /// size of the return value corresponds to the type size in bits of the
50 /// scalar type.
51 ///
52 /// Instructions that do not have integer or vector of integer type are
53 /// accepted, but will always produce a mask with all bits set.
55
56 /// Return the bits demanded from use U.
58
59 /// Return true if, during analysis, I could not be reached.
61
62 /// Return whether this use is dead by means of not having any demanded bits.
63 bool isUseDead(Use *U);
64
65 void print(raw_ostream &OS);
66
67 /// Compute alive bits of one addition operand from alive output and known
68 /// operand bits
69 static APInt determineLiveOperandBitsAdd(unsigned OperandNo,
70 const APInt &AOut,
71 const KnownBits &LHS,
72 const KnownBits &RHS);
73
74 /// Compute alive bits of one subtraction operand from alive output and known
75 /// operand bits
76 static APInt determineLiveOperandBitsSub(unsigned OperandNo,
77 const APInt &AOut,
78 const KnownBits &LHS,
79 const KnownBits &RHS);
80
81private:
82 void performAnalysis();
83 void determineLiveOperandBits(const Instruction *UserI,
84 const Value *Val, unsigned OperandNo,
85 const APInt &AOut, APInt &AB,
86 KnownBits &Known, KnownBits &Known2, bool &KnownBitsComputed);
87
88 Function &F;
90 DominatorTree &DT;
91
92 bool Analyzed = false;
93
94 // The set of visited instructions (non-integer-typed only).
97 // Uses with no demanded bits. If the user also has no demanded bits, the use
98 // might not be stored explicitly in this map, to save memory during analysis.
100};
101
103private:
104 mutable std::optional<DemandedBits> DB;
105
106public:
107 static char ID; // Pass identification, replacement for typeid
108
110
111 bool runOnFunction(Function &F) override;
112 void getAnalysisUsage(AnalysisUsage &AU) const override;
113
114 /// Clean up memory in between runs
115 void releaseMemory() override;
116
117 DemandedBits &getDemandedBits() { return *DB; }
118
119 void print(raw_ostream &OS, const Module *M) const override;
120};
121
122/// An analysis that produces \c DemandedBits for a function.
123class DemandedBitsAnalysis : public AnalysisInfoMixin<DemandedBitsAnalysis> {
125
126 static AnalysisKey Key;
127
128public:
129 /// Provide the result type for this analysis pass.
131
132 /// Run the analysis pass over a function and produce demanded bits
133 /// information.
135};
136
137/// Printer pass for DemandedBits
138class DemandedBitsPrinterPass : public PassInfoMixin<DemandedBitsPrinterPass> {
139 raw_ostream &OS;
140
141public:
143
145};
146
147/// Create a demanded bits analysis pass.
148FunctionPass *createDemandedBitsWrapperPass();
149
150} // end namespace llvm
151
152#endif // LLVM_ANALYSIS_DEMANDEDBITS_H
This file implements a class to represent arbitrary precision integral constant values and operations...
This file defines the DenseMap class.
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
This header defines various interfaces for pass management in LLVM.
raw_pwrite_stream & OS
This file defines the SmallPtrSet class.
Value * RHS
Value * LHS
Class for arbitrary precision integers.
Definition: APInt.h:75
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:620
Represent the analysis usage information of a pass.
A cache of @llvm.assume calls within a function.
An analysis that produces DemandedBits for a function.
Definition: DemandedBits.h:123
DemandedBits run(Function &F, FunctionAnalysisManager &AM)
Run the analysis pass over a function and produce demanded bits information.
Printer pass for DemandedBits.
Definition: DemandedBits.h:138
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
DemandedBitsPrinterPass(raw_ostream &OS)
Definition: DemandedBits.h:142
void print(raw_ostream &OS, const Module *M) const override
print - Print out the internal state of the pass.
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
void releaseMemory() override
Clean up memory in between runs.
bool runOnFunction(Function &F) override
runOnFunction - Virtual method overriden by subclasses to do the per-function processing of the pass.
DemandedBits & getDemandedBits()
Definition: DemandedBits.h:117
void print(raw_ostream &OS)
APInt getDemandedBits(Instruction *I)
Return the bits demanded from instruction I.
static APInt determineLiveOperandBitsAdd(unsigned OperandNo, const APInt &AOut, const KnownBits &LHS, const KnownBits &RHS)
Compute alive bits of one addition operand from alive output and known operand bits.
DemandedBits(Function &F, AssumptionCache &AC, DominatorTree &DT)
Definition: DemandedBits.h:42
bool isInstructionDead(Instruction *I)
Return true if, during analysis, I could not be reached.
static APInt determineLiveOperandBitsSub(unsigned OperandNo, const APInt &AOut, const KnownBits &LHS, const KnownBits &RHS)
Compute alive bits of one subtraction operand from alive output and known operand bits.
bool isUseDead(Use *U)
Return whether this use is dead by means of not having any demanded bits.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
Definition: Dominators.h:166
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:308
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
A set of analyses that are preserved following a run of a transformation pass.
Definition: PassManager.h:152
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
Definition: SmallPtrSet.h:450
A Use represents the edge between a Value definition and its users.
Definition: Use.h:43
LLVM Value Representation.
Definition: Value.h:74
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
FunctionPass * createDemandedBitsWrapperPass()
Create a demanded bits analysis pass.
A CRTP mix-in that provides informational APIs needed for analysis passes.
Definition: PassManager.h:394
A special type used by analysis passes to provide an address that identifies that particular analysis...
Definition: PassManager.h:69
A CRTP mix-in to automatically provide informational APIs needed for passes.
Definition: PassManager.h:371