Use MCFillFragment for zero-initialized data.

It fixes PR16338 (ICE when compiling very large two-dimensional array).

Differential Revision: http://llvm-reviews.chandlerc.com/D1043


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185080 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Serge Pavlov 2013-06-27 14:35:03 +00:00
parent 31d2f08f88
commit b02f1e9a6b
5 changed files with 21 additions and 8 deletions

View File

@ -116,6 +116,7 @@ public:
virtual void EmitGPRel64Value(const MCExpr *Value); virtual void EmitGPRel64Value(const MCExpr *Value);
virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue, virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
unsigned AddrSpace = 0); unsigned AddrSpace = 0);
virtual void EmitZeros(uint64_t NumBytes, unsigned AddrSpace = 0);
virtual void FinishImpl(); virtual void FinishImpl();
/// @} /// @}

View File

@ -472,11 +472,9 @@ namespace llvm {
virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue, virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
unsigned AddrSpace = 0); unsigned AddrSpace = 0);
/// EmitZeros - Emit NumBytes worth of zeros. This is a convenience /// \brief EmitZeros - Emit NumBytes worth of zeros.
/// function that just wraps EmitFill. /// This function properly handles data in virtual sections.
void EmitZeros(uint64_t NumBytes, unsigned AddrSpace = 0) { virtual void EmitZeros(uint64_t NumBytes, unsigned AddrSpace = 0);
EmitFill(NumBytes, 0, AddrSpace);
}
/// EmitValueToAlignment - Emit some number of copies of @p Value until /// EmitValueToAlignment - Emit some number of copies of @p Value until
/// the byte alignment @p ByteAlignment is reached. /// the byte alignment @p ByteAlignment is reached.

View File

@ -708,12 +708,13 @@ void MCAssembler::writeSectionData(const MCSectionData *SD,
case MCFragment::FT_Align: case MCFragment::FT_Align:
// Check that we aren't trying to write a non-zero value into a virtual // Check that we aren't trying to write a non-zero value into a virtual
// section. // section.
assert((!cast<MCAlignFragment>(it)->getValueSize() || assert((cast<MCAlignFragment>(it)->getValueSize() == 0 ||
!cast<MCAlignFragment>(it)->getValue()) && cast<MCAlignFragment>(it)->getValue() == 0) &&
"Invalid align in virtual section!"); "Invalid align in virtual section!");
break; break;
case MCFragment::FT_Fill: case MCFragment::FT_Fill:
assert(!cast<MCFillFragment>(it)->getValueSize() && assert((cast<MCFillFragment>(it)->getValueSize() == 0 ||
cast<MCFillFragment>(it)->getValue() == 0) &&
"Invalid fill in virtual section!"); "Invalid fill in virtual section!");
break; break;
} }

View File

@ -18,6 +18,7 @@
#include "llvm/MC/MCExpr.h" #include "llvm/MC/MCExpr.h"
#include "llvm/MC/MCObjectWriter.h" #include "llvm/MC/MCObjectWriter.h"
#include "llvm/MC/MCSymbol.h" #include "llvm/MC/MCSymbol.h"
#include "llvm/MC/MCSection.h"
#include "llvm/Support/ErrorHandling.h" #include "llvm/Support/ErrorHandling.h"
using namespace llvm; using namespace llvm;
@ -374,6 +375,12 @@ void MCObjectStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
getOrCreateDataFragment()->getContents().append(NumBytes, FillValue); getOrCreateDataFragment()->getContents().append(NumBytes, FillValue);
} }
void MCObjectStreamer::EmitZeros(uint64_t NumBytes, unsigned AddrSpace) {
assert(AddrSpace == 0 && "Address space must be 0!");
unsigned ItemSize = getCurrentSection().first->isVirtualSection() ? 0 : 1;
insert(new MCFillFragment(0, ItemSize, NumBytes));
}
void MCObjectStreamer::FinishImpl() { void MCObjectStreamer::FinishImpl() {
// Dump out the dwarf file & directory tables and line tables. // Dump out the dwarf file & directory tables and line tables.
const MCSymbol *LineSectionSymbol = NULL; const MCSymbol *LineSectionSymbol = NULL;

View File

@ -154,6 +154,12 @@ void MCStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
EmitValue(E, 1, AddrSpace); EmitValue(E, 1, AddrSpace);
} }
/// EmitZeros - Emit NumBytes worth of zeros. Implementation in this class
/// just redirects to EmitFill.
void MCStreamer::EmitZeros(uint64_t NumBytes, unsigned AddrSpace) {
EmitFill(NumBytes, 0, AddrSpace);
}
bool MCStreamer::EmitDwarfFileDirective(unsigned FileNo, bool MCStreamer::EmitDwarfFileDirective(unsigned FileNo,
StringRef Directory, StringRef Directory,
StringRef Filename, unsigned CUID) { StringRef Filename, unsigned CUID) {