Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 1 | //===- ELFAsmParser.cpp - ELF Assembly Parser -----------------------------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
Eugene Zelenko | 1d43552 | 2017-02-07 23:02:00 +0000 | [diff] [blame] | 9 | #include "llvm/ADT/StringRef.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 10 | #include "llvm/ADT/StringSwitch.h" |
Zachary Turner | 264b5d9 | 2017-06-07 03:48:56 +0000 | [diff] [blame] | 11 | #include "llvm/BinaryFormat/ELF.h" |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 12 | #include "llvm/MC/MCAsmInfo.h" |
Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 13 | #include "llvm/MC/MCContext.h" |
Eugene Zelenko | 1d43552 | 2017-02-07 23:02:00 +0000 | [diff] [blame] | 14 | #include "llvm/MC/MCDirectives.h" |
Rafael Espindola | eb0c2c1 | 2010-10-27 15:18:17 +0000 | [diff] [blame] | 15 | #include "llvm/MC/MCExpr.h" |
Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 16 | #include "llvm/MC/MCParser/MCAsmLexer.h" |
Eugene Zelenko | 1d43552 | 2017-02-07 23:02:00 +0000 | [diff] [blame] | 17 | #include "llvm/MC/MCParser/MCAsmParser.h" |
| 18 | #include "llvm/MC/MCParser/MCAsmParserExtension.h" |
| 19 | #include "llvm/MC/MCSection.h" |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 20 | #include "llvm/MC/MCSectionELF.h" |
| 21 | #include "llvm/MC/MCStreamer.h" |
Eugene Zelenko | 1d43552 | 2017-02-07 23:02:00 +0000 | [diff] [blame] | 22 | #include "llvm/MC/MCSymbol.h" |
Rafael Espindola | a869576 | 2015-06-02 00:25:12 +0000 | [diff] [blame] | 23 | #include "llvm/MC/MCSymbolELF.h" |
Eugene Zelenko | 1d43552 | 2017-02-07 23:02:00 +0000 | [diff] [blame] | 24 | #include "llvm/MC/SectionKind.h" |
| 25 | #include "llvm/Support/Casting.h" |
Eugene Zelenko | 1d43552 | 2017-02-07 23:02:00 +0000 | [diff] [blame] | 26 | #include "llvm/Support/MathExtras.h" |
| 27 | #include "llvm/Support/SMLoc.h" |
| 28 | #include <cassert> |
| 29 | #include <cstdint> |
| 30 | #include <utility> |
| 31 | |
Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 32 | using namespace llvm; |
| 33 | |
| 34 | namespace { |
| 35 | |
| 36 | class ELFAsmParser : public MCAsmParserExtension { |
Eli Bendersky | 29b9f47 | 2013-01-16 00:50:52 +0000 | [diff] [blame] | 37 | template<bool (ELFAsmParser::*HandlerMethod)(StringRef, SMLoc)> |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 38 | void addDirectiveHandler(StringRef Directive) { |
Eli Bendersky | 29b9f47 | 2013-01-16 00:50:52 +0000 | [diff] [blame] | 39 | MCAsmParser::ExtensionDirectiveHandler Handler = std::make_pair( |
| 40 | this, HandleDirective<ELFAsmParser, HandlerMethod>); |
| 41 | |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 42 | getParser().addDirectiveHandler(Directive, Handler); |
Daniel Dunbar | 8897d47 | 2010-07-18 22:22:07 +0000 | [diff] [blame] | 43 | } |
| 44 | |
Rafael Espindola | 5645bad | 2013-10-16 01:05:45 +0000 | [diff] [blame] | 45 | bool ParseSectionSwitch(StringRef Section, unsigned Type, unsigned Flags, |
| 46 | SectionKind Kind); |
Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 47 | |
| 48 | public: |
Rafael Espindola | 5645bad | 2013-10-16 01:05:45 +0000 | [diff] [blame] | 49 | ELFAsmParser() { BracketExpressionsSupported = true; } |
Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 50 | |
Craig Topper | 59be68f | 2014-03-08 07:14:16 +0000 | [diff] [blame] | 51 | void Initialize(MCAsmParser &Parser) override { |
Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 52 | // Call the base implementation. |
| 53 | this->MCAsmParserExtension::Initialize(Parser); |
| 54 | |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 55 | addDirectiveHandler<&ELFAsmParser::ParseSectionDirectiveData>(".data"); |
| 56 | addDirectiveHandler<&ELFAsmParser::ParseSectionDirectiveText>(".text"); |
| 57 | addDirectiveHandler<&ELFAsmParser::ParseSectionDirectiveBSS>(".bss"); |
| 58 | addDirectiveHandler<&ELFAsmParser::ParseSectionDirectiveRoData>(".rodata"); |
| 59 | addDirectiveHandler<&ELFAsmParser::ParseSectionDirectiveTData>(".tdata"); |
| 60 | addDirectiveHandler<&ELFAsmParser::ParseSectionDirectiveTBSS>(".tbss"); |
| 61 | addDirectiveHandler< |
Jim Grosbach | 1a55fa6 | 2011-07-25 17:11:29 +0000 | [diff] [blame] | 62 | &ELFAsmParser::ParseSectionDirectiveDataRel>(".data.rel"); |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 63 | addDirectiveHandler< |
Jim Grosbach | 1a55fa6 | 2011-07-25 17:11:29 +0000 | [diff] [blame] | 64 | &ELFAsmParser::ParseSectionDirectiveDataRelRo>(".data.rel.ro"); |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 65 | addDirectiveHandler< |
Jim Grosbach | 1a55fa6 | 2011-07-25 17:11:29 +0000 | [diff] [blame] | 66 | &ELFAsmParser::ParseSectionDirectiveEhFrame>(".eh_frame"); |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 67 | addDirectiveHandler<&ELFAsmParser::ParseDirectiveSection>(".section"); |
| 68 | addDirectiveHandler< |
Jim Grosbach | 1a55fa6 | 2011-07-25 17:11:29 +0000 | [diff] [blame] | 69 | &ELFAsmParser::ParseDirectivePushSection>(".pushsection"); |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 70 | addDirectiveHandler<&ELFAsmParser::ParseDirectivePopSection>(".popsection"); |
| 71 | addDirectiveHandler<&ELFAsmParser::ParseDirectiveSize>(".size"); |
| 72 | addDirectiveHandler<&ELFAsmParser::ParseDirectivePrevious>(".previous"); |
| 73 | addDirectiveHandler<&ELFAsmParser::ParseDirectiveType>(".type"); |
| 74 | addDirectiveHandler<&ELFAsmParser::ParseDirectiveIdent>(".ident"); |
| 75 | addDirectiveHandler<&ELFAsmParser::ParseDirectiveSymver>(".symver"); |
| 76 | addDirectiveHandler<&ELFAsmParser::ParseDirectiveVersion>(".version"); |
| 77 | addDirectiveHandler<&ELFAsmParser::ParseDirectiveWeakref>(".weakref"); |
| 78 | addDirectiveHandler<&ELFAsmParser::ParseDirectiveSymbolAttribute>(".weak"); |
| 79 | addDirectiveHandler<&ELFAsmParser::ParseDirectiveSymbolAttribute>(".local"); |
| 80 | addDirectiveHandler< |
Jim Grosbach | 38b1ed8 | 2011-07-25 17:55:35 +0000 | [diff] [blame] | 81 | &ELFAsmParser::ParseDirectiveSymbolAttribute>(".protected"); |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 82 | addDirectiveHandler< |
Jim Grosbach | 38b1ed8 | 2011-07-25 17:55:35 +0000 | [diff] [blame] | 83 | &ELFAsmParser::ParseDirectiveSymbolAttribute>(".internal"); |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 84 | addDirectiveHandler< |
Jim Grosbach | 38b1ed8 | 2011-07-25 17:55:35 +0000 | [diff] [blame] | 85 | &ELFAsmParser::ParseDirectiveSymbolAttribute>(".hidden"); |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 86 | addDirectiveHandler<&ELFAsmParser::ParseDirectiveSubsection>(".subsection"); |
Michael J. Spencer | ae6eeae | 2018-06-02 16:33:01 +0000 | [diff] [blame] | 87 | addDirectiveHandler<&ELFAsmParser::ParseDirectiveCGProfile>(".cg_profile"); |
Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 88 | } |
| 89 | |
Rafael Espindola | f667d92 | 2010-09-15 21:48:40 +0000 | [diff] [blame] | 90 | // FIXME: Part of this logic is duplicated in the MCELFStreamer. What is |
| 91 | // the best way for us to get access to it? |
Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 92 | bool ParseSectionDirectiveData(StringRef, SMLoc) { |
Rafael Espindola | aea4958 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 93 | return ParseSectionSwitch(".data", ELF::SHT_PROGBITS, |
Rafael Espindola | 449711c | 2015-11-18 06:02:15 +0000 | [diff] [blame] | 94 | ELF::SHF_WRITE | ELF::SHF_ALLOC, |
| 95 | SectionKind::getData()); |
Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 96 | } |
| 97 | bool ParseSectionDirectiveText(StringRef, SMLoc) { |
Rafael Espindola | aea4958 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 98 | return ParseSectionSwitch(".text", ELF::SHT_PROGBITS, |
Rafael Espindola | 0e7e34e | 2011-01-23 04:43:11 +0000 | [diff] [blame] | 99 | ELF::SHF_EXECINSTR | |
| 100 | ELF::SHF_ALLOC, SectionKind::getText()); |
Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 101 | } |
Matt Fleming | a8f6c1c | 2010-07-20 21:12:46 +0000 | [diff] [blame] | 102 | bool ParseSectionDirectiveBSS(StringRef, SMLoc) { |
Rafael Espindola | aea4958 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 103 | return ParseSectionSwitch(".bss", ELF::SHT_NOBITS, |
Rafael Espindola | 0e7e34e | 2011-01-23 04:43:11 +0000 | [diff] [blame] | 104 | ELF::SHF_WRITE | |
| 105 | ELF::SHF_ALLOC, SectionKind::getBSS()); |
Matt Fleming | a8f6c1c | 2010-07-20 21:12:46 +0000 | [diff] [blame] | 106 | } |
| 107 | bool ParseSectionDirectiveRoData(StringRef, SMLoc) { |
Rafael Espindola | aea4958 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 108 | return ParseSectionSwitch(".rodata", ELF::SHT_PROGBITS, |
Rafael Espindola | 0e7e34e | 2011-01-23 04:43:11 +0000 | [diff] [blame] | 109 | ELF::SHF_ALLOC, |
Matt Fleming | a8f6c1c | 2010-07-20 21:12:46 +0000 | [diff] [blame] | 110 | SectionKind::getReadOnly()); |
| 111 | } |
| 112 | bool ParseSectionDirectiveTData(StringRef, SMLoc) { |
Rafael Espindola | aea4958 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 113 | return ParseSectionSwitch(".tdata", ELF::SHT_PROGBITS, |
Rafael Espindola | 0e7e34e | 2011-01-23 04:43:11 +0000 | [diff] [blame] | 114 | ELF::SHF_ALLOC | |
| 115 | ELF::SHF_TLS | ELF::SHF_WRITE, |
Matt Fleming | a8f6c1c | 2010-07-20 21:12:46 +0000 | [diff] [blame] | 116 | SectionKind::getThreadData()); |
| 117 | } |
| 118 | bool ParseSectionDirectiveTBSS(StringRef, SMLoc) { |
Rafael Espindola | aea4958 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 119 | return ParseSectionSwitch(".tbss", ELF::SHT_NOBITS, |
Rafael Espindola | 0e7e34e | 2011-01-23 04:43:11 +0000 | [diff] [blame] | 120 | ELF::SHF_ALLOC | |
| 121 | ELF::SHF_TLS | ELF::SHF_WRITE, |
Matt Fleming | a8f6c1c | 2010-07-20 21:12:46 +0000 | [diff] [blame] | 122 | SectionKind::getThreadBSS()); |
| 123 | } |
| 124 | bool ParseSectionDirectiveDataRel(StringRef, SMLoc) { |
Rafael Espindola | aea4958 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 125 | return ParseSectionSwitch(".data.rel", ELF::SHT_PROGBITS, |
Rafael Espindola | 449711c | 2015-11-18 06:02:15 +0000 | [diff] [blame] | 126 | ELF::SHF_ALLOC | ELF::SHF_WRITE, |
| 127 | SectionKind::getData()); |
Matt Fleming | a8f6c1c | 2010-07-20 21:12:46 +0000 | [diff] [blame] | 128 | } |
| 129 | bool ParseSectionDirectiveDataRelRo(StringRef, SMLoc) { |
Rafael Espindola | aea4958 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 130 | return ParseSectionSwitch(".data.rel.ro", ELF::SHT_PROGBITS, |
Rafael Espindola | 0e7e34e | 2011-01-23 04:43:11 +0000 | [diff] [blame] | 131 | ELF::SHF_ALLOC | |
| 132 | ELF::SHF_WRITE, |
Matt Fleming | a8f6c1c | 2010-07-20 21:12:46 +0000 | [diff] [blame] | 133 | SectionKind::getReadOnlyWithRel()); |
| 134 | } |
Matt Fleming | a8f6c1c | 2010-07-20 21:12:46 +0000 | [diff] [blame] | 135 | bool ParseSectionDirectiveEhFrame(StringRef, SMLoc) { |
Rafael Espindola | aea4958 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 136 | return ParseSectionSwitch(".eh_frame", ELF::SHT_PROGBITS, |
Rafael Espindola | 449711c | 2015-11-18 06:02:15 +0000 | [diff] [blame] | 137 | ELF::SHF_ALLOC | ELF::SHF_WRITE, |
| 138 | SectionKind::getData()); |
Matt Fleming | a8f6c1c | 2010-07-20 21:12:46 +0000 | [diff] [blame] | 139 | } |
Rafael Espindola | 58ac6e1 | 2011-02-16 01:08:29 +0000 | [diff] [blame] | 140 | bool ParseDirectivePushSection(StringRef, SMLoc); |
| 141 | bool ParseDirectivePopSection(StringRef, SMLoc); |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 142 | bool ParseDirectiveSection(StringRef, SMLoc); |
| 143 | bool ParseDirectiveSize(StringRef, SMLoc); |
Benjamin Kramer | e39017c | 2010-09-02 18:53:37 +0000 | [diff] [blame] | 144 | bool ParseDirectivePrevious(StringRef, SMLoc); |
Michael J. Spencer | 3d89823 | 2010-10-09 03:47:55 +0000 | [diff] [blame] | 145 | bool ParseDirectiveType(StringRef, SMLoc); |
Rafael Espindola | c9fb35e | 2010-10-26 19:35:47 +0000 | [diff] [blame] | 146 | bool ParseDirectiveIdent(StringRef, SMLoc); |
Rafael Espindola | eb0c2c1 | 2010-10-27 15:18:17 +0000 | [diff] [blame] | 147 | bool ParseDirectiveSymver(StringRef, SMLoc); |
Benjamin Kramer | 6bee7f7 | 2012-05-12 14:30:47 +0000 | [diff] [blame] | 148 | bool ParseDirectiveVersion(StringRef, SMLoc); |
Rafael Espindola | 1614597 | 2010-11-01 14:28:48 +0000 | [diff] [blame] | 149 | bool ParseDirectiveWeakref(StringRef, SMLoc); |
Jim Grosbach | 38b1ed8 | 2011-07-25 17:55:35 +0000 | [diff] [blame] | 150 | bool ParseDirectiveSymbolAttribute(StringRef, SMLoc); |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 151 | bool ParseDirectiveSubsection(StringRef, SMLoc); |
Michael J. Spencer | ae6eeae | 2018-06-02 16:33:01 +0000 | [diff] [blame] | 152 | bool ParseDirectiveCGProfile(StringRef, SMLoc); |
Rafael Espindola | f7f4332 | 2010-09-16 17:05:55 +0000 | [diff] [blame] | 153 | |
| 154 | private: |
| 155 | bool ParseSectionName(StringRef &SectionName); |
Oliver Stannard | 8b27308 | 2014-06-19 15:52:37 +0000 | [diff] [blame] | 156 | bool ParseSectionArguments(bool IsPush, SMLoc loc); |
Venkatraman Govindaraju | bf70566 | 2014-03-01 06:21:00 +0000 | [diff] [blame] | 157 | unsigned parseSunStyleSectionFlags(); |
Rafael Espindola | d9953d9 | 2017-01-31 23:07:08 +0000 | [diff] [blame] | 158 | bool maybeParseSectionType(StringRef &TypeName); |
Rafael Espindola | a86be22 | 2017-01-31 23:26:32 +0000 | [diff] [blame] | 159 | bool parseMergeSize(int64_t &Size); |
| 160 | bool parseGroup(StringRef &GroupName); |
Evgeniy Stepanov | 43dcf4d | 2017-03-14 19:28:51 +0000 | [diff] [blame] | 161 | bool parseMetadataSym(MCSymbolELF *&Associated); |
Rafael Espindola | a86be22 | 2017-01-31 23:26:32 +0000 | [diff] [blame] | 162 | bool maybeParseUniqueID(int64_t &UniqueID); |
Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 163 | }; |
| 164 | |
Eugene Zelenko | 1d43552 | 2017-02-07 23:02:00 +0000 | [diff] [blame] | 165 | } // end anonymous namespace |
Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 166 | |
Jim Grosbach | 38b1ed8 | 2011-07-25 17:55:35 +0000 | [diff] [blame] | 167 | /// ParseDirectiveSymbolAttribute |
| 168 | /// ::= { ".local", ".weak", ... } [ identifier ( , identifier )* ] |
| 169 | bool ELFAsmParser::ParseDirectiveSymbolAttribute(StringRef Directive, SMLoc) { |
| 170 | MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Directive) |
| 171 | .Case(".weak", MCSA_Weak) |
| 172 | .Case(".local", MCSA_Local) |
| 173 | .Case(".hidden", MCSA_Hidden) |
| 174 | .Case(".internal", MCSA_Internal) |
| 175 | .Case(".protected", MCSA_Protected) |
| 176 | .Default(MCSA_Invalid); |
| 177 | assert(Attr != MCSA_Invalid && "unexpected symbol attribute directive!"); |
| 178 | if (getLexer().isNot(AsmToken::EndOfStatement)) { |
Eugene Zelenko | 1d43552 | 2017-02-07 23:02:00 +0000 | [diff] [blame] | 179 | while (true) { |
Jim Grosbach | 38b1ed8 | 2011-07-25 17:55:35 +0000 | [diff] [blame] | 180 | StringRef Name; |
| 181 | |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 182 | if (getParser().parseIdentifier(Name)) |
Jim Grosbach | 38b1ed8 | 2011-07-25 17:55:35 +0000 | [diff] [blame] | 183 | return TokError("expected identifier in directive"); |
| 184 | |
Jim Grosbach | 6f48200 | 2015-05-18 18:43:14 +0000 | [diff] [blame] | 185 | MCSymbol *Sym = getContext().getOrCreateSymbol(Name); |
Jim Grosbach | 38b1ed8 | 2011-07-25 17:55:35 +0000 | [diff] [blame] | 186 | |
| 187 | getStreamer().EmitSymbolAttribute(Sym, Attr); |
| 188 | |
| 189 | if (getLexer().is(AsmToken::EndOfStatement)) |
| 190 | break; |
| 191 | |
| 192 | if (getLexer().isNot(AsmToken::Comma)) |
| 193 | return TokError("unexpected token in directive"); |
| 194 | Lex(); |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | Lex(); |
| 199 | return false; |
| 200 | } |
| 201 | |
Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 202 | bool ELFAsmParser::ParseSectionSwitch(StringRef Section, unsigned Type, |
| 203 | unsigned Flags, SectionKind Kind) { |
Craig Topper | 353eda4 | 2014-04-24 06:44:33 +0000 | [diff] [blame] | 204 | const MCExpr *Subsection = nullptr; |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 205 | if (getLexer().isNot(AsmToken::EndOfStatement)) { |
| 206 | if (getParser().parseExpression(Subsection)) |
| 207 | return true; |
| 208 | } |
Nirav Dave | 53a72f4 | 2016-07-11 12:42:14 +0000 | [diff] [blame] | 209 | Lex(); |
Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 210 | |
Rafael Espindola | ba31e27 | 2015-01-29 17:33:21 +0000 | [diff] [blame] | 211 | getStreamer().SwitchSection(getContext().getELFSection(Section, Type, Flags), |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 212 | Subsection); |
Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 213 | |
| 214 | return false; |
| 215 | } |
| 216 | |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 217 | bool ELFAsmParser::ParseDirectiveSize(StringRef, SMLoc) { |
Eli Friedman | 56178a0 | 2010-07-17 03:09:18 +0000 | [diff] [blame] | 218 | StringRef Name; |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 219 | if (getParser().parseIdentifier(Name)) |
Eli Friedman | 56178a0 | 2010-07-17 03:09:18 +0000 | [diff] [blame] | 220 | return TokError("expected identifier in directive"); |
Rafael Espindola | a869576 | 2015-06-02 00:25:12 +0000 | [diff] [blame] | 221 | MCSymbolELF *Sym = cast<MCSymbolELF>(getContext().getOrCreateSymbol(Name)); |
Eli Friedman | 56178a0 | 2010-07-17 03:09:18 +0000 | [diff] [blame] | 222 | |
| 223 | if (getLexer().isNot(AsmToken::Comma)) |
| 224 | return TokError("unexpected token in directive"); |
| 225 | Lex(); |
| 226 | |
| 227 | const MCExpr *Expr; |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 228 | if (getParser().parseExpression(Expr)) |
Eli Friedman | 56178a0 | 2010-07-17 03:09:18 +0000 | [diff] [blame] | 229 | return true; |
| 230 | |
| 231 | if (getLexer().isNot(AsmToken::EndOfStatement)) |
| 232 | return TokError("unexpected token in directive"); |
Nirav Dave | a645433c | 2016-07-18 15:24:03 +0000 | [diff] [blame] | 233 | Lex(); |
Eli Friedman | 56178a0 | 2010-07-17 03:09:18 +0000 | [diff] [blame] | 234 | |
Rafael Espindola | a869576 | 2015-06-02 00:25:12 +0000 | [diff] [blame] | 235 | getStreamer().emitELFSize(Sym, Expr); |
Eli Friedman | 56178a0 | 2010-07-17 03:09:18 +0000 | [diff] [blame] | 236 | return false; |
| 237 | } |
| 238 | |
Rafael Espindola | f7f4332 | 2010-09-16 17:05:55 +0000 | [diff] [blame] | 239 | bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { |
| 240 | // A section name can contain -, so we cannot just use |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 241 | // parseIdentifier. |
Rafael Espindola | f7f4332 | 2010-09-16 17:05:55 +0000 | [diff] [blame] | 242 | SMLoc FirstLoc = getLexer().getLoc(); |
| 243 | unsigned Size = 0; |
| 244 | |
Rafael Espindola | 689939e | 2011-01-24 18:02:54 +0000 | [diff] [blame] | 245 | if (getLexer().is(AsmToken::String)) { |
| 246 | SectionName = getTok().getIdentifier(); |
| 247 | Lex(); |
| 248 | return false; |
| 249 | } |
| 250 | |
George Rimar | b074fbc | 2017-10-05 08:15:55 +0000 | [diff] [blame] | 251 | while (!getParser().hasPendingError()) { |
Rafael Espindola | f7f4332 | 2010-09-16 17:05:55 +0000 | [diff] [blame] | 252 | SMLoc PrevLoc = getLexer().getLoc(); |
Marina Yatsina | 33ef7da | 2016-03-22 11:23:15 +0000 | [diff] [blame] | 253 | if (getLexer().is(AsmToken::Comma) || |
| 254 | getLexer().is(AsmToken::EndOfStatement)) |
| 255 | break; |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 256 | |
Marina Yatsina | 33ef7da | 2016-03-22 11:23:15 +0000 | [diff] [blame] | 257 | unsigned CurSize; |
| 258 | if (getLexer().is(AsmToken::String)) { |
Rafael Espindola | 689939e | 2011-01-24 18:02:54 +0000 | [diff] [blame] | 259 | CurSize = getTok().getIdentifier().size() + 2; |
| 260 | Lex(); |
| 261 | } else if (getLexer().is(AsmToken::Identifier)) { |
| 262 | CurSize = getTok().getIdentifier().size(); |
| 263 | Lex(); |
| 264 | } else { |
Marina Yatsina | 33ef7da | 2016-03-22 11:23:15 +0000 | [diff] [blame] | 265 | CurSize = getTok().getString().size(); |
| 266 | Lex(); |
Rafael Espindola | 689939e | 2011-01-24 18:02:54 +0000 | [diff] [blame] | 267 | } |
Rafael Espindola | f7f4332 | 2010-09-16 17:05:55 +0000 | [diff] [blame] | 268 | Size += CurSize; |
| 269 | SectionName = StringRef(FirstLoc.getPointer(), Size); |
| 270 | |
| 271 | // Make sure the following token is adjacent. |
| 272 | if (PrevLoc.getPointer() + CurSize != getTok().getLoc().getPointer()) |
| 273 | break; |
| 274 | } |
| 275 | if (Size == 0) |
| 276 | return true; |
| 277 | |
| 278 | return false; |
| 279 | } |
| 280 | |
Benjamin Kramer | ac511ca | 2013-09-15 19:53:20 +0000 | [diff] [blame] | 281 | static unsigned parseSectionFlags(StringRef flagsStr, bool *UseLastGroup) { |
| 282 | unsigned flags = 0; |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 283 | |
Prakhar Bahuguna | e640c6f | 2016-12-15 07:59:15 +0000 | [diff] [blame] | 284 | // If a valid numerical value is set for the section flag, use it verbatim |
| 285 | if (!flagsStr.getAsInteger(0, flags)) |
| 286 | return flags; |
| 287 | |
Benjamin Kramer | 7b4658f | 2016-06-26 14:49:00 +0000 | [diff] [blame] | 288 | for (char i : flagsStr) { |
| 289 | switch (i) { |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 290 | case 'a': |
Rafael Espindola | 0e7e34e | 2011-01-23 04:43:11 +0000 | [diff] [blame] | 291 | flags |= ELF::SHF_ALLOC; |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 292 | break; |
Benjamin Kramer | ac511ca | 2013-09-15 19:53:20 +0000 | [diff] [blame] | 293 | case 'e': |
| 294 | flags |= ELF::SHF_EXCLUDE; |
| 295 | break; |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 296 | case 'x': |
Rafael Espindola | 0e7e34e | 2011-01-23 04:43:11 +0000 | [diff] [blame] | 297 | flags |= ELF::SHF_EXECINSTR; |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 298 | break; |
| 299 | case 'w': |
Rafael Espindola | 0e7e34e | 2011-01-23 04:43:11 +0000 | [diff] [blame] | 300 | flags |= ELF::SHF_WRITE; |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 301 | break; |
Evgeniy Stepanov | 12de7b2 | 2017-04-04 22:35:08 +0000 | [diff] [blame] | 302 | case 'o': |
Rafael Espindola | dc1c301 | 2017-02-09 14:59:20 +0000 | [diff] [blame] | 303 | flags |= ELF::SHF_LINK_ORDER; |
| 304 | break; |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 305 | case 'M': |
Rafael Espindola | 0e7e34e | 2011-01-23 04:43:11 +0000 | [diff] [blame] | 306 | flags |= ELF::SHF_MERGE; |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 307 | break; |
| 308 | case 'S': |
Rafael Espindola | 0e7e34e | 2011-01-23 04:43:11 +0000 | [diff] [blame] | 309 | flags |= ELF::SHF_STRINGS; |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 310 | break; |
| 311 | case 'T': |
Rafael Espindola | 0e7e34e | 2011-01-23 04:43:11 +0000 | [diff] [blame] | 312 | flags |= ELF::SHF_TLS; |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 313 | break; |
| 314 | case 'c': |
Rafael Espindola | 0e7e34e | 2011-01-23 04:43:11 +0000 | [diff] [blame] | 315 | flags |= ELF::XCORE_SHF_CP_SECTION; |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 316 | break; |
| 317 | case 'd': |
Rafael Espindola | 0e7e34e | 2011-01-23 04:43:11 +0000 | [diff] [blame] | 318 | flags |= ELF::XCORE_SHF_DP_SECTION; |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 319 | break; |
Prakhar Bahuguna | 52a7dd7 | 2016-12-15 07:59:08 +0000 | [diff] [blame] | 320 | case 'y': |
| 321 | flags |= ELF::SHF_ARM_PURECODE; |
| 322 | break; |
Krzysztof Parzyszek | f740fd6 | 2018-11-09 14:17:27 +0000 | [diff] [blame] | 323 | case 's': |
| 324 | flags |= ELF::SHF_HEX_GPREL; |
| 325 | break; |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 326 | case 'G': |
Rafael Espindola | 0e7e34e | 2011-01-23 04:43:11 +0000 | [diff] [blame] | 327 | flags |= ELF::SHF_GROUP; |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 328 | break; |
David Majnemer | a4b521b | 2013-09-15 19:24:16 +0000 | [diff] [blame] | 329 | case '?': |
| 330 | *UseLastGroup = true; |
| 331 | break; |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 332 | default: |
Benjamin Kramer | ac511ca | 2013-09-15 19:53:20 +0000 | [diff] [blame] | 333 | return -1U; |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 334 | } |
| 335 | } |
| 336 | |
| 337 | return flags; |
| 338 | } |
| 339 | |
Venkatraman Govindaraju | bf70566 | 2014-03-01 06:21:00 +0000 | [diff] [blame] | 340 | unsigned ELFAsmParser::parseSunStyleSectionFlags() { |
| 341 | unsigned flags = 0; |
| 342 | while (getLexer().is(AsmToken::Hash)) { |
| 343 | Lex(); // Eat the #. |
| 344 | |
| 345 | if (!getLexer().is(AsmToken::Identifier)) |
| 346 | return -1U; |
| 347 | |
| 348 | StringRef flagId = getTok().getIdentifier(); |
| 349 | if (flagId == "alloc") |
| 350 | flags |= ELF::SHF_ALLOC; |
| 351 | else if (flagId == "execinstr") |
| 352 | flags |= ELF::SHF_EXECINSTR; |
| 353 | else if (flagId == "write") |
| 354 | flags |= ELF::SHF_WRITE; |
| 355 | else if (flagId == "tls") |
| 356 | flags |= ELF::SHF_TLS; |
| 357 | else |
| 358 | return -1U; |
| 359 | |
| 360 | Lex(); // Eat the flag. |
| 361 | |
| 362 | if (!getLexer().is(AsmToken::Comma)) |
| 363 | break; |
| 364 | Lex(); // Eat the comma. |
| 365 | } |
| 366 | return flags; |
| 367 | } |
| 368 | |
| 369 | |
Rafael Espindola | 58ac6e1 | 2011-02-16 01:08:29 +0000 | [diff] [blame] | 370 | bool ELFAsmParser::ParseDirectivePushSection(StringRef s, SMLoc loc) { |
| 371 | getStreamer().PushSection(); |
| 372 | |
Oliver Stannard | 8b27308 | 2014-06-19 15:52:37 +0000 | [diff] [blame] | 373 | if (ParseSectionArguments(/*IsPush=*/true, loc)) { |
Rafael Espindola | 58ac6e1 | 2011-02-16 01:08:29 +0000 | [diff] [blame] | 374 | getStreamer().PopSection(); |
| 375 | return true; |
| 376 | } |
| 377 | |
| 378 | return false; |
| 379 | } |
| 380 | |
| 381 | bool ELFAsmParser::ParseDirectivePopSection(StringRef, SMLoc) { |
| 382 | if (!getStreamer().PopSection()) |
| 383 | return TokError(".popsection without corresponding .pushsection"); |
| 384 | return false; |
| 385 | } |
| 386 | |
Oliver Stannard | 8b27308 | 2014-06-19 15:52:37 +0000 | [diff] [blame] | 387 | bool ELFAsmParser::ParseDirectiveSection(StringRef, SMLoc loc) { |
| 388 | return ParseSectionArguments(/*IsPush=*/false, loc); |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 389 | } |
| 390 | |
Rafael Espindola | d9953d9 | 2017-01-31 23:07:08 +0000 | [diff] [blame] | 391 | bool ELFAsmParser::maybeParseSectionType(StringRef &TypeName) { |
| 392 | MCAsmLexer &L = getLexer(); |
| 393 | if (L.isNot(AsmToken::Comma)) |
| 394 | return false; |
| 395 | Lex(); |
| 396 | if (L.isNot(AsmToken::At) && L.isNot(AsmToken::Percent) && |
Oliver Stannard | 8761e9b | 2017-03-17 11:10:17 +0000 | [diff] [blame] | 397 | L.isNot(AsmToken::String)) { |
| 398 | if (L.getAllowAtInIdentifier()) |
| 399 | return TokError("expected '@<type>', '%<type>' or \"<type>\""); |
| 400 | else |
| 401 | return TokError("expected '%<type>' or \"<type>\""); |
| 402 | } |
Rafael Espindola | d9953d9 | 2017-01-31 23:07:08 +0000 | [diff] [blame] | 403 | if (!L.is(AsmToken::String)) |
| 404 | Lex(); |
Simon Atanasyan | 2953224 | 2017-03-10 08:22:13 +0000 | [diff] [blame] | 405 | if (L.is(AsmToken::Integer)) { |
| 406 | TypeName = getTok().getString(); |
| 407 | Lex(); |
| 408 | } else if (getParser().parseIdentifier(TypeName)) |
Rafael Espindola | d9953d9 | 2017-01-31 23:07:08 +0000 | [diff] [blame] | 409 | return TokError("expected identifier in directive"); |
| 410 | return false; |
| 411 | } |
| 412 | |
Rafael Espindola | a86be22 | 2017-01-31 23:26:32 +0000 | [diff] [blame] | 413 | bool ELFAsmParser::parseMergeSize(int64_t &Size) { |
| 414 | if (getLexer().isNot(AsmToken::Comma)) |
| 415 | return TokError("expected the entry size"); |
| 416 | Lex(); |
| 417 | if (getParser().parseAbsoluteExpression(Size)) |
| 418 | return true; |
| 419 | if (Size <= 0) |
| 420 | return TokError("entry size must be positive"); |
| 421 | return false; |
| 422 | } |
| 423 | |
| 424 | bool ELFAsmParser::parseGroup(StringRef &GroupName) { |
| 425 | MCAsmLexer &L = getLexer(); |
| 426 | if (L.isNot(AsmToken::Comma)) |
| 427 | return TokError("expected group name"); |
| 428 | Lex(); |
George Rimar | 64edcdc | 2017-12-24 06:13:36 +0000 | [diff] [blame] | 429 | if (L.is(AsmToken::Integer)) { |
| 430 | GroupName = getTok().getString(); |
| 431 | Lex(); |
| 432 | } else if (getParser().parseIdentifier(GroupName)) { |
George Rimar | 18e6a78 | 2017-12-25 09:41:00 +0000 | [diff] [blame] | 433 | return TokError("invalid group name"); |
George Rimar | 64edcdc | 2017-12-24 06:13:36 +0000 | [diff] [blame] | 434 | } |
Rafael Espindola | a86be22 | 2017-01-31 23:26:32 +0000 | [diff] [blame] | 435 | if (L.is(AsmToken::Comma)) { |
| 436 | Lex(); |
| 437 | StringRef Linkage; |
| 438 | if (getParser().parseIdentifier(Linkage)) |
George Rimar | 18e6a78 | 2017-12-25 09:41:00 +0000 | [diff] [blame] | 439 | return TokError("invalid linkage"); |
Rafael Espindola | a86be22 | 2017-01-31 23:26:32 +0000 | [diff] [blame] | 440 | if (Linkage != "comdat") |
| 441 | return TokError("Linkage must be 'comdat'"); |
| 442 | } |
| 443 | return false; |
| 444 | } |
| 445 | |
Evgeniy Stepanov | 43dcf4d | 2017-03-14 19:28:51 +0000 | [diff] [blame] | 446 | bool ELFAsmParser::parseMetadataSym(MCSymbolELF *&Associated) { |
Rafael Espindola | dc1c301 | 2017-02-09 14:59:20 +0000 | [diff] [blame] | 447 | MCAsmLexer &L = getLexer(); |
| 448 | if (L.isNot(AsmToken::Comma)) |
| 449 | return TokError("expected metadata symbol"); |
| 450 | Lex(); |
| 451 | StringRef Name; |
| 452 | if (getParser().parseIdentifier(Name)) |
George Rimar | 7672eb8 | 2017-12-31 07:41:02 +0000 | [diff] [blame] | 453 | return TokError("invalid metadata symbol"); |
Evgeniy Stepanov | 43dcf4d | 2017-03-14 19:28:51 +0000 | [diff] [blame] | 454 | Associated = dyn_cast_or_null<MCSymbolELF>(getContext().lookupSymbol(Name)); |
| 455 | if (!Associated || !Associated->isInSection()) |
Rafael Espindola | dc1c301 | 2017-02-09 14:59:20 +0000 | [diff] [blame] | 456 | return TokError("symbol is not in a section: " + Name); |
Rafael Espindola | dc1c301 | 2017-02-09 14:59:20 +0000 | [diff] [blame] | 457 | return false; |
| 458 | } |
| 459 | |
Rafael Espindola | a86be22 | 2017-01-31 23:26:32 +0000 | [diff] [blame] | 460 | bool ELFAsmParser::maybeParseUniqueID(int64_t &UniqueID) { |
| 461 | MCAsmLexer &L = getLexer(); |
| 462 | if (L.isNot(AsmToken::Comma)) |
| 463 | return false; |
| 464 | Lex(); |
| 465 | StringRef UniqueStr; |
| 466 | if (getParser().parseIdentifier(UniqueStr)) |
| 467 | return TokError("expected identifier in directive"); |
| 468 | if (UniqueStr != "unique") |
| 469 | return TokError("expected 'unique'"); |
| 470 | if (L.isNot(AsmToken::Comma)) |
| 471 | return TokError("expected commma"); |
| 472 | Lex(); |
| 473 | if (getParser().parseAbsoluteExpression(UniqueID)) |
| 474 | return true; |
| 475 | if (UniqueID < 0) |
| 476 | return TokError("unique id must be positive"); |
| 477 | if (!isUInt<32>(UniqueID) || UniqueID == ~0U) |
| 478 | return TokError("unique id is too large"); |
| 479 | return false; |
| 480 | } |
| 481 | |
Rafael Espindola | ccd9f4f | 2017-03-22 13:35:41 +0000 | [diff] [blame] | 482 | static bool hasPrefix(StringRef SectionName, StringRef Prefix) { |
| 483 | return SectionName.startswith(Prefix) || SectionName == Prefix.drop_back(); |
| 484 | } |
| 485 | |
Oliver Stannard | 8b27308 | 2014-06-19 15:52:37 +0000 | [diff] [blame] | 486 | bool ELFAsmParser::ParseSectionArguments(bool IsPush, SMLoc loc) { |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 487 | StringRef SectionName; |
Rafael Espindola | f7f4332 | 2010-09-16 17:05:55 +0000 | [diff] [blame] | 488 | |
| 489 | if (ParseSectionName(SectionName)) |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 490 | return TokError("expected identifier in directive"); |
| 491 | |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 492 | StringRef TypeName; |
| 493 | int64_t Size = 0; |
Rafael Espindola | a3e9a22 | 2010-11-11 18:13:52 +0000 | [diff] [blame] | 494 | StringRef GroupName; |
Eric Christopher | 9855a5a | 2018-08-05 14:23:37 +0000 | [diff] [blame] | 495 | unsigned Flags = 0; |
Craig Topper | 353eda4 | 2014-04-24 06:44:33 +0000 | [diff] [blame] | 496 | const MCExpr *Subsection = nullptr; |
David Majnemer | a4b521b | 2013-09-15 19:24:16 +0000 | [diff] [blame] | 497 | bool UseLastGroup = false; |
Evgeniy Stepanov | 43dcf4d | 2017-03-14 19:28:51 +0000 | [diff] [blame] | 498 | MCSymbolELF *Associated = nullptr; |
Rafael Espindola | 8ca44f0 | 2015-04-04 18:02:01 +0000 | [diff] [blame] | 499 | int64_t UniqueID = ~0; |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 500 | |
Eric Christopher | 9855a5a | 2018-08-05 14:23:37 +0000 | [diff] [blame] | 501 | // Set the defaults first. |
| 502 | if (hasPrefix(SectionName, ".rodata.") || SectionName == ".rodata1") |
| 503 | Flags |= ELF::SHF_ALLOC; |
| 504 | else if (SectionName == ".fini" || SectionName == ".init" || |
| 505 | hasPrefix(SectionName, ".text.")) |
| 506 | Flags |= ELF::SHF_ALLOC | ELF::SHF_EXECINSTR; |
| 507 | else if (hasPrefix(SectionName, ".data.") || SectionName == ".data1" || |
| 508 | hasPrefix(SectionName, ".bss.") || |
| 509 | hasPrefix(SectionName, ".init_array.") || |
| 510 | hasPrefix(SectionName, ".fini_array.") || |
| 511 | hasPrefix(SectionName, ".preinit_array.")) |
| 512 | Flags |= ELF::SHF_ALLOC | ELF::SHF_WRITE; |
| 513 | else if (hasPrefix(SectionName, ".tdata.") || |
| 514 | hasPrefix(SectionName, ".tbss.")) |
| 515 | Flags |= ELF::SHF_ALLOC | ELF::SHF_WRITE | ELF::SHF_TLS; |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 516 | |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 517 | if (getLexer().is(AsmToken::Comma)) { |
| 518 | Lex(); |
| 519 | |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 520 | if (IsPush && getLexer().isNot(AsmToken::String)) { |
| 521 | if (getParser().parseExpression(Subsection)) |
| 522 | return true; |
| 523 | if (getLexer().isNot(AsmToken::Comma)) |
| 524 | goto EndStmt; |
| 525 | Lex(); |
| 526 | } |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 527 | |
Venkatraman Govindaraju | bf70566 | 2014-03-01 06:21:00 +0000 | [diff] [blame] | 528 | unsigned extraFlags; |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 529 | |
Venkatraman Govindaraju | bf70566 | 2014-03-01 06:21:00 +0000 | [diff] [blame] | 530 | if (getLexer().isNot(AsmToken::String)) { |
| 531 | if (!getContext().getAsmInfo()->usesSunStyleELFSectionSwitchSyntax() |
| 532 | || getLexer().isNot(AsmToken::Hash)) |
| 533 | return TokError("expected string in directive"); |
| 534 | extraFlags = parseSunStyleSectionFlags(); |
| 535 | } else { |
| 536 | StringRef FlagsStr = getTok().getStringContents(); |
| 537 | Lex(); |
| 538 | extraFlags = parseSectionFlags(FlagsStr, &UseLastGroup); |
| 539 | } |
| 540 | |
Benjamin Kramer | ac511ca | 2013-09-15 19:53:20 +0000 | [diff] [blame] | 541 | if (extraFlags == -1U) |
Rafael Espindola | f8e127e | 2010-11-25 15:32:56 +0000 | [diff] [blame] | 542 | return TokError("unknown flag"); |
| 543 | Flags |= extraFlags; |
| 544 | |
Rafael Espindola | 0e7e34e | 2011-01-23 04:43:11 +0000 | [diff] [blame] | 545 | bool Mergeable = Flags & ELF::SHF_MERGE; |
| 546 | bool Group = Flags & ELF::SHF_GROUP; |
David Majnemer | a4b521b | 2013-09-15 19:24:16 +0000 | [diff] [blame] | 547 | if (Group && UseLastGroup) |
| 548 | return TokError("Section cannot specifiy a group name while also acting " |
| 549 | "as a member of the last group"); |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 550 | |
Rafael Espindola | d9953d9 | 2017-01-31 23:07:08 +0000 | [diff] [blame] | 551 | if (maybeParseSectionType(TypeName)) |
| 552 | return true; |
| 553 | |
| 554 | MCAsmLexer &L = getLexer(); |
| 555 | if (TypeName.empty()) { |
Rafael Espindola | 8aefb66 | 2010-10-28 21:33:33 +0000 | [diff] [blame] | 556 | if (Mergeable) |
| 557 | return TokError("Mergeable section must specify the type"); |
| 558 | if (Group) |
| 559 | return TokError("Group section must specify the type"); |
Rafael Espindola | d9953d9 | 2017-01-31 23:07:08 +0000 | [diff] [blame] | 560 | if (L.isNot(AsmToken::EndOfStatement)) |
| 561 | return TokError("unexpected token in directive"); |
| 562 | } |
| 563 | |
Rafael Espindola | a86be22 | 2017-01-31 23:26:32 +0000 | [diff] [blame] | 564 | if (Mergeable) |
| 565 | if (parseMergeSize(Size)) |
Rafael Espindola | d9953d9 | 2017-01-31 23:07:08 +0000 | [diff] [blame] | 566 | return true; |
Rafael Espindola | a86be22 | 2017-01-31 23:26:32 +0000 | [diff] [blame] | 567 | if (Group) |
| 568 | if (parseGroup(GroupName)) |
Rafael Espindola | d9953d9 | 2017-01-31 23:07:08 +0000 | [diff] [blame] | 569 | return true; |
Rafael Espindola | dc1c301 | 2017-02-09 14:59:20 +0000 | [diff] [blame] | 570 | if (Flags & ELF::SHF_LINK_ORDER) |
| 571 | if (parseMetadataSym(Associated)) |
| 572 | return true; |
Rafael Espindola | a86be22 | 2017-01-31 23:26:32 +0000 | [diff] [blame] | 573 | if (maybeParseUniqueID(UniqueID)) |
| 574 | return true; |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 575 | } |
| 576 | |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 577 | EndStmt: |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 578 | if (getLexer().isNot(AsmToken::EndOfStatement)) |
| 579 | return TokError("unexpected token in directive"); |
Nirav Dave | a645433c | 2016-07-18 15:24:03 +0000 | [diff] [blame] | 580 | Lex(); |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 581 | |
Rafael Espindola | aea4958 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 582 | unsigned Type = ELF::SHT_PROGBITS; |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 583 | |
Joerg Sonnenberger | e2bb314 | 2013-02-16 00:32:53 +0000 | [diff] [blame] | 584 | if (TypeName.empty()) { |
| 585 | if (SectionName.startswith(".note")) |
| 586 | Type = ELF::SHT_NOTE; |
Rafael Espindola | ccd9f4f | 2017-03-22 13:35:41 +0000 | [diff] [blame] | 587 | else if (hasPrefix(SectionName, ".init_array.")) |
Joerg Sonnenberger | e2bb314 | 2013-02-16 00:32:53 +0000 | [diff] [blame] | 588 | Type = ELF::SHT_INIT_ARRAY; |
Rafael Espindola | f4b9da6 | 2017-03-22 13:57:16 +0000 | [diff] [blame] | 589 | else if (hasPrefix(SectionName, ".bss.")) |
| 590 | Type = ELF::SHT_NOBITS; |
Rafael Espindola | 72dc254 | 2017-03-22 14:04:19 +0000 | [diff] [blame] | 591 | else if (hasPrefix(SectionName, ".tbss.")) |
| 592 | Type = ELF::SHT_NOBITS; |
Petr Hosek | 880cfd4 | 2017-04-04 23:32:45 +0000 | [diff] [blame] | 593 | else if (hasPrefix(SectionName, ".fini_array.")) |
Joerg Sonnenberger | e2bb314 | 2013-02-16 00:32:53 +0000 | [diff] [blame] | 594 | Type = ELF::SHT_FINI_ARRAY; |
Petr Hosek | 880cfd4 | 2017-04-04 23:32:45 +0000 | [diff] [blame] | 595 | else if (hasPrefix(SectionName, ".preinit_array.")) |
Joerg Sonnenberger | e2bb314 | 2013-02-16 00:32:53 +0000 | [diff] [blame] | 596 | Type = ELF::SHT_PREINIT_ARRAY; |
| 597 | } else { |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 598 | if (TypeName == "init_array") |
Rafael Espindola | aea4958 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 599 | Type = ELF::SHT_INIT_ARRAY; |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 600 | else if (TypeName == "fini_array") |
Rafael Espindola | aea4958 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 601 | Type = ELF::SHT_FINI_ARRAY; |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 602 | else if (TypeName == "preinit_array") |
Rafael Espindola | aea4958 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 603 | Type = ELF::SHT_PREINIT_ARRAY; |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 604 | else if (TypeName == "nobits") |
Rafael Espindola | aea4958 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 605 | Type = ELF::SHT_NOBITS; |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 606 | else if (TypeName == "progbits") |
Rafael Espindola | aea4958 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 607 | Type = ELF::SHT_PROGBITS; |
Rafael Espindola | 9ae2d05 | 2010-12-26 21:30:59 +0000 | [diff] [blame] | 608 | else if (TypeName == "note") |
Rafael Espindola | aea4958 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 609 | Type = ELF::SHT_NOTE; |
Rafael Espindola | 4b7b7fb | 2011-01-23 05:43:40 +0000 | [diff] [blame] | 610 | else if (TypeName == "unwind") |
| 611 | Type = ELF::SHT_X86_64_UNWIND; |
Peter Collingbourne | f0e26e7 | 2017-06-14 18:52:12 +0000 | [diff] [blame] | 612 | else if (TypeName == "llvm_odrtab") |
| 613 | Type = ELF::SHT_LLVM_ODRTAB; |
Saleem Abdulrasool | b36fbbc | 2018-01-30 16:29:29 +0000 | [diff] [blame] | 614 | else if (TypeName == "llvm_linker_options") |
| 615 | Type = ELF::SHT_LLVM_LINKER_OPTIONS; |
Michael J. Spencer | ae6eeae | 2018-06-02 16:33:01 +0000 | [diff] [blame] | 616 | else if (TypeName == "llvm_call_graph_profile") |
| 617 | Type = ELF::SHT_LLVM_CALL_GRAPH_PROFILE; |
Simon Atanasyan | 2953224 | 2017-03-10 08:22:13 +0000 | [diff] [blame] | 618 | else if (TypeName.getAsInteger(0, Type)) |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 619 | return TokError("unknown section type"); |
| 620 | } |
| 621 | |
David Majnemer | a4b521b | 2013-09-15 19:24:16 +0000 | [diff] [blame] | 622 | if (UseLastGroup) { |
| 623 | MCSectionSubPair CurrentSection = getStreamer().getCurrentSection(); |
| 624 | if (const MCSectionELF *Section = |
| 625 | cast_or_null<MCSectionELF>(CurrentSection.first)) |
| 626 | if (const MCSymbol *Group = Section->getGroup()) { |
| 627 | GroupName = Group->getName(); |
| 628 | Flags |= ELF::SHF_GROUP; |
| 629 | } |
| 630 | } |
| 631 | |
Evgeniy Stepanov | 43dcf4d | 2017-03-14 19:28:51 +0000 | [diff] [blame] | 632 | MCSection *ELFSection = |
| 633 | getContext().getELFSection(SectionName, Type, Flags, Size, GroupName, |
| 634 | UniqueID, Associated); |
Oliver Stannard | 8b27308 | 2014-06-19 15:52:37 +0000 | [diff] [blame] | 635 | getStreamer().SwitchSection(ELFSection, Subsection); |
| 636 | |
| 637 | if (getContext().getGenDwarfForAssembly()) { |
Rafael Espindola | e074679 | 2015-05-21 16:52:32 +0000 | [diff] [blame] | 638 | bool InsertResult = getContext().addGenDwarfSection(ELFSection); |
| 639 | if (InsertResult) { |
Oliver Stannard | 8b27308 | 2014-06-19 15:52:37 +0000 | [diff] [blame] | 640 | if (getContext().getDwarfVersion() <= 2) |
Oliver Stannard | 14f97d0 | 2014-09-22 10:45:16 +0000 | [diff] [blame] | 641 | Warning(loc, "DWARF2 only supports one section per compilation unit"); |
Oliver Stannard | 8b27308 | 2014-06-19 15:52:37 +0000 | [diff] [blame] | 642 | |
Rafael Espindola | 2f9bdd8 | 2015-05-27 20:52:32 +0000 | [diff] [blame] | 643 | if (!ELFSection->getBeginSymbol()) { |
| 644 | MCSymbol *SectionStartSymbol = getContext().createTempSymbol(); |
| 645 | getStreamer().EmitLabel(SectionStartSymbol); |
| 646 | ELFSection->setBeginSymbol(SectionStartSymbol); |
| 647 | } |
Oliver Stannard | 8b27308 | 2014-06-19 15:52:37 +0000 | [diff] [blame] | 648 | } |
| 649 | } |
| 650 | |
Eli Friedman | 9e36dd0 | 2010-07-17 04:29:04 +0000 | [diff] [blame] | 651 | return false; |
| 652 | } |
| 653 | |
Benjamin Kramer | e39017c | 2010-09-02 18:53:37 +0000 | [diff] [blame] | 654 | bool ELFAsmParser::ParseDirectivePrevious(StringRef DirName, SMLoc) { |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 655 | MCSectionSubPair PreviousSection = getStreamer().getPreviousSection(); |
Craig Topper | 353eda4 | 2014-04-24 06:44:33 +0000 | [diff] [blame] | 656 | if (PreviousSection.first == nullptr) |
Rafael Espindola | 58ac6e1 | 2011-02-16 01:08:29 +0000 | [diff] [blame] | 657 | return TokError(".previous without corresponding .section"); |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 658 | getStreamer().SwitchSection(PreviousSection.first, PreviousSection.second); |
Benjamin Kramer | e39017c | 2010-09-02 18:53:37 +0000 | [diff] [blame] | 659 | |
| 660 | return false; |
| 661 | } |
| 662 | |
Saleem Abdulrasool | 13b414a | 2014-06-08 00:34:34 +0000 | [diff] [blame] | 663 | static MCSymbolAttr MCAttrForString(StringRef Type) { |
| 664 | return StringSwitch<MCSymbolAttr>(Type) |
| 665 | .Cases("STT_FUNC", "function", MCSA_ELF_TypeFunction) |
| 666 | .Cases("STT_OBJECT", "object", MCSA_ELF_TypeObject) |
| 667 | .Cases("STT_TLS", "tls_object", MCSA_ELF_TypeTLS) |
| 668 | .Cases("STT_COMMON", "common", MCSA_ELF_TypeCommon) |
| 669 | .Cases("STT_NOTYPE", "notype", MCSA_ELF_TypeNoType) |
| 670 | .Cases("STT_GNU_IFUNC", "gnu_indirect_function", |
| 671 | MCSA_ELF_TypeIndFunction) |
| 672 | .Case("gnu_unique_object", MCSA_ELF_TypeGnuUniqueObject) |
| 673 | .Default(MCSA_Invalid); |
| 674 | } |
| 675 | |
Michael J. Spencer | 3d89823 | 2010-10-09 03:47:55 +0000 | [diff] [blame] | 676 | /// ParseDirectiveELFType |
David Majnemer | f90c3b5 | 2013-09-21 05:25:12 +0000 | [diff] [blame] | 677 | /// ::= .type identifier , STT_<TYPE_IN_UPPER_CASE> |
| 678 | /// ::= .type identifier , #attribute |
Michael J. Spencer | 3d89823 | 2010-10-09 03:47:55 +0000 | [diff] [blame] | 679 | /// ::= .type identifier , @attribute |
David Majnemer | f90c3b5 | 2013-09-21 05:25:12 +0000 | [diff] [blame] | 680 | /// ::= .type identifier , %attribute |
| 681 | /// ::= .type identifier , "attribute" |
Michael J. Spencer | 3d89823 | 2010-10-09 03:47:55 +0000 | [diff] [blame] | 682 | bool ELFAsmParser::ParseDirectiveType(StringRef, SMLoc) { |
| 683 | StringRef Name; |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 684 | if (getParser().parseIdentifier(Name)) |
Michael J. Spencer | 3d89823 | 2010-10-09 03:47:55 +0000 | [diff] [blame] | 685 | return TokError("expected identifier in directive"); |
| 686 | |
| 687 | // Handle the identifier as the key symbol. |
Jim Grosbach | 6f48200 | 2015-05-18 18:43:14 +0000 | [diff] [blame] | 688 | MCSymbol *Sym = getContext().getOrCreateSymbol(Name); |
Michael J. Spencer | 3d89823 | 2010-10-09 03:47:55 +0000 | [diff] [blame] | 689 | |
Saleem Abdulrasool | 13b414a | 2014-06-08 00:34:34 +0000 | [diff] [blame] | 690 | // NOTE the comma is optional in all cases. It is only documented as being |
| 691 | // optional in the first case, however, GAS will silently treat the comma as |
| 692 | // optional in all cases. Furthermore, although the documentation states that |
| 693 | // the first form only accepts STT_<TYPE_IN_UPPER_CASE>, in reality, GAS |
| 694 | // accepts both the upper case name as well as the lower case aliases. |
| 695 | if (getLexer().is(AsmToken::Comma)) |
| 696 | Lex(); |
Michael J. Spencer | 3d89823 | 2010-10-09 03:47:55 +0000 | [diff] [blame] | 697 | |
Saleem Abdulrasool | 13b414a | 2014-06-08 00:34:34 +0000 | [diff] [blame] | 698 | if (getLexer().isNot(AsmToken::Identifier) && |
Gabor Ballabas | af06a88 | 2015-07-01 08:58:49 +0000 | [diff] [blame] | 699 | getLexer().isNot(AsmToken::Hash) && |
| 700 | getLexer().isNot(AsmToken::Percent) && |
| 701 | getLexer().isNot(AsmToken::String)) { |
| 702 | if (!getLexer().getAllowAtInIdentifier()) |
| 703 | return TokError("expected STT_<TYPE_IN_UPPER_CASE>, '#<type>', " |
| 704 | "'%<type>' or \"<type>\""); |
| 705 | else if (getLexer().isNot(AsmToken::At)) |
| 706 | return TokError("expected STT_<TYPE_IN_UPPER_CASE>, '#<type>', '@<type>', " |
| 707 | "'%<type>' or \"<type>\""); |
| 708 | } |
Michael J. Spencer | 3d89823 | 2010-10-09 03:47:55 +0000 | [diff] [blame] | 709 | |
Saleem Abdulrasool | 13b414a | 2014-06-08 00:34:34 +0000 | [diff] [blame] | 710 | if (getLexer().isNot(AsmToken::String) && |
| 711 | getLexer().isNot(AsmToken::Identifier)) |
| 712 | Lex(); |
| 713 | |
| 714 | SMLoc TypeLoc = getLexer().getLoc(); |
| 715 | |
| 716 | StringRef Type; |
| 717 | if (getParser().parseIdentifier(Type)) |
| 718 | return TokError("expected symbol type in directive"); |
| 719 | |
| 720 | MCSymbolAttr Attr = MCAttrForString(Type); |
Michael J. Spencer | 3d89823 | 2010-10-09 03:47:55 +0000 | [diff] [blame] | 721 | if (Attr == MCSA_Invalid) |
| 722 | return Error(TypeLoc, "unsupported attribute in '.type' directive"); |
| 723 | |
| 724 | if (getLexer().isNot(AsmToken::EndOfStatement)) |
| 725 | return TokError("unexpected token in '.type' directive"); |
Michael J. Spencer | 3d89823 | 2010-10-09 03:47:55 +0000 | [diff] [blame] | 726 | Lex(); |
| 727 | |
| 728 | getStreamer().EmitSymbolAttribute(Sym, Attr); |
| 729 | |
| 730 | return false; |
| 731 | } |
| 732 | |
Rafael Espindola | c9fb35e | 2010-10-26 19:35:47 +0000 | [diff] [blame] | 733 | /// ParseDirectiveIdent |
| 734 | /// ::= .ident string |
| 735 | bool ELFAsmParser::ParseDirectiveIdent(StringRef, SMLoc) { |
| 736 | if (getLexer().isNot(AsmToken::String)) |
| 737 | return TokError("unexpected token in '.ident' directive"); |
| 738 | |
| 739 | StringRef Data = getTok().getIdentifier(); |
| 740 | |
| 741 | Lex(); |
| 742 | |
Nirav Dave | a645433c | 2016-07-18 15:24:03 +0000 | [diff] [blame] | 743 | if (getLexer().isNot(AsmToken::EndOfStatement)) |
| 744 | return TokError("unexpected token in '.ident' directive"); |
| 745 | Lex(); |
| 746 | |
Rafael Espindola | 5645bad | 2013-10-16 01:05:45 +0000 | [diff] [blame] | 747 | getStreamer().EmitIdent(Data); |
Rafael Espindola | c9fb35e | 2010-10-26 19:35:47 +0000 | [diff] [blame] | 748 | return false; |
| 749 | } |
| 750 | |
Rafael Espindola | eb0c2c1 | 2010-10-27 15:18:17 +0000 | [diff] [blame] | 751 | /// ParseDirectiveSymver |
| 752 | /// ::= .symver foo, bar2@zed |
| 753 | bool ELFAsmParser::ParseDirectiveSymver(StringRef, SMLoc) { |
| 754 | StringRef Name; |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 755 | if (getParser().parseIdentifier(Name)) |
Rafael Espindola | eb0c2c1 | 2010-10-27 15:18:17 +0000 | [diff] [blame] | 756 | return TokError("expected identifier in directive"); |
| 757 | |
| 758 | if (getLexer().isNot(AsmToken::Comma)) |
| 759 | return TokError("expected a comma"); |
| 760 | |
David Peixotto | c0f92a2 | 2014-01-15 22:40:02 +0000 | [diff] [blame] | 761 | // ARM assembly uses @ for a comment... |
| 762 | // except when parsing the second parameter of the .symver directive. |
| 763 | // Force the next symbol to allow @ in the identifier, which is |
| 764 | // required for this directive and then reset it to its initial state. |
| 765 | const bool AllowAtInIdentifier = getLexer().getAllowAtInIdentifier(); |
| 766 | getLexer().setAllowAtInIdentifier(true); |
Rafael Espindola | eb0c2c1 | 2010-10-27 15:18:17 +0000 | [diff] [blame] | 767 | Lex(); |
David Peixotto | c0f92a2 | 2014-01-15 22:40:02 +0000 | [diff] [blame] | 768 | getLexer().setAllowAtInIdentifier(AllowAtInIdentifier); |
Rafael Espindola | eb0c2c1 | 2010-10-27 15:18:17 +0000 | [diff] [blame] | 769 | |
| 770 | StringRef AliasName; |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 771 | if (getParser().parseIdentifier(AliasName)) |
Rafael Espindola | eb0c2c1 | 2010-10-27 15:18:17 +0000 | [diff] [blame] | 772 | return TokError("expected identifier in directive"); |
| 773 | |
| 774 | if (AliasName.find('@') == StringRef::npos) |
| 775 | return TokError("expected a '@' in the name"); |
| 776 | |
Jim Grosbach | 6f48200 | 2015-05-18 18:43:14 +0000 | [diff] [blame] | 777 | MCSymbol *Sym = getContext().getOrCreateSymbol(Name); |
Rafael Espindola | 47b4d6b | 2018-03-09 18:42:25 +0000 | [diff] [blame] | 778 | getStreamer().emitELFSymverDirective(AliasName, Sym); |
Rafael Espindola | eb0c2c1 | 2010-10-27 15:18:17 +0000 | [diff] [blame] | 779 | return false; |
| 780 | } |
| 781 | |
Benjamin Kramer | 6bee7f7 | 2012-05-12 14:30:47 +0000 | [diff] [blame] | 782 | /// ParseDirectiveVersion |
| 783 | /// ::= .version string |
| 784 | bool ELFAsmParser::ParseDirectiveVersion(StringRef, SMLoc) { |
| 785 | if (getLexer().isNot(AsmToken::String)) |
| 786 | return TokError("unexpected token in '.version' directive"); |
| 787 | |
| 788 | StringRef Data = getTok().getIdentifier(); |
| 789 | |
| 790 | Lex(); |
| 791 | |
Rafael Espindola | 0709a7b | 2015-05-21 19:20:38 +0000 | [diff] [blame] | 792 | MCSection *Note = getContext().getELFSection(".note", ELF::SHT_NOTE, 0); |
Benjamin Kramer | 6bee7f7 | 2012-05-12 14:30:47 +0000 | [diff] [blame] | 793 | |
| 794 | getStreamer().PushSection(); |
| 795 | getStreamer().SwitchSection(Note); |
| 796 | getStreamer().EmitIntValue(Data.size()+1, 4); // namesz. |
| 797 | getStreamer().EmitIntValue(0, 4); // descsz = 0 (no description). |
| 798 | getStreamer().EmitIntValue(1, 4); // type = NT_VERSION. |
Eric Christopher | e3ab3d0 | 2013-01-09 01:57:54 +0000 | [diff] [blame] | 799 | getStreamer().EmitBytes(Data); // name. |
Benjamin Kramer | 6bee7f7 | 2012-05-12 14:30:47 +0000 | [diff] [blame] | 800 | getStreamer().EmitIntValue(0, 1); // terminate the string. |
| 801 | getStreamer().EmitValueToAlignment(4); // ensure 4 byte alignment. |
| 802 | getStreamer().PopSection(); |
| 803 | return false; |
| 804 | } |
| 805 | |
Rafael Espindola | 1614597 | 2010-11-01 14:28:48 +0000 | [diff] [blame] | 806 | /// ParseDirectiveWeakref |
| 807 | /// ::= .weakref foo, bar |
| 808 | bool ELFAsmParser::ParseDirectiveWeakref(StringRef, SMLoc) { |
| 809 | // FIXME: Share code with the other alias building directives. |
| 810 | |
| 811 | StringRef AliasName; |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 812 | if (getParser().parseIdentifier(AliasName)) |
Rafael Espindola | 1614597 | 2010-11-01 14:28:48 +0000 | [diff] [blame] | 813 | return TokError("expected identifier in directive"); |
| 814 | |
| 815 | if (getLexer().isNot(AsmToken::Comma)) |
| 816 | return TokError("expected a comma"); |
| 817 | |
| 818 | Lex(); |
| 819 | |
| 820 | StringRef Name; |
Jim Grosbach | d2037eb | 2013-02-20 22:21:35 +0000 | [diff] [blame] | 821 | if (getParser().parseIdentifier(Name)) |
Rafael Espindola | 1614597 | 2010-11-01 14:28:48 +0000 | [diff] [blame] | 822 | return TokError("expected identifier in directive"); |
| 823 | |
Jim Grosbach | 6f48200 | 2015-05-18 18:43:14 +0000 | [diff] [blame] | 824 | MCSymbol *Alias = getContext().getOrCreateSymbol(AliasName); |
Rafael Espindola | 1614597 | 2010-11-01 14:28:48 +0000 | [diff] [blame] | 825 | |
Jim Grosbach | 6f48200 | 2015-05-18 18:43:14 +0000 | [diff] [blame] | 826 | MCSymbol *Sym = getContext().getOrCreateSymbol(Name); |
Rafael Espindola | 1614597 | 2010-11-01 14:28:48 +0000 | [diff] [blame] | 827 | |
| 828 | getStreamer().EmitWeakReference(Alias, Sym); |
| 829 | return false; |
| 830 | } |
| 831 | |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 832 | bool ELFAsmParser::ParseDirectiveSubsection(StringRef, SMLoc) { |
Craig Topper | 353eda4 | 2014-04-24 06:44:33 +0000 | [diff] [blame] | 833 | const MCExpr *Subsection = nullptr; |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 834 | if (getLexer().isNot(AsmToken::EndOfStatement)) { |
| 835 | if (getParser().parseExpression(Subsection)) |
| 836 | return true; |
| 837 | } |
| 838 | |
| 839 | if (getLexer().isNot(AsmToken::EndOfStatement)) |
| 840 | return TokError("unexpected token in directive"); |
| 841 | |
Nirav Dave | a645433c | 2016-07-18 15:24:03 +0000 | [diff] [blame] | 842 | Lex(); |
| 843 | |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 844 | getStreamer().SubSection(Subsection); |
| 845 | return false; |
| 846 | } |
| 847 | |
Michael J. Spencer | ae6eeae | 2018-06-02 16:33:01 +0000 | [diff] [blame] | 848 | /// ParseDirectiveCGProfile |
| 849 | /// ::= .cg_profile identifier, identifier, <number> |
| 850 | bool ELFAsmParser::ParseDirectiveCGProfile(StringRef, SMLoc) { |
| 851 | StringRef From; |
| 852 | SMLoc FromLoc = getLexer().getLoc(); |
| 853 | if (getParser().parseIdentifier(From)) |
| 854 | return TokError("expected identifier in directive"); |
| 855 | |
| 856 | if (getLexer().isNot(AsmToken::Comma)) |
| 857 | return TokError("expected a comma"); |
| 858 | Lex(); |
| 859 | |
| 860 | StringRef To; |
| 861 | SMLoc ToLoc = getLexer().getLoc(); |
| 862 | if (getParser().parseIdentifier(To)) |
| 863 | return TokError("expected identifier in directive"); |
| 864 | |
| 865 | if (getLexer().isNot(AsmToken::Comma)) |
| 866 | return TokError("expected a comma"); |
| 867 | Lex(); |
| 868 | |
| 869 | int64_t Count; |
| 870 | if (getParser().parseIntToken( |
| 871 | Count, "expected integer count in '.cg_profile' directive")) |
| 872 | return true; |
| 873 | |
| 874 | if (getLexer().isNot(AsmToken::EndOfStatement)) |
| 875 | return TokError("unexpected token in directive"); |
| 876 | |
| 877 | MCSymbol *FromSym = getContext().getOrCreateSymbol(From); |
| 878 | MCSymbol *ToSym = getContext().getOrCreateSymbol(To); |
| 879 | |
| 880 | getStreamer().emitCGProfileEntry( |
| 881 | MCSymbolRefExpr::create(FromSym, MCSymbolRefExpr::VK_None, getContext(), |
| 882 | FromLoc), |
| 883 | MCSymbolRefExpr::create(ToSym, MCSymbolRefExpr::VK_None, getContext(), |
| 884 | ToLoc), |
| 885 | Count); |
| 886 | return false; |
| 887 | } |
| 888 | |
Daniel Dunbar | ab058b8 | 2010-07-12 21:23:32 +0000 | [diff] [blame] | 889 | namespace llvm { |
| 890 | |
| 891 | MCAsmParserExtension *createELFAsmParser() { |
| 892 | return new ELFAsmParser; |
| 893 | } |
| 894 | |
Eugene Zelenko | 1d43552 | 2017-02-07 23:02:00 +0000 | [diff] [blame] | 895 | } // end namespace llvm |