Skip to content

Commit 8e18416

Browse files
zhoupeng12pzzp
zhoupeng12
authored andcommitted
[llvm:ir] Add support for constant data exceeding 4GiB
1 parent 161cfc6 commit 8e18416

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

clang/lib/CodeGen/CGExprConstant.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -364,13 +364,13 @@ 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()),
367+
llvm::map_range(llvm::seq(uint64_t(0u), CDS->getNumElements()),
368368
[&](unsigned Elem) {
369369
return CDS->getElementAsConstant(Elem);
370370
}));
371371
replace(Offsets, Index, Index + 1,
372372
llvm::map_range(
373-
llvm::seq(0u, CDS->getNumElements()),
373+
llvm::seq(uint64_t(0u), CDS->getNumElements()),
374374
[&](unsigned Elem) { return Offset + Elem * ElemSize; }));
375375
return true;
376376
}

llvm/include/llvm/IR/Constants.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ class ConstantDataSequential : public ConstantData {
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.

llvm/lib/Bitcode/Writer/BitcodeWriter.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -2773,7 +2773,7 @@ void ModuleBitcodeWriter::writeConstants(unsigned FirstVal, unsigned LastVal,
27732773
cast<ConstantDataSequential>(C)->isString()) {
27742774
const ConstantDataSequential *Str = cast<ConstantDataSequential>(C);
27752775
// Emit constant strings specially.
2776-
unsigned NumElts = Str->getNumElements();
2776+
uint64_t NumElts = Str->getNumElements();
27772777
// If this is a null-terminated string, use the denser CSTRING encoding.
27782778
if (Str->isCString()) {
27792779
Code = bitc::CST_CODE_CSTRING;
@@ -2801,10 +2801,10 @@ void ModuleBitcodeWriter::writeConstants(unsigned FirstVal, unsigned LastVal,
28012801
Code = bitc::CST_CODE_DATA;
28022802
Type *EltTy = CDS->getElementType();
28032803
if (isa<IntegerType>(EltTy)) {
2804-
for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i)
2804+
for (uint64_t i = 0, e = CDS->getNumElements(); i != e; ++i)
28052805
Record.push_back(CDS->getElementAsInteger(i));
28062806
} else {
2807-
for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i)
2807+
for (uint64_t i = 0, e = CDS->getNumElements(); i != e; ++i)
28082808
Record.push_back(
28092809
CDS->getElementAsAPFloat(i).bitcastToAPInt().getLimitedValue());
28102810
}

llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp

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

36303630
// Otherwise, emit the values in successive locations.
3631-
unsigned ElementByteSize = CDS->getElementByteSize();
3631+
uint64_t ElementByteSize = CDS->getElementByteSize();
36323632
if (isa<IntegerType>(CDS->getElementType())) {
3633-
for (unsigned I = 0, E = CDS->getNumElements(); I != E; ++I) {
3633+
for (uint64_t I = 0, E = CDS->getNumElements(); I != E; ++I) {
36343634
emitGlobalAliasInline(AP, ElementByteSize * I, AliasList);
36353635
if (AP.isVerbose())
36363636
AP.OutStreamer->getCommentOS()
@@ -3640,7 +3640,7 @@ static void emitGlobalConstantDataSequential(
36403640
}
36413641
} else {
36423642
Type *ET = CDS->getElementType();
3643-
for (unsigned I = 0, E = CDS->getNumElements(); I != E; ++I) {
3643+
for (uint64_t I = 0, E = CDS->getNumElements(); I != E; ++I) {
36443644
emitGlobalAliasInline(AP, ElementByteSize * I, AliasList);
36453645
emitGlobalConstantFP(CDS->getElementAsAPFloat(I), ET, AP);
36463646
}

llvm/lib/IR/Constants.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2855,7 +2855,7 @@ bool ConstantDataSequential::isElementTypeCompatible(Type *Ty) {
28552855
return false;
28562856
}
28572857

2858-
unsigned ConstantDataSequential::getNumElements() const {
2858+
uint64_t ConstantDataSequential::getNumElements() const {
28592859
if (ArrayType *AT = dyn_cast<ArrayType>(getType()))
28602860
return AT->getNumElements();
28612861
return cast<FixedVectorType>(getType())->getNumElements();

llvm/lib/Target/X86/X86MCInstLower.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1583,7 +1583,7 @@ static void printConstant(const Constant *COp, unsigned BitWidth,
15831583
bool IsInteger = EltTy->isIntegerTy();
15841584
bool IsFP = EltTy->isHalfTy() || EltTy->isFloatTy() || EltTy->isDoubleTy();
15851585
unsigned EltBits = EltTy->getPrimitiveSizeInBits();
1586-
unsigned E = std::min(BitWidth / EltBits, CDS->getNumElements());
1586+
unsigned E = std::min(BitWidth / EltBits, (unsigned)CDS->getNumElements());
15871587
assert((BitWidth % EltBits) == 0 && "Element size mismatch");
15881588
for (unsigned I = 0; I != E; ++I) {
15891589
if (I != 0)

0 commit comments

Comments
 (0)