1 //===-- Operator.cpp - Implement the LLVM operators -----------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file implements the non-inline methods for the LLVM Operator classes. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "llvm/IR/Operator.h" 14 #include "llvm/IR/DataLayout.h" 15 #include "llvm/IR/GetElementPtrTypeIterator.h" 16 #include "llvm/IR/Instructions.h" 17 #include "llvm/IR/Type.h" 18 19 #include "ConstantsContext.h" 20 21 namespace llvm { 22 Type *GEPOperator::getSourceElementType() const { 23 if (auto *I = dyn_cast<GetElementPtrInst>(this)) 24 return I->getSourceElementType(); 25 return cast<GetElementPtrConstantExpr>(this)->getSourceElementType(); 26 } 27 28 Type *GEPOperator::getResultElementType() const { 29 if (auto *I = dyn_cast<GetElementPtrInst>(this)) 30 return I->getResultElementType(); 31 return cast<GetElementPtrConstantExpr>(this)->getResultElementType(); 32 } 33 34 Align GEPOperator::getMaxPreservedAlignment(const DataLayout &DL) const { 35 /// compute the worse possible offset for every level of the GEP et accumulate 36 /// the minimum alignment into Result. 37 38 Align Result = Align(llvm::Value::MaximumAlignment); 39 for (gep_type_iterator GTI = gep_type_begin(this), GTE = gep_type_end(this); 40 GTI != GTE; ++GTI) { 41 int64_t Offset = 1; 42 ConstantInt *OpC = dyn_cast<ConstantInt>(GTI.getOperand()); 43 44 if (StructType *STy = GTI.getStructTypeOrNull()) { 45 const StructLayout *SL = DL.getStructLayout(STy); 46 Offset = SL->getElementOffset(OpC->getZExtValue()); 47 } else { 48 assert(GTI.isSequential() && "should be sequencial"); 49 /// If the index isn't know we take 1 because it is the index that will 50 /// give the worse alignment of the offset. 51 int64_t ElemCount = 1; 52 if (OpC) 53 ElemCount = OpC->getZExtValue(); 54 Offset = DL.getTypeAllocSize(GTI.getIndexedType()) * ElemCount; 55 } 56 Result = Align(MinAlign(Offset, Result.value())); 57 } 58 return Result; 59 } 60 61 bool GEPOperator::accumulateConstantOffset( 62 const DataLayout &DL, APInt &Offset, 63 function_ref<bool(Value &, APInt &)> ExternalAnalysis) const { 64 assert(Offset.getBitWidth() == 65 DL.getIndexSizeInBits(getPointerAddressSpace()) && 66 "The offset bit width does not match DL specification."); 67 SmallVector<const Value *> Index(value_op_begin() + 1, value_op_end()); 68 return GEPOperator::accumulateConstantOffset(getSourceElementType(), Index, 69 DL, Offset, ExternalAnalysis); 70 } 71 72 bool GEPOperator::accumulateConstantOffset( 73 Type *SourceType, ArrayRef<const Value *> Index, const DataLayout &DL, 74 APInt &Offset, function_ref<bool(Value &, APInt &)> ExternalAnalysis) { 75 bool UsedExternalAnalysis = false; 76 auto AccumulateOffset = [&](APInt Index, uint64_t Size) -> bool { 77 Index = Index.sextOrTrunc(Offset.getBitWidth()); 78 APInt IndexedSize = APInt(Offset.getBitWidth(), Size); 79 // For array or vector indices, scale the index by the size of the type. 80 if (!UsedExternalAnalysis) { 81 Offset += Index * IndexedSize; 82 } else { 83 // External Analysis can return a result higher/lower than the value 84 // represents. We need to detect overflow/underflow. 85 bool Overflow = false; 86 APInt OffsetPlus = Index.smul_ov(IndexedSize, Overflow); 87 if (Overflow) 88 return false; 89 Offset = Offset.sadd_ov(OffsetPlus, Overflow); 90 if (Overflow) 91 return false; 92 } 93 return true; 94 }; 95 auto begin = generic_gep_type_iterator<decltype(Index.begin())>::begin( 96 SourceType, Index.begin()); 97 auto end = generic_gep_type_iterator<decltype(Index.end())>::end(Index.end()); 98 for (auto GTI = begin, GTE = end; GTI != GTE; ++GTI) { 99 // Scalable vectors are multiplied by a runtime constant. 100 bool ScalableType = false; 101 if (isa<ScalableVectorType>(GTI.getIndexedType())) 102 ScalableType = true; 103 104 Value *V = GTI.getOperand(); 105 StructType *STy = GTI.getStructTypeOrNull(); 106 // Handle ConstantInt if possible. 107 if (auto ConstOffset = dyn_cast<ConstantInt>(V)) { 108 if (ConstOffset->isZero()) 109 continue; 110 // if the type is scalable and the constant is not zero (vscale * n * 0 = 111 // 0) bailout. 112 if (ScalableType) 113 return false; 114 // Handle a struct index, which adds its field offset to the pointer. 115 if (STy) { 116 unsigned ElementIdx = ConstOffset->getZExtValue(); 117 const StructLayout *SL = DL.getStructLayout(STy); 118 // Element offset is in bytes. 119 if (!AccumulateOffset( 120 APInt(Offset.getBitWidth(), SL->getElementOffset(ElementIdx)), 121 1)) 122 return false; 123 continue; 124 } 125 if (!AccumulateOffset(ConstOffset->getValue(), 126 DL.getTypeAllocSize(GTI.getIndexedType()))) 127 return false; 128 continue; 129 } 130 131 // The operand is not constant, check if an external analysis was provided. 132 // External analsis is not applicable to a struct type. 133 if (!ExternalAnalysis || STy || ScalableType) 134 return false; 135 APInt AnalysisIndex; 136 if (!ExternalAnalysis(*V, AnalysisIndex)) 137 return false; 138 UsedExternalAnalysis = true; 139 if (!AccumulateOffset(AnalysisIndex, 140 DL.getTypeAllocSize(GTI.getIndexedType()))) 141 return false; 142 } 143 return true; 144 } 145 } // namespace llvm 146