mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-06 02:01:43 +00:00
Simplify local common output.
We now create them as they are found and use higher level APIs. This is a step in avoiding creating unnecessary sections. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251958 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e78962ca4a
commit
ca792d80c4
@ -36,7 +36,6 @@ public:
|
|||||||
/// state management
|
/// state management
|
||||||
void reset() override {
|
void reset() override {
|
||||||
SeenIdent = false;
|
SeenIdent = false;
|
||||||
LocalCommons.clear();
|
|
||||||
BundleGroups.clear();
|
BundleGroups.clear();
|
||||||
MCObjectStreamer::reset();
|
MCObjectStreamer::reset();
|
||||||
}
|
}
|
||||||
@ -97,14 +96,6 @@ private:
|
|||||||
|
|
||||||
bool SeenIdent;
|
bool SeenIdent;
|
||||||
|
|
||||||
struct LocalCommon {
|
|
||||||
const MCSymbol *Symbol;
|
|
||||||
uint64_t Size;
|
|
||||||
unsigned ByteAlignment;
|
|
||||||
};
|
|
||||||
|
|
||||||
std::vector<LocalCommon> LocalCommons;
|
|
||||||
|
|
||||||
/// BundleGroups - The stack of fragments holding the bundle-locked
|
/// BundleGroups - The stack of fragments holding the bundle-locked
|
||||||
/// instructions.
|
/// instructions.
|
||||||
llvm::SmallVector<MCDataFragment *, 4> BundleGroups;
|
llvm::SmallVector<MCDataFragment *, 4> BundleGroups;
|
||||||
|
@ -311,8 +311,20 @@ void MCELFStreamer::EmitCommonSymbol(MCSymbol *S, uint64_t Size,
|
|||||||
Symbol->setType(ELF::STT_OBJECT);
|
Symbol->setType(ELF::STT_OBJECT);
|
||||||
|
|
||||||
if (Symbol->getBinding() == ELF::STB_LOCAL) {
|
if (Symbol->getBinding() == ELF::STB_LOCAL) {
|
||||||
struct LocalCommon L = {Symbol, Size, ByteAlignment};
|
MCSection &Section = *getAssembler().getContext().getELFSection(
|
||||||
LocalCommons.push_back(L);
|
".bss", ELF::SHT_NOBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC);
|
||||||
|
MCSectionSubPair P = getCurrentSection();
|
||||||
|
SwitchSection(&Section);
|
||||||
|
|
||||||
|
EmitValueToAlignment(ByteAlignment, 0, 1, 0);
|
||||||
|
EmitLabel(Symbol);
|
||||||
|
EmitZeros(Size);
|
||||||
|
|
||||||
|
// Update the maximum alignment of the section if necessary.
|
||||||
|
if (ByteAlignment > Section.getAlignment())
|
||||||
|
Section.setAlignment(ByteAlignment);
|
||||||
|
|
||||||
|
SwitchSection(P.first, P.second);
|
||||||
} else {
|
} else {
|
||||||
if(Symbol->declareCommon(Size, ByteAlignment))
|
if(Symbol->declareCommon(Size, ByteAlignment))
|
||||||
report_fatal_error("Symbol: " + Symbol->getName() +
|
report_fatal_error("Symbol: " + Symbol->getName() +
|
||||||
@ -619,25 +631,7 @@ void MCELFStreamer::EmitBundleUnlock() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void MCELFStreamer::Flush() {
|
void MCELFStreamer::Flush() {
|
||||||
MCSection &Section = *getAssembler().getContext().getELFSection(
|
|
||||||
".bss", ELF::SHT_NOBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC);
|
|
||||||
getAssembler().registerSection(Section);
|
|
||||||
|
|
||||||
for (const LocalCommon &L : LocalCommons) {
|
|
||||||
const MCSymbol &Symbol = *L.Symbol;
|
|
||||||
uint64_t Size = L.Size;
|
|
||||||
unsigned ByteAlignment = L.ByteAlignment;
|
|
||||||
new MCAlignFragment(ByteAlignment, 0, 1, ByteAlignment, &Section);
|
|
||||||
|
|
||||||
MCFragment *F = new MCFillFragment(0, 0, Size, &Section);
|
|
||||||
Symbol.setFragment(F);
|
|
||||||
|
|
||||||
// Update the maximum alignment of the section if necessary.
|
|
||||||
if (ByteAlignment > Section.getAlignment())
|
|
||||||
Section.setAlignment(ByteAlignment);
|
|
||||||
}
|
|
||||||
|
|
||||||
LocalCommons.clear();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MCELFStreamer::FinishImpl() {
|
void MCELFStreamer::FinishImpl() {
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | llvm-readobj -s | FileCheck %s
|
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | llvm-readobj -s | FileCheck %s
|
||||||
|
|
||||||
// Test that the common symbols are placed at the end of .bss. In this example
|
// Test local common construction.
|
||||||
// it causes .bss to have size 9 instead of 8.
|
// Unlike gas, common symbols are created when found, not at the end of .bss.
|
||||||
|
// In this example it causes .bss to have size 8 instead of 9.
|
||||||
|
|
||||||
.local vimvardict
|
.local vimvardict
|
||||||
.comm vimvardict,1,8
|
.comm vimvardict,1,8
|
||||||
@ -16,7 +17,7 @@
|
|||||||
// CHECK: ]
|
// CHECK: ]
|
||||||
// CHECK-NEXT: Address:
|
// CHECK-NEXT: Address:
|
||||||
// CHECK-NEXT: Offset:
|
// CHECK-NEXT: Offset:
|
||||||
// CHECK-NEXT: Size: 9
|
// CHECK-NEXT: Size: 8
|
||||||
// CHECK-NEXT: Link:
|
// CHECK-NEXT: Link:
|
||||||
// CHECK-NEXT: Info:
|
// CHECK-NEXT: Info:
|
||||||
// CHECK-NEXT: AddressAlignment:
|
// CHECK-NEXT: AddressAlignment:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user