blob: 017d897def779dd4cdc0a1a98fccb8ba482f74e9 [file] [log] [blame]
Dan Gohman91d598d2009-09-10 23:07:18 +00001//===-- ConstantFolding.cpp - Fold instructions into constants ------------===//
John Criswell970af112005-10-27 16:00:10 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
John Criswell970af112005-10-27 16:00:10 +00007//
8//===----------------------------------------------------------------------===//
9//
Dan Gohman91d598d2009-09-10 23:07:18 +000010// This file defines routines for folding instructions into constants.
11//
Chandler Carruthef860a22013-01-02 09:10:48 +000012// Also, to supplement the basic IR ConstantExpr simplifications,
Dan Gohman91d598d2009-09-10 23:07:18 +000013// this file defines some additional folding routines that can make use of
Chandler Carruthef860a22013-01-02 09:10:48 +000014// DataLayout information. These functions cannot go in IR due to library
Dan Gohman91d598d2009-09-10 23:07:18 +000015// dependency issues.
John Criswell970af112005-10-27 16:00:10 +000016//
17//===----------------------------------------------------------------------===//
18
19#include "llvm/Analysis/ConstantFolding.h"
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +000020#include "llvm/ADT/SmallPtrSet.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/ADT/SmallVector.h"
22#include "llvm/ADT/StringMap.h"
Chandler Carruth62d42152015-01-15 02:16:27 +000023#include "llvm/Analysis/TargetLibraryInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000024#include "llvm/Analysis/ValueTracking.h"
Alp Tokerc817d6a2014-06-09 18:28:53 +000025#include "llvm/Config/config.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000026#include "llvm/IR/Constants.h"
27#include "llvm/IR/DataLayout.h"
28#include "llvm/IR/DerivedTypes.h"
29#include "llvm/IR/Function.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000030#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000031#include "llvm/IR/GlobalVariable.h"
32#include "llvm/IR/Instructions.h"
33#include "llvm/IR/Intrinsics.h"
34#include "llvm/IR/Operator.h"
Torok Edwin56d06592009-07-11 20:10:48 +000035#include "llvm/Support/ErrorHandling.h"
John Criswell970af112005-10-27 16:00:10 +000036#include "llvm/Support/MathExtras.h"
Eugene Zelenko35623fb2016-03-28 17:40:08 +000037#include <cassert>
John Criswell970af112005-10-27 16:00:10 +000038#include <cerrno>
Eugene Zelenko35623fb2016-03-28 17:40:08 +000039#include <cfenv>
Jeff Cohencc08c832006-12-02 02:22:01 +000040#include <cmath>
Eugene Zelenko35623fb2016-03-28 17:40:08 +000041#include <limits>
Alp Tokerc817d6a2014-06-09 18:28:53 +000042
John Criswell970af112005-10-27 16:00:10 +000043using namespace llvm;
44
Eugene Zelenko35623fb2016-03-28 17:40:08 +000045namespace {
46
Chris Lattner44d68b92007-01-31 00:51:48 +000047//===----------------------------------------------------------------------===//
48// Constant Folding internal helper functions
49//===----------------------------------------------------------------------===//
50
Sanjay Patel0d7dee62014-10-02 15:13:22 +000051/// Constant fold bitcast, symbolically evaluating it with DataLayout.
52/// This always returns a non-null constant, but it may be a
Chris Lattner9d051242009-10-25 06:08:26 +000053/// ConstantExpr if unfoldable.
Eugene Zelenko35623fb2016-03-28 17:40:08 +000054Constant *FoldBitCast(Constant *C, Type *DestTy, const DataLayout &DL) {
Nadav Rotem365af6f2011-08-24 20:18:38 +000055 // Catch the obvious splat cases.
56 if (C->isNullValue() && !DestTy->isX86_MMXTy())
57 return Constant::getNullValue(DestTy);
Bruno Cardoso Lopesc29520c2014-10-22 12:18:48 +000058 if (C->isAllOnesValue() && !DestTy->isX86_MMXTy() &&
59 !DestTy->isPtrOrPtrVectorTy()) // Don't get ones for ptr types!
Nadav Rotem365af6f2011-08-24 20:18:38 +000060 return Constant::getAllOnesValue(DestTy);
61
Rafael Espindolabb893fe2012-01-27 23:33:07 +000062 // Handle a vector->integer cast.
63 if (IntegerType *IT = dyn_cast<IntegerType>(DestTy)) {
Michael Ilsemana7b93c12013-02-26 22:51:07 +000064 VectorType *VTy = dyn_cast<VectorType>(C->getType());
Craig Topper9f008862014-04-15 04:59:12 +000065 if (!VTy)
Rafael Espindolabb893fe2012-01-27 23:33:07 +000066 return ConstantExpr::getBitCast(C, DestTy);
67
Michael Ilsemana7b93c12013-02-26 22:51:07 +000068 unsigned NumSrcElts = VTy->getNumElements();
69 Type *SrcEltTy = VTy->getElementType();
NAKAMURA Takumidce89992012-11-05 00:11:11 +000070
Rafael Espindolabb893fe2012-01-27 23:33:07 +000071 // If the vector is a vector of floating point, convert it to vector of int
72 // to simplify things.
Chris Lattner8213c8a2012-02-06 21:56:39 +000073 if (SrcEltTy->isFloatingPointTy()) {
74 unsigned FPWidth = SrcEltTy->getPrimitiveSizeInBits();
Rafael Espindolabb893fe2012-01-27 23:33:07 +000075 Type *SrcIVTy =
76 VectorType::get(IntegerType::get(C->getContext(), FPWidth), NumSrcElts);
Chandler Carruthef860a22013-01-02 09:10:48 +000077 // Ask IR to do the conversion now that #elts line up.
Rafael Espindolabb893fe2012-01-27 23:33:07 +000078 C = ConstantExpr::getBitCast(C, SrcIVTy);
79 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +000080
Michael Ilsemana7b93c12013-02-26 22:51:07 +000081 ConstantDataVector *CDV = dyn_cast<ConstantDataVector>(C);
Craig Topper9f008862014-04-15 04:59:12 +000082 if (!CDV)
Michael Ilsemana7b93c12013-02-26 22:51:07 +000083 return ConstantExpr::getBitCast(C, DestTy);
84
Rafael Espindolabb893fe2012-01-27 23:33:07 +000085 // Now that we know that the input value is a vector of integers, just shift
86 // and insert them into our result.
Mehdi Aminia28d91d2015-03-10 02:37:25 +000087 unsigned BitShift = DL.getTypeAllocSizeInBits(SrcEltTy);
Rafael Espindolabb893fe2012-01-27 23:33:07 +000088 APInt Result(IT->getBitWidth(), 0);
89 for (unsigned i = 0; i != NumSrcElts; ++i) {
Chris Lattner8213c8a2012-02-06 21:56:39 +000090 Result <<= BitShift;
Mehdi Aminia28d91d2015-03-10 02:37:25 +000091 if (DL.isLittleEndian())
Chris Lattner8213c8a2012-02-06 21:56:39 +000092 Result |= CDV->getElementAsInteger(NumSrcElts-i-1);
93 else
94 Result |= CDV->getElementAsInteger(i);
Rafael Espindolabb893fe2012-01-27 23:33:07 +000095 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +000096
Rafael Espindolabb893fe2012-01-27 23:33:07 +000097 return ConstantInt::get(IT, Result);
98 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +000099
Nadav Rotemad4a70a2011-08-20 14:02:29 +0000100 // The code below only handles casts to vectors currently.
Chris Lattner229907c2011-07-18 04:54:35 +0000101 VectorType *DestVTy = dyn_cast<VectorType>(DestTy);
Craig Topper9f008862014-04-15 04:59:12 +0000102 if (!DestVTy)
Chris Lattnerd8e8fb42009-10-25 06:15:37 +0000103 return ConstantExpr::getBitCast(C, DestTy);
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000104
Chris Lattnerd8e8fb42009-10-25 06:15:37 +0000105 // If this is a scalar -> vector cast, convert the input into a <1 x scalar>
106 // vector so the code below can handle it uniformly.
107 if (isa<ConstantFP>(C) || isa<ConstantInt>(C)) {
108 Constant *Ops = C; // don't take the address of C!
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000109 return FoldBitCast(ConstantVector::get(Ops), DestTy, DL);
Chris Lattnerd8e8fb42009-10-25 06:15:37 +0000110 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000111
Chris Lattner9d051242009-10-25 06:08:26 +0000112 // If this is a bitcast from constant vector -> vector, fold it.
Chris Lattner61a1d6c2012-01-26 21:37:55 +0000113 if (!isa<ConstantDataVector>(C) && !isa<ConstantVector>(C))
Chris Lattner9d051242009-10-25 06:08:26 +0000114 return ConstantExpr::getBitCast(C, DestTy);
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000115
Chandler Carruthef860a22013-01-02 09:10:48 +0000116 // If the element types match, IR can fold it.
Chris Lattner9d051242009-10-25 06:08:26 +0000117 unsigned NumDstElt = DestVTy->getNumElements();
Chris Lattner61a1d6c2012-01-26 21:37:55 +0000118 unsigned NumSrcElt = C->getType()->getVectorNumElements();
Chris Lattner9d051242009-10-25 06:08:26 +0000119 if (NumDstElt == NumSrcElt)
120 return ConstantExpr::getBitCast(C, DestTy);
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000121
Chris Lattner61a1d6c2012-01-26 21:37:55 +0000122 Type *SrcEltTy = C->getType()->getVectorElementType();
Chris Lattner229907c2011-07-18 04:54:35 +0000123 Type *DstEltTy = DestVTy->getElementType();
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000124
125 // Otherwise, we're changing the number of elements in a vector, which
Chris Lattner9d051242009-10-25 06:08:26 +0000126 // requires endianness information to do the right thing. For example,
127 // bitcast (<2 x i64> <i64 0, i64 1> to <4 x i32>)
128 // folds to (little endian):
129 // <4 x i32> <i32 0, i32 0, i32 1, i32 0>
130 // and to (big endian):
131 // <4 x i32> <i32 0, i32 0, i32 0, i32 1>
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000132
Chris Lattner9d051242009-10-25 06:08:26 +0000133 // First thing is first. We only want to think about integer here, so if
134 // we have something in FP form, recast it as integer.
Duncan Sands9dff9be2010-02-15 16:12:20 +0000135 if (DstEltTy->isFloatingPointTy()) {
Chris Lattner9d051242009-10-25 06:08:26 +0000136 // Fold to an vector of integers with same size as our FP type.
137 unsigned FPWidth = DstEltTy->getPrimitiveSizeInBits();
Chris Lattner229907c2011-07-18 04:54:35 +0000138 Type *DestIVTy =
Chris Lattner9d051242009-10-25 06:08:26 +0000139 VectorType::get(IntegerType::get(C->getContext(), FPWidth), NumDstElt);
140 // Recursively handle this integer conversion, if possible.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000141 C = FoldBitCast(C, DestIVTy, DL);
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000142
Chandler Carruthef860a22013-01-02 09:10:48 +0000143 // Finally, IR can handle this now that #elts line up.
Chris Lattner9d051242009-10-25 06:08:26 +0000144 return ConstantExpr::getBitCast(C, DestTy);
145 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000146
Chris Lattner9d051242009-10-25 06:08:26 +0000147 // Okay, we know the destination is integer, if the input is FP, convert
148 // it to integer first.
Duncan Sands9dff9be2010-02-15 16:12:20 +0000149 if (SrcEltTy->isFloatingPointTy()) {
Chris Lattner9d051242009-10-25 06:08:26 +0000150 unsigned FPWidth = SrcEltTy->getPrimitiveSizeInBits();
Chris Lattner229907c2011-07-18 04:54:35 +0000151 Type *SrcIVTy =
Chris Lattner9d051242009-10-25 06:08:26 +0000152 VectorType::get(IntegerType::get(C->getContext(), FPWidth), NumSrcElt);
Chandler Carruthef860a22013-01-02 09:10:48 +0000153 // Ask IR to do the conversion now that #elts line up.
Chris Lattner9d051242009-10-25 06:08:26 +0000154 C = ConstantExpr::getBitCast(C, SrcIVTy);
Chandler Carruthef860a22013-01-02 09:10:48 +0000155 // If IR wasn't able to fold it, bail out.
Chris Lattner61a1d6c2012-01-26 21:37:55 +0000156 if (!isa<ConstantVector>(C) && // FIXME: Remove ConstantVector.
157 !isa<ConstantDataVector>(C))
Chris Lattner9d051242009-10-25 06:08:26 +0000158 return C;
159 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000160
Chris Lattner9d051242009-10-25 06:08:26 +0000161 // Now we know that the input and output vectors are both integer vectors
162 // of the same size, and that their #elements is not the same. Do the
163 // conversion here, which depends on whether the input or output has
164 // more elements.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000165 bool isLittleEndian = DL.isLittleEndian();
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000166
Chris Lattner9d051242009-10-25 06:08:26 +0000167 SmallVector<Constant*, 32> Result;
168 if (NumDstElt < NumSrcElt) {
169 // Handle: bitcast (<4 x i32> <i32 0, i32 1, i32 2, i32 3> to <2 x i64>)
170 Constant *Zero = Constant::getNullValue(DstEltTy);
171 unsigned Ratio = NumSrcElt/NumDstElt;
172 unsigned SrcBitSize = SrcEltTy->getPrimitiveSizeInBits();
173 unsigned SrcElt = 0;
174 for (unsigned i = 0; i != NumDstElt; ++i) {
175 // Build each element of the result.
176 Constant *Elt = Zero;
177 unsigned ShiftAmt = isLittleEndian ? 0 : SrcBitSize*(Ratio-1);
178 for (unsigned j = 0; j != Ratio; ++j) {
Chris Lattner61a1d6c2012-01-26 21:37:55 +0000179 Constant *Src =dyn_cast<ConstantInt>(C->getAggregateElement(SrcElt++));
Chris Lattner9d051242009-10-25 06:08:26 +0000180 if (!Src) // Reject constantexpr elements.
181 return ConstantExpr::getBitCast(C, DestTy);
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000182
Chris Lattner9d051242009-10-25 06:08:26 +0000183 // Zero extend the element to the right size.
184 Src = ConstantExpr::getZExt(Src, Elt->getType());
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000185
Chris Lattner9d051242009-10-25 06:08:26 +0000186 // Shift it to the right place, depending on endianness.
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000187 Src = ConstantExpr::getShl(Src,
Chris Lattner9d051242009-10-25 06:08:26 +0000188 ConstantInt::get(Src->getType(), ShiftAmt));
189 ShiftAmt += isLittleEndian ? SrcBitSize : -SrcBitSize;
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000190
Chris Lattner9d051242009-10-25 06:08:26 +0000191 // Mix it in.
192 Elt = ConstantExpr::getOr(Elt, Src);
193 }
194 Result.push_back(Elt);
195 }
Chris Lattner61a1d6c2012-01-26 21:37:55 +0000196 return ConstantVector::get(Result);
197 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000198
Chris Lattner61a1d6c2012-01-26 21:37:55 +0000199 // Handle: bitcast (<2 x i64> <i64 0, i64 1> to <4 x i32>)
200 unsigned Ratio = NumDstElt/NumSrcElt;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000201 unsigned DstBitSize = DL.getTypeSizeInBits(DstEltTy);
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000202
Chris Lattner61a1d6c2012-01-26 21:37:55 +0000203 // Loop over each source value, expanding into multiple results.
204 for (unsigned i = 0; i != NumSrcElt; ++i) {
205 Constant *Src = dyn_cast<ConstantInt>(C->getAggregateElement(i));
206 if (!Src) // Reject constantexpr elements.
207 return ConstantExpr::getBitCast(C, DestTy);
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000208
Chris Lattner61a1d6c2012-01-26 21:37:55 +0000209 unsigned ShiftAmt = isLittleEndian ? 0 : DstBitSize*(Ratio-1);
210 for (unsigned j = 0; j != Ratio; ++j) {
211 // Shift the piece of the value into the right place, depending on
212 // endianness.
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000213 Constant *Elt = ConstantExpr::getLShr(Src,
Chris Lattner61a1d6c2012-01-26 21:37:55 +0000214 ConstantInt::get(Src->getType(), ShiftAmt));
215 ShiftAmt += isLittleEndian ? DstBitSize : -DstBitSize;
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000216
Bruno Cardoso Lopesc29520c2014-10-22 12:18:48 +0000217 // Truncate the element to an integer with the same pointer size and
218 // convert the element back to a pointer using a inttoptr.
219 if (DstEltTy->isPointerTy()) {
220 IntegerType *DstIntTy = Type::getIntNTy(C->getContext(), DstBitSize);
221 Constant *CE = ConstantExpr::getTrunc(Elt, DstIntTy);
222 Result.push_back(ConstantExpr::getIntToPtr(CE, DstEltTy));
223 continue;
224 }
225
Chris Lattner61a1d6c2012-01-26 21:37:55 +0000226 // Truncate and remember this piece.
227 Result.push_back(ConstantExpr::getTrunc(Elt, DstEltTy));
Chris Lattner9d051242009-10-25 06:08:26 +0000228 }
229 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000230
Chris Lattner69229312011-02-15 00:14:00 +0000231 return ConstantVector::get(Result);
Chris Lattner9d051242009-10-25 06:08:26 +0000232}
233
Sanjay Patel0d7dee62014-10-02 15:13:22 +0000234/// If this constant is a constant offset from a global, return the global and
235/// the constant. Because of constantexprs, this function is recursive.
Eugene Zelenko35623fb2016-03-28 17:40:08 +0000236bool IsConstantOffsetFromGlobal(Constant *C, GlobalValue *&GV, APInt &Offset,
237 const DataLayout &DL) {
Chris Lattner44d68b92007-01-31 00:51:48 +0000238 // Trivial case, constant is the global.
239 if ((GV = dyn_cast<GlobalValue>(C))) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000240 unsigned BitWidth = DL.getPointerTypeSizeInBits(GV->getType());
Matt Arsenaulta8e89442013-11-04 20:46:52 +0000241 Offset = APInt(BitWidth, 0);
Chris Lattner44d68b92007-01-31 00:51:48 +0000242 return true;
243 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000244
Chris Lattner44d68b92007-01-31 00:51:48 +0000245 // Otherwise, if this isn't a constant expr, bail out.
246 ConstantExpr *CE = dyn_cast<ConstantExpr>(C);
247 if (!CE) return false;
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000248
Chris Lattner44d68b92007-01-31 00:51:48 +0000249 // Look through ptr->int and ptr->ptr casts.
250 if (CE->getOpcode() == Instruction::PtrToInt ||
Matt Arsenault95365ca2015-07-27 18:31:03 +0000251 CE->getOpcode() == Instruction::BitCast)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000252 return IsConstantOffsetFromGlobal(CE->getOperand(0), GV, Offset, DL);
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000253
254 // i32* getelementptr ([5 x i32]* @a, i32 0, i32 5)
Matt Arsenaulta8e89442013-11-04 20:46:52 +0000255 GEPOperator *GEP = dyn_cast<GEPOperator>(CE);
256 if (!GEP)
257 return false;
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000258
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000259 unsigned BitWidth = DL.getPointerTypeSizeInBits(GEP->getType());
Matt Arsenaulta8e89442013-11-04 20:46:52 +0000260 APInt TmpOffset(BitWidth, 0);
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000261
Matt Arsenaulta8e89442013-11-04 20:46:52 +0000262 // If the base isn't a global+constant, we aren't either.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000263 if (!IsConstantOffsetFromGlobal(CE->getOperand(0), GV, TmpOffset, DL))
Matt Arsenaulta8e89442013-11-04 20:46:52 +0000264 return false;
265
266 // Otherwise, add any offset that our operands provide.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000267 if (!GEP->accumulateConstantOffset(DL, TmpOffset))
Matt Arsenaulta8e89442013-11-04 20:46:52 +0000268 return false;
269
270 Offset = TmpOffset;
271 return true;
Chris Lattner44d68b92007-01-31 00:51:48 +0000272}
273
Sanjay Patel0d7dee62014-10-02 15:13:22 +0000274/// Recursive helper to read bits out of global. C is the constant being copied
275/// out of. ByteOffset is an offset into C. CurPtr is the pointer to copy
276/// results into and BytesLeft is the number of bytes left in
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000277/// the CurPtr buffer. DL is the DataLayout.
Eugene Zelenko35623fb2016-03-28 17:40:08 +0000278bool ReadDataFromGlobal(Constant *C, uint64_t ByteOffset, unsigned char *CurPtr,
279 unsigned BytesLeft, const DataLayout &DL) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000280 assert(ByteOffset <= DL.getTypeAllocSize(C->getType()) &&
Chris Lattnered00b802009-10-23 06:23:49 +0000281 "Out of range access");
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000282
Chris Lattner3db7bd22009-10-24 05:27:19 +0000283 // If this element is zero or undefined, we can just return since *CurPtr is
284 // zero initialized.
Chris Lattnered00b802009-10-23 06:23:49 +0000285 if (isa<ConstantAggregateZero>(C) || isa<UndefValue>(C))
286 return true;
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000287
Chris Lattnered00b802009-10-23 06:23:49 +0000288 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
289 if (CI->getBitWidth() > 64 ||
290 (CI->getBitWidth() & 7) != 0)
291 return false;
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000292
Chris Lattnered00b802009-10-23 06:23:49 +0000293 uint64_t Val = CI->getZExtValue();
294 unsigned IntBytes = unsigned(CI->getBitWidth()/8);
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000295
Chris Lattnered00b802009-10-23 06:23:49 +0000296 for (unsigned i = 0; i != BytesLeft && ByteOffset != IntBytes; ++i) {
NAKAMURA Takumi43ab4ef2012-11-08 20:34:25 +0000297 int n = ByteOffset;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000298 if (!DL.isLittleEndian())
NAKAMURA Takumi43ab4ef2012-11-08 20:34:25 +0000299 n = IntBytes - n - 1;
300 CurPtr[i] = (unsigned char)(Val >> (n * 8));
Chris Lattnered00b802009-10-23 06:23:49 +0000301 ++ByteOffset;
302 }
303 return true;
304 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000305
Chris Lattnered00b802009-10-23 06:23:49 +0000306 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
307 if (CFP->getType()->isDoubleTy()) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000308 C = FoldBitCast(C, Type::getInt64Ty(C->getContext()), DL);
309 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL);
Chris Lattnered00b802009-10-23 06:23:49 +0000310 }
311 if (CFP->getType()->isFloatTy()){
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000312 C = FoldBitCast(C, Type::getInt32Ty(C->getContext()), DL);
313 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL);
Chris Lattnered00b802009-10-23 06:23:49 +0000314 }
Owen Andersond4ebfd82013-02-06 22:43:31 +0000315 if (CFP->getType()->isHalfTy()){
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000316 C = FoldBitCast(C, Type::getInt16Ty(C->getContext()), DL);
317 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL);
Owen Andersond4ebfd82013-02-06 22:43:31 +0000318 }
Chris Lattner3db7bd22009-10-24 05:27:19 +0000319 return false;
Chris Lattnered00b802009-10-23 06:23:49 +0000320 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000321
Chris Lattnered00b802009-10-23 06:23:49 +0000322 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(C)) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000323 const StructLayout *SL = DL.getStructLayout(CS->getType());
Chris Lattnered00b802009-10-23 06:23:49 +0000324 unsigned Index = SL->getElementContainingOffset(ByteOffset);
325 uint64_t CurEltOffset = SL->getElementOffset(Index);
326 ByteOffset -= CurEltOffset;
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000327
Chris Lattnered00b802009-10-23 06:23:49 +0000328 while (1) {
329 // If the element access is to the element itself and not to tail padding,
330 // read the bytes from the element.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000331 uint64_t EltSize = DL.getTypeAllocSize(CS->getOperand(Index)->getType());
Chris Lattnered00b802009-10-23 06:23:49 +0000332
333 if (ByteOffset < EltSize &&
334 !ReadDataFromGlobal(CS->getOperand(Index), ByteOffset, CurPtr,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000335 BytesLeft, DL))
Chris Lattnered00b802009-10-23 06:23:49 +0000336 return false;
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000337
Chris Lattnered00b802009-10-23 06:23:49 +0000338 ++Index;
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000339
Chris Lattnered00b802009-10-23 06:23:49 +0000340 // Check to see if we read from the last struct element, if so we're done.
341 if (Index == CS->getType()->getNumElements())
342 return true;
343
344 // If we read all of the bytes we needed from this element we're done.
345 uint64_t NextEltOffset = SL->getElementOffset(Index);
346
Matt Arsenault8c789092013-08-12 23:15:58 +0000347 if (BytesLeft <= NextEltOffset - CurEltOffset - ByteOffset)
Chris Lattnered00b802009-10-23 06:23:49 +0000348 return true;
349
350 // Move to the next element of the struct.
Matt Arsenault8c789092013-08-12 23:15:58 +0000351 CurPtr += NextEltOffset - CurEltOffset - ByteOffset;
352 BytesLeft -= NextEltOffset - CurEltOffset - ByteOffset;
Chris Lattnered00b802009-10-23 06:23:49 +0000353 ByteOffset = 0;
354 CurEltOffset = NextEltOffset;
355 }
356 // not reached.
357 }
358
Chris Lattner67058832012-01-25 06:48:06 +0000359 if (isa<ConstantArray>(C) || isa<ConstantVector>(C) ||
360 isa<ConstantDataSequential>(C)) {
Matt Arsenault8c789092013-08-12 23:15:58 +0000361 Type *EltTy = C->getType()->getSequentialElementType();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000362 uint64_t EltSize = DL.getTypeAllocSize(EltTy);
Chris Lattnered00b802009-10-23 06:23:49 +0000363 uint64_t Index = ByteOffset / EltSize;
364 uint64_t Offset = ByteOffset - Index * EltSize;
Chris Lattner67058832012-01-25 06:48:06 +0000365 uint64_t NumElts;
366 if (ArrayType *AT = dyn_cast<ArrayType>(C->getType()))
367 NumElts = AT->getNumElements();
368 else
Matt Arsenault8c789092013-08-12 23:15:58 +0000369 NumElts = C->getType()->getVectorNumElements();
Duncan Sands0b875a02012-07-25 09:14:54 +0000370
Chris Lattner67058832012-01-25 06:48:06 +0000371 for (; Index != NumElts; ++Index) {
372 if (!ReadDataFromGlobal(C->getAggregateElement(Index), Offset, CurPtr,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000373 BytesLeft, DL))
Chris Lattner67058832012-01-25 06:48:06 +0000374 return false;
Duncan Sands0b875a02012-07-25 09:14:54 +0000375
376 uint64_t BytesWritten = EltSize - Offset;
377 assert(BytesWritten <= EltSize && "Not indexing into this element?");
378 if (BytesWritten >= BytesLeft)
Chris Lattner67058832012-01-25 06:48:06 +0000379 return true;
Duncan Sands0b875a02012-07-25 09:14:54 +0000380
Chris Lattner67058832012-01-25 06:48:06 +0000381 Offset = 0;
Duncan Sands0b875a02012-07-25 09:14:54 +0000382 BytesLeft -= BytesWritten;
383 CurPtr += BytesWritten;
Chris Lattner67058832012-01-25 06:48:06 +0000384 }
385 return true;
386 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000387
Anders Carlssond21b06a2011-02-06 20:11:56 +0000388 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
Anders Carlssonecf8e152011-02-06 20:22:49 +0000389 if (CE->getOpcode() == Instruction::IntToPtr &&
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000390 CE->getOperand(0)->getType() == DL.getIntPtrType(CE->getType())) {
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000391 return ReadDataFromGlobal(CE->getOperand(0), ByteOffset, CurPtr,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000392 BytesLeft, DL);
Matt Arsenaulta5e56982013-08-12 22:56:15 +0000393 }
Anders Carlssond21b06a2011-02-06 20:11:56 +0000394 }
395
Chris Lattnered00b802009-10-23 06:23:49 +0000396 // Otherwise, unknown initializer type.
397 return false;
398}
399
Eugene Zelenko35623fb2016-03-28 17:40:08 +0000400Constant *FoldReinterpretLoadFromConstPtr(Constant *C, Type *LoadTy,
401 const DataLayout &DL) {
Matt Arsenault7a960a82013-08-20 21:20:04 +0000402 PointerType *PTy = cast<PointerType>(C->getType());
Chris Lattner229907c2011-07-18 04:54:35 +0000403 IntegerType *IntType = dyn_cast<IntegerType>(LoadTy);
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000404
Chris Lattnered00b802009-10-23 06:23:49 +0000405 // If this isn't an integer load we can't fold it directly.
406 if (!IntType) {
Matt Arsenault7a960a82013-08-20 21:20:04 +0000407 unsigned AS = PTy->getAddressSpace();
408
Chris Lattnered00b802009-10-23 06:23:49 +0000409 // If this is a float/double load, we can try folding it as an int32/64 load
Chris Lattnerccf1e842009-10-23 06:57:37 +0000410 // and then bitcast the result. This can be useful for union cases. Note
411 // that address spaces don't matter here since we're not going to result in
412 // an actual new load.
Chris Lattner229907c2011-07-18 04:54:35 +0000413 Type *MapTy;
Owen Andersond4ebfd82013-02-06 22:43:31 +0000414 if (LoadTy->isHalfTy())
Eduard Burtescu14239212016-01-22 01:17:26 +0000415 MapTy = Type::getInt16Ty(C->getContext());
Owen Andersond4ebfd82013-02-06 22:43:31 +0000416 else if (LoadTy->isFloatTy())
Eduard Burtescu14239212016-01-22 01:17:26 +0000417 MapTy = Type::getInt32Ty(C->getContext());
Chris Lattnerccf1e842009-10-23 06:57:37 +0000418 else if (LoadTy->isDoubleTy())
Eduard Burtescu14239212016-01-22 01:17:26 +0000419 MapTy = Type::getInt64Ty(C->getContext());
Duncan Sands19d0b472010-02-16 11:11:14 +0000420 else if (LoadTy->isVectorTy()) {
Eduard Burtescu14239212016-01-22 01:17:26 +0000421 MapTy = PointerType::getIntNTy(C->getContext(),
422 DL.getTypeAllocSizeInBits(LoadTy));
Chris Lattnerccf1e842009-10-23 06:57:37 +0000423 } else
Craig Topper9f008862014-04-15 04:59:12 +0000424 return nullptr;
Chris Lattnered00b802009-10-23 06:23:49 +0000425
Eduard Burtescu14239212016-01-22 01:17:26 +0000426 C = FoldBitCast(C, MapTy->getPointerTo(AS), DL);
427 if (Constant *Res = FoldReinterpretLoadFromConstPtr(C, MapTy, DL))
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000428 return FoldBitCast(Res, LoadTy, DL);
Craig Topper9f008862014-04-15 04:59:12 +0000429 return nullptr;
Chris Lattnered00b802009-10-23 06:23:49 +0000430 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000431
Chris Lattnered00b802009-10-23 06:23:49 +0000432 unsigned BytesLoaded = (IntType->getBitWidth() + 7) / 8;
Matt Arsenault8c789092013-08-12 23:15:58 +0000433 if (BytesLoaded > 32 || BytesLoaded == 0)
Craig Topper9f008862014-04-15 04:59:12 +0000434 return nullptr;
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000435
Chris Lattnered00b802009-10-23 06:23:49 +0000436 GlobalValue *GVal;
Matt Arsenaulta8e89442013-11-04 20:46:52 +0000437 APInt Offset;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000438 if (!IsConstantOffsetFromGlobal(C, GVal, Offset, DL))
Craig Topper9f008862014-04-15 04:59:12 +0000439 return nullptr;
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000440
Chris Lattnered00b802009-10-23 06:23:49 +0000441 GlobalVariable *GV = dyn_cast<GlobalVariable>(GVal);
Chris Lattner3db7bd22009-10-24 05:27:19 +0000442 if (!GV || !GV->isConstant() || !GV->hasDefinitiveInitializer() ||
Chris Lattnered00b802009-10-23 06:23:49 +0000443 !GV->getInitializer()->getType()->isSized())
Craig Topper9f008862014-04-15 04:59:12 +0000444 return nullptr;
Chris Lattnered00b802009-10-23 06:23:49 +0000445
446 // If we're loading off the beginning of the global, some bytes may be valid,
447 // but we don't try to handle this.
Matt Arsenault8c789092013-08-12 23:15:58 +0000448 if (Offset.isNegative())
Craig Topper9f008862014-04-15 04:59:12 +0000449 return nullptr;
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000450
Chris Lattnered00b802009-10-23 06:23:49 +0000451 // If we're not accessing anything in this constant, the result is undefined.
Benjamin Kramer546bb562013-01-23 21:21:24 +0000452 if (Offset.getZExtValue() >=
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000453 DL.getTypeAllocSize(GV->getInitializer()->getType()))
Chris Lattnered00b802009-10-23 06:23:49 +0000454 return UndefValue::get(IntType);
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000455
Chris Lattner59f94c02009-10-23 06:50:36 +0000456 unsigned char RawBytes[32] = {0};
Benjamin Kramer546bb562013-01-23 21:21:24 +0000457 if (!ReadDataFromGlobal(GV->getInitializer(), Offset.getZExtValue(), RawBytes,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000458 BytesLoaded, DL))
Craig Topper9f008862014-04-15 04:59:12 +0000459 return nullptr;
Chris Lattnered00b802009-10-23 06:23:49 +0000460
NAKAMURA Takumi43ab4ef2012-11-08 20:34:25 +0000461 APInt ResultVal = APInt(IntType->getBitWidth(), 0);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000462 if (DL.isLittleEndian()) {
NAKAMURA Takumi43ab4ef2012-11-08 20:34:25 +0000463 ResultVal = RawBytes[BytesLoaded - 1];
464 for (unsigned i = 1; i != BytesLoaded; ++i) {
465 ResultVal <<= 8;
Matt Arsenaulta5e56982013-08-12 22:56:15 +0000466 ResultVal |= RawBytes[BytesLoaded - 1 - i];
NAKAMURA Takumi43ab4ef2012-11-08 20:34:25 +0000467 }
468 } else {
469 ResultVal = RawBytes[0];
470 for (unsigned i = 1; i != BytesLoaded; ++i) {
471 ResultVal <<= 8;
472 ResultVal |= RawBytes[i];
473 }
Chris Lattner59f94c02009-10-23 06:50:36 +0000474 }
Chris Lattnered00b802009-10-23 06:23:49 +0000475
Chris Lattner59f94c02009-10-23 06:50:36 +0000476 return ConstantInt::get(IntType->getContext(), ResultVal);
Chris Lattnered00b802009-10-23 06:23:49 +0000477}
478
Eugene Zelenko35623fb2016-03-28 17:40:08 +0000479Constant *ConstantFoldLoadThroughBitcast(ConstantExpr *CE, Type *DestTy,
480 const DataLayout &DL) {
Eduard Burtescu14239212016-01-22 01:17:26 +0000481 auto *SrcPtr = CE->getOperand(0);
482 auto *SrcPtrTy = dyn_cast<PointerType>(SrcPtr->getType());
483 if (!SrcPtrTy)
Chandler Carrutha0e56952014-05-15 09:56:28 +0000484 return nullptr;
Eduard Burtescu14239212016-01-22 01:17:26 +0000485 Type *SrcTy = SrcPtrTy->getPointerElementType();
Chandler Carrutha0e56952014-05-15 09:56:28 +0000486
Eduard Burtescu14239212016-01-22 01:17:26 +0000487 Constant *C = ConstantFoldLoadFromConstPtr(SrcPtr, SrcTy, DL);
Chandler Carrutha0e56952014-05-15 09:56:28 +0000488 if (!C)
489 return nullptr;
490
491 do {
492 Type *SrcTy = C->getType();
493
494 // If the type sizes are the same and a cast is legal, just directly
495 // cast the constant.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000496 if (DL.getTypeSizeInBits(DestTy) == DL.getTypeSizeInBits(SrcTy)) {
Chandler Carrutha0e56952014-05-15 09:56:28 +0000497 Instruction::CastOps Cast = Instruction::BitCast;
498 // If we are going from a pointer to int or vice versa, we spell the cast
499 // differently.
500 if (SrcTy->isIntegerTy() && DestTy->isPointerTy())
501 Cast = Instruction::IntToPtr;
502 else if (SrcTy->isPointerTy() && DestTy->isIntegerTy())
503 Cast = Instruction::PtrToInt;
504
505 if (CastInst::castIsValid(Cast, C, DestTy))
506 return ConstantExpr::getCast(Cast, C, DestTy);
507 }
508
509 // If this isn't an aggregate type, there is nothing we can do to drill down
510 // and find a bitcastable constant.
511 if (!SrcTy->isAggregateType())
512 return nullptr;
513
514 // We're simulating a load through a pointer that was bitcast to point to
515 // a different type, so we can try to walk down through the initial
516 // elements of an aggregate to see if some part of th e aggregate is
517 // castable to implement the "load" semantic model.
518 C = C->getAggregateElement(0u);
519 } while (C);
520
521 return nullptr;
522}
523
Eugene Zelenko35623fb2016-03-28 17:40:08 +0000524} // end anonymous namespace
525
Eduard Burtescu14239212016-01-22 01:17:26 +0000526Constant *llvm::ConstantFoldLoadFromConstPtr(Constant *C, Type *Ty,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000527 const DataLayout &DL) {
Chris Lattner1664a4f2009-10-22 06:25:11 +0000528 // First, try the easy cases:
529 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C))
530 if (GV->isConstant() && GV->hasDefinitiveInitializer())
531 return GV->getInitializer();
532
David Majnemered9abe12015-07-22 22:29:30 +0000533 if (auto *GA = dyn_cast<GlobalAlias>(C))
Sanjoy Das5ce32722016-04-08 00:48:30 +0000534 if (GA->getAliasee() && !GA->isInterposable())
Eduard Burtescu14239212016-01-22 01:17:26 +0000535 return ConstantFoldLoadFromConstPtr(GA->getAliasee(), Ty, DL);
David Majnemered9abe12015-07-22 22:29:30 +0000536
Chris Lattnercf7e8942009-10-22 06:44:07 +0000537 // If the loaded value isn't a constant expr, we can't handle it.
538 ConstantExpr *CE = dyn_cast<ConstantExpr>(C);
Matt Arsenaulta5e56982013-08-12 22:56:15 +0000539 if (!CE)
Craig Topper9f008862014-04-15 04:59:12 +0000540 return nullptr;
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000541
Chris Lattnercf7e8942009-10-22 06:44:07 +0000542 if (CE->getOpcode() == Instruction::GetElementPtr) {
Matt Arsenaulta5e56982013-08-12 22:56:15 +0000543 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getOperand(0))) {
544 if (GV->isConstant() && GV->hasDefinitiveInitializer()) {
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000545 if (Constant *V =
Chris Lattnercf7e8942009-10-22 06:44:07 +0000546 ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE))
547 return V;
Matt Arsenaulta5e56982013-08-12 22:56:15 +0000548 }
549 }
Chris Lattnercf7e8942009-10-22 06:44:07 +0000550 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000551
Chandler Carrutha0e56952014-05-15 09:56:28 +0000552 if (CE->getOpcode() == Instruction::BitCast)
Eduard Burtescu14239212016-01-22 01:17:26 +0000553 if (Constant *LoadedC = ConstantFoldLoadThroughBitcast(CE, Ty, DL))
Chandler Carrutha0e56952014-05-15 09:56:28 +0000554 return LoadedC;
555
Chris Lattnercf7e8942009-10-22 06:44:07 +0000556 // Instead of loading constant c string, use corresponding integer value
557 // directly if string length is small enough.
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000558 StringRef Str;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000559 if (getConstantStringInfo(CE, Str) && !Str.empty()) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000560 unsigned StrLen = Str.size();
Chris Lattnered00b802009-10-23 06:23:49 +0000561 unsigned NumBits = Ty->getPrimitiveSizeInBits();
Chris Lattnerfd4a09f2010-07-12 00:22:51 +0000562 // Replace load with immediate integer if the result is an integer or fp
563 // value.
564 if ((NumBits >> 3) == StrLen + 1 && (NumBits & 7) == 0 &&
Chandler Carruth57041d82010-07-12 06:47:05 +0000565 (isa<IntegerType>(Ty) || Ty->isFloatingPointTy())) {
Chris Lattnered00b802009-10-23 06:23:49 +0000566 APInt StrVal(NumBits, 0);
567 APInt SingleChar(NumBits, 0);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000568 if (DL.isLittleEndian()) {
Chris Lattnered00b802009-10-23 06:23:49 +0000569 for (signed i = StrLen-1; i >= 0; i--) {
Eugene Zelenko35623fb2016-03-28 17:40:08 +0000570 SingleChar = (uint64_t) Str[i] &
571 std::numeric_limits<unsigned char>::max();
Chris Lattner51d2f702009-10-22 06:38:35 +0000572 StrVal = (StrVal << 8) | SingleChar;
573 }
Chris Lattnercf7e8942009-10-22 06:44:07 +0000574 } else {
Chris Lattnered00b802009-10-23 06:23:49 +0000575 for (unsigned i = 0; i < StrLen; i++) {
Eugene Zelenko35623fb2016-03-28 17:40:08 +0000576 SingleChar = (uint64_t) Str[i] &
577 std::numeric_limits<unsigned char>::max();
Chris Lattnercf7e8942009-10-22 06:44:07 +0000578 StrVal = (StrVal << 8) | SingleChar;
579 }
580 // Append NULL at the end.
581 SingleChar = 0;
582 StrVal = (StrVal << 8) | SingleChar;
Chris Lattner51d2f702009-10-22 06:38:35 +0000583 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000584
Chris Lattnerfd4a09f2010-07-12 00:22:51 +0000585 Constant *Res = ConstantInt::get(CE->getContext(), StrVal);
586 if (Ty->isFloatingPointTy())
587 Res = ConstantExpr::getBitCast(Res, Ty);
588 return Res;
Chris Lattner51d2f702009-10-22 06:38:35 +0000589 }
Chris Lattner1664a4f2009-10-22 06:25:11 +0000590 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000591
Chris Lattnercf7e8942009-10-22 06:44:07 +0000592 // If this load comes from anywhere in a constant global, and if the global
593 // is all undef or zero, we know what it loads.
Dan Gohman0f124e12011-01-24 18:53:32 +0000594 if (GlobalVariable *GV =
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000595 dyn_cast<GlobalVariable>(GetUnderlyingObject(CE, DL))) {
Chris Lattnercf7e8942009-10-22 06:44:07 +0000596 if (GV->isConstant() && GV->hasDefinitiveInitializer()) {
Chris Lattnercf7e8942009-10-22 06:44:07 +0000597 if (GV->getInitializer()->isNullValue())
Eduard Burtescu14239212016-01-22 01:17:26 +0000598 return Constant::getNullValue(Ty);
Chris Lattnercf7e8942009-10-22 06:44:07 +0000599 if (isa<UndefValue>(GV->getInitializer()))
Eduard Burtescu14239212016-01-22 01:17:26 +0000600 return UndefValue::get(Ty);
Chris Lattnercf7e8942009-10-22 06:44:07 +0000601 }
602 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000603
NAKAMURA Takumi43ab4ef2012-11-08 20:34:25 +0000604 // Try hard to fold loads from bitcasted strange and non-type-safe things.
Eduard Burtescu14239212016-01-22 01:17:26 +0000605 return FoldReinterpretLoadFromConstPtr(CE, Ty, DL);
Chris Lattner1664a4f2009-10-22 06:25:11 +0000606}
607
Eugene Zelenko35623fb2016-03-28 17:40:08 +0000608namespace {
609
610Constant *ConstantFoldLoadInst(const LoadInst *LI, const DataLayout &DL) {
Craig Topper9f008862014-04-15 04:59:12 +0000611 if (LI->isVolatile()) return nullptr;
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000612
Chris Lattner1664a4f2009-10-22 06:25:11 +0000613 if (Constant *C = dyn_cast<Constant>(LI->getOperand(0)))
Eduard Burtescu14239212016-01-22 01:17:26 +0000614 return ConstantFoldLoadFromConstPtr(C, LI->getType(), DL);
Chris Lattnered00b802009-10-23 06:23:49 +0000615
Craig Topper9f008862014-04-15 04:59:12 +0000616 return nullptr;
Chris Lattner1664a4f2009-10-22 06:25:11 +0000617}
Chris Lattner44d68b92007-01-31 00:51:48 +0000618
Sanjay Patel0d7dee62014-10-02 15:13:22 +0000619/// One of Op0/Op1 is a constant expression.
Nick Lewyckye88d3882008-12-15 01:35:36 +0000620/// Attempt to symbolically evaluate the result of a binary operator merging
Nick Lewycky06417742013-02-14 03:23:37 +0000621/// these together. If target data info is available, it is provided as DL,
622/// otherwise DL is null.
Eugene Zelenko35623fb2016-03-28 17:40:08 +0000623Constant *SymbolicallyEvaluateBinop(unsigned Opc, Constant *Op0, Constant *Op1,
624 const DataLayout &DL) {
Chris Lattner44d68b92007-01-31 00:51:48 +0000625 // SROA
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000626
Chris Lattner44d68b92007-01-31 00:51:48 +0000627 // Fold (and 0xffffffff00000000, (shl x, 32)) -> shl.
628 // Fold (lshr (or X, Y), 32) -> (lshr [X/Y], 32) if one doesn't contribute
629 // bits.
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000630
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000631 if (Opc == Instruction::And) {
632 unsigned BitWidth = DL.getTypeSizeInBits(Op0->getType()->getScalarType());
Nick Lewycky06417742013-02-14 03:23:37 +0000633 APInt KnownZero0(BitWidth, 0), KnownOne0(BitWidth, 0);
634 APInt KnownZero1(BitWidth, 0), KnownOne1(BitWidth, 0);
Jay Foada0653a32014-05-14 21:14:37 +0000635 computeKnownBits(Op0, KnownZero0, KnownOne0, DL);
636 computeKnownBits(Op1, KnownZero1, KnownOne1, DL);
Nick Lewycky06417742013-02-14 03:23:37 +0000637 if ((KnownOne1 | KnownZero0).isAllOnesValue()) {
638 // All the bits of Op0 that the 'and' could be masking are already zero.
639 return Op0;
640 }
641 if ((KnownOne0 | KnownZero1).isAllOnesValue()) {
642 // All the bits of Op1 that the 'and' could be masking are already zero.
643 return Op1;
644 }
645
646 APInt KnownZero = KnownZero0 | KnownZero1;
647 APInt KnownOne = KnownOne0 & KnownOne1;
648 if ((KnownZero | KnownOne).isAllOnesValue()) {
649 return ConstantInt::get(Op0->getType(), KnownOne);
650 }
651 }
652
Chris Lattner44d68b92007-01-31 00:51:48 +0000653 // If the constant expr is something like &A[123] - &A[4].f, fold this into a
654 // constant. This happens frequently when iterating over a global array.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000655 if (Opc == Instruction::Sub) {
Chris Lattner44d68b92007-01-31 00:51:48 +0000656 GlobalValue *GV1, *GV2;
Matt Arsenaulta8e89442013-11-04 20:46:52 +0000657 APInt Offs1, Offs2;
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000658
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000659 if (IsConstantOffsetFromGlobal(Op0, GV1, Offs1, DL))
660 if (IsConstantOffsetFromGlobal(Op1, GV2, Offs2, DL) && GV1 == GV2) {
661 unsigned OpSize = DL.getTypeSizeInBits(Op0->getType());
Matt Arsenaultbed5bf22013-09-12 01:07:58 +0000662
Chris Lattner44d68b92007-01-31 00:51:48 +0000663 // (&GV+C1) - (&GV+C2) -> C1-C2, pointer arithmetic cannot overflow.
Benjamin Kramera5a9ec52013-02-05 19:04:36 +0000664 // PtrToInt may change the bitwidth so we have convert to the right size
665 // first.
666 return ConstantInt::get(Op0->getType(), Offs1.zextOrTrunc(OpSize) -
667 Offs2.zextOrTrunc(OpSize));
Chris Lattner44d68b92007-01-31 00:51:48 +0000668 }
669 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000670
Craig Topper9f008862014-04-15 04:59:12 +0000671 return nullptr;
Chris Lattner44d68b92007-01-31 00:51:48 +0000672}
673
Sanjay Patel0d7dee62014-10-02 15:13:22 +0000674/// If array indices are not pointer-sized integers, explicitly cast them so
675/// that they aren't implicitly casted by the getelementptr.
Eugene Zelenko35623fb2016-03-28 17:40:08 +0000676Constant *CastGEPIndices(Type *SrcElemTy, ArrayRef<Constant *> Ops,
677 Type *ResultTy, const DataLayout &DL,
678 const TargetLibraryInfo *TLI) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000679 Type *IntPtrTy = DL.getIntPtrType(ResultTy);
Dan Gohmane5e1b7b2010-02-01 18:27:38 +0000680
681 bool Any = false;
682 SmallVector<Constant*, 32> NewIdxs;
Jay Foadf4b14a22011-07-19 13:32:40 +0000683 for (unsigned i = 1, e = Ops.size(); i != e; ++i) {
Dan Gohmane5e1b7b2010-02-01 18:27:38 +0000684 if ((i == 1 ||
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000685 !isa<StructType>(GetElementPtrInst::getIndexedType(SrcElemTy,
David Blaikied288fb82015-03-30 21:41:43 +0000686 Ops.slice(1, i - 1)))) &&
Dan Gohmane5e1b7b2010-02-01 18:27:38 +0000687 Ops[i]->getType() != IntPtrTy) {
688 Any = true;
689 NewIdxs.push_back(ConstantExpr::getCast(CastInst::getCastOpcode(Ops[i],
690 true,
691 IntPtrTy,
692 true),
693 Ops[i], IntPtrTy));
694 } else
695 NewIdxs.push_back(Ops[i]);
696 }
Dan Gohmane5e1b7b2010-02-01 18:27:38 +0000697
Matt Arsenaulta5e56982013-08-12 22:56:15 +0000698 if (!Any)
Craig Topper9f008862014-04-15 04:59:12 +0000699 return nullptr;
Matt Arsenaulta5e56982013-08-12 22:56:15 +0000700
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000701 Constant *C = ConstantExpr::getGetElementPtr(SrcElemTy, Ops[0], NewIdxs);
Matt Arsenaulta5e56982013-08-12 22:56:15 +0000702 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000703 if (Constant *Folded = ConstantFoldConstantExpression(CE, DL, TLI))
Dan Gohmane5e1b7b2010-02-01 18:27:38 +0000704 C = Folded;
Matt Arsenaulta5e56982013-08-12 22:56:15 +0000705 }
706
Dan Gohmane5e1b7b2010-02-01 18:27:38 +0000707 return C;
708}
709
Nadav Rotem77f1b9c2012-07-30 07:25:20 +0000710/// Strip the pointer casts, but preserve the address space information.
Eugene Zelenko35623fb2016-03-28 17:40:08 +0000711Constant* StripPtrCastKeepAS(Constant* Ptr, Type *&ElemTy) {
Nadav Rotem77f1b9c2012-07-30 07:25:20 +0000712 assert(Ptr->getType()->isPointerTy() && "Not a pointer type");
713 PointerType *OldPtrTy = cast<PointerType>(Ptr->getType());
Rafael Espindola78598d92014-06-04 19:01:48 +0000714 Ptr = Ptr->stripPointerCasts();
Nadav Rotem77f1b9c2012-07-30 07:25:20 +0000715 PointerType *NewPtrTy = cast<PointerType>(Ptr->getType());
716
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000717 ElemTy = NewPtrTy->getPointerElementType();
718
Nadav Rotem77f1b9c2012-07-30 07:25:20 +0000719 // Preserve the address space number of the pointer.
720 if (NewPtrTy->getAddressSpace() != OldPtrTy->getAddressSpace()) {
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000721 NewPtrTy = ElemTy->getPointerTo(OldPtrTy->getAddressSpace());
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +0000722 Ptr = ConstantExpr::getPointerCast(Ptr, NewPtrTy);
Nadav Rotem77f1b9c2012-07-30 07:25:20 +0000723 }
724 return Ptr;
725}
726
Sanjay Patel0d7dee62014-10-02 15:13:22 +0000727/// If we can symbolically evaluate the GEP constant expression, do so.
Eugene Zelenko35623fb2016-03-28 17:40:08 +0000728Constant *SymbolicallyEvaluateGEP(const GEPOperator *GEP,
729 ArrayRef<Constant *> Ops,
730 const DataLayout &DL,
731 const TargetLibraryInfo *TLI) {
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000732 Type *SrcElemTy = GEP->getSourceElementType();
733 Type *ResElemTy = GEP->getResultElementType();
734 Type *ResTy = GEP->getType();
735 if (!SrcElemTy->isSized())
736 return nullptr;
737
738 if (Constant *C = CastGEPIndices(SrcElemTy, Ops, ResTy, DL, TLI))
739 return C;
740
Chris Lattner44d68b92007-01-31 00:51:48 +0000741 Constant *Ptr = Ops[0];
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000742 if (!Ptr->getType()->isPointerTy())
Craig Topper9f008862014-04-15 04:59:12 +0000743 return nullptr;
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000744
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000745 Type *IntPtrTy = DL.getIntPtrType(Ptr->getType());
Chris Lattnerf4b42f52008-05-08 04:54:43 +0000746
747 // If this is a constant expr gep that is effectively computing an
748 // "offsetof", fold it into 'cast int Size to T*' instead of 'gep 0, 0, 12'
Jay Foadf4b14a22011-07-19 13:32:40 +0000749 for (unsigned i = 1, e = Ops.size(); i != e; ++i)
Chris Lattner5858e092011-01-06 06:19:46 +0000750 if (!isa<ConstantInt>(Ops[i])) {
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000751
Chris Lattner5858e092011-01-06 06:19:46 +0000752 // If this is "gep i8* Ptr, (sub 0, V)", fold this as:
753 // "inttoptr (sub (ptrtoint Ptr), V)"
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000754 if (Ops.size() == 2 && ResElemTy->isIntegerTy(8)) {
Chris Lattner5858e092011-01-06 06:19:46 +0000755 ConstantExpr *CE = dyn_cast<ConstantExpr>(Ops[1]);
Craig Topper9f008862014-04-15 04:59:12 +0000756 assert((!CE || CE->getType() == IntPtrTy) &&
Chris Lattner171608e2011-01-06 22:24:29 +0000757 "CastGEPIndices didn't canonicalize index types!");
Chris Lattner5858e092011-01-06 06:19:46 +0000758 if (CE && CE->getOpcode() == Instruction::Sub &&
Chris Lattner171608e2011-01-06 22:24:29 +0000759 CE->getOperand(0)->isNullValue()) {
Chris Lattner5858e092011-01-06 06:19:46 +0000760 Constant *Res = ConstantExpr::getPtrToInt(Ptr, CE->getType());
761 Res = ConstantExpr::getSub(Res, CE->getOperand(1));
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000762 Res = ConstantExpr::getIntToPtr(Res, ResTy);
Chris Lattner5858e092011-01-06 06:19:46 +0000763 if (ConstantExpr *ResCE = dyn_cast<ConstantExpr>(Res))
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000764 Res = ConstantFoldConstantExpression(ResCE, DL, TLI);
Chris Lattner5858e092011-01-06 06:19:46 +0000765 return Res;
766 }
767 }
Craig Topper9f008862014-04-15 04:59:12 +0000768 return nullptr;
Chris Lattner5858e092011-01-06 06:19:46 +0000769 }
Nadav Rotem77f1b9c2012-07-30 07:25:20 +0000770
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000771 unsigned BitWidth = DL.getTypeSizeInBits(IntPtrTy);
Jay Foadbf904772011-07-19 14:01:37 +0000772 APInt Offset =
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000773 APInt(BitWidth,
Eduard Burtescu68e7f492016-01-22 03:08:27 +0000774 DL.getIndexedOffsetInType(
775 SrcElemTy,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000776 makeArrayRef((Value * const *)Ops.data() + 1, Ops.size() - 1)));
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000777 Ptr = StripPtrCastKeepAS(Ptr, SrcElemTy);
Dan Gohman474e488c2010-03-10 19:31:51 +0000778
779 // If this is a GEP of a GEP, fold it all into a single GEP.
780 while (GEPOperator *GEP = dyn_cast<GEPOperator>(Ptr)) {
Matt Arsenaulta5e56982013-08-12 22:56:15 +0000781 SmallVector<Value *, 4> NestedOps(GEP->op_begin() + 1, GEP->op_end());
Duncan Sands8c355062010-03-12 17:55:20 +0000782
783 // Do not try the incorporate the sub-GEP if some index is not a number.
784 bool AllConstantInt = true;
785 for (unsigned i = 0, e = NestedOps.size(); i != e; ++i)
786 if (!isa<ConstantInt>(NestedOps[i])) {
787 AllConstantInt = false;
788 break;
789 }
790 if (!AllConstantInt)
791 break;
792
Dan Gohman474e488c2010-03-10 19:31:51 +0000793 Ptr = cast<Constant>(GEP->getOperand(0));
Eduard Burtescu68e7f492016-01-22 03:08:27 +0000794 SrcElemTy = GEP->getSourceElementType();
795 Offset += APInt(BitWidth, DL.getIndexedOffsetInType(SrcElemTy, NestedOps));
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000796 Ptr = StripPtrCastKeepAS(Ptr, SrcElemTy);
Dan Gohman474e488c2010-03-10 19:31:51 +0000797 }
798
Dan Gohman81ce8422009-08-19 18:18:36 +0000799 // If the base value for this address is a literal integer value, fold the
800 // getelementptr to the resulting integer value casted to the pointer type.
Dan Gohmana5ca5782010-03-18 19:34:33 +0000801 APInt BasePtr(BitWidth, 0);
Matt Arsenaulta5e56982013-08-12 22:56:15 +0000802 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr)) {
803 if (CE->getOpcode() == Instruction::IntToPtr) {
Jay Foad583abbc2010-12-07 08:25:19 +0000804 if (ConstantInt *Base = dyn_cast<ConstantInt>(CE->getOperand(0)))
805 BasePtr = Base->getValue().zextOrTrunc(BitWidth);
Matt Arsenaulta5e56982013-08-12 22:56:15 +0000806 }
807 }
808
Dan Gohmana5ca5782010-03-18 19:34:33 +0000809 if (Ptr->isNullValue() || BasePtr != 0) {
Matt Arsenaulta5e56982013-08-12 22:56:15 +0000810 Constant *C = ConstantInt::get(Ptr->getContext(), Offset + BasePtr);
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000811 return ConstantExpr::getIntToPtr(C, ResTy);
Dan Gohman81ce8422009-08-19 18:18:36 +0000812 }
813
814 // Otherwise form a regular getelementptr. Recompute the indices so that
815 // we eliminate over-indexing of the notional static type array bounds.
816 // This makes it easy to determine if the getelementptr is "inbounds".
817 // Also, this helps GlobalOpt do SROA on GlobalVariables.
Chris Lattner229907c2011-07-18 04:54:35 +0000818 Type *Ty = Ptr->getType();
Chandler Carruthaacb8a52012-04-24 18:42:47 +0000819 assert(Ty->isPointerTy() && "Forming regular GEP of non-pointer type");
Matt Arsenault7a960a82013-08-20 21:20:04 +0000820 SmallVector<Constant *, 32> NewIdxs;
821
Dan Gohmanc59ba422009-08-19 22:46:59 +0000822 do {
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000823 if (!Ty->isStructTy()) {
824 if (Ty->isPointerTy()) {
Chris Lattner77c36d62009-12-03 01:05:45 +0000825 // The only pointer indexing we'll do is on the first index of the GEP.
826 if (!NewIdxs.empty())
827 break;
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000828
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000829 Ty = SrcElemTy;
830
Chris Lattner77c36d62009-12-03 01:05:45 +0000831 // Only handle pointers to sized types, not pointers to functions.
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000832 if (!Ty->isSized())
Craig Topper9f008862014-04-15 04:59:12 +0000833 return nullptr;
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000834 } else if (auto *ATy = dyn_cast<SequentialType>(Ty)) {
835 Ty = ATy->getElementType();
836 } else {
837 // We've reached some non-indexable type.
838 break;
Chris Lattner77c36d62009-12-03 01:05:45 +0000839 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +0000840
Dan Gohman81ce8422009-08-19 18:18:36 +0000841 // Determine which element of the array the offset points into.
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000842 APInt ElemSize(BitWidth, DL.getTypeAllocSize(Ty));
Dan Gohman81ce8422009-08-19 18:18:36 +0000843 if (ElemSize == 0)
Chris Lattner6ce03802010-11-21 08:39:01 +0000844 // The element size is 0. This may be [0 x Ty]*, so just use a zero
Duncan Sands1f86be92010-11-21 12:43:13 +0000845 // index for this level and proceed to the next level to see if it can
846 // accommodate the offset.
Chris Lattner6ce03802010-11-21 08:39:01 +0000847 NewIdxs.push_back(ConstantInt::get(IntPtrTy, 0));
848 else {
849 // The element size is non-zero divide the offset by the element
850 // size (rounding down), to compute the index at this level.
851 APInt NewIdx = Offset.udiv(ElemSize);
852 Offset -= NewIdx * ElemSize;
853 NewIdxs.push_back(ConstantInt::get(IntPtrTy, NewIdx));
854 }
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000855 } else {
856 StructType *STy = cast<StructType>(Ty);
Chandler Carruthaacb8a52012-04-24 18:42:47 +0000857 // If we end up with an offset that isn't valid for this struct type, we
858 // can't re-form this GEP in a regular form, so bail out. The pointer
859 // operand likely went through casts that are necessary to make the GEP
860 // sensible.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000861 const StructLayout &SL = *DL.getStructLayout(STy);
Chandler Carruthaacb8a52012-04-24 18:42:47 +0000862 if (Offset.uge(SL.getSizeInBytes()))
863 break;
864
865 // Determine which field of the struct the offset points into. The
866 // getZExtValue is fine as we've already ensured that the offset is
867 // within the range representable by the StructLayout API.
Dan Gohman23e62c52009-08-21 16:52:54 +0000868 unsigned ElIdx = SL.getElementContainingOffset(Offset.getZExtValue());
Chris Lattner46b5c642009-11-06 04:27:31 +0000869 NewIdxs.push_back(ConstantInt::get(Type::getInt32Ty(Ty->getContext()),
870 ElIdx));
Dan Gohman23e62c52009-08-21 16:52:54 +0000871 Offset -= APInt(BitWidth, SL.getElementOffset(ElIdx));
Dan Gohman81ce8422009-08-19 18:18:36 +0000872 Ty = STy->getTypeAtIndex(ElIdx);
Dan Gohman81ce8422009-08-19 18:18:36 +0000873 }
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000874 } while (Ty != ResElemTy);
Dan Gohmanc59ba422009-08-19 22:46:59 +0000875
876 // If we haven't used up the entire offset by descending the static
877 // type, then the offset is pointing into the middle of an indivisible
878 // member, so we can't simplify it.
879 if (Offset != 0)
Craig Topper9f008862014-04-15 04:59:12 +0000880 return nullptr;
Dan Gohman81ce8422009-08-19 18:18:36 +0000881
Dan Gohman21c62162009-09-11 00:04:14 +0000882 // Create a GEP.
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000883 Constant *C = ConstantExpr::getGetElementPtr(SrcElemTy, Ptr, NewIdxs);
Matt Arsenault8c789092013-08-12 23:15:58 +0000884 assert(C->getType()->getPointerElementType() == Ty &&
Dan Gohmane4ca02d2009-09-03 23:34:49 +0000885 "Computed GetElementPtr has unexpected type!");
Dan Gohman81ce8422009-08-19 18:18:36 +0000886
Dan Gohmanc59ba422009-08-19 22:46:59 +0000887 // If we ended up indexing a member with a type that doesn't match
Dan Gohman8a8ad7d2009-08-20 16:42:55 +0000888 // the type of what the original indices indexed, add a cast.
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000889 if (Ty != ResElemTy)
890 C = FoldBitCast(C, ResTy, DL);
Dan Gohmanc59ba422009-08-19 22:46:59 +0000891
892 return C;
Chris Lattner44d68b92007-01-31 00:51:48 +0000893}
894
Manuel Jacobe9024592016-01-21 06:33:22 +0000895/// Attempt to constant fold an instruction with the
896/// specified opcode and operands. If successful, the constant result is
897/// returned, if not, null is returned. Note that this function can fail when
898/// attempting to fold instructions like loads and stores, which have no
899/// constant expression form.
900///
901/// TODO: This function neither utilizes nor preserves nsw/nuw/inbounds/etc
902/// information, due to only being passed an opcode and operands. Constant
903/// folding using this function strips this information.
904///
Eugene Zelenko35623fb2016-03-28 17:40:08 +0000905Constant *ConstantFoldInstOperandsImpl(const Value *InstOrCE, Type *DestTy,
906 unsigned Opcode,
907 ArrayRef<Constant *> Ops,
908 const DataLayout &DL,
909 const TargetLibraryInfo *TLI) {
Manuel Jacobe9024592016-01-21 06:33:22 +0000910 // Handle easy binops first.
911 if (Instruction::isBinaryOp(Opcode))
912 return ConstantFoldBinaryOpOperands(Opcode, Ops[0], Ops[1], DL);
913
914 if (Instruction::isCast(Opcode))
915 return ConstantFoldCastOperand(Opcode, Ops[0], DestTy, DL);
916
Eduard Burtescu2f4758b2016-01-21 23:42:06 +0000917 if(auto *GEP = dyn_cast<GEPOperator>(InstOrCE)) {
918 if (Constant *C = SymbolicallyEvaluateGEP(GEP, Ops, DL, TLI))
919 return C;
920
921 return ConstantExpr::getGetElementPtr(GEP->getSourceElementType(),
922 Ops[0], Ops.slice(1));
923 }
924
Manuel Jacobe9024592016-01-21 06:33:22 +0000925 switch (Opcode) {
926 default: return nullptr;
927 case Instruction::ICmp:
928 case Instruction::FCmp: llvm_unreachable("Invalid for compares");
929 case Instruction::Call:
930 if (Function *F = dyn_cast<Function>(Ops.back()))
931 if (canConstantFoldCallTo(F))
932 return ConstantFoldCall(F, Ops.slice(0, Ops.size() - 1), TLI);
933 return nullptr;
934 case Instruction::Select:
935 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
936 case Instruction::ExtractElement:
937 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
938 case Instruction::InsertElement:
939 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
940 case Instruction::ShuffleVector:
941 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Manuel Jacobe9024592016-01-21 06:33:22 +0000942 }
943}
944
Eugene Zelenko35623fb2016-03-28 17:40:08 +0000945} // end anonymous namespace
Chris Lattner44d68b92007-01-31 00:51:48 +0000946
947//===----------------------------------------------------------------------===//
948// Constant Folding public APIs
949//===----------------------------------------------------------------------===//
950
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000951Constant *llvm::ConstantFoldInstruction(Instruction *I, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +0000952 const TargetLibraryInfo *TLI) {
Duncan Sands763dec02010-11-23 10:16:18 +0000953 // Handle PHI nodes quickly here...
Chris Lattner2ae054a2007-01-30 23:45:45 +0000954 if (PHINode *PN = dyn_cast<PHINode>(I)) {
Craig Topper9f008862014-04-15 04:59:12 +0000955 Constant *CommonValue = nullptr;
John Criswell970af112005-10-27 16:00:10 +0000956
Pete Cooper833f34d2015-05-12 20:05:31 +0000957 for (Value *Incoming : PN->incoming_values()) {
Duncan Sands763dec02010-11-23 10:16:18 +0000958 // If the incoming value is undef then skip it. Note that while we could
959 // skip the value if it is equal to the phi node itself we choose not to
960 // because that would break the rule that constant folding only applies if
961 // all operands are constants.
962 if (isa<UndefValue>(Incoming))
Duncan Sands1d27f0122010-11-14 12:53:18 +0000963 continue;
Dan Gohman1ccecdb2012-04-27 17:50:22 +0000964 // If the incoming value is not a constant, then give up.
Duncan Sands1d27f0122010-11-14 12:53:18 +0000965 Constant *C = dyn_cast<Constant>(Incoming);
Dan Gohman1ccecdb2012-04-27 17:50:22 +0000966 if (!C)
Craig Topper9f008862014-04-15 04:59:12 +0000967 return nullptr;
Dan Gohman1ccecdb2012-04-27 17:50:22 +0000968 // Fold the PHI's operands.
969 if (ConstantExpr *NewC = dyn_cast<ConstantExpr>(C))
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000970 C = ConstantFoldConstantExpression(NewC, DL, TLI);
Dan Gohman1ccecdb2012-04-27 17:50:22 +0000971 // If the incoming value is a different constant to
972 // the one we saw previously, then give up.
973 if (CommonValue && C != CommonValue)
Craig Topper9f008862014-04-15 04:59:12 +0000974 return nullptr;
Duncan Sands1d27f0122010-11-14 12:53:18 +0000975 CommonValue = C;
976 }
Chris Lattner2ae054a2007-01-30 23:45:45 +0000977
Dan Gohman1ccecdb2012-04-27 17:50:22 +0000978
Duncan Sands1d27f0122010-11-14 12:53:18 +0000979 // If we reach here, all incoming values are the same constant or undef.
980 return CommonValue ? CommonValue : UndefValue::get(PN->getType());
Chris Lattner2ae054a2007-01-30 23:45:45 +0000981 }
982
983 // Scan the operand list, checking to see if they are all constants, if so,
Manuel Jacobe9024592016-01-21 06:33:22 +0000984 // hand off to ConstantFoldInstOperandsImpl.
Fiona Glaser2e5c0c22016-03-13 05:36:15 +0000985 if (!all_of(I->operands(), [](Use &U) { return isa<Constant>(U); }))
986 return nullptr;
Chris Lattner2ae054a2007-01-30 23:45:45 +0000987
Fiona Glaser2e5c0c22016-03-13 05:36:15 +0000988 SmallVector<Constant *, 8> Ops;
989 for (User::op_iterator i = I->op_begin(), e = I->op_end(); i != e; ++i) {
990 Constant *Op = cast<Constant>(*i);
Dan Gohman1ccecdb2012-04-27 17:50:22 +0000991 // Fold the Instruction's operands.
992 if (ConstantExpr *NewCE = dyn_cast<ConstantExpr>(Op))
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000993 Op = ConstantFoldConstantExpression(NewCE, DL, TLI);
Dan Gohman1ccecdb2012-04-27 17:50:22 +0000994
995 Ops.push_back(Op);
996 }
997
Chris Lattnerd2265b42007-12-10 22:53:04 +0000998 if (const CmpInst *CI = dyn_cast<CmpInst>(I))
Chris Lattnercdfb80d2009-11-09 23:06:58 +0000999 return ConstantFoldCompareInstOperands(CI->getPredicate(), Ops[0], Ops[1],
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001000 DL, TLI);
NAKAMURA Takumidce89992012-11-05 00:11:11 +00001001
Chris Lattner1664a4f2009-10-22 06:25:11 +00001002 if (const LoadInst *LI = dyn_cast<LoadInst>(I))
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001003 return ConstantFoldLoadInst(LI, DL);
Frits van Bommela98214d2010-11-29 20:36:52 +00001004
Matt Arsenaulta5e56982013-08-12 22:56:15 +00001005 if (InsertValueInst *IVI = dyn_cast<InsertValueInst>(I)) {
Frits van Bommela98214d2010-11-29 20:36:52 +00001006 return ConstantExpr::getInsertValue(
1007 cast<Constant>(IVI->getAggregateOperand()),
1008 cast<Constant>(IVI->getInsertedValueOperand()),
Jay Foad57aa6362011-07-13 10:26:04 +00001009 IVI->getIndices());
Matt Arsenaulta5e56982013-08-12 22:56:15 +00001010 }
Frits van Bommela98214d2010-11-29 20:36:52 +00001011
Matt Arsenaulta5e56982013-08-12 22:56:15 +00001012 if (ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I)) {
Frits van Bommela98214d2010-11-29 20:36:52 +00001013 return ConstantExpr::getExtractValue(
1014 cast<Constant>(EVI->getAggregateOperand()),
Jay Foad57aa6362011-07-13 10:26:04 +00001015 EVI->getIndices());
Matt Arsenaulta5e56982013-08-12 22:56:15 +00001016 }
Frits van Bommela98214d2010-11-29 20:36:52 +00001017
Eduard Burtescu2f4758b2016-01-21 23:42:06 +00001018 return ConstantFoldInstOperands(I, Ops, DL, TLI);
Chris Lattner2ae054a2007-01-30 23:45:45 +00001019}
1020
Eugene Zelenko35623fb2016-03-28 17:40:08 +00001021namespace {
1022
1023Constant *
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001024ConstantFoldConstantExpressionImpl(const ConstantExpr *CE, const DataLayout &DL,
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +00001025 const TargetLibraryInfo *TLI,
Craig Topper71b7b682014-08-21 05:55:13 +00001026 SmallPtrSetImpl<ConstantExpr *> &FoldedOps) {
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +00001027 SmallVector<Constant *, 8> Ops;
1028 for (User::const_op_iterator i = CE->op_begin(), e = CE->op_end(); i != e;
1029 ++i) {
Dan Gohman580b80d2009-11-23 16:22:21 +00001030 Constant *NewC = cast<Constant>(*i);
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +00001031 // Recursively fold the ConstantExpr's operands. If we have already folded
1032 // a ConstantExpr, we don't have to process it again.
1033 if (ConstantExpr *NewCE = dyn_cast<ConstantExpr>(NewC)) {
David Blaikie70573dc2014-11-19 07:49:26 +00001034 if (FoldedOps.insert(NewCE).second)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001035 NewC = ConstantFoldConstantExpressionImpl(NewCE, DL, TLI, FoldedOps);
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +00001036 }
Dan Gohman580b80d2009-11-23 16:22:21 +00001037 Ops.push_back(NewC);
1038 }
Nick Lewyckyf6ccd252008-05-25 20:56:15 +00001039
1040 if (CE->isCompare())
Chris Lattnercdfb80d2009-11-09 23:06:58 +00001041 return ConstantFoldCompareInstOperands(CE->getPredicate(), Ops[0], Ops[1],
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001042 DL, TLI);
Eduard Burtescu2f4758b2016-01-21 23:42:06 +00001043
Manuel Jacob6be35592016-03-14 22:34:17 +00001044 return ConstantFoldInstOperandsImpl(CE, CE->getType(), CE->getOpcode(), Ops,
1045 DL, TLI);
Nick Lewyckyf6ccd252008-05-25 20:56:15 +00001046}
1047
Eugene Zelenko35623fb2016-03-28 17:40:08 +00001048} // end anonymous namespace
1049
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +00001050Constant *llvm::ConstantFoldConstantExpression(const ConstantExpr *CE,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001051 const DataLayout &DL,
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +00001052 const TargetLibraryInfo *TLI) {
1053 SmallPtrSet<ConstantExpr *, 4> FoldedOps;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001054 return ConstantFoldConstantExpressionImpl(CE, DL, TLI, FoldedOps);
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +00001055}
1056
Manuel Jacobe9024592016-01-21 06:33:22 +00001057Constant *llvm::ConstantFoldInstOperands(Instruction *I,
Jay Foadf4b14a22011-07-19 13:32:40 +00001058 ArrayRef<Constant *> Ops,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001059 const DataLayout &DL,
NAKAMURA Takumidce89992012-11-05 00:11:11 +00001060 const TargetLibraryInfo *TLI) {
Manuel Jacob6be35592016-03-14 22:34:17 +00001061 return ConstantFoldInstOperandsImpl(I, I->getType(), I->getOpcode(), Ops, DL,
1062 TLI);
1063}
1064
1065Constant *llvm::ConstantFoldInstOperands(unsigned Opcode, Type *DestTy,
1066 ArrayRef<Constant *> Ops,
1067 const DataLayout &DL,
1068 const TargetLibraryInfo *TLI) {
1069 assert(Opcode != Instruction::GetElementPtr && "Invalid for GEPs");
1070 return ConstantFoldInstOperandsImpl(nullptr, DestTy, Opcode, Ops, DL, TLI);
Chris Lattner2ae054a2007-01-30 23:45:45 +00001071}
1072
Chris Lattnerd2265b42007-12-10 22:53:04 +00001073Constant *llvm::ConstantFoldCompareInstOperands(unsigned Predicate,
NAKAMURA Takumidce89992012-11-05 00:11:11 +00001074 Constant *Ops0, Constant *Ops1,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001075 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001076 const TargetLibraryInfo *TLI) {
Chris Lattnerd2265b42007-12-10 22:53:04 +00001077 // fold: icmp (inttoptr x), null -> icmp x, 0
1078 // fold: icmp (ptrtoint x), 0 -> icmp x, null
Nick Lewyckyf6ccd252008-05-25 20:56:15 +00001079 // fold: icmp (inttoptr x), (inttoptr y) -> icmp trunc/zext x, trunc/zext y
Chris Lattnerd2265b42007-12-10 22:53:04 +00001080 // fold: icmp (ptrtoint x), (ptrtoint y) -> icmp x, y
1081 //
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001082 // FIXME: The following comment is out of data and the DataLayout is here now.
1083 // ConstantExpr::getCompare cannot do this, because it doesn't have DL
Chris Lattnerd2265b42007-12-10 22:53:04 +00001084 // around to know if bit truncation is happening.
Chris Lattnercdfb80d2009-11-09 23:06:58 +00001085 if (ConstantExpr *CE0 = dyn_cast<ConstantExpr>(Ops0)) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001086 if (Ops1->isNullValue()) {
Chris Lattnerd2265b42007-12-10 22:53:04 +00001087 if (CE0->getOpcode() == Instruction::IntToPtr) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001088 Type *IntPtrTy = DL.getIntPtrType(CE0->getType());
Chris Lattnerd2265b42007-12-10 22:53:04 +00001089 // Convert the integer value to the right size to ensure we get the
1090 // proper extension or truncation.
Owen Anderson487375e2009-07-29 18:55:55 +00001091 Constant *C = ConstantExpr::getIntegerCast(CE0->getOperand(0),
Chris Lattnerd2265b42007-12-10 22:53:04 +00001092 IntPtrTy, false);
Chris Lattnercdfb80d2009-11-09 23:06:58 +00001093 Constant *Null = Constant::getNullValue(C->getType());
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001094 return ConstantFoldCompareInstOperands(Predicate, C, Null, DL, TLI);
Chris Lattnerd2265b42007-12-10 22:53:04 +00001095 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +00001096
Chris Lattnerd2265b42007-12-10 22:53:04 +00001097 // Only do this transformation if the int is intptrty in size, otherwise
1098 // there is a truncation or extension that we aren't modeling.
Matt Arsenault7a960a82013-08-20 21:20:04 +00001099 if (CE0->getOpcode() == Instruction::PtrToInt) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001100 Type *IntPtrTy = DL.getIntPtrType(CE0->getOperand(0)->getType());
Matt Arsenault7a960a82013-08-20 21:20:04 +00001101 if (CE0->getType() == IntPtrTy) {
1102 Constant *C = CE0->getOperand(0);
1103 Constant *Null = Constant::getNullValue(C->getType());
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001104 return ConstantFoldCompareInstOperands(Predicate, C, Null, DL, TLI);
Matt Arsenault7a960a82013-08-20 21:20:04 +00001105 }
Chris Lattnerd2265b42007-12-10 22:53:04 +00001106 }
1107 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +00001108
Chris Lattnercdfb80d2009-11-09 23:06:58 +00001109 if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(Ops1)) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001110 if (CE0->getOpcode() == CE1->getOpcode()) {
Nick Lewyckyf6ccd252008-05-25 20:56:15 +00001111 if (CE0->getOpcode() == Instruction::IntToPtr) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001112 Type *IntPtrTy = DL.getIntPtrType(CE0->getType());
Matt Arsenault7a960a82013-08-20 21:20:04 +00001113
Nick Lewyckyf6ccd252008-05-25 20:56:15 +00001114 // Convert the integer value to the right size to ensure we get the
1115 // proper extension or truncation.
Owen Anderson487375e2009-07-29 18:55:55 +00001116 Constant *C0 = ConstantExpr::getIntegerCast(CE0->getOperand(0),
Nick Lewyckyf6ccd252008-05-25 20:56:15 +00001117 IntPtrTy, false);
Owen Anderson487375e2009-07-29 18:55:55 +00001118 Constant *C1 = ConstantExpr::getIntegerCast(CE1->getOperand(0),
Nick Lewyckyf6ccd252008-05-25 20:56:15 +00001119 IntPtrTy, false);
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001120 return ConstantFoldCompareInstOperands(Predicate, C0, C1, DL, TLI);
Nick Lewyckyf6ccd252008-05-25 20:56:15 +00001121 }
1122
Chandler Carruth7ec50852012-11-01 08:07:29 +00001123 // Only do this transformation if the int is intptrty in size, otherwise
1124 // there is a truncation or extension that we aren't modeling.
Matt Arsenault7a960a82013-08-20 21:20:04 +00001125 if (CE0->getOpcode() == Instruction::PtrToInt) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001126 Type *IntPtrTy = DL.getIntPtrType(CE0->getOperand(0)->getType());
Matt Arsenault7a960a82013-08-20 21:20:04 +00001127 if (CE0->getType() == IntPtrTy &&
1128 CE0->getOperand(0)->getType() == CE1->getOperand(0)->getType()) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001129 return ConstantFoldCompareInstOperands(
1130 Predicate, CE0->getOperand(0), CE1->getOperand(0), DL, TLI);
Matt Arsenault7a960a82013-08-20 21:20:04 +00001131 }
1132 }
Chris Lattnerd2265b42007-12-10 22:53:04 +00001133 }
1134 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +00001135
Chris Lattner8fb74c62010-01-02 01:22:23 +00001136 // icmp eq (or x, y), 0 -> (icmp eq x, 0) & (icmp eq y, 0)
1137 // icmp ne (or x, y), 0 -> (icmp ne x, 0) | (icmp ne y, 0)
1138 if ((Predicate == ICmpInst::ICMP_EQ || Predicate == ICmpInst::ICMP_NE) &&
1139 CE0->getOpcode() == Instruction::Or && Ops1->isNullValue()) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001140 Constant *LHS = ConstantFoldCompareInstOperands(
1141 Predicate, CE0->getOperand(0), Ops1, DL, TLI);
1142 Constant *RHS = ConstantFoldCompareInstOperands(
1143 Predicate, CE0->getOperand(1), Ops1, DL, TLI);
NAKAMURA Takumidce89992012-11-05 00:11:11 +00001144 unsigned OpC =
Chris Lattner8fb74c62010-01-02 01:22:23 +00001145 Predicate == ICmpInst::ICMP_EQ ? Instruction::And : Instruction::Or;
Manuel Jacoba61ca372016-01-21 06:26:35 +00001146 return ConstantFoldBinaryOpOperands(OpC, LHS, RHS, DL);
Chris Lattner8fb74c62010-01-02 01:22:23 +00001147 }
Chris Lattnerd2265b42007-12-10 22:53:04 +00001148 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +00001149
Chris Lattnercdfb80d2009-11-09 23:06:58 +00001150 return ConstantExpr::getCompare(Predicate, Ops0, Ops1);
Chris Lattnerd2265b42007-12-10 22:53:04 +00001151}
1152
Manuel Jacoba61ca372016-01-21 06:26:35 +00001153Constant *llvm::ConstantFoldBinaryOpOperands(unsigned Opcode, Constant *LHS,
1154 Constant *RHS,
1155 const DataLayout &DL) {
1156 assert(Instruction::isBinaryOp(Opcode));
1157 if (isa<ConstantExpr>(LHS) || isa<ConstantExpr>(RHS))
1158 if (Constant *C = SymbolicallyEvaluateBinop(Opcode, LHS, RHS, DL))
1159 return C;
1160
1161 return ConstantExpr::get(Opcode, LHS, RHS);
1162}
Chris Lattnerd2265b42007-12-10 22:53:04 +00001163
Manuel Jacob925d0292016-01-21 06:31:08 +00001164Constant *llvm::ConstantFoldCastOperand(unsigned Opcode, Constant *C,
1165 Type *DestTy, const DataLayout &DL) {
1166 assert(Instruction::isCast(Opcode));
1167 switch (Opcode) {
1168 default:
1169 llvm_unreachable("Missing case");
1170 case Instruction::PtrToInt:
1171 // If the input is a inttoptr, eliminate the pair. This requires knowing
1172 // the width of a pointer, so it can't be done in ConstantExpr::getCast.
1173 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1174 if (CE->getOpcode() == Instruction::IntToPtr) {
1175 Constant *Input = CE->getOperand(0);
1176 unsigned InWidth = Input->getType()->getScalarSizeInBits();
1177 unsigned PtrWidth = DL.getPointerTypeSizeInBits(CE->getType());
1178 if (PtrWidth < InWidth) {
1179 Constant *Mask =
1180 ConstantInt::get(CE->getContext(),
1181 APInt::getLowBitsSet(InWidth, PtrWidth));
1182 Input = ConstantExpr::getAnd(Input, Mask);
1183 }
1184 // Do a zext or trunc to get to the dest size.
1185 return ConstantExpr::getIntegerCast(Input, DestTy, false);
1186 }
1187 }
1188 return ConstantExpr::getCast(Opcode, C, DestTy);
1189 case Instruction::IntToPtr:
1190 // If the input is a ptrtoint, turn the pair into a ptr to ptr bitcast if
1191 // the int size is >= the ptr size and the address spaces are the same.
1192 // This requires knowing the width of a pointer, so it can't be done in
1193 // ConstantExpr::getCast.
1194 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1195 if (CE->getOpcode() == Instruction::PtrToInt) {
1196 Constant *SrcPtr = CE->getOperand(0);
1197 unsigned SrcPtrSize = DL.getPointerTypeSizeInBits(SrcPtr->getType());
1198 unsigned MidIntSize = CE->getType()->getScalarSizeInBits();
1199
1200 if (MidIntSize >= SrcPtrSize) {
1201 unsigned SrcAS = SrcPtr->getType()->getPointerAddressSpace();
1202 if (SrcAS == DestTy->getPointerAddressSpace())
1203 return FoldBitCast(CE->getOperand(0), DestTy, DL);
1204 }
1205 }
1206 }
1207
1208 return ConstantExpr::getCast(Opcode, C, DestTy);
1209 case Instruction::Trunc:
1210 case Instruction::ZExt:
1211 case Instruction::SExt:
1212 case Instruction::FPTrunc:
1213 case Instruction::FPExt:
1214 case Instruction::UIToFP:
1215 case Instruction::SIToFP:
1216 case Instruction::FPToUI:
1217 case Instruction::FPToSI:
1218 case Instruction::AddrSpaceCast:
1219 return ConstantExpr::getCast(Opcode, C, DestTy);
1220 case Instruction::BitCast:
1221 return FoldBitCast(C, DestTy, DL);
1222 }
1223}
1224
NAKAMURA Takumidce89992012-11-05 00:11:11 +00001225Constant *llvm::ConstantFoldLoadThroughGEPConstantExpr(Constant *C,
Dan Gohmane525d9d2009-10-05 16:36:26 +00001226 ConstantExpr *CE) {
Chris Lattnerf488b352012-01-24 05:43:50 +00001227 if (!CE->getOperand(1)->isNullValue())
Craig Topper9f008862014-04-15 04:59:12 +00001228 return nullptr; // Do not allow stepping over the value!
Chris Lattner67058832012-01-25 06:48:06 +00001229
1230 // Loop over all of the operands, tracking down which value we are
1231 // addressing.
1232 for (unsigned i = 2, e = CE->getNumOperands(); i != e; ++i) {
1233 C = C->getAggregateElement(CE->getOperand(i));
Craig Topper9f008862014-04-15 04:59:12 +00001234 if (!C)
1235 return nullptr;
Chris Lattner67058832012-01-25 06:48:06 +00001236 }
1237 return C;
Chris Lattnerf488b352012-01-24 05:43:50 +00001238}
1239
Chris Lattnerf488b352012-01-24 05:43:50 +00001240Constant *llvm::ConstantFoldLoadThroughGEPIndices(Constant *C,
1241 ArrayRef<Constant*> Indices) {
Chris Lattner2ae054a2007-01-30 23:45:45 +00001242 // Loop over all of the operands, tracking down which value we are
Chris Lattnerf488b352012-01-24 05:43:50 +00001243 // addressing.
1244 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +00001245 C = C->getAggregateElement(Indices[i]);
Craig Topper9f008862014-04-15 04:59:12 +00001246 if (!C)
1247 return nullptr;
Chris Lattnerf488b352012-01-24 05:43:50 +00001248 }
Chris Lattner2ae054a2007-01-30 23:45:45 +00001249 return C;
1250}
1251
Chris Lattner2ae054a2007-01-30 23:45:45 +00001252//===----------------------------------------------------------------------===//
1253// Constant Folding for Calls
1254//
John Criswell970af112005-10-27 16:00:10 +00001255
Matt Arsenaulta5e56982013-08-12 22:56:15 +00001256bool llvm::canConstantFoldCallTo(const Function *F) {
John Criswell970af112005-10-27 16:00:10 +00001257 switch (F->getIntrinsicID()) {
Owen Andersond4ebfd82013-02-06 22:43:31 +00001258 case Intrinsic::fabs:
Matt Arsenaultd6511b42014-10-21 23:00:20 +00001259 case Intrinsic::minnum:
1260 case Intrinsic::maxnum:
Owen Andersond4ebfd82013-02-06 22:43:31 +00001261 case Intrinsic::log:
1262 case Intrinsic::log2:
1263 case Intrinsic::log10:
1264 case Intrinsic::exp:
1265 case Intrinsic::exp2:
1266 case Intrinsic::floor:
Karthik Bhat195e9dd2014-03-24 04:36:06 +00001267 case Intrinsic::ceil:
Dale Johannesen4d4e77a2007-10-02 17:43:59 +00001268 case Intrinsic::sqrt:
Karthik Bhatd2bc0d82015-07-08 03:55:47 +00001269 case Intrinsic::sin:
1270 case Intrinsic::cos:
Karthik Bhatd818e382015-07-21 08:52:23 +00001271 case Intrinsic::trunc:
1272 case Intrinsic::rint:
1273 case Intrinsic::nearbyint:
Chad Rosier0155a632011-12-03 00:00:03 +00001274 case Intrinsic::pow:
Dale Johannesen4d4e77a2007-10-02 17:43:59 +00001275 case Intrinsic::powi:
Reid Spencer6bba6c82007-04-01 07:35:23 +00001276 case Intrinsic::bswap:
1277 case Intrinsic::ctpop:
1278 case Intrinsic::ctlz:
1279 case Intrinsic::cttz:
Matt Arsenault83778582014-03-05 00:02:00 +00001280 case Intrinsic::fma:
1281 case Intrinsic::fmuladd:
Karthik Bhatdaa8cd12014-03-06 05:32:52 +00001282 case Intrinsic::copysign:
Karthik Bhatb67688a2014-03-07 04:36:21 +00001283 case Intrinsic::round:
Evan Phoenix44e5dbc2009-10-05 22:53:52 +00001284 case Intrinsic::sadd_with_overflow:
Frits van Bommel0bb2ad22011-03-27 14:26:13 +00001285 case Intrinsic::uadd_with_overflow:
Evan Phoenix44e5dbc2009-10-05 22:53:52 +00001286 case Intrinsic::ssub_with_overflow:
Frits van Bommel0bb2ad22011-03-27 14:26:13 +00001287 case Intrinsic::usub_with_overflow:
Chris Lattner698661c2010-10-14 00:05:07 +00001288 case Intrinsic::smul_with_overflow:
Frits van Bommel0bb2ad22011-03-27 14:26:13 +00001289 case Intrinsic::umul_with_overflow:
Anton Korobeynikov065232f2010-03-19 00:36:35 +00001290 case Intrinsic::convert_from_fp16:
1291 case Intrinsic::convert_to_fp16:
Matt Arsenault155dda92016-03-21 15:00:35 +00001292 case Intrinsic::bitreverse:
Chandler Carruthb1e7f552011-01-11 01:07:24 +00001293 case Intrinsic::x86_sse_cvtss2si:
1294 case Intrinsic::x86_sse_cvtss2si64:
1295 case Intrinsic::x86_sse_cvttss2si:
1296 case Intrinsic::x86_sse_cvttss2si64:
1297 case Intrinsic::x86_sse2_cvtsd2si:
1298 case Intrinsic::x86_sse2_cvtsd2si64:
1299 case Intrinsic::x86_sse2_cvttsd2si:
1300 case Intrinsic::x86_sse2_cvttsd2si64:
John Criswell970af112005-10-27 16:00:10 +00001301 return true;
Chris Lattner9ca7c092009-10-05 05:00:35 +00001302 default:
1303 return false;
1304 case 0: break;
John Criswell970af112005-10-27 16:00:10 +00001305 }
1306
Matt Arsenaulta5e56982013-08-12 22:56:15 +00001307 if (!F->hasName())
1308 return false;
Daniel Dunbarca414c72009-07-26 08:34:35 +00001309 StringRef Name = F->getName();
NAKAMURA Takumidce89992012-11-05 00:11:11 +00001310
Chris Lattner785f9982007-08-08 06:55:43 +00001311 // In these cases, the check of the length is required. We don't want to
1312 // return true for a name like "cos\0blah" which strcmp would return equal to
1313 // "cos", but has length 8.
Daniel Dunbarca414c72009-07-26 08:34:35 +00001314 switch (Name[0]) {
Erik Schnetter5e93e282015-08-27 19:56:57 +00001315 default:
1316 return false;
Chris Lattner785f9982007-08-08 06:55:43 +00001317 case 'a':
Erik Schnetter5e93e282015-08-27 19:56:57 +00001318 return Name == "acos" || Name == "asin" || Name == "atan" ||
1319 Name == "atan2" || Name == "acosf" || Name == "asinf" ||
1320 Name == "atanf" || Name == "atan2f";
Chris Lattner785f9982007-08-08 06:55:43 +00001321 case 'c':
Erik Schnetter5e93e282015-08-27 19:56:57 +00001322 return Name == "ceil" || Name == "cos" || Name == "cosh" ||
1323 Name == "ceilf" || Name == "cosf" || Name == "coshf";
Chris Lattner785f9982007-08-08 06:55:43 +00001324 case 'e':
Erik Schnetter5e93e282015-08-27 19:56:57 +00001325 return Name == "exp" || Name == "exp2" || Name == "expf" || Name == "exp2f";
Chris Lattner785f9982007-08-08 06:55:43 +00001326 case 'f':
Erik Schnetter5e93e282015-08-27 19:56:57 +00001327 return Name == "fabs" || Name == "floor" || Name == "fmod" ||
1328 Name == "fabsf" || Name == "floorf" || Name == "fmodf";
Chris Lattner785f9982007-08-08 06:55:43 +00001329 case 'l':
Erik Schnetter5e93e282015-08-27 19:56:57 +00001330 return Name == "log" || Name == "log10" || Name == "logf" ||
1331 Name == "log10f";
Chris Lattner785f9982007-08-08 06:55:43 +00001332 case 'p':
Erik Schnetter5e93e282015-08-27 19:56:57 +00001333 return Name == "pow" || Name == "powf";
Chris Lattner785f9982007-08-08 06:55:43 +00001334 case 's':
Daniel Dunbarca414c72009-07-26 08:34:35 +00001335 return Name == "sin" || Name == "sinh" || Name == "sqrt" ||
Erik Schnetter5e93e282015-08-27 19:56:57 +00001336 Name == "sinf" || Name == "sinhf" || Name == "sqrtf";
Chris Lattner785f9982007-08-08 06:55:43 +00001337 case 't':
Erik Schnetter5e93e282015-08-27 19:56:57 +00001338 return Name == "tan" || Name == "tanh" || Name == "tanf" || Name == "tanhf";
John Criswell970af112005-10-27 16:00:10 +00001339 }
1340}
1341
Eugene Zelenko35623fb2016-03-28 17:40:08 +00001342namespace {
1343
1344Constant *GetConstantFoldFPValue(double V, Type *Ty) {
Owen Andersond4ebfd82013-02-06 22:43:31 +00001345 if (Ty->isHalfTy()) {
1346 APFloat APF(V);
1347 bool unused;
1348 APF.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &unused);
1349 return ConstantFP::get(Ty->getContext(), APF);
1350 }
Chris Lattner351534f2009-10-05 05:06:24 +00001351 if (Ty->isFloatTy())
Chris Lattner46b5c642009-11-06 04:27:31 +00001352 return ConstantFP::get(Ty->getContext(), APFloat((float)V));
Chris Lattner351534f2009-10-05 05:06:24 +00001353 if (Ty->isDoubleTy())
Chris Lattner46b5c642009-11-06 04:27:31 +00001354 return ConstantFP::get(Ty->getContext(), APFloat(V));
Owen Andersond4ebfd82013-02-06 22:43:31 +00001355 llvm_unreachable("Can only constant fold half/float/double");
Matt Arsenaultf8ecf9b2014-03-05 00:01:58 +00001356}
1357
Sanjay Patel0d7dee62014-10-02 15:13:22 +00001358/// Clear the floating-point exception state.
Eugene Zelenko35623fb2016-03-28 17:40:08 +00001359inline void llvm_fenv_clearexcept() {
Alp Toker51420a82014-06-09 19:00:52 +00001360#if defined(HAVE_FENV_H) && HAVE_DECL_FE_ALL_EXCEPT
Alp Tokerc817d6a2014-06-09 18:28:53 +00001361 feclearexcept(FE_ALL_EXCEPT);
1362#endif
1363 errno = 0;
1364}
1365
Sanjay Patel0d7dee62014-10-02 15:13:22 +00001366/// Test if a floating-point exception was raised.
Eugene Zelenko35623fb2016-03-28 17:40:08 +00001367inline bool llvm_fenv_testexcept() {
Alp Tokerc817d6a2014-06-09 18:28:53 +00001368 int errno_val = errno;
1369 if (errno_val == ERANGE || errno_val == EDOM)
1370 return true;
Alp Toker51420a82014-06-09 19:00:52 +00001371#if defined(HAVE_FENV_H) && HAVE_DECL_FE_ALL_EXCEPT && HAVE_DECL_FE_INEXACT
Alp Tokerc817d6a2014-06-09 18:28:53 +00001372 if (fetestexcept(FE_ALL_EXCEPT & ~FE_INEXACT))
1373 return true;
1374#endif
1375 return false;
1376}
Alp Tokerc817d6a2014-06-09 18:28:53 +00001377
Eugene Zelenko35623fb2016-03-28 17:40:08 +00001378Constant *ConstantFoldFP(double (*NativeFP)(double), double V, Type *Ty) {
Alp Tokerc817d6a2014-06-09 18:28:53 +00001379 llvm_fenv_clearexcept();
Matt Arsenaultf8ecf9b2014-03-05 00:01:58 +00001380 V = NativeFP(V);
Alp Tokerc817d6a2014-06-09 18:28:53 +00001381 if (llvm_fenv_testexcept()) {
1382 llvm_fenv_clearexcept();
Craig Topper9f008862014-04-15 04:59:12 +00001383 return nullptr;
Matt Arsenaultf8ecf9b2014-03-05 00:01:58 +00001384 }
1385
1386 return GetConstantFoldFPValue(V, Ty);
John Criswell970af112005-10-27 16:00:10 +00001387}
1388
Eugene Zelenko35623fb2016-03-28 17:40:08 +00001389Constant *ConstantFoldBinaryFP(double (*NativeFP)(double, double), double V,
1390 double W, Type *Ty) {
Alp Tokerc817d6a2014-06-09 18:28:53 +00001391 llvm_fenv_clearexcept();
Dan Gohman72efc042007-07-16 15:26:22 +00001392 V = NativeFP(V, W);
Alp Tokerc817d6a2014-06-09 18:28:53 +00001393 if (llvm_fenv_testexcept()) {
1394 llvm_fenv_clearexcept();
Craig Topper9f008862014-04-15 04:59:12 +00001395 return nullptr;
Dale Johannesenbed9dc42007-09-06 18:13:44 +00001396 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +00001397
Matt Arsenaultf8ecf9b2014-03-05 00:01:58 +00001398 return GetConstantFoldFPValue(V, Ty);
Dan Gohman72efc042007-07-16 15:26:22 +00001399}
1400
Sanjay Patel0d7dee62014-10-02 15:13:22 +00001401/// Attempt to fold an SSE floating point to integer conversion of a constant
1402/// floating point. If roundTowardZero is false, the default IEEE rounding is
1403/// used (toward nearest, ties to even). This matches the behavior of the
1404/// non-truncating SSE instructions in the default rounding mode. The desired
1405/// integer type Ty is used to select how many bits are available for the
1406/// result. Returns null if the conversion cannot be performed, otherwise
1407/// returns the Constant value resulting from the conversion.
Eugene Zelenko35623fb2016-03-28 17:40:08 +00001408Constant *ConstantFoldConvertToInt(const APFloat &Val, bool roundTowardZero,
1409 Type *Ty) {
Chandler Carruthb1e7f552011-01-11 01:07:24 +00001410 // All of these conversion intrinsics form an integer of at most 64bits.
Matt Arsenault8c789092013-08-12 23:15:58 +00001411 unsigned ResultWidth = Ty->getIntegerBitWidth();
Chandler Carruthb1e7f552011-01-11 01:07:24 +00001412 assert(ResultWidth <= 64 &&
1413 "Can only constant fold conversions to 64 and 32 bit ints");
1414
1415 uint64_t UIntVal;
1416 bool isExact = false;
1417 APFloat::roundingMode mode = roundTowardZero? APFloat::rmTowardZero
1418 : APFloat::rmNearestTiesToEven;
1419 APFloat::opStatus status = Val.convertToInteger(&UIntVal, ResultWidth,
1420 /*isSigned=*/true, mode,
1421 &isExact);
1422 if (status != APFloat::opOK && status != APFloat::opInexact)
Craig Topper9f008862014-04-15 04:59:12 +00001423 return nullptr;
Chandler Carruthb1e7f552011-01-11 01:07:24 +00001424 return ConstantInt::get(Ty, UIntVal, /*isSigned=*/true);
1425}
1426
Eugene Zelenko35623fb2016-03-28 17:40:08 +00001427double getValueAsDouble(ConstantFP *Op) {
Matt Arsenaultf8ecf9b2014-03-05 00:01:58 +00001428 Type *Ty = Op->getType();
1429
1430 if (Ty->isFloatTy())
1431 return Op->getValueAPF().convertToFloat();
1432
1433 if (Ty->isDoubleTy())
1434 return Op->getValueAPF().convertToDouble();
1435
1436 bool unused;
1437 APFloat APF = Op->getValueAPF();
1438 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &unused);
1439 return APF.convertToDouble();
1440}
1441
Eugene Zelenko35623fb2016-03-28 17:40:08 +00001442Constant *ConstantFoldScalarCall(StringRef Name, unsigned IntrinsicID, Type *Ty,
1443 ArrayRef<Constant *> Operands,
1444 const TargetLibraryInfo *TLI) {
Jay Foadf4b14a22011-07-19 13:32:40 +00001445 if (Operands.size() == 1) {
John Criswell970af112005-10-27 16:00:10 +00001446 if (ConstantFP *Op = dyn_cast<ConstantFP>(Operands[0])) {
Benjamin Kramer061d1472014-03-05 19:41:48 +00001447 if (IntrinsicID == Intrinsic::convert_to_fp16) {
Anton Korobeynikov065232f2010-03-19 00:36:35 +00001448 APFloat Val(Op->getValueAPF());
1449
1450 bool lost = false;
1451 Val.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &lost);
1452
Benjamin Kramer061d1472014-03-05 19:41:48 +00001453 return ConstantInt::get(Ty->getContext(), Val.bitcastToAPInt());
Anton Korobeynikov065232f2010-03-19 00:36:35 +00001454 }
1455
Owen Andersond4ebfd82013-02-06 22:43:31 +00001456 if (!Ty->isHalfTy() && !Ty->isFloatTy() && !Ty->isDoubleTy())
Craig Topper9f008862014-04-15 04:59:12 +00001457 return nullptr;
Jakob Stoklund Olesen10835732010-09-27 21:29:20 +00001458
Karthik Bhatb67688a2014-03-07 04:36:21 +00001459 if (IntrinsicID == Intrinsic::round) {
1460 APFloat V = Op->getValueAPF();
1461 V.roundToIntegral(APFloat::rmNearestTiesToAway);
1462 return ConstantFP::get(Ty->getContext(), V);
1463 }
1464
Karthik Bhatd818e382015-07-21 08:52:23 +00001465 if (IntrinsicID == Intrinsic::floor) {
1466 APFloat V = Op->getValueAPF();
1467 V.roundToIntegral(APFloat::rmTowardNegative);
1468 return ConstantFP::get(Ty->getContext(), V);
1469 }
1470
1471 if (IntrinsicID == Intrinsic::ceil) {
1472 APFloat V = Op->getValueAPF();
1473 V.roundToIntegral(APFloat::rmTowardPositive);
1474 return ConstantFP::get(Ty->getContext(), V);
1475 }
1476
1477 if (IntrinsicID == Intrinsic::trunc) {
1478 APFloat V = Op->getValueAPF();
1479 V.roundToIntegral(APFloat::rmTowardZero);
1480 return ConstantFP::get(Ty->getContext(), V);
1481 }
1482
1483 if (IntrinsicID == Intrinsic::rint) {
1484 APFloat V = Op->getValueAPF();
1485 V.roundToIntegral(APFloat::rmNearestTiesToEven);
1486 return ConstantFP::get(Ty->getContext(), V);
1487 }
1488
1489 if (IntrinsicID == Intrinsic::nearbyint) {
1490 APFloat V = Op->getValueAPF();
1491 V.roundToIntegral(APFloat::rmNearestTiesToEven);
1492 return ConstantFP::get(Ty->getContext(), V);
1493 }
1494
Jakob Stoklund Olesen10835732010-09-27 21:29:20 +00001495 /// We only fold functions with finite arguments. Folding NaN and inf is
1496 /// likely to be aborted with an exception anyway, and some host libms
1497 /// have known errors raising exceptions.
1498 if (Op->getValueAPF().isNaN() || Op->getValueAPF().isInfinity())
Craig Topper9f008862014-04-15 04:59:12 +00001499 return nullptr;
Jakob Stoklund Olesen10835732010-09-27 21:29:20 +00001500
Dale Johannesenbed9dc42007-09-06 18:13:44 +00001501 /// Currently APFloat versions of these functions do not exist, so we use
1502 /// the host native double versions. Float versions are not called
1503 /// directly but for all these it is true (float)(f((double)arg)) ==
1504 /// f(arg). Long double not supported yet.
Matt Arsenaultf8ecf9b2014-03-05 00:01:58 +00001505 double V = getValueAsDouble(Op);
Owen Andersond4ebfd82013-02-06 22:43:31 +00001506
Benjamin Kramer061d1472014-03-05 19:41:48 +00001507 switch (IntrinsicID) {
Owen Andersond4ebfd82013-02-06 22:43:31 +00001508 default: break;
1509 case Intrinsic::fabs:
1510 return ConstantFoldFP(fabs, V, Ty);
1511 case Intrinsic::log2:
Vince Harrond5281122015-05-07 00:05:26 +00001512 return ConstantFoldFP(Log2, V, Ty);
Owen Andersond4ebfd82013-02-06 22:43:31 +00001513 case Intrinsic::log:
1514 return ConstantFoldFP(log, V, Ty);
1515 case Intrinsic::log10:
1516 return ConstantFoldFP(log10, V, Ty);
1517 case Intrinsic::exp:
1518 return ConstantFoldFP(exp, V, Ty);
1519 case Intrinsic::exp2:
1520 return ConstantFoldFP(exp2, V, Ty);
Karthik Bhatd2bc0d82015-07-08 03:55:47 +00001521 case Intrinsic::sin:
1522 return ConstantFoldFP(sin, V, Ty);
1523 case Intrinsic::cos:
1524 return ConstantFoldFP(cos, V, Ty);
Owen Andersond4ebfd82013-02-06 22:43:31 +00001525 }
1526
Benjamin Kramer061d1472014-03-05 19:41:48 +00001527 if (!TLI)
Craig Topper9f008862014-04-15 04:59:12 +00001528 return nullptr;
Benjamin Kramer061d1472014-03-05 19:41:48 +00001529
Daniel Dunbarca414c72009-07-26 08:34:35 +00001530 switch (Name[0]) {
Chris Lattner785f9982007-08-08 06:55:43 +00001531 case 'a':
Erik Schnetter5e93e282015-08-27 19:56:57 +00001532 if ((Name == "acos" && TLI->has(LibFunc::acos)) ||
1533 (Name == "acosf" && TLI->has(LibFunc::acosf)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001534 return ConstantFoldFP(acos, V, Ty);
Erik Schnetter5e93e282015-08-27 19:56:57 +00001535 else if ((Name == "asin" && TLI->has(LibFunc::asin)) ||
1536 (Name == "asinf" && TLI->has(LibFunc::asinf)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001537 return ConstantFoldFP(asin, V, Ty);
Erik Schnetter5e93e282015-08-27 19:56:57 +00001538 else if ((Name == "atan" && TLI->has(LibFunc::atan)) ||
1539 (Name == "atanf" && TLI->has(LibFunc::atanf)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001540 return ConstantFoldFP(atan, V, Ty);
Chris Lattner785f9982007-08-08 06:55:43 +00001541 break;
1542 case 'c':
Erik Schnetter5e93e282015-08-27 19:56:57 +00001543 if ((Name == "ceil" && TLI->has(LibFunc::ceil)) ||
1544 (Name == "ceilf" && TLI->has(LibFunc::ceilf)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001545 return ConstantFoldFP(ceil, V, Ty);
Erik Schnetter5e93e282015-08-27 19:56:57 +00001546 else if ((Name == "cos" && TLI->has(LibFunc::cos)) ||
1547 (Name == "cosf" && TLI->has(LibFunc::cosf)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001548 return ConstantFoldFP(cos, V, Ty);
Erik Schnetter5e93e282015-08-27 19:56:57 +00001549 else if ((Name == "cosh" && TLI->has(LibFunc::cosh)) ||
1550 (Name == "coshf" && TLI->has(LibFunc::coshf)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001551 return ConstantFoldFP(cosh, V, Ty);
Chris Lattner785f9982007-08-08 06:55:43 +00001552 break;
1553 case 'e':
Erik Schnetter5e93e282015-08-27 19:56:57 +00001554 if ((Name == "exp" && TLI->has(LibFunc::exp)) ||
1555 (Name == "expf" && TLI->has(LibFunc::expf)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001556 return ConstantFoldFP(exp, V, Ty);
Erik Schnetter5e93e282015-08-27 19:56:57 +00001557 if ((Name == "exp2" && TLI->has(LibFunc::exp2)) ||
1558 (Name == "exp2f" && TLI->has(LibFunc::exp2f)))
Chris Lattner713d5232011-05-22 22:22:35 +00001559 // Constant fold exp2(x) as pow(2,x) in case the host doesn't have a
1560 // C99 library.
1561 return ConstantFoldBinaryFP(pow, 2.0, V, Ty);
Chris Lattner785f9982007-08-08 06:55:43 +00001562 break;
1563 case 'f':
Erik Schnetter5e93e282015-08-27 19:56:57 +00001564 if ((Name == "fabs" && TLI->has(LibFunc::fabs)) ||
1565 (Name == "fabsf" && TLI->has(LibFunc::fabsf)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001566 return ConstantFoldFP(fabs, V, Ty);
Erik Schnetter5e93e282015-08-27 19:56:57 +00001567 else if ((Name == "floor" && TLI->has(LibFunc::floor)) ||
1568 (Name == "floorf" && TLI->has(LibFunc::floorf)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001569 return ConstantFoldFP(floor, V, Ty);
Chris Lattner785f9982007-08-08 06:55:43 +00001570 break;
1571 case 'l':
Erik Schnetter5e93e282015-08-27 19:56:57 +00001572 if ((Name == "log" && V > 0 && TLI->has(LibFunc::log)) ||
1573 (Name == "logf" && V > 0 && TLI->has(LibFunc::logf)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001574 return ConstantFoldFP(log, V, Ty);
Erik Schnetter5e93e282015-08-27 19:56:57 +00001575 else if ((Name == "log10" && V > 0 && TLI->has(LibFunc::log10)) ||
1576 (Name == "log10f" && V > 0 && TLI->has(LibFunc::log10f)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001577 return ConstantFoldFP(log10, V, Ty);
Benjamin Kramer061d1472014-03-05 19:41:48 +00001578 else if (IntrinsicID == Intrinsic::sqrt &&
Owen Andersond4ebfd82013-02-06 22:43:31 +00001579 (Ty->isHalfTy() || Ty->isFloatTy() || Ty->isDoubleTy())) {
Chris Lattner785f9982007-08-08 06:55:43 +00001580 if (V >= -0.0)
Chris Lattner46b5c642009-11-06 04:27:31 +00001581 return ConstantFoldFP(sqrt, V, Ty);
Sanjay Patel7b2cd9a2014-10-01 20:36:33 +00001582 else {
1583 // Unlike the sqrt definitions in C/C++, POSIX, and IEEE-754 - which
1584 // all guarantee or favor returning NaN - the square root of a
1585 // negative number is not defined for the LLVM sqrt intrinsic.
1586 // This is because the intrinsic should only be emitted in place of
1587 // libm's sqrt function when using "no-nans-fp-math".
1588 return UndefValue::get(Ty);
1589 }
Chris Lattner785f9982007-08-08 06:55:43 +00001590 }
1591 break;
1592 case 's':
Erik Schnetter5e93e282015-08-27 19:56:57 +00001593 if ((Name == "sin" && TLI->has(LibFunc::sin)) ||
1594 (Name == "sinf" && TLI->has(LibFunc::sinf)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001595 return ConstantFoldFP(sin, V, Ty);
Erik Schnetter5e93e282015-08-27 19:56:57 +00001596 else if ((Name == "sinh" && TLI->has(LibFunc::sinh)) ||
1597 (Name == "sinhf" && TLI->has(LibFunc::sinhf)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001598 return ConstantFoldFP(sinh, V, Ty);
Erik Schnetter5e93e282015-08-27 19:56:57 +00001599 else if ((Name == "sqrt" && V >= 0 && TLI->has(LibFunc::sqrt)) ||
1600 (Name == "sqrtf" && V >= 0 && TLI->has(LibFunc::sqrtf)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001601 return ConstantFoldFP(sqrt, V, Ty);
Chris Lattner785f9982007-08-08 06:55:43 +00001602 break;
1603 case 't':
Erik Schnetter5e93e282015-08-27 19:56:57 +00001604 if ((Name == "tan" && TLI->has(LibFunc::tan)) ||
1605 (Name == "tanf" && TLI->has(LibFunc::tanf)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001606 return ConstantFoldFP(tan, V, Ty);
Erik Schnetter5e93e282015-08-27 19:56:57 +00001607 else if ((Name == "tanh" && TLI->has(LibFunc::tanh)) ||
1608 (Name == "tanhf" && TLI->has(LibFunc::tanhf)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001609 return ConstantFoldFP(tanh, V, Ty);
Chris Lattner785f9982007-08-08 06:55:43 +00001610 break;
1611 default:
1612 break;
John Criswell970af112005-10-27 16:00:10 +00001613 }
Craig Topper9f008862014-04-15 04:59:12 +00001614 return nullptr;
Chris Lattner9ca7c092009-10-05 05:00:35 +00001615 }
Chandler Carruth352d9b12011-01-10 09:02:58 +00001616
Chris Lattner9ca7c092009-10-05 05:00:35 +00001617 if (ConstantInt *Op = dyn_cast<ConstantInt>(Operands[0])) {
Benjamin Kramer061d1472014-03-05 19:41:48 +00001618 switch (IntrinsicID) {
Chandler Carruth352d9b12011-01-10 09:02:58 +00001619 case Intrinsic::bswap:
Benjamin Kramer061d1472014-03-05 19:41:48 +00001620 return ConstantInt::get(Ty->getContext(), Op->getValue().byteSwap());
Chandler Carruth352d9b12011-01-10 09:02:58 +00001621 case Intrinsic::ctpop:
Owen Andersonedb4a702009-07-24 23:12:02 +00001622 return ConstantInt::get(Ty, Op->getValue().countPopulation());
Matt Arsenault155dda92016-03-21 15:00:35 +00001623 case Intrinsic::bitreverse:
1624 return ConstantInt::get(Ty->getContext(), Op->getValue().reverseBits());
Chandler Carruth352d9b12011-01-10 09:02:58 +00001625 case Intrinsic::convert_from_fp16: {
Tim Northover29178a32013-01-22 09:46:31 +00001626 APFloat Val(APFloat::IEEEhalf, Op->getValue());
Anton Korobeynikov065232f2010-03-19 00:36:35 +00001627
1628 bool lost = false;
Andrea Di Biagio29059992015-05-14 18:01:48 +00001629 APFloat::opStatus status = Val.convert(
1630 Ty->getFltSemantics(), APFloat::rmNearestTiesToEven, &lost);
Anton Korobeynikov065232f2010-03-19 00:36:35 +00001631
1632 // Conversion is always precise.
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +00001633 (void)status;
Anton Korobeynikov065232f2010-03-19 00:36:35 +00001634 assert(status == APFloat::opOK && !lost &&
1635 "Precision lost during fp16 constfolding");
1636
Benjamin Kramer061d1472014-03-05 19:41:48 +00001637 return ConstantFP::get(Ty->getContext(), Val);
Anton Korobeynikov065232f2010-03-19 00:36:35 +00001638 }
Chandler Carruth352d9b12011-01-10 09:02:58 +00001639 default:
Craig Topper9f008862014-04-15 04:59:12 +00001640 return nullptr;
Chandler Carruth352d9b12011-01-10 09:02:58 +00001641 }
John Criswell970af112005-10-27 16:00:10 +00001642 }
Chandler Carruth352d9b12011-01-10 09:02:58 +00001643
Chris Lattner61a1d6c2012-01-26 21:37:55 +00001644 // Support ConstantVector in case we have an Undef in the top.
NAKAMURA Takumidce89992012-11-05 00:11:11 +00001645 if (isa<ConstantVector>(Operands[0]) ||
Chris Lattner61a1d6c2012-01-26 21:37:55 +00001646 isa<ConstantDataVector>(Operands[0])) {
1647 Constant *Op = cast<Constant>(Operands[0]);
Benjamin Kramer061d1472014-03-05 19:41:48 +00001648 switch (IntrinsicID) {
Chandler Carruthb1e7f552011-01-11 01:07:24 +00001649 default: break;
1650 case Intrinsic::x86_sse_cvtss2si:
1651 case Intrinsic::x86_sse_cvtss2si64:
1652 case Intrinsic::x86_sse2_cvtsd2si:
1653 case Intrinsic::x86_sse2_cvtsd2si64:
Chris Lattner61a1d6c2012-01-26 21:37:55 +00001654 if (ConstantFP *FPOp =
1655 dyn_cast_or_null<ConstantFP>(Op->getAggregateElement(0U)))
1656 return ConstantFoldConvertToInt(FPOp->getValueAPF(),
1657 /*roundTowardZero=*/false, Ty);
Chandler Carruthb1e7f552011-01-11 01:07:24 +00001658 case Intrinsic::x86_sse_cvttss2si:
1659 case Intrinsic::x86_sse_cvttss2si64:
1660 case Intrinsic::x86_sse2_cvttsd2si:
1661 case Intrinsic::x86_sse2_cvttsd2si64:
Chris Lattner61a1d6c2012-01-26 21:37:55 +00001662 if (ConstantFP *FPOp =
1663 dyn_cast_or_null<ConstantFP>(Op->getAggregateElement(0U)))
NAKAMURA Takumidce89992012-11-05 00:11:11 +00001664 return ConstantFoldConvertToInt(FPOp->getValueAPF(),
Chris Lattner61a1d6c2012-01-26 21:37:55 +00001665 /*roundTowardZero=*/true, Ty);
Chandler Carruthb1e7f552011-01-11 01:07:24 +00001666 }
1667 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +00001668
Dan Gohmancf39be32010-02-17 00:54:58 +00001669 if (isa<UndefValue>(Operands[0])) {
Benjamin Kramer061d1472014-03-05 19:41:48 +00001670 if (IntrinsicID == Intrinsic::bswap)
Dan Gohmancf39be32010-02-17 00:54:58 +00001671 return Operands[0];
Craig Topper9f008862014-04-15 04:59:12 +00001672 return nullptr;
Dan Gohmancf39be32010-02-17 00:54:58 +00001673 }
1674
Craig Topper9f008862014-04-15 04:59:12 +00001675 return nullptr;
Chris Lattner9ca7c092009-10-05 05:00:35 +00001676 }
Chandler Carruth352d9b12011-01-10 09:02:58 +00001677
Jay Foadf4b14a22011-07-19 13:32:40 +00001678 if (Operands.size() == 2) {
John Criswell970af112005-10-27 16:00:10 +00001679 if (ConstantFP *Op1 = dyn_cast<ConstantFP>(Operands[0])) {
Owen Andersond4ebfd82013-02-06 22:43:31 +00001680 if (!Ty->isHalfTy() && !Ty->isFloatTy() && !Ty->isDoubleTy())
Craig Topper9f008862014-04-15 04:59:12 +00001681 return nullptr;
Matt Arsenaultf8ecf9b2014-03-05 00:01:58 +00001682 double Op1V = getValueAsDouble(Op1);
Owen Andersond4ebfd82013-02-06 22:43:31 +00001683
John Criswell970af112005-10-27 16:00:10 +00001684 if (ConstantFP *Op2 = dyn_cast<ConstantFP>(Operands[1])) {
Chris Lattner351534f2009-10-05 05:06:24 +00001685 if (Op2->getType() != Op1->getType())
Craig Topper9f008862014-04-15 04:59:12 +00001686 return nullptr;
Chad Rosier576c0f82011-12-01 23:16:03 +00001687
Matt Arsenaultf8ecf9b2014-03-05 00:01:58 +00001688 double Op2V = getValueAsDouble(Op2);
Benjamin Kramer061d1472014-03-05 19:41:48 +00001689 if (IntrinsicID == Intrinsic::pow) {
Chad Rosier0155a632011-12-03 00:00:03 +00001690 return ConstantFoldBinaryFP(pow, Op1V, Op2V, Ty);
1691 }
Karthik Bhatdaa8cd12014-03-06 05:32:52 +00001692 if (IntrinsicID == Intrinsic::copysign) {
1693 APFloat V1 = Op1->getValueAPF();
Benjamin Kramer8f59adb2016-02-13 16:54:14 +00001694 const APFloat &V2 = Op2->getValueAPF();
Karthik Bhatdaa8cd12014-03-06 05:32:52 +00001695 V1.copySign(V2);
1696 return ConstantFP::get(Ty->getContext(), V1);
1697 }
Matt Arsenaultd6511b42014-10-21 23:00:20 +00001698
1699 if (IntrinsicID == Intrinsic::minnum) {
1700 const APFloat &C1 = Op1->getValueAPF();
1701 const APFloat &C2 = Op2->getValueAPF();
1702 return ConstantFP::get(Ty->getContext(), minnum(C1, C2));
1703 }
1704
1705 if (IntrinsicID == Intrinsic::maxnum) {
1706 const APFloat &C1 = Op1->getValueAPF();
1707 const APFloat &C2 = Op2->getValueAPF();
1708 return ConstantFP::get(Ty->getContext(), maxnum(C1, C2));
1709 }
1710
Chad Rosier0155a632011-12-03 00:00:03 +00001711 if (!TLI)
Craig Topper9f008862014-04-15 04:59:12 +00001712 return nullptr;
Erik Schnetter5e93e282015-08-27 19:56:57 +00001713 if ((Name == "pow" && TLI->has(LibFunc::pow)) ||
1714 (Name == "powf" && TLI->has(LibFunc::powf)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001715 return ConstantFoldBinaryFP(pow, Op1V, Op2V, Ty);
Erik Schnetter5e93e282015-08-27 19:56:57 +00001716 if ((Name == "fmod" && TLI->has(LibFunc::fmod)) ||
1717 (Name == "fmodf" && TLI->has(LibFunc::fmodf)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001718 return ConstantFoldBinaryFP(fmod, Op1V, Op2V, Ty);
Erik Schnetter5e93e282015-08-27 19:56:57 +00001719 if ((Name == "atan2" && TLI->has(LibFunc::atan2)) ||
1720 (Name == "atan2f" && TLI->has(LibFunc::atan2f)))
Chris Lattner46b5c642009-11-06 04:27:31 +00001721 return ConstantFoldBinaryFP(atan2, Op1V, Op2V, Ty);
Chris Lattner26933dd2007-01-15 06:27:37 +00001722 } else if (ConstantInt *Op2C = dyn_cast<ConstantInt>(Operands[1])) {
Benjamin Kramer061d1472014-03-05 19:41:48 +00001723 if (IntrinsicID == Intrinsic::powi && Ty->isHalfTy())
1724 return ConstantFP::get(Ty->getContext(),
Owen Andersond4ebfd82013-02-06 22:43:31 +00001725 APFloat((float)std::pow((float)Op1V,
1726 (int)Op2C->getZExtValue())));
Benjamin Kramer061d1472014-03-05 19:41:48 +00001727 if (IntrinsicID == Intrinsic::powi && Ty->isFloatTy())
1728 return ConstantFP::get(Ty->getContext(),
Chris Lattner46b5c642009-11-06 04:27:31 +00001729 APFloat((float)std::pow((float)Op1V,
Chris Lattner3b187622008-04-20 00:41:09 +00001730 (int)Op2C->getZExtValue())));
Benjamin Kramer061d1472014-03-05 19:41:48 +00001731 if (IntrinsicID == Intrinsic::powi && Ty->isDoubleTy())
1732 return ConstantFP::get(Ty->getContext(),
Chris Lattner46b5c642009-11-06 04:27:31 +00001733 APFloat((double)std::pow((double)Op1V,
1734 (int)Op2C->getZExtValue())));
John Criswell970af112005-10-27 16:00:10 +00001735 }
Craig Topper9f008862014-04-15 04:59:12 +00001736 return nullptr;
John Criswell970af112005-10-27 16:00:10 +00001737 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +00001738
Chris Lattner59d93982009-10-05 05:26:04 +00001739 if (ConstantInt *Op1 = dyn_cast<ConstantInt>(Operands[0])) {
1740 if (ConstantInt *Op2 = dyn_cast<ConstantInt>(Operands[1])) {
Benjamin Kramer061d1472014-03-05 19:41:48 +00001741 switch (IntrinsicID) {
Chris Lattner59d93982009-10-05 05:26:04 +00001742 default: break;
Chris Lattner698661c2010-10-14 00:05:07 +00001743 case Intrinsic::sadd_with_overflow:
1744 case Intrinsic::uadd_with_overflow:
1745 case Intrinsic::ssub_with_overflow:
1746 case Intrinsic::usub_with_overflow:
Frits van Bommel0bb2ad22011-03-27 14:26:13 +00001747 case Intrinsic::smul_with_overflow:
1748 case Intrinsic::umul_with_overflow: {
Chris Lattner698661c2010-10-14 00:05:07 +00001749 APInt Res;
1750 bool Overflow;
Benjamin Kramer061d1472014-03-05 19:41:48 +00001751 switch (IntrinsicID) {
Craig Toppera2886c22012-02-07 05:05:23 +00001752 default: llvm_unreachable("Invalid case");
Chris Lattner698661c2010-10-14 00:05:07 +00001753 case Intrinsic::sadd_with_overflow:
1754 Res = Op1->getValue().sadd_ov(Op2->getValue(), Overflow);
1755 break;
1756 case Intrinsic::uadd_with_overflow:
1757 Res = Op1->getValue().uadd_ov(Op2->getValue(), Overflow);
1758 break;
1759 case Intrinsic::ssub_with_overflow:
1760 Res = Op1->getValue().ssub_ov(Op2->getValue(), Overflow);
1761 break;
1762 case Intrinsic::usub_with_overflow:
1763 Res = Op1->getValue().usub_ov(Op2->getValue(), Overflow);
1764 break;
1765 case Intrinsic::smul_with_overflow:
1766 Res = Op1->getValue().smul_ov(Op2->getValue(), Overflow);
1767 break;
Frits van Bommel0bb2ad22011-03-27 14:26:13 +00001768 case Intrinsic::umul_with_overflow:
1769 Res = Op1->getValue().umul_ov(Op2->getValue(), Overflow);
1770 break;
Chris Lattner698661c2010-10-14 00:05:07 +00001771 }
Chris Lattner59d93982009-10-05 05:26:04 +00001772 Constant *Ops[] = {
Benjamin Kramer061d1472014-03-05 19:41:48 +00001773 ConstantInt::get(Ty->getContext(), Res),
1774 ConstantInt::get(Type::getInt1Ty(Ty->getContext()), Overflow)
Chris Lattner59d93982009-10-05 05:26:04 +00001775 };
Benjamin Kramer061d1472014-03-05 19:41:48 +00001776 return ConstantStruct::get(cast<StructType>(Ty), Ops);
Chris Lattner59d93982009-10-05 05:26:04 +00001777 }
Chandler Carruth58a71ed2011-12-12 04:26:04 +00001778 case Intrinsic::cttz:
Benjamin Kramer435eba02013-01-24 16:28:28 +00001779 if (Op2->isOne() && Op1->isZero()) // cttz(0, 1) is undef.
1780 return UndefValue::get(Ty);
Chandler Carruth58a71ed2011-12-12 04:26:04 +00001781 return ConstantInt::get(Ty, Op1->getValue().countTrailingZeros());
1782 case Intrinsic::ctlz:
Benjamin Kramer435eba02013-01-24 16:28:28 +00001783 if (Op2->isOne() && Op1->isZero()) // ctlz(0, 1) is undef.
1784 return UndefValue::get(Ty);
Chandler Carruth58a71ed2011-12-12 04:26:04 +00001785 return ConstantInt::get(Ty, Op1->getValue().countLeadingZeros());
Chris Lattner59d93982009-10-05 05:26:04 +00001786 }
1787 }
NAKAMURA Takumidce89992012-11-05 00:11:11 +00001788
Craig Topper9f008862014-04-15 04:59:12 +00001789 return nullptr;
Chris Lattner59d93982009-10-05 05:26:04 +00001790 }
Craig Topper9f008862014-04-15 04:59:12 +00001791 return nullptr;
John Criswell970af112005-10-27 16:00:10 +00001792 }
Matt Arsenault83778582014-03-05 00:02:00 +00001793
1794 if (Operands.size() != 3)
Craig Topper9f008862014-04-15 04:59:12 +00001795 return nullptr;
Matt Arsenault83778582014-03-05 00:02:00 +00001796
1797 if (const ConstantFP *Op1 = dyn_cast<ConstantFP>(Operands[0])) {
1798 if (const ConstantFP *Op2 = dyn_cast<ConstantFP>(Operands[1])) {
1799 if (const ConstantFP *Op3 = dyn_cast<ConstantFP>(Operands[2])) {
Benjamin Kramer061d1472014-03-05 19:41:48 +00001800 switch (IntrinsicID) {
Matt Arsenault83778582014-03-05 00:02:00 +00001801 default: break;
1802 case Intrinsic::fma:
1803 case Intrinsic::fmuladd: {
1804 APFloat V = Op1->getValueAPF();
1805 APFloat::opStatus s = V.fusedMultiplyAdd(Op2->getValueAPF(),
1806 Op3->getValueAPF(),
1807 APFloat::rmNearestTiesToEven);
1808 if (s != APFloat::opInvalidOp)
1809 return ConstantFP::get(Ty->getContext(), V);
1810
Craig Topper9f008862014-04-15 04:59:12 +00001811 return nullptr;
Matt Arsenault83778582014-03-05 00:02:00 +00001812 }
1813 }
1814 }
1815 }
1816 }
1817
Craig Topper9f008862014-04-15 04:59:12 +00001818 return nullptr;
John Criswell970af112005-10-27 16:00:10 +00001819}
Benjamin Kramer061d1472014-03-05 19:41:48 +00001820
Eugene Zelenko35623fb2016-03-28 17:40:08 +00001821Constant *ConstantFoldVectorCall(StringRef Name, unsigned IntrinsicID,
1822 VectorType *VTy, ArrayRef<Constant *> Operands,
1823 const TargetLibraryInfo *TLI) {
Benjamin Kramer061d1472014-03-05 19:41:48 +00001824 SmallVector<Constant *, 4> Result(VTy->getNumElements());
1825 SmallVector<Constant *, 4> Lane(Operands.size());
1826 Type *Ty = VTy->getElementType();
1827
1828 for (unsigned I = 0, E = VTy->getNumElements(); I != E; ++I) {
1829 // Gather a column of constants.
1830 for (unsigned J = 0, JE = Operands.size(); J != JE; ++J) {
1831 Constant *Agg = Operands[J]->getAggregateElement(I);
1832 if (!Agg)
1833 return nullptr;
1834
1835 Lane[J] = Agg;
1836 }
1837
1838 // Use the regular scalar folding to simplify this column.
1839 Constant *Folded = ConstantFoldScalarCall(Name, IntrinsicID, Ty, Lane, TLI);
1840 if (!Folded)
1841 return nullptr;
1842 Result[I] = Folded;
1843 }
1844
1845 return ConstantVector::get(Result);
1846}
1847
Eugene Zelenko35623fb2016-03-28 17:40:08 +00001848} // end anonymous namespace
1849
Benjamin Kramer061d1472014-03-05 19:41:48 +00001850Constant *
1851llvm::ConstantFoldCall(Function *F, ArrayRef<Constant *> Operands,
1852 const TargetLibraryInfo *TLI) {
1853 if (!F->hasName())
Craig Topper9f008862014-04-15 04:59:12 +00001854 return nullptr;
Benjamin Kramer061d1472014-03-05 19:41:48 +00001855 StringRef Name = F->getName();
1856
1857 Type *Ty = F->getReturnType();
1858
1859 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
1860 return ConstantFoldVectorCall(Name, F->getIntrinsicID(), VTy, Operands, TLI);
1861
1862 return ConstantFoldScalarCall(Name, F->getIntrinsicID(), Ty, Operands, TLI);
1863}