1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
|
#pragma once
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-parameter"
#endif
//====- TargetFolder.h - Constant folding helper ---------------*- C++ -*-====//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This file defines the TargetFolder class, a helper for IRBuilder.
// It provides IRBuilder with a set of methods for creating constants with
// target dependent folding, in addition to the same target-independent
// folding that the ConstantFolder class provides. For general constant
// creation and folding, use ConstantExpr and the routines in
// llvm/Analysis/ConstantFolding.h.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_ANALYSIS_TARGETFOLDER_H
#define LLVM_ANALYSIS_TARGETFOLDER_H
#include "llvm/ADT/ArrayRef.h"
#include "llvm/Analysis/ConstantFolding.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/IRBuilderFolder.h"
#include "llvm/IR/Operator.h"
namespace llvm {
class Constant;
class DataLayout;
class Type;
/// TargetFolder - Create constants with target dependent folding.
class TargetFolder final : public IRBuilderFolder {
const DataLayout &DL;
/// Fold - Fold the constant using target specific information.
Constant *Fold(Constant *C) const {
return ConstantFoldConstant(C, DL);
}
virtual void anchor();
public:
explicit TargetFolder(const DataLayout &DL) : DL(DL) {}
//===--------------------------------------------------------------------===//
// Value-based folders.
//
// Return an existing value or a constant if the operation can be simplified.
// Otherwise return nullptr.
//===--------------------------------------------------------------------===//
Value *FoldBinOp(Instruction::BinaryOps Opc, Value *LHS,
Value *RHS) const override {
auto *LC = dyn_cast<Constant>(LHS);
auto *RC = dyn_cast<Constant>(RHS);
if (LC && RC) {
if (ConstantExpr::isDesirableBinOp(Opc))
return Fold(ConstantExpr::get(Opc, LC, RC));
return ConstantFoldBinaryOpOperands(Opc, LC, RC, DL);
}
return nullptr;
}
Value *FoldExactBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS,
bool IsExact) const override {
auto *LC = dyn_cast<Constant>(LHS);
auto *RC = dyn_cast<Constant>(RHS);
if (LC && RC) {
if (ConstantExpr::isDesirableBinOp(Opc))
return Fold(ConstantExpr::get(
Opc, LC, RC, IsExact ? PossiblyExactOperator::IsExact : 0));
return ConstantFoldBinaryOpOperands(Opc, LC, RC, DL);
}
return nullptr;
}
Value *FoldNoWrapBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS,
bool HasNUW, bool HasNSW) const override {
auto *LC = dyn_cast<Constant>(LHS);
auto *RC = dyn_cast<Constant>(RHS);
if (LC && RC) {
if (ConstantExpr::isDesirableBinOp(Opc)) {
unsigned Flags = 0;
if (HasNUW)
Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
if (HasNSW)
Flags |= OverflowingBinaryOperator::NoSignedWrap;
return Fold(ConstantExpr::get(Opc, LC, RC, Flags));
}
return ConstantFoldBinaryOpOperands(Opc, LC, RC, DL);
}
return nullptr;
}
Value *FoldBinOpFMF(Instruction::BinaryOps Opc, Value *LHS, Value *RHS,
FastMathFlags FMF) const override {
return FoldBinOp(Opc, LHS, RHS);
}
Value *FoldICmp(CmpInst::Predicate P, Value *LHS, Value *RHS) const override {
auto *LC = dyn_cast<Constant>(LHS);
auto *RC = dyn_cast<Constant>(RHS);
if (LC && RC)
return Fold(ConstantExpr::getCompare(P, LC, RC));
return nullptr;
}
Value *FoldUnOpFMF(Instruction::UnaryOps Opc, Value *V,
FastMathFlags FMF) const override {
if (Constant *C = dyn_cast<Constant>(V))
return ConstantFoldUnaryOpOperand(Opc, C, DL);
return nullptr;
}
Value *FoldGEP(Type *Ty, Value *Ptr, ArrayRef<Value *> IdxList,
bool IsInBounds = false) const override {
if (!ConstantExpr::isSupportedGetElementPtr(Ty))
return nullptr;
if (auto *PC = dyn_cast<Constant>(Ptr)) {
// Every index must be constant.
if (any_of(IdxList, [](Value *V) { return !isa<Constant>(V); }))
return nullptr;
if (IsInBounds)
return Fold(ConstantExpr::getInBoundsGetElementPtr(Ty, PC, IdxList));
else
return Fold(ConstantExpr::getGetElementPtr(Ty, PC, IdxList));
}
return nullptr;
}
Value *FoldSelect(Value *C, Value *True, Value *False) const override {
auto *CC = dyn_cast<Constant>(C);
auto *TC = dyn_cast<Constant>(True);
auto *FC = dyn_cast<Constant>(False);
if (CC && TC && FC)
return ConstantFoldSelectInstruction(CC, TC, FC);
return nullptr;
}
Value *FoldExtractValue(Value *Agg,
ArrayRef<unsigned> IdxList) const override {
if (auto *CAgg = dyn_cast<Constant>(Agg))
return ConstantFoldExtractValueInstruction(CAgg, IdxList);
return nullptr;
};
Value *FoldInsertValue(Value *Agg, Value *Val,
ArrayRef<unsigned> IdxList) const override {
auto *CAgg = dyn_cast<Constant>(Agg);
auto *CVal = dyn_cast<Constant>(Val);
if (CAgg && CVal)
return ConstantFoldInsertValueInstruction(CAgg, CVal, IdxList);
return nullptr;
}
Value *FoldExtractElement(Value *Vec, Value *Idx) const override {
auto *CVec = dyn_cast<Constant>(Vec);
auto *CIdx = dyn_cast<Constant>(Idx);
if (CVec && CIdx)
return Fold(ConstantExpr::getExtractElement(CVec, CIdx));
return nullptr;
}
Value *FoldInsertElement(Value *Vec, Value *NewElt,
Value *Idx) const override {
auto *CVec = dyn_cast<Constant>(Vec);
auto *CNewElt = dyn_cast<Constant>(NewElt);
auto *CIdx = dyn_cast<Constant>(Idx);
if (CVec && CNewElt && CIdx)
return Fold(ConstantExpr::getInsertElement(CVec, CNewElt, CIdx));
return nullptr;
}
Value *FoldShuffleVector(Value *V1, Value *V2,
ArrayRef<int> Mask) const override {
auto *C1 = dyn_cast<Constant>(V1);
auto *C2 = dyn_cast<Constant>(V2);
if (C1 && C2)
return Fold(ConstantExpr::getShuffleVector(C1, C2, Mask));
return nullptr;
}
Value *FoldCast(Instruction::CastOps Op, Value *V,
Type *DestTy) const override {
if (auto *C = dyn_cast<Constant>(V))
return ConstantFoldCastOperand(Op, C, DestTy, DL);
return nullptr;
}
//===--------------------------------------------------------------------===//
// Cast/Conversion Operators
//===--------------------------------------------------------------------===//
Constant *CreatePointerCast(Constant *C, Type *DestTy) const override {
if (C->getType() == DestTy)
return C; // avoid calling Fold
return Fold(ConstantExpr::getPointerCast(C, DestTy));
}
Constant *CreatePointerBitCastOrAddrSpaceCast(Constant *C,
Type *DestTy) const override {
if (C->getType() == DestTy)
return C; // avoid calling Fold
return Fold(ConstantExpr::getPointerBitCastOrAddrSpaceCast(C, DestTy));
}
//===--------------------------------------------------------------------===//
// Compare Instructions
//===--------------------------------------------------------------------===//
Constant *CreateFCmp(CmpInst::Predicate P, Constant *LHS,
Constant *RHS) const override {
return Fold(ConstantExpr::getCompare(P, LHS, RHS));
}
};
}
#endif
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif
|