MC: Add MCAlignFragment::OnlyAlignAddress bit. This is a bit of magic that says the...
authorDaniel Dunbar <daniel@zuster.org>
Thu, 13 May 2010 01:10:26 +0000 (01:10 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Thu, 13 May 2010 01:10:26 +0000 (01:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103690 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCAssembler.h
lib/MC/MCAssembler.cpp

index b641b0241d80806d80feba5702dcb6498748b523..8918dbbb3c3d02ea344b0447f3327aa30fec5e4d 100644 (file)
@@ -258,12 +258,19 @@ class MCAlignFragment : public MCFragment {
   /// target dependent.
   bool EmitNops : 1;
 
+  /// OnlyAlignAddress - Flag to indicate that this align is only used to adjust
+  /// the address space size of a section and that it should not be included as
+  /// part of the section size. This flag can only be used on the last fragment
+  /// in a section.
+  bool OnlyAlignAddress : 1;
+
 public:
   MCAlignFragment(unsigned _Alignment, int64_t _Value, unsigned _ValueSize,
                   unsigned _MaxBytesToEmit, MCSectionData *SD = 0)
     : MCFragment(FT_Align, SD), Alignment(_Alignment),
       Value(_Value),ValueSize(_ValueSize),
-      MaxBytesToEmit(_MaxBytesToEmit), EmitNops(false) {}
+      MaxBytesToEmit(_MaxBytesToEmit), EmitNops(false),
+      OnlyAlignAddress(false) {}
 
   /// @name Accessors
   /// @{
@@ -279,6 +286,9 @@ public:
   bool hasEmitNops() const { return EmitNops; }
   void setEmitNops(bool Value) { EmitNops = Value; }
 
+  bool hasOnlyAlignAddress() const { return OnlyAlignAddress; }
+  void setOnlyAlignAddress(bool Value) { OnlyAlignAddress = Value; }
+
   /// @}
 
   static bool classof(const MCFragment *F) {
index ced395c517094761b849dc37c9018319f1ea760d..8086b3d4aea74c8c119537cad72b6ec3fac75900 100644 (file)
@@ -392,6 +392,9 @@ void MCAssembler::LayoutFragment(MCAsmLayout &Layout, MCFragment &F) {
   case MCFragment::FT_Align: {
     MCAlignFragment &AF = cast<MCAlignFragment>(F);
 
+    assert((!AF.hasOnlyAlignAddress() || !AF.getNextNode()) &&
+           "Invalid OnlyAlignAddress bit, not the last fragment!");
+
     EffectiveSize = OffsetToAlignment(Address, AF.getAlignment());
     if (EffectiveSize > AF.getMaxBytesToEmit())
       EffectiveSize = 0;
@@ -474,9 +477,18 @@ void MCAssembler::LayoutSection(MCAsmLayout &Layout,
     MCFragment *F = &SD.getFragmentList().back();
     Size = Layout.getFragmentOffset(F) + Layout.getFragmentEffectiveSize(F);
   }
-  Layout.setSectionSize(&SD, Size);
   Layout.setSectionAddressSize(&SD, Size);
   Layout.setSectionFileSize(&SD, IsVirtual ? 0 : Size);
+
+  // Handle OnlyAlignAddress bit.
+  if (!SD.getFragmentList().empty()) {
+    MCAlignFragment *AF =
+      dyn_cast<MCAlignFragment>(&SD.getFragmentList().back());
+    if (AF && AF->hasOnlyAlignAddress())
+      Size -= Layout.getFragmentEffectiveSize(AF);
+  }
+
+  Layout.setSectionSize(&SD, Size);
 }
 
 /// WriteFragmentData - Write the \arg F data to the output file.
@@ -856,6 +868,10 @@ void MCAlignFragment::dump() {
 
   OS << "<MCAlignFragment ";
   this->MCFragment::dump();
+  if (hasEmitNops())
+    OS << " (emit nops)";
+  if (hasOnlyAlignAddress())
+    OS << " (only align section)";
   OS << "\n       ";
   OS << " Alignment:" << getAlignment()
      << " Value:" << getValue() << " ValueSize:" << getValueSize()