Skip to content

Commit 85c7d8e

Browse files
committed
[llvm:ir] Add support for constant data exceeding 4GiB
1 parent 92fc748 commit 85c7d8e

File tree

11 files changed

+36
-39
lines changed

11 files changed

+36
-39
lines changed

clang/lib/CodeGen/CGExprConstant.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -364,14 +364,14 @@ bool ConstantAggregateBuilder::split(size_t Index, CharUnits Hint) {
364364
// FIXME: If possible, split into two ConstantDataSequentials at Hint.
365365
CharUnits ElemSize = getSize(CDS->getElementType());
366366
replace(Elems, Index, Index + 1,
367-
llvm::map_range(llvm::seq(0u, CDS->getNumElements()),
368-
[&](unsigned Elem) {
367+
llvm::map_range(llvm::seq(uint64_t(0u), CDS->getNumElements()),
368+
[&](uint64_t Elem) {
369369
return CDS->getElementAsConstant(Elem);
370370
}));
371371
replace(Offsets, Index, Index + 1,
372372
llvm::map_range(
373-
llvm::seq(0u, CDS->getNumElements()),
374-
[&](unsigned Elem) { return Offset + Elem * ElemSize; }));
373+
llvm::seq(uint64_t(0u), CDS->getNumElements()),
374+
[&](uint64_t Elem) { return Offset + Elem * ElemSize; }));
375375
return true;
376376
}
377377

llvm/include/llvm/IR/Constants.h

+8-8
Original file line numberDiff line numberDiff line change
@@ -617,34 +617,34 @@ class ConstantDataSequential : public ConstantData {
617617

618618
/// If this is a sequential container of integers (of any size), return the
619619
/// specified element in the low bits of a uint64_t.
620-
uint64_t getElementAsInteger(unsigned i) const;
620+
uint64_t getElementAsInteger(uint64_t i) const;
621621

622622
/// If this is a sequential container of integers (of any size), return the
623623
/// specified element as an APInt.
624-
APInt getElementAsAPInt(unsigned i) const;
624+
APInt getElementAsAPInt(uint64_t i) const;
625625

626626
/// If this is a sequential container of floating point type, return the
627627
/// specified element as an APFloat.
628-
APFloat getElementAsAPFloat(unsigned i) const;
628+
APFloat getElementAsAPFloat(uint64_t i) const;
629629

630630
/// If this is an sequential container of floats, return the specified element
631631
/// as a float.
632-
float getElementAsFloat(unsigned i) const;
632+
float getElementAsFloat(uint64_t i) const;
633633

634634
/// If this is an sequential container of doubles, return the specified
635635
/// element as a double.
636-
double getElementAsDouble(unsigned i) const;
636+
double getElementAsDouble(uint64_t i) const;
637637

638638
/// Return a Constant for a specified index's element.
639639
/// Note that this has to compute a new constant to return, so it isn't as
640640
/// efficient as getElementAsInteger/Float/Double.
641-
Constant *getElementAsConstant(unsigned i) const;
641+
Constant *getElementAsConstant(uint64_t i) const;
642642

643643
/// Return the element type of the array/vector.
644644
Type *getElementType() const;
645645

646646
/// Return the number of elements in the array or vector.
647-
unsigned getNumElements() const;
647+
uint64_t getNumElements() const;
648648

649649
/// Return the size (in bytes) of each element in the array/vector.
650650
/// The size of the elements is known to be a multiple of one byte.
@@ -684,7 +684,7 @@ class ConstantDataSequential : public ConstantData {
684684
}
685685

686686
private:
687-
const char *getElementPointer(unsigned Elt) const;
687+
const char *getElementPointer(uint64_t Elt) const;
688688
};
689689

690690
//===----------------------------------------------------------------------===//

