[llvm-commits] [llvm] r117389 - in /llvm/trunk: lib/MC/MCParser/ELFAsmParser.cpp test/MC/ELF/ident.s
Rafael Espindola
rafael.espindola at gmail.com
Tue Oct 26 12:35:47 PDT 2010
Author: rafael
Date: Tue Oct 26 14:35:47 2010
New Revision: 117389
URL: http://llvm.org/viewvc/llvm-project?rev=117389&view=rev
Log:
Add support for .ident.
Added:
llvm/trunk/test/MC/ELF/ident.s
Modified:
llvm/trunk/lib/MC/MCParser/ELFAsmParser.cpp
Modified: llvm/trunk/lib/MC/MCParser/ELFAsmParser.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/MCParser/ELFAsmParser.cpp?rev=117389&r1=117388&r2=117389&view=diff
==============================================================================
--- llvm/trunk/lib/MC/MCParser/ELFAsmParser.cpp (original)
+++ llvm/trunk/lib/MC/MCParser/ELFAsmParser.cpp Tue Oct 26 14:35:47 2010
@@ -50,6 +50,7 @@
AddDirectiveHandler<&ELFAsmParser::ParseDirectiveSize>(".size");
AddDirectiveHandler<&ELFAsmParser::ParseDirectivePrevious>(".previous");
AddDirectiveHandler<&ELFAsmParser::ParseDirectiveType>(".type");
+ AddDirectiveHandler<&ELFAsmParser::ParseDirectiveIdent>(".ident");
}
// FIXME: Part of this logic is duplicated in the MCELFStreamer. What is
@@ -114,6 +115,7 @@
bool ParseDirectiveSize(StringRef, SMLoc);
bool ParseDirectivePrevious(StringRef, SMLoc);
bool ParseDirectiveType(StringRef, SMLoc);
+ bool ParseDirectiveIdent(StringRef, SMLoc);
private:
bool ParseSectionName(StringRef &SectionName);
@@ -345,6 +347,36 @@
return false;
}
+/// ParseDirectiveIdent
+/// ::= .ident string
+bool ELFAsmParser::ParseDirectiveIdent(StringRef, SMLoc) {
+ if (getLexer().isNot(AsmToken::String))
+ return TokError("unexpected token in '.ident' directive");
+
+ StringRef Data = getTok().getIdentifier();
+
+ Lex();
+
+ const MCSection *OldSection = getStreamer().getCurrentSection();
+ const MCSection *Comment =
+ getContext().getELFSection(".comment", MCSectionELF::SHT_PROGBITS,
+ MCSectionELF::SHF_MERGE |
+ MCSectionELF::SHF_STRINGS,
+ SectionKind::getReadOnly(),
+ false, 1);
+
+ static bool First = true;
+
+ getStreamer().SwitchSection(Comment);
+ if (First)
+ getStreamer().EmitIntValue(0, 1);
+ First = false;
+ getStreamer().EmitBytes(Data, 0);
+ getStreamer().EmitIntValue(0, 1);
+ getStreamer().SwitchSection(OldSection);
+ return false;
+}
+
namespace llvm {
MCAsmParserExtension *createELFAsmParser() {
Added: llvm/trunk/test/MC/ELF/ident.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/ELF/ident.s?rev=117389&view=auto
==============================================================================
--- llvm/trunk/test/MC/ELF/ident.s (added)
+++ llvm/trunk/test/MC/ELF/ident.s Tue Oct 26 14:35:47 2010
@@ -0,0 +1,17 @@
+// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | elf-dump --dump-section-data | FileCheck %s
+
+// CHECK: (('sh_name', 0x00000012) # '.comment'
+// CHECK-NEXT: ('sh_type', 0x00000001)
+// CHECK-NEXT: ('sh_flags', 0x00000030)
+// CHECK-NEXT: ('sh_addr', 0x00000000)
+// CHECK-NEXT: ('sh_offset', 0x00000040)
+// CHECK-NEXT: ('sh_size', 0x0000000d)
+// CHECK-NEXT: ('sh_link', 0x00000000)
+// CHECK-NEXT: ('sh_info', 0x00000000)
+// CHECK-NEXT: ('sh_addralign', 0x00000001)
+// CHECK-NEXT: ('sh_entsize', 0x00000001)
+// CHECK-NEXT: ('_section_data', '00666f6f 00626172 007a6564 00')
+
+ .ident "foo"
+ .ident "bar"
+ .ident "zed"
More information about the llvm-commits
mailing list