[llvm] 99ff3d0 - [MCParser] Remove some section directive not supported by gas
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 1 21:04:27 PST 2025
Author: Fangrui Song
Date: 2025-03-01T21:04:21-08:00
New Revision: 99ff3d0bcb2781f6bb7fe78e7d970d072f2f901f
URL: https://github.com/llvm/llvm-project/commit/99ff3d0bcb2781f6bb7fe78e7d970d072f2f901f
DIFF: https://github.com/llvm/llvm-project/commit/99ff3d0bcb2781f6bb7fe78e7d970d072f2f901f.diff
LOG: [MCParser] Remove some section directive not supported by gas
and not emitted by AsmPrinter.
The intention was to remove `.eh_frame`, which had the wrong
section flags. Let's also remove .data.rel and .data.rel.ro
but keep other extensions like .rodata
Added:
Modified:
llvm/lib/MC/MCParser/ELFAsmParser.cpp
llvm/test/MC/ELF/elf_directive_section.s
Removed:
################################################################################
diff --git a/llvm/lib/MC/MCParser/ELFAsmParser.cpp b/llvm/lib/MC/MCParser/ELFAsmParser.cpp
index 99b13c68a9966..11e122bcaac23 100644
--- a/llvm/lib/MC/MCParser/ELFAsmParser.cpp
+++ b/llvm/lib/MC/MCParser/ELFAsmParser.cpp
@@ -57,12 +57,6 @@ class ELFAsmParser : public MCAsmParserExtension {
addDirectiveHandler<&ELFAsmParser::parseSectionDirectiveRoData>(".rodata");
addDirectiveHandler<&ELFAsmParser::parseSectionDirectiveTData>(".tdata");
addDirectiveHandler<&ELFAsmParser::parseSectionDirectiveTBSS>(".tbss");
- addDirectiveHandler<
- &ELFAsmParser::parseSectionDirectiveDataRel>(".data.rel");
- addDirectiveHandler<
- &ELFAsmParser::parseSectionDirectiveDataRelRo>(".data.rel.ro");
- addDirectiveHandler<
- &ELFAsmParser::parseSectionDirectiveEhFrame>(".eh_frame");
addDirectiveHandler<&ELFAsmParser::parseDirectiveSection>(".section");
addDirectiveHandler<
&ELFAsmParser::parseDirectivePushSection>(".pushsection");
@@ -120,22 +114,6 @@ class ELFAsmParser : public MCAsmParserExtension {
ELF::SHF_TLS | ELF::SHF_WRITE,
SectionKind::getThreadBSS());
}
- bool parseSectionDirectiveDataRel(StringRef, SMLoc) {
- return parseSectionSwitch(".data.rel", ELF::SHT_PROGBITS,
- ELF::SHF_ALLOC | ELF::SHF_WRITE,
- SectionKind::getData());
- }
- bool parseSectionDirectiveDataRelRo(StringRef, SMLoc) {
- return parseSectionSwitch(".data.rel.ro", ELF::SHT_PROGBITS,
- ELF::SHF_ALLOC |
- ELF::SHF_WRITE,
- SectionKind::getReadOnlyWithRel());
- }
- bool parseSectionDirectiveEhFrame(StringRef, SMLoc) {
- return parseSectionSwitch(".eh_frame", ELF::SHT_PROGBITS,
- ELF::SHF_ALLOC | ELF::SHF_WRITE,
- SectionKind::getData());
- }
bool parseDirectivePushSection(StringRef, SMLoc);
bool parseDirectivePopSection(StringRef, SMLoc);
bool parseDirectiveSection(StringRef, SMLoc);
diff --git a/llvm/test/MC/ELF/elf_directive_section.s b/llvm/test/MC/ELF/elf_directive_section.s
index 9531c026e6745..310a780a8fa14 100644
--- a/llvm/test/MC/ELF/elf_directive_section.s
+++ b/llvm/test/MC/ELF/elf_directive_section.s
@@ -3,15 +3,6 @@
.bss
# CHECK: .bss
- .data.rel.ro
-# CHECK: .data.rel.ro
-
- .data.rel
-# CHECK: .data.rel
-
- .eh_frame
-# CHECK: .eh_frame
-
.rodata
# CHECK: .rodata
More information about the llvm-commits
mailing list