llvm/lib/Analysis/TargetTransformInfo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ TargetTransformInfo::getOperandInfo(const Value *V) {
919919
} else if (const auto *CDS = dyn_cast<ConstantDataSequential>(V)) {
920920
OpInfo = OK_NonUniformConstantValue;
921921
bool AllPow2 = true, AllNegPow2 = true;
922-
for (unsigned I = 0, E = CDS->getNumElements(); I != E; ++I) {
922+
for (uint64_t I = 0, E = CDS->getNumElements(); I != E; ++I) {
923923
if (auto *CI = dyn_cast<ConstantInt>(CDS->getElementAsConstant(I))) {
924924
AllPow2 &= CI->getValue().isPowerOf2();
925925
AllNegPow2 &= CI->getValue().isNegatedPowerOf2();

llvm/lib/Analysis/ValueTracking.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6355,7 +6355,7 @@ Value *llvm::isBytewiseValue(Value *V, const DataLayout &DL) {
63556355

63566356
if (ConstantDataSequential *CA = dyn_cast<ConstantDataSequential>(C)) {
63576357
Value *Val = UndefInt8;
6358-
for (unsigned I = 0, E = CA->getNumElements(); I != E; ++I)
6358+
for (uint64_t I = 0, E = CA->getNumElements(); I != E; ++I)
63596359
if (!(Val = Merge(Val, isBytewiseValue(CA->getElementAsConstant(I), DL))))
63606360
return nullptr;
63616361
return Val;

llvm/lib/Bitcode/Writer/BitcodeWriter.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -2803,7 +2803,7 @@ void ModuleBitcodeWriter::writeConstants(unsigned FirstVal, unsigned LastVal,
28032803
cast<ConstantDataSequential>(C)->isString()) {
28042804
const ConstantDataSequential *Str = cast<ConstantDataSequential>(C);
28052805
// Emit constant strings specially.
2806-
unsigned NumElts = Str->getNumElements();
2806+
uint64_t NumElts = Str->getNumElements();
28072807
// If this is a null-terminated string, use the denser CSTRING encoding.
28082808
if (Str->isCString()) {
28092809
Code = bitc::CST_CODE_CSTRING;
@@ -2814,7 +2814,7 @@ void ModuleBitcodeWriter::writeConstants(unsigned FirstVal, unsigned LastVal,
28142814
}
28152815
bool isCStr7 = Code == bitc::CST_CODE_CSTRING;
28162816
bool isCStrChar6 = Code == bitc::CST_CODE_CSTRING;
2817-
for (unsigned i = 0; i != NumElts; ++i) {
2817+
for (uint64_t i = 0; i != NumElts; ++i) {
28182818
unsigned char V = Str->getElementAsInteger(i);
28192819
Record.push_back(V);
28202820
isCStr7 &= (V & 128) == 0;
@@ -2831,10 +2831,10 @@ void ModuleBitcodeWriter::writeConstants(unsigned FirstVal, unsigned LastVal,
28312831
Code = bitc::CST_CODE_DATA;
28322832
Type *EltTy = CDS->getElementType();
28332833
if (isa<IntegerType>(EltTy)) {
2834-
for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i)
2834+
for (uint64_t i = 0, e = CDS->getNumElements(); i != e; ++i)
28352835
Record.push_back(CDS->getElementAsInteger(i));
28362836
} else {
2837-
for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i)
2837+
for (uint64_t i = 0, e = CDS->getNumElements(); i != e; ++i)
28382838
Record.push_back(
28392839
CDS->getElementAsAPFloat(i).bitcastToAPInt().getLimitedValue());
28402840
}

llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -3612,9 +3612,9 @@ static void emitGlobalConstantDataSequential(
36123612
return AP.OutStreamer->emitBytes(CDS->getAsString());
36133613

36143614
// Otherwise, emit the values in successive locations.
3615-
unsigned ElementByteSize = CDS->getElementByteSize();
3615+
uint64_t ElementByteSize = CDS->getElementByteSize();
36163616
if (isa<IntegerType>(CDS->getElementType())) {
3617-
for (unsigned I = 0, E = CDS->getNumElements(); I != E; ++I) {
3617+
for (uint64_t I = 0, E = CDS->getNumElements(); I != E; ++I) {
36183618
emitGlobalAliasInline(AP, ElementByteSize * I, AliasList);
36193619
if (AP.isVerbose())
36203620
AP.OutStreamer->getCommentOS()
@@ -3624,7 +3624,7 @@ static void emitGlobalConstantDataSequential(
36243624
}
36253625
} else {
36263626
Type *ET = CDS->getElementType();
3627-
for (unsigned I = 0, E = CDS->getNumElements(); I != E; ++I) {
3627+
for (uint64_t I = 0, E = CDS->getNumElements(); I != E; ++I) {
36283628
emitGlobalAliasInline(AP, ElementByteSize * I, AliasList);
36293629
emitGlobalConstantFP(CDS->getElementAsAPFloat(I), ET, AP);
36303630
}

llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1844,7 +1844,7 @@ SDValue SelectionDAGBuilder::getValueImpl(const Value *V) {
18441844
if (const ConstantDataSequential *CDS =
18451845
dyn_cast<ConstantDataSequential>(C)) {
18461846
SmallVector<SDValue, 4> Ops;
1847-
for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) {
1847+
for (uint64_t i = 0, e = CDS->getNumElements(); i != e; ++i) {
18481848
SDNode *Val = getValue(CDS->getElementAsConstant(i)).getNode();
18491849
// Add each leaf value from the operand to the Constants list
18501850
// to form a flattened list of all the values.

llvm/lib/IR/AsmWriter.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1679,7 +1679,7 @@ static void WriteConstantInternal(raw_ostream &Out, const Constant *CV,
16791679
WriterCtx.TypePrinter->print(ETy, Out);
16801680
Out << ' ';
16811681
WriteAsOperandInternal(Out, CA->getElementAsConstant(0), WriterCtx);
1682-
for (unsigned i = 1, e = CA->getNumElements(); i != e; ++i) {
1682+
for (uint64_t i = 1, e = CA->getNumElements(); i != e; ++i) {
16831683
Out << ", ";
16841684
WriterCtx.TypePrinter->print(ETy, Out);
16851685
Out << ' ';

llvm/lib/IR/Constants.cpp

+10-13
Original file line numberDiff line numberDiff line change
@@ -2850,24 +2850,22 @@ bool ConstantDataSequential::isElementTypeCompatible(Type *Ty) {
28502850
return false;
28512851
}
28522852

2853-
unsigned ConstantDataSequential::getNumElements() const {
2853+
uint64_t ConstantDataSequential::getNumElements() const {
28542854
if (ArrayType *AT = dyn_cast<ArrayType>(getType()))
28552855
return AT->getNumElements();
28562856
return cast<FixedVectorType>(getType())->getNumElements();
28572857
}
28582858

2859-
28602859
uint64_t ConstantDataSequential::getElementByteSize() const {
2861-
return getElementType()->getPrimitiveSizeInBits()/8;
2860+
return getElementType()->getPrimitiveSizeInBits() / 8;
28622861
}
28632862

28642863
/// Return the start of the specified element.
2865-
const char *ConstantDataSequential::getElementPointer(unsigned Elt) const {
2864+
const char *ConstantDataSequential::getElementPointer(uint64_t Elt) const {
28662865
assert(Elt < getNumElements() && "Invalid Elt");
2867-
return DataElements+Elt*getElementByteSize();
2866+
return DataElements + Elt * getElementByteSize();
28682867
}
28692868

2870-
28712869
/// Return true if the array is empty or all zeros.
28722870
static bool isAllZeros(StringRef Arr) {
28732871
for (char I : Arr)
@@ -3106,8 +3104,7 @@ Constant *ConstantDataVector::getSplat(unsigned NumElts, Constant *V) {
31063104
return ConstantVector::getSplat(ElementCount::getFixed(NumElts), V);
31073105
}
31083106

3109-
3110-
uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
3107+
uint64_t ConstantDataSequential::getElementAsInteger(uint64_t Elt) const {
31113108
assert(isa<IntegerType>(getElementType()) &&
31123109
"Accessor can only be used when element is an integer");
31133110
const char *EltPtr = getElementPointer(Elt);
@@ -3127,7 +3124,7 @@ uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
31273124
}
31283125
}
31293126

3130-
APInt ConstantDataSequential::getElementAsAPInt(unsigned Elt) const {
3127+
APInt ConstantDataSequential::getElementAsAPInt(uint64_t Elt) const {
31313128
assert(isa<IntegerType>(getElementType()) &&
31323129
"Accessor can only be used when element is an integer");
31333130
const char *EltPtr = getElementPointer(Elt);
@@ -3155,7 +3152,7 @@ APInt ConstantDataSequential::getElementAsAPInt(unsigned Elt) const {
31553152
}
31563153
}
31573154

3158-
APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
3155+
APFloat ConstantDataSequential::getElementAsAPFloat(uint64_t Elt) const {
31593156
const char *EltPtr = getElementPointer(Elt);
31603157

31613158
switch (getElementType()->getTypeID()) {
@@ -3180,19 +3177,19 @@ APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
31803177
}
31813178
}
31823179

3183-
float ConstantDataSequential::getElementAsFloat(unsigned Elt) const {
3180+
float ConstantDataSequential::getElementAsFloat(uint64_t Elt) const {
31843181
assert(getElementType()->isFloatTy() &&
31853182
"Accessor can only be used when element is a 'float'");
31863183
return *reinterpret_cast<const float *>(getElementPointer(Elt));
31873184
}
31883185

3189-
double ConstantDataSequential::getElementAsDouble(unsigned Elt) const {
3186+
double ConstantDataSequential::getElementAsDouble(uint64_t Elt) const {
31903187
assert(getElementType()->isDoubleTy() &&
31913188
"Accessor can only be used when element is a 'float'");
31923189
return *reinterpret_cast<const double *>(getElementPointer(Elt));
31933190
}
31943191

3195-
Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const {
3192+
Constant *ConstantDataSequential::getElementAsConstant(uint64_t Elt) const {
31963193
if (getElementType()->isHalfTy() || getElementType()->isBFloatTy() ||
31973194
getElementType()->isFloatTy() || getElementType()->isDoubleTy())
31983195
return ConstantFP::get(getContext(), getElementAsAPFloat(Elt));

llvm/lib/Target/TargetLoweringObjectFile.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,14 @@ static bool isSuitableForBSS(const GlobalVariable *GV) {
104104
static bool IsNullTerminatedString(const Constant *C) {
105105
// First check: is we have constant array terminated with zero
106106
if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(C)) {
107-
unsigned NumElts = CDS->getNumElements();
107+
uint64_t NumElts = CDS->getNumElements();
108108
assert(NumElts != 0 && "Can't have an empty CDS");
109109

110110
if (CDS->getElementAsInteger(NumElts-1) != 0)
111111
return false; // Not null terminated.
112112

113113
// Verify that the null doesn't occur anywhere else in the string.
114-
for (unsigned i = 0; i != NumElts-1; ++i)
114+
for (uint64_t i = 0; i != NumElts - 1; ++i)
115115
if (CDS->getElementAsInteger(i) == 0)
116116
return false;
117117
return true;

llvm/lib/Target/X86/X86MCInstLower.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1581,7 +1581,7 @@ static void printConstant(const Constant *COp, unsigned BitWidth,
15811581
bool IsInteger = EltTy->isIntegerTy();
15821582
bool IsFP = EltTy->isHalfTy() || EltTy->isFloatTy() || EltTy->isDoubleTy();
15831583
unsigned EltBits = EltTy->getPrimitiveSizeInBits();
1584-
unsigned E = std::min(BitWidth / EltBits, CDS->getNumElements());
1584+
unsigned E = std::min(BitWidth / EltBits, (unsigned)CDS->getNumElements());
15851585
if ((BitWidth % EltBits) == 0) {
15861586
for (unsigned I = 0; I != E; ++I) {
15871587
if (I != 0)

0 commit comments

Comments
 (0)