LLVM 17.0.0git
ConstantFolding.h
Go to the documentation of this file.
1//===-- ConstantFolding.h - Fold instructions into constants ----*- 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 file declares routines for folding instructions into constants when all
10// operands are constants, for example "sub i32 1, 0" -> "1".
11//
12// Also, to supplement the basic VMCore ConstantExpr simplifications,
13// this file declares some additional folding routines that can make use of
14// DataLayout information. These functions cannot go in VMCore due to library
15// dependency issues.
16//
17//===----------------------------------------------------------------------===//
18
19#ifndef LLVM_ANALYSIS_CONSTANTFOLDING_H
20#define LLVM_ANALYSIS_CONSTANTFOLDING_H
21
22#include <stdint.h>
23
24namespace llvm {
25class APInt;
26template <typename T> class ArrayRef;
27class CallBase;
28class Constant;
29class DSOLocalEquivalent;
30class DataLayout;
31class Function;
32class GlobalValue;
33class GlobalVariable;
34class Instruction;
35class TargetLibraryInfo;
36class Type;
37
38/// If this constant is a constant offset from a global, return the global and
39/// the constant. Because of constantexprs, this function is recursive.
40/// If the global is part of a dso_local_equivalent constant, return it through
41/// `Equiv` if it is provided.
42bool IsConstantOffsetFromGlobal(Constant *C, GlobalValue *&GV, APInt &Offset,
43 const DataLayout &DL,
44 DSOLocalEquivalent **DSOEquiv = nullptr);
45
46/// ConstantFoldInstruction - Try to constant fold the specified instruction.
47/// If successful, the constant result is returned, if not, null is returned.
48/// Note that this fails if not all of the operands are constant. Otherwise,
49/// this function can only fail when attempting to fold instructions like loads
50/// and stores, which have no constant expression form.
51Constant *ConstantFoldInstruction(Instruction *I, const DataLayout &DL,
52 const TargetLibraryInfo *TLI = nullptr);
53
54/// ConstantFoldConstant - Fold the constant using the specified DataLayout.
55/// This function always returns a non-null constant: Either the folding result,
56/// or the original constant if further folding is not possible.
57Constant *ConstantFoldConstant(const Constant *C, const DataLayout &DL,
58 const TargetLibraryInfo *TLI = nullptr);
59
60/// ConstantFoldInstOperands - Attempt to constant fold an instruction with the
61/// specified operands. If successful, the constant result is returned, if not,
62/// null is returned. Note that this function can fail when attempting to
63/// fold instructions like loads and stores, which have no constant expression
64/// form.
65///
66Constant *ConstantFoldInstOperands(Instruction *I, ArrayRef<Constant *> Ops,
67 const DataLayout &DL,
68 const TargetLibraryInfo *TLI = nullptr);
69
70/// Attempt to constant fold a compare instruction (icmp/fcmp) with the
71/// specified operands. If it fails, it returns a constant expression of the
72/// specified operands.
73/// Denormal inputs may be flushed based on the denormal handling mode.
75 unsigned Predicate, Constant *LHS, Constant *RHS, const DataLayout &DL,
76 const TargetLibraryInfo *TLI = nullptr, const Instruction *I = nullptr);
77
78/// Attempt to constant fold a unary operation with the specified
79/// operand. If it fails, it returns a constant expression of the specified
80/// operands.
81Constant *ConstantFoldUnaryOpOperand(unsigned Opcode, Constant *Op,
82 const DataLayout &DL);
83
84/// Attempt to constant fold a binary operation with the specified
85/// operands. If it fails, it returns a constant expression of the specified
86/// operands.
87Constant *ConstantFoldBinaryOpOperands(unsigned Opcode, Constant *LHS,
88 Constant *RHS, const DataLayout &DL);
89
90/// Attempt to constant fold a floating point binary operation with the
91/// specified operands, applying the denormal handling mod to the operands. If
92/// it fails, it returns a constant expression of the specified operands.
93Constant *ConstantFoldFPInstOperands(unsigned Opcode, Constant *LHS,
94 Constant *RHS, const DataLayout &DL,
95 const Instruction *I);
96
97/// Attempt to flush float point constant according to denormal mode set in the
98/// instruction's parent function attributes. If so, return a zero with the
99/// correct sign, otherwise return the original constant. Inputs and outputs to
100/// floating point instructions can have their mode set separately, so the
101/// direction is also needed.
102Constant *FlushFPConstant(Constant *Operand, const Instruction *I,
103 bool IsOutput);
104
105/// Attempt to constant fold a select instruction with the specified
106/// operands. The constant result is returned if successful; if not, null is
107/// returned.
108Constant *ConstantFoldSelectInstruction(Constant *Cond, Constant *V1,
109 Constant *V2);
110
111/// Attempt to constant fold a cast with the specified operand. If it
112/// fails, it returns a constant expression of the specified operand.
113Constant *ConstantFoldCastOperand(unsigned Opcode, Constant *C, Type *DestTy,
114 const DataLayout &DL);
115
116/// ConstantFoldInsertValueInstruction - Attempt to constant fold an insertvalue
117/// instruction with the specified operands and indices. The constant result is
118/// returned if successful; if not, null is returned.
119Constant *ConstantFoldInsertValueInstruction(Constant *Agg, Constant *Val,
120 ArrayRef<unsigned> Idxs);
121
122/// Attempt to constant fold an extractvalue instruction with the
123/// specified operands and indices. The constant result is returned if
124/// successful; if not, null is returned.
126 ArrayRef<unsigned> Idxs);
127
128/// Attempt to constant fold an insertelement instruction with the
129/// specified operands and indices. The constant result is returned if
130/// successful; if not, null is returned.
132 Constant *Elt,
133 Constant *Idx);
134
135/// Attempt to constant fold an extractelement instruction with the
136/// specified operands and indices. The constant result is returned if
137/// successful; if not, null is returned.
138Constant *ConstantFoldExtractElementInstruction(Constant *Val, Constant *Idx);
139
140/// Attempt to constant fold a shufflevector instruction with the
141/// specified operands and mask. See class ShuffleVectorInst for a description
142/// of the mask representation. The constant result is returned if successful;
143/// if not, null is returned.
144Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2,
145 ArrayRef<int> Mask);
146
147/// Extract value of C at the given Offset reinterpreted as Ty. If bits past
148/// the end of C are accessed, they are assumed to be poison.
149Constant *ConstantFoldLoadFromConst(Constant *C, Type *Ty, const APInt &Offset,
150 const DataLayout &DL);
151
152/// Extract value of C reinterpreted as Ty. Same as previous API with zero
153/// offset.
155 const DataLayout &DL);
156
157/// Return the value that a load from C with offset Offset would produce if it
158/// is constant and determinable. If this is not determinable, return null.
159Constant *ConstantFoldLoadFromConstPtr(Constant *C, Type *Ty, APInt Offset,
160 const DataLayout &DL);
161
162/// Return the value that a load from C would produce if it is constant and
163/// determinable. If this is not determinable, return null.
165 const DataLayout &DL);
166
167/// If C is a uniform value where all bits are the same (either all zero, all
168/// ones, all undef or all poison), return the corresponding uniform value in
169/// the new type. If the value is not uniform or the result cannot be
170/// represented, return null.
172
173/// canConstantFoldCallTo - Return true if its even possible to fold a call to
174/// the specified function.
175bool canConstantFoldCallTo(const CallBase *Call, const Function *F);
176
177/// ConstantFoldCall - Attempt to constant fold a call to the specified function
178/// with the specified arguments, returning null if unsuccessful.
179Constant *ConstantFoldCall(const CallBase *Call, Function *F,
180 ArrayRef<Constant *> Operands,
181 const TargetLibraryInfo *TLI = nullptr);
182
183/// ConstantFoldLoadThroughBitcast - try to cast constant to destination type
184/// returning null if unsuccessful. Can cast pointer to pointer or pointer to
185/// integer and vice versa if their sizes are equal.
187 const DataLayout &DL);
188
189/// Check whether the given call has no side-effects.
190/// Specifically checks for math routimes which sometimes set errno.
191bool isMathLibCallNoop(const CallBase *Call, const TargetLibraryInfo *TLI);
192
193Constant *ReadByteArrayFromGlobal(const GlobalVariable *GV, uint64_t Offset);
194}
195
196#endif
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
SmallVector< MachineOperand, 4 > Cond
RelocType Type
Definition: COFFYAML.cpp:390
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
mir Rename Register Operands
Value * RHS
Value * LHS
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Offset
Definition: DWP.cpp:406
Constant * ConstantFoldLoadThroughBitcast(Constant *C, Type *DestTy, const DataLayout &DL)
ConstantFoldLoadThroughBitcast - try to cast constant to destination type returning null if unsuccess...
Constant * ConstantFoldSelectInstruction(Constant *Cond, Constant *V1, Constant *V2)
Attempt to constant fold a select instruction with the specified operands.
bool canConstantFoldCallTo(const CallBase *Call, const Function *F)
canConstantFoldCallTo - Return true if its even possible to fold a call to the specified function.
Constant * ConstantFoldFPInstOperands(unsigned Opcode, Constant *LHS, Constant *RHS, const DataLayout &DL, const Instruction *I)
Attempt to constant fold a floating point binary operation with the specified operands,...
bool IsConstantOffsetFromGlobal(Constant *C, GlobalValue *&GV, APInt &Offset, const DataLayout &DL, DSOLocalEquivalent **DSOEquiv=nullptr)
If this constant is a constant offset from a global, return the global and the constant.
bool isMathLibCallNoop(const CallBase *Call, const TargetLibraryInfo *TLI)
Check whether the given call has no side-effects.
Constant * ReadByteArrayFromGlobal(const GlobalVariable *GV, uint64_t Offset)
Constant * ConstantFoldCompareInstOperands(unsigned Predicate, Constant *LHS, Constant *RHS, const DataLayout &DL, const TargetLibraryInfo *TLI=nullptr, const Instruction *I=nullptr)
Attempt to constant fold a compare instruction (icmp/fcmp) with the specified operands.
Constant * ConstantFoldExtractValueInstruction(Constant *Agg, ArrayRef< unsigned > Idxs)
Attempt to constant fold an extractvalue instruction with the specified operands and indices.
Constant * ConstantFoldCall(const CallBase *Call, Function *F, ArrayRef< Constant * > Operands, const TargetLibraryInfo *TLI=nullptr)
ConstantFoldCall - Attempt to constant fold a call to the specified function with the specified argum...
Constant * ConstantFoldConstant(const Constant *C, const DataLayout &DL, const TargetLibraryInfo *TLI=nullptr)
ConstantFoldConstant - Fold the constant using the specified DataLayout.
Constant * ConstantFoldUnaryOpOperand(unsigned Opcode, Constant *Op, const DataLayout &DL)
Attempt to constant fold a unary operation with the specified operand.
Constant * FlushFPConstant(Constant *Operand, const Instruction *I, bool IsOutput)
Attempt to flush float point constant according to denormal mode set in the instruction's parent func...
Constant * ConstantFoldInstOperands(Instruction *I, ArrayRef< Constant * > Ops, const DataLayout &DL, const TargetLibraryInfo *TLI=nullptr)
ConstantFoldInstOperands - Attempt to constant fold an instruction with the specified operands.
Constant * ConstantFoldInsertElementInstruction(Constant *Val, Constant *Elt, Constant *Idx)
Attempt to constant fold an insertelement instruction with the specified operands and indices.
Constant * ConstantFoldCastOperand(unsigned Opcode, Constant *C, Type *DestTy, const DataLayout &DL)
Attempt to constant fold a cast with the specified operand.
Constant * ConstantFoldLoadFromConst(Constant *C, Type *Ty, const APInt &Offset, const DataLayout &DL)
Extract value of C at the given Offset reinterpreted as Ty.
Constant * ConstantFoldBinaryOpOperands(unsigned Opcode, Constant *LHS, Constant *RHS, const DataLayout &DL)
Attempt to constant fold a binary operation with the specified operands.
Constant * ConstantFoldLoadFromUniformValue(Constant *C, Type *Ty)
If C is a uniform value where all bits are the same (either all zero, all ones, all undef or all pois...
Constant * ConstantFoldExtractElementInstruction(Constant *Val, Constant *Idx)
Attempt to constant fold an extractelement instruction with the specified operands and indices.
Constant * ConstantFoldInstruction(Instruction *I, const DataLayout &DL, const TargetLibraryInfo *TLI=nullptr)
ConstantFoldInstruction - Try to constant fold the specified instruction.
ArrayRef(const T &OneElt) -> ArrayRef< T >
Constant * ConstantFoldInsertValueInstruction(Constant *Agg, Constant *Val, ArrayRef< unsigned > Idxs)
ConstantFoldInsertValueInstruction - Attempt to constant fold an insertvalue instruction with the spe...
Constant * ConstantFoldLoadFromConstPtr(Constant *C, Type *Ty, APInt Offset, const DataLayout &DL)
Return the value that a load from C with offset Offset would produce if it is constant and determinab...
Constant * ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2, ArrayRef< int > Mask)
Attempt to constant fold a shufflevector instruction with the specified operands and mask.