aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-03-25 18:16:38 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-03-25 18:16:38 +0000
commitbe644a38c09bd0fa03bb07f48f2c1dec32052de8 (patch)
tree8f2ab07b9e005ef592b5ab0e8d341afb5b470d66 /lib/MC
parent352aa503faee6c58e9cdb5054cc5ec1d90c696b4 (diff)
downloadexternal_llvm-be644a38c09bd0fa03bb07f48f2c1dec32052de8.zip
external_llvm-be644a38c09bd0fa03bb07f48f2c1dec32052de8.tar.gz
external_llvm-be644a38c09bd0fa03bb07f48f2c1dec32052de8.tar.bz2
MC: Sink Section address assignment into LayoutSection.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99528 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC')
-rw-r--r--lib/MC/MCAssembler.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/MC/MCAssembler.cpp b/lib/MC/MCAssembler.cpp
index 5190239..c0ec04d 100644
--- a/lib/MC/MCAssembler.cpp
+++ b/lib/MC/MCAssembler.cpp
@@ -365,9 +365,11 @@ bool MCAssembler::EvaluateFixup(const MCAsmLayout &Layout,
}
void MCAssembler::LayoutSection(MCSectionData &SD,
- MCAsmLayout &Layout) {
- uint64_t Address, StartAddress = Address = Layout.getSectionAddress(&SD);
+ MCAsmLayout &Layout,
+ uint64_t StartAddress) {
+ Layout.setSectionAddress(&SD, StartAddress);
+ uint64_t Address = StartAddress;
for (MCSectionData::iterator it = SD.begin(), ie = SD.end(); it != ie; ++it) {
MCFragment &F = *it;
@@ -690,8 +692,7 @@ bool MCAssembler::LayoutOnce(MCAsmLayout &Layout) {
}
// Layout the section fragments and its size.
- Layout.setSectionAddress(&SD, Address);
- LayoutSection(SD, Layout);
+ LayoutSection(SD, Layout, Address);
Address += Layout.getSectionFileSize(&SD);
Prev = &SD;
@@ -709,8 +710,7 @@ bool MCAssembler::LayoutOnce(MCAsmLayout &Layout) {
if (uint64_t Pad = OffsetToAlignment(Address, it->getAlignment()))
Address += Pad;
- Layout.setSectionAddress(&SD, Address);
- LayoutSection(SD, Layout);
+ LayoutSection(SD, Layout, Address);
Address += Layout.getSectionSize(&SD);
}