LLVM  8.0.1
Local.h
Go to the documentation of this file.
1 //===- Local.h - Functions to perform local transformations -----*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This family of functions perform various local transformations to the
11 // program.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #ifndef LLVM_ANALYSIS_UTILS_LOCAL_H
16 #define LLVM_ANALYSIS_UTILS_LOCAL_H
17 
18 #include "llvm/IR/DataLayout.h"
20 
21 namespace llvm {
22 
23 /// Given a getelementptr instruction/constantexpr, emit the code necessary to
24 /// compute the offset from the base pointer (without adding in the base
25 /// pointer). Return the result as a signed integer of intptr size.
26 /// When NoAssumptions is true, no assumptions about index computation not
27 /// overflowing is made.
28 template <typename IRBuilderTy>
29 Value *EmitGEPOffset(IRBuilderTy *Builder, const DataLayout &DL, User *GEP,
30  bool NoAssumptions = false) {
31  GEPOperator *GEPOp = cast<GEPOperator>(GEP);
32  Type *IntPtrTy = DL.getIntPtrType(GEP->getType());
33  Value *Result = Constant::getNullValue(IntPtrTy);
34 
35  // If the GEP is inbounds, we know that none of the addressing operations will
36  // overflow in an unsigned sense.
37  bool isInBounds = GEPOp->isInBounds() && !NoAssumptions;
38 
39  // Build a mask for high order bits.
40  unsigned IntPtrWidth = IntPtrTy->getScalarType()->getIntegerBitWidth();
41  uint64_t PtrSizeMask =
42  std::numeric_limits<uint64_t>::max() >> (64 - IntPtrWidth);
43 
45  for (User::op_iterator i = GEP->op_begin() + 1, e = GEP->op_end(); i != e;
46  ++i, ++GTI) {
47  Value *Op = *i;
48  uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType()) & PtrSizeMask;
49  if (Constant *OpC = dyn_cast<Constant>(Op)) {
50  if (OpC->isZeroValue())
51  continue;
52 
53  // Handle a struct index, which adds its field offset to the pointer.
54  if (StructType *STy = GTI.getStructTypeOrNull()) {
55  if (OpC->getType()->isVectorTy())
56  OpC = OpC->getSplatValue();
57 
58  uint64_t OpValue = cast<ConstantInt>(OpC)->getZExtValue();
59  Size = DL.getStructLayout(STy)->getElementOffset(OpValue);
60 
61  if (Size)
62  Result = Builder->CreateAdd(Result, ConstantInt::get(IntPtrTy, Size),
63  GEP->getName()+".offs");
64  continue;
65  }
66 
67  Constant *Scale = ConstantInt::get(IntPtrTy, Size);
68  Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
69  Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
70  // Emit an add instruction.
71  Result = Builder->CreateAdd(Result, Scale, GEP->getName()+".offs");
72  continue;
73  }
74  // Convert to correct type.
75  if (Op->getType() != IntPtrTy)
76  Op = Builder->CreateIntCast(Op, IntPtrTy, true, Op->getName()+".c");
77  if (Size != 1) {
78  // We'll let instcombine(mul) convert this to a shl if possible.
79  Op = Builder->CreateMul(Op, ConstantInt::get(IntPtrTy, Size),
80  GEP->getName()+".idx", isInBounds /*NUW*/);
81  }
82 
83  // Emit an add instruction.
84  Result = Builder->CreateAdd(Op, Result, GEP->getName()+".offs");
85  }
86  return Result;
87 }
88 
89 }
90 
91 #endif // LLVM_TRANSFORMS_UTILS_LOCAL_H
Value * EmitGEPOffset(IRBuilderTy *Builder, const DataLayout &DL, User *GEP, bool NoAssumptions=false)
Given a getelementptr instruction/constantexpr, emit the code necessary to compute the offset from th...
Definition: Local.h:29
A parsed version of the target data layout string in and methods for querying it. ...
Definition: DataLayout.h:111
GCNRegPressure max(const GCNRegPressure &P1, const GCNRegPressure &P2)
This class represents lattice values for constants.
Definition: AllocatorList.h:24
const StructLayout * getStructLayout(StructType *Ty) const
Returns a StructLayout object, indicating the alignment of the struct, its size, and the offsets of i...
Definition: DataLayout.cpp:588
Hexagon Common GEP
op_iterator op_begin()
Definition: User.h:230
static Constant * getNullValue(Type *Ty)
Constructor to create a &#39;0&#39; constant of arbitrary type.
Definition: Constants.cpp:265
static Constant * getIntegerCast(Constant *C, Type *Ty, bool isSigned)
Create a ZExt, Bitcast or Trunc for integer -> integer casts.
Definition: Constants.cpp:1613
Class to represent struct types.
Definition: DerivedTypes.h:201
A Use represents the edge between a Value definition and its users.
Definition: Use.h:56
Type * getType() const
All values are typed, get the type of this value.
Definition: Value.h:245
bool isInBounds() const
Test whether this is an inbounds GEP, as defined by LangRef.html.
Definition: Operator.h:451
IntegerType * getIntPtrType(LLVMContext &C, unsigned AddressSpace=0) const
Returns an integer type with size at least as big as that of a pointer in the given address space...
Definition: DataLayout.cpp:750
The instances of the Type class are immutable: once they are created, they are never changed...
Definition: Type.h:46
This is an important base class in LLVM.
Definition: Constant.h:42
op_iterator op_end()
Definition: User.h:232
static Constant * get(Type *Ty, uint64_t V, bool isSigned=false)
If Ty is a vector type, return a Constant with a splat of the given value.
Definition: Constants.cpp:622
uint64_t getTypeAllocSize(Type *Ty) const
Returns the offset in bytes between successive objects of the specified type, including alignment pad...
Definition: DataLayout.h:436
uint64_t getElementOffset(unsigned Idx) const
Definition: DataLayout.h:551
StringRef getName() const
Return a constant reference to the value&#39;s name.
Definition: Value.cpp:214
uint32_t Size
Definition: Profile.cpp:47
LLVM Value Representation.
Definition: Value.h:73
static Constant * getMul(Constant *C1, Constant *C2, bool HasNUW=false, bool HasNSW=false)
Definition: Constants.cpp:2260
gep_type_iterator gep_type_begin(const User *GEP)