@@ -2850,24 +2850,22 @@ bool ConstantDataSequential::isElementTypeCompatible(Type *Ty) {
2850
2850
return false;
2851
2851
}
2852
2852
2853
- unsigned ConstantDataSequential::getNumElements() const {
2853
+ uint64_t ConstantDataSequential::getNumElements() const {
2854
2854
if (ArrayType *AT = dyn_cast<ArrayType>(getType()))
2855
2855
return AT->getNumElements();
2856
2856
return cast<FixedVectorType>(getType())->getNumElements();
2857
2857
}
2858
2858
2859
-
2860
2859
uint64_t ConstantDataSequential::getElementByteSize() const {
2861
- return getElementType()->getPrimitiveSizeInBits()/ 8;
2860
+ return getElementType()->getPrimitiveSizeInBits() / 8;
2862
2861
}
2863
2862
2864
2863
/// Return the start of the specified element.
2865
- const char *ConstantDataSequential::getElementPointer(unsigned Elt) const {
2864
+ const char *ConstantDataSequential::getElementPointer(uint64_t Elt) const {
2866
2865
assert(Elt < getNumElements() && "Invalid Elt");
2867
- return DataElements+ Elt* getElementByteSize();
2866
+ return DataElements + Elt * getElementByteSize();
2868
2867
}
2869
2868
2870
-
2871
2869
/// Return true if the array is empty or all zeros.
2872
2870
static bool isAllZeros(StringRef Arr) {
2873
2871
for (char I : Arr)
@@ -3106,8 +3104,7 @@ Constant *ConstantDataVector::getSplat(unsigned NumElts, Constant *V) {
3106
3104
return ConstantVector::getSplat(ElementCount::getFixed(NumElts), V);
3107
3105
}
3108
3106
3109
-
3110
- uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
3107
+ uint64_t ConstantDataSequential::getElementAsInteger(uint64_t Elt) const {
3111
3108
assert(isa<IntegerType>(getElementType()) &&
3112
3109
"Accessor can only be used when element is an integer");
3113
3110
const char *EltPtr = getElementPointer(Elt);
@@ -3127,7 +3124,7 @@ uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
3127
3124
}
3128
3125
}
3129
3126
3130
- APInt ConstantDataSequential::getElementAsAPInt(unsigned Elt) const {
3127
+ APInt ConstantDataSequential::getElementAsAPInt(uint64_t Elt) const {
3131
3128
assert(isa<IntegerType>(getElementType()) &&
3132
3129
"Accessor can only be used when element is an integer");
3133
3130
const char *EltPtr = getElementPointer(Elt);
@@ -3155,7 +3152,7 @@ APInt ConstantDataSequential::getElementAsAPInt(unsigned Elt) const {
3155
3152
}
3156
3153
}
3157
3154
3158
- APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
3155
+ APFloat ConstantDataSequential::getElementAsAPFloat(uint64_t Elt) const {
3159
3156
const char *EltPtr = getElementPointer(Elt);
3160
3157
3161
3158
switch (getElementType()->getTypeID()) {
@@ -3180,19 +3177,19 @@ APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
3180
3177
}
3181
3178
}
3182
3179
3183
- float ConstantDataSequential::getElementAsFloat(unsigned Elt) const {
3180
+ float ConstantDataSequential::getElementAsFloat(uint64_t Elt) const {
3184
3181
assert(getElementType()->isFloatTy() &&
3185
3182
"Accessor can only be used when element is a 'float'");
3186
3183
return *reinterpret_cast<const float *>(getElementPointer(Elt));
3187
3184
}
3188
3185
3189
- double ConstantDataSequential::getElementAsDouble(unsigned Elt) const {
3186
+ double ConstantDataSequential::getElementAsDouble(uint64_t Elt) const {
3190
3187
assert(getElementType()->isDoubleTy() &&
3191
3188
"Accessor can only be used when element is a 'float'");
3192
3189
return *reinterpret_cast<const double *>(getElementPointer(Elt));
3193
3190
}
3194
3191
3195
- Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const {
3192
+ Constant *ConstantDataSequential::getElementAsConstant(uint64_t Elt) const {
3196
3193
if (getElementType()->isHalfTy() || getElementType()->isBFloatTy() ||
3197
3194
getElementType()->isFloatTy() || getElementType()->isDoubleTy())
3198
3195
return ConstantFP::get(getContext(), getElementAsAPFloat(Elt));
0 commit comments