diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-05-14 00:37:11 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-05-14 00:37:11 +0000 |
commit | afc6acdab7ba3544d76329ab461f14a93cee67a2 (patch) | |
tree | 5b55ab86d883dcb8a74cd490947a5efad0c2edf9 /lib | |
parent | 7f687195175f01d820eea70e8a647a61d5b99fce (diff) |
MC: Change LayoutSection() to only do the section initializiation.
Also, elimminate MCAsmLayout::set*, which are no longer needed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103750 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/MC/MCAssembler.cpp | 38 |
1 files changed, 13 insertions, 25 deletions
diff --git a/lib/MC/MCAssembler.cpp b/lib/MC/MCAssembler.cpp index 38994e777e..57214af296 100644 --- a/lib/MC/MCAssembler.cpp +++ b/lib/MC/MCAssembler.cpp @@ -87,19 +87,11 @@ uint64_t MCAsmLayout::getFragmentEffectiveSize(const MCFragment *F) const { return F->EffectiveSize; } -void MCAsmLayout::setFragmentEffectiveSize(MCFragment *F, uint64_t Value) { - F->EffectiveSize = Value; -} - uint64_t MCAsmLayout::getFragmentOffset(const MCFragment *F) const { assert(F->Offset != ~UINT64_C(0) && "Address not set!"); return F->Offset; } -void MCAsmLayout::setFragmentOffset(MCFragment *F, uint64_t Value) { - F->Offset = Value; -} - uint64_t MCAsmLayout::getSymbolAddress(const MCSymbolData *SD) const { assert(SD->getFragment() && "Invalid getAddress() on undefined symbol!"); return getFragmentAddress(SD->getFragment()) + SD->getOffset(); @@ -110,12 +102,8 @@ uint64_t MCAsmLayout::getSectionAddress(const MCSectionData *SD) const { return SD->Address; } -void MCAsmLayout::setSectionAddress(MCSectionData *SD, uint64_t Value) { - SD->Address = Value; -} - uint64_t MCAsmLayout::getSectionAddressSize(const MCSectionData *SD) const { - // Otherwise, the size is the last fragment's end offset. + // The size is the last fragment's end offset. const MCFragment &F = SD->getFragmentList().back(); return getFragmentOffset(&F) + getFragmentEffectiveSize(&F); } @@ -426,8 +414,14 @@ uint64_t MCAssembler::ComputeFragmentSize(MCAsmLayout &Layout, } void MCAsmLayout::LayoutFile() { - for (unsigned i = 0, e = getSectionOrder().size(); i != e; ++i) - LayoutSection(getSectionOrder()[i]); + for (unsigned i = 0, e = getSectionOrder().size(); i != e; ++i) { + MCSectionData *SD = getSectionOrder()[i]; + + LayoutSection(SD); + for (MCSectionData::iterator it = SD->begin(), + ie = SD->end(); it != ie; ++it) + LayoutFragment(it); + } } void MCAsmLayout::LayoutFragment(MCFragment *F) { @@ -443,12 +437,9 @@ void MCAsmLayout::LayoutFragment(MCFragment *F) { ++stats::FragmentLayouts; // Compute fragment offset and size. - uint64_t Offset = Address - StartAddress; - uint64_t EffectiveSize = - getAssembler().ComputeFragmentSize(*this, *F, StartAddress, Offset); - - setFragmentOffset(F, Offset); - setFragmentEffectiveSize(F, EffectiveSize); + F->Offset = Address - StartAddress; + F->EffectiveSize = getAssembler().ComputeFragmentSize(*this, *F, StartAddress, + F->Offset); } void MCAsmLayout::LayoutSection(MCSectionData *SD) { @@ -467,10 +458,7 @@ void MCAsmLayout::LayoutSection(MCSectionData *SD) { StartAddress = RoundUpToAlignment(StartAddress, SD->getAlignment()); // Set the section address. - setSectionAddress(SD, StartAddress); - - for (MCSectionData::iterator it = SD->begin(), ie = SD->end(); it != ie; ++it) - LayoutFragment(it); + SD->Address = StartAddress; } /// WriteFragmentData - Write the \arg F data to the output file. |