blob: 1f045ac1711fe3841db19247971d4a3c1832235c [file] [log] [blame]
Chris Lattner27aa7d22009-06-21 20:16:42 +00001//===- AsmParser.cpp - Parser for Assembly Files --------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This class implements the parser for assembly files.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattnerbe343b32010-01-22 01:58:08 +000014#include "llvm/MC/MCParser/AsmParser.h"
Daniel Dunbar7c0a3342009-08-26 22:49:51 +000015#include "llvm/ADT/SmallString.h"
Daniel Dunbarf9507ff2009-07-27 23:20:52 +000016#include "llvm/ADT/Twine.h"
Daniel Dunbarecc63f82009-06-23 22:01:43 +000017#include "llvm/MC/MCContext.h"
Daniel Dunbar28c251b2009-08-31 08:06:59 +000018#include "llvm/MC/MCExpr.h"
Chris Lattner29dfe7c2009-06-23 18:41:30 +000019#include "llvm/MC/MCInst.h"
Chris Lattnerf9bdedd2009-08-10 18:15:01 +000020#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbarecc63f82009-06-23 22:01:43 +000021#include "llvm/MC/MCStreamer.h"
Daniel Dunbardce0f3c2009-06-29 23:43:14 +000022#include "llvm/MC/MCSymbol.h"
Chris Lattnerc6ef2772010-01-22 01:44:57 +000023#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
Bill Wendling9bc0af82009-12-28 01:34:57 +000024#include "llvm/Support/Compiler.h"
Chris Lattnerb0789ed2009-06-21 20:54:55 +000025#include "llvm/Support/SourceMgr.h"
26#include "llvm/Support/raw_ostream.h"
Daniel Dunbara3af3702009-07-20 18:55:04 +000027#include "llvm/Target/TargetAsmParser.h"
Chris Lattner27aa7d22009-06-21 20:16:42 +000028using namespace llvm;
29
Chris Lattneraaec2052010-01-19 19:46:13 +000030
31enum { DEFAULT_ADDRSPACE = 0 };
32
Chris Lattnerebb89b42009-09-27 21:16:52 +000033AsmParser::AsmParser(SourceMgr &_SM, MCContext &_Ctx, MCStreamer &_Out,
34 const MCAsmInfo &_MAI)
Sean Callananfd0b0282010-01-21 00:19:58 +000035 : Lexer(_MAI), Ctx(_Ctx), Out(_Out), SrcMgr(_SM), TargetParser(0),
Chris Lattnerf0559e42010-04-08 20:30:37 +000036 CurBuffer(0) {
Sean Callananfd0b0282010-01-21 00:19:58 +000037 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
38
Chris Lattnerebb89b42009-09-27 21:16:52 +000039 // Debugging directives.
40 AddDirectiveHandler(".file", &AsmParser::ParseDirectiveFile);
41 AddDirectiveHandler(".line", &AsmParser::ParseDirectiveLine);
42 AddDirectiveHandler(".loc", &AsmParser::ParseDirectiveLoc);
43}
44
45
46
Daniel Dunbar7c0a3342009-08-26 22:49:51 +000047AsmParser::~AsmParser() {
Daniel Dunbar7c0a3342009-08-26 22:49:51 +000048}
49
Daniel Dunbarf9507ff2009-07-27 23:20:52 +000050void AsmParser::Warning(SMLoc L, const Twine &Msg) {
Sean Callananbf2013e2010-01-20 23:19:55 +000051 PrintMessage(L, Msg.str(), "warning");
Daniel Dunbar3fb76832009-06-30 00:49:23 +000052}
53
Daniel Dunbarf9507ff2009-07-27 23:20:52 +000054bool AsmParser::Error(SMLoc L, const Twine &Msg) {
Sean Callananbf2013e2010-01-20 23:19:55 +000055 PrintMessage(L, Msg.str(), "error");
Chris Lattner14ee48a2009-06-21 21:22:11 +000056 return true;
57}
58
59bool AsmParser::TokError(const char *Msg) {
Sean Callananbf2013e2010-01-20 23:19:55 +000060 PrintMessage(Lexer.getLoc(), Msg, "error");
Chris Lattner14ee48a2009-06-21 21:22:11 +000061 return true;
62}
63
Sean Callananbf2013e2010-01-20 23:19:55 +000064void AsmParser::PrintMessage(SMLoc Loc, const std::string &Msg,
65 const char *Type) const {
66 SrcMgr.PrintMessage(Loc, Msg, Type);
67}
Sean Callananfd0b0282010-01-21 00:19:58 +000068
69bool AsmParser::EnterIncludeFile(const std::string &Filename) {
70 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc());
71 if (NewBuf == -1)
72 return true;
Sean Callanan79036e42010-01-20 22:18:24 +000073
Sean Callananfd0b0282010-01-21 00:19:58 +000074 CurBuffer = NewBuf;
75
76 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
77
78 return false;
79}
80
81const AsmToken &AsmParser::Lex() {
82 const AsmToken *tok = &Lexer.Lex();
83
84 if (tok->is(AsmToken::Eof)) {
85 // If this is the end of an included file, pop the parent file off the
86 // include stack.
87 SMLoc ParentIncludeLoc = SrcMgr.getParentIncludeLoc(CurBuffer);
88 if (ParentIncludeLoc != SMLoc()) {
89 CurBuffer = SrcMgr.FindBufferContainingLoc(ParentIncludeLoc);
90 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer),
91 ParentIncludeLoc.getPointer());
92 tok = &Lexer.Lex();
93 }
94 }
95
96 if (tok->is(AsmToken::Error))
Sean Callananbf2013e2010-01-20 23:19:55 +000097 PrintMessage(Lexer.getErrLoc(), Lexer.getErr(), "error");
Sean Callanan79036e42010-01-20 22:18:24 +000098
Sean Callananfd0b0282010-01-21 00:19:58 +000099 return *tok;
Sean Callanan79ed1a82010-01-19 20:22:31 +0000100}
101
Chris Lattner79180e22010-04-05 23:15:42 +0000102bool AsmParser::Run(bool NoInitialTextSection, bool NoFinalize) {
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000103 // Create the initial section, if requested.
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000104 //
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000105 // FIXME: Target hook & command line option for initial section.
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000106 if (!NoInitialTextSection)
Chris Lattnerf0559e42010-04-08 20:30:37 +0000107 Out.SwitchSection(Ctx.getMachOSection("__TEXT", "__text",
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000108 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
109 0, SectionKind::getText()));
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000110
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000111 // Prime the lexer.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000112 Lex();
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000113
Chris Lattnerb717fb02009-07-02 21:53:43 +0000114 bool HadError = false;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000115
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000116 AsmCond StartingCondState = TheCondState;
117
Chris Lattnerb717fb02009-07-02 21:53:43 +0000118 // While we have input, parse each statement.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000119 while (Lexer.isNot(AsmToken::Eof)) {
Chris Lattnerb717fb02009-07-02 21:53:43 +0000120 if (!ParseStatement()) continue;
121
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000122 // We had an error, remember it and recover by skipping to the next line.
Chris Lattnerb717fb02009-07-02 21:53:43 +0000123 HadError = true;
124 EatToEndOfStatement();
125 }
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000126
127 if (TheCondState.TheCond != StartingCondState.TheCond ||
128 TheCondState.Ignore != StartingCondState.Ignore)
129 return TokError("unmatched .ifs or .elses");
Chris Lattnerb717fb02009-07-02 21:53:43 +0000130
Chris Lattner79180e22010-04-05 23:15:42 +0000131 // Finalize the output stream if there are no errors and if the client wants
132 // us to.
133 if (!HadError && !NoFinalize)
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000134 Out.Finish();
135
Chris Lattnerb717fb02009-07-02 21:53:43 +0000136 return HadError;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000137}
138
Chris Lattner2cf5f142009-06-22 01:29:09 +0000139/// EatToEndOfStatement - Throw away the rest of the line for testing purposes.
140void AsmParser::EatToEndOfStatement() {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000141 while (Lexer.isNot(AsmToken::EndOfStatement) &&
142 Lexer.isNot(AsmToken::Eof))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000143 Lex();
Chris Lattner2cf5f142009-06-22 01:29:09 +0000144
145 // Eat EOL.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000146 if (Lexer.is(AsmToken::EndOfStatement))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000147 Lex();
Chris Lattner2cf5f142009-06-22 01:29:09 +0000148}
149
Chris Lattnerc4193832009-06-22 05:51:26 +0000150
Chris Lattner74ec1a32009-06-22 06:32:03 +0000151/// ParseParenExpr - Parse a paren expression and return it.
152/// NOTE: This assumes the leading '(' has already been consumed.
153///
154/// parenexpr ::= expr)
155///
Chris Lattnerb4307b32010-01-15 19:28:38 +0000156bool AsmParser::ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner74ec1a32009-06-22 06:32:03 +0000157 if (ParseExpression(Res)) return true;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000158 if (Lexer.isNot(AsmToken::RParen))
Chris Lattner74ec1a32009-06-22 06:32:03 +0000159 return TokError("expected ')' in parentheses expression");
Chris Lattnerb4307b32010-01-15 19:28:38 +0000160 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000161 Lex();
Chris Lattner74ec1a32009-06-22 06:32:03 +0000162 return false;
163}
Chris Lattnerc4193832009-06-22 05:51:26 +0000164
Daniel Dunbar959fd882009-08-26 22:13:22 +0000165MCSymbol *AsmParser::CreateSymbol(StringRef Name) {
Chris Lattner9b97a732010-03-30 18:10:53 +0000166 // FIXME: Inline into callers.
Chris Lattner00685bb2010-03-10 01:29:27 +0000167 return Ctx.GetOrCreateSymbol(Name);
Daniel Dunbar959fd882009-08-26 22:13:22 +0000168}
169
Chris Lattner74ec1a32009-06-22 06:32:03 +0000170/// ParsePrimaryExpr - Parse a primary expression and return it.
171/// primaryexpr ::= (parenexpr
172/// primaryexpr ::= symbol
173/// primaryexpr ::= number
Chris Lattnerd3050352010-04-14 04:40:28 +0000174/// primaryexpr ::= '.'
Chris Lattner74ec1a32009-06-22 06:32:03 +0000175/// primaryexpr ::= ~,+,- primaryexpr
Chris Lattnerb4307b32010-01-15 19:28:38 +0000176bool AsmParser::ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattnerc4193832009-06-22 05:51:26 +0000177 switch (Lexer.getKind()) {
178 default:
179 return TokError("unknown token in expression");
Daniel Dunbar3f872332009-07-28 16:08:33 +0000180 case AsmToken::Exclaim:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000181 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000182 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000183 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000184 Res = MCUnaryExpr::CreateLNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000185 return false;
Daniel Dunbar76c4d762009-07-31 21:55:09 +0000186 case AsmToken::String:
Daniel Dunbarfffff912009-10-16 01:34:54 +0000187 case AsmToken::Identifier: {
188 // This is a symbol reference.
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000189 std::pair<StringRef, StringRef> Split = getTok().getIdentifier().split('@');
190 MCSymbol *Sym = CreateSymbol(Split.first);
191
Daniel Dunbar525a3a62010-05-17 17:46:23 +0000192 // Mark the symbol as used in an expression.
193 Sym->setUsedInExpr(true);
194
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000195 // Lookup the symbol variant if used.
196 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
197 if (Split.first.size() != getTok().getIdentifier().size())
198 Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
199
Chris Lattnerb4307b32010-01-15 19:28:38 +0000200 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000201 Lex(); // Eat identifier.
Daniel Dunbarfffff912009-10-16 01:34:54 +0000202
203 // If this is an absolute variable reference, substitute it now to preserve
204 // semantics in the face of reassignment.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000205 if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000206 if (Variant)
207 return Error(EndLoc, "unexpected modified on variable reference");
208
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000209 Res = Sym->getVariableValue();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000210 return false;
211 }
212
213 // Otherwise create a symbol ref.
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000214 Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
Chris Lattnerc4193832009-06-22 05:51:26 +0000215 return false;
Daniel Dunbarfffff912009-10-16 01:34:54 +0000216 }
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000217 case AsmToken::Integer: {
218 SMLoc Loc = getTok().getLoc();
219 int64_t IntVal = getTok().getIntVal();
220 Res = MCConstantExpr::Create(IntVal, getContext());
Chris Lattnerb4307b32010-01-15 19:28:38 +0000221 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000222 Lex(); // Eat token.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000223 // Look for 'b' or 'f' following an Integer as a directional label
224 if (Lexer.getKind() == AsmToken::Identifier) {
225 StringRef IDVal = getTok().getString();
226 if (IDVal == "f" || IDVal == "b"){
227 MCSymbol *Sym = Ctx.GetDirectionalLocalSymbol(IntVal,
228 IDVal == "f" ? 1 : 0);
229 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None,
230 getContext());
231 if(IDVal == "b" && Sym->isUndefined())
232 return Error(Loc, "invalid reference to undefined symbol");
233 EndLoc = Lexer.getLoc();
234 Lex(); // Eat identifier.
235 }
236 }
Chris Lattnerc4193832009-06-22 05:51:26 +0000237 return false;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000238 }
Chris Lattnerd3050352010-04-14 04:40:28 +0000239 case AsmToken::Dot: {
240 // This is a '.' reference, which references the current PC. Emit a
241 // temporary label to the streamer and refer to it.
242 MCSymbol *Sym = Ctx.CreateTempSymbol();
243 Out.EmitLabel(Sym);
244 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, getContext());
245 EndLoc = Lexer.getLoc();
246 Lex(); // Eat identifier.
247 return false;
248 }
249
Daniel Dunbar3f872332009-07-28 16:08:33 +0000250 case AsmToken::LParen:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000251 Lex(); // Eat the '('.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000252 return ParseParenExpr(Res, EndLoc);
Daniel Dunbar3f872332009-07-28 16:08:33 +0000253 case AsmToken::Minus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000254 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000255 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000256 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000257 Res = MCUnaryExpr::CreateMinus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000258 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000259 case AsmToken::Plus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000260 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000261 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000262 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000263 Res = MCUnaryExpr::CreatePlus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000264 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000265 case AsmToken::Tilde:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000266 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000267 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000268 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000269 Res = MCUnaryExpr::CreateNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000270 return false;
Chris Lattnerc4193832009-06-22 05:51:26 +0000271 }
272}
Chris Lattner74ec1a32009-06-22 06:32:03 +0000273
Chris Lattnerb4307b32010-01-15 19:28:38 +0000274bool AsmParser::ParseExpression(const MCExpr *&Res) {
Chris Lattner54482b42010-01-15 19:39:23 +0000275 SMLoc EndLoc;
276 return ParseExpression(Res, EndLoc);
Chris Lattnerb4307b32010-01-15 19:28:38 +0000277}
278
Chris Lattner74ec1a32009-06-22 06:32:03 +0000279/// ParseExpression - Parse an expression and return it.
280///
281/// expr ::= expr +,- expr -> lowest.
282/// expr ::= expr |,^,&,! expr -> middle.
283/// expr ::= expr *,/,%,<<,>> expr -> highest.
284/// expr ::= primaryexpr
285///
Chris Lattner54482b42010-01-15 19:39:23 +0000286bool AsmParser::ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000287 // Parse the expression.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000288 Res = 0;
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000289 if (ParsePrimaryExpr(Res, EndLoc) || ParseBinOpRHS(1, Res, EndLoc))
290 return true;
291
292 // Try to constant fold it up front, if possible.
293 int64_t Value;
294 if (Res->EvaluateAsAbsolute(Value))
295 Res = MCConstantExpr::Create(Value, getContext());
296
297 return false;
Chris Lattner74ec1a32009-06-22 06:32:03 +0000298}
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000299
Chris Lattnerb4307b32010-01-15 19:28:38 +0000300bool AsmParser::ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner75f265f2010-01-24 01:07:33 +0000301 Res = 0;
302 return ParseParenExpr(Res, EndLoc) ||
303 ParseBinOpRHS(1, Res, EndLoc);
Daniel Dunbarc18274b2009-08-31 08:08:17 +0000304}
305
Daniel Dunbar475839e2009-06-29 20:37:27 +0000306bool AsmParser::ParseAbsoluteExpression(int64_t &Res) {
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000307 const MCExpr *Expr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000308
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000309 SMLoc StartLoc = Lexer.getLoc();
Daniel Dunbar475839e2009-06-29 20:37:27 +0000310 if (ParseExpression(Expr))
311 return true;
312
Daniel Dunbare00b0112009-10-16 01:57:52 +0000313 if (!Expr->EvaluateAsAbsolute(Res))
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000314 return Error(StartLoc, "expected absolute expression");
Daniel Dunbar475839e2009-06-29 20:37:27 +0000315
316 return false;
317}
318
Daniel Dunbar3f872332009-07-28 16:08:33 +0000319static unsigned getBinOpPrecedence(AsmToken::TokenKind K,
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000320 MCBinaryExpr::Opcode &Kind) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000321 switch (K) {
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000322 default:
323 return 0; // not a binop.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000324
325 // Lowest Precedence: &&, ||
Daniel Dunbar3f872332009-07-28 16:08:33 +0000326 case AsmToken::AmpAmp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000327 Kind = MCBinaryExpr::LAnd;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000328 return 1;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000329 case AsmToken::PipePipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000330 Kind = MCBinaryExpr::LOr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000331 return 1;
332
333 // Low Precedence: +, -, ==, !=, <>, <, <=, >, >=
Daniel Dunbar3f872332009-07-28 16:08:33 +0000334 case AsmToken::Plus:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000335 Kind = MCBinaryExpr::Add;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000336 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000337 case AsmToken::Minus:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000338 Kind = MCBinaryExpr::Sub;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000339 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000340 case AsmToken::EqualEqual:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000341 Kind = MCBinaryExpr::EQ;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000342 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000343 case AsmToken::ExclaimEqual:
344 case AsmToken::LessGreater:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000345 Kind = MCBinaryExpr::NE;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000346 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000347 case AsmToken::Less:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000348 Kind = MCBinaryExpr::LT;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000349 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000350 case AsmToken::LessEqual:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000351 Kind = MCBinaryExpr::LTE;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000352 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000353 case AsmToken::Greater:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000354 Kind = MCBinaryExpr::GT;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000355 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000356 case AsmToken::GreaterEqual:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000357 Kind = MCBinaryExpr::GTE;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000358 return 2;
359
360 // Intermediate Precedence: |, &, ^
361 //
362 // FIXME: gas seems to support '!' as an infix operator?
Daniel Dunbar3f872332009-07-28 16:08:33 +0000363 case AsmToken::Pipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000364 Kind = MCBinaryExpr::Or;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000365 return 3;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000366 case AsmToken::Caret:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000367 Kind = MCBinaryExpr::Xor;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000368 return 3;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000369 case AsmToken::Amp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000370 Kind = MCBinaryExpr::And;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000371 return 3;
372
373 // Highest Precedence: *, /, %, <<, >>
Daniel Dunbar3f872332009-07-28 16:08:33 +0000374 case AsmToken::Star:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000375 Kind = MCBinaryExpr::Mul;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000376 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000377 case AsmToken::Slash:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000378 Kind = MCBinaryExpr::Div;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000379 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000380 case AsmToken::Percent:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000381 Kind = MCBinaryExpr::Mod;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000382 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000383 case AsmToken::LessLess:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000384 Kind = MCBinaryExpr::Shl;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000385 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000386 case AsmToken::GreaterGreater:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000387 Kind = MCBinaryExpr::Shr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000388 return 4;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000389 }
390}
391
392
393/// ParseBinOpRHS - Parse all binary operators with precedence >= 'Precedence'.
394/// Res contains the LHS of the expression on input.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000395bool AsmParser::ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res,
396 SMLoc &EndLoc) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000397 while (1) {
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000398 MCBinaryExpr::Opcode Kind = MCBinaryExpr::Add;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000399 unsigned TokPrec = getBinOpPrecedence(Lexer.getKind(), Kind);
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000400
401 // If the next token is lower precedence than we are allowed to eat, return
402 // successfully with what we ate already.
403 if (TokPrec < Precedence)
404 return false;
405
Sean Callanan79ed1a82010-01-19 20:22:31 +0000406 Lex();
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000407
408 // Eat the next primary expression.
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000409 const MCExpr *RHS;
Chris Lattnerb4307b32010-01-15 19:28:38 +0000410 if (ParsePrimaryExpr(RHS, EndLoc)) return true;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000411
412 // If BinOp binds less tightly with RHS than the operator after RHS, let
413 // the pending operator take RHS as its LHS.
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000414 MCBinaryExpr::Opcode Dummy;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000415 unsigned NextTokPrec = getBinOpPrecedence(Lexer.getKind(), Dummy);
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000416 if (TokPrec < NextTokPrec) {
Chris Lattnerb4307b32010-01-15 19:28:38 +0000417 if (ParseBinOpRHS(Precedence+1, RHS, EndLoc)) return true;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000418 }
419
Daniel Dunbar475839e2009-06-29 20:37:27 +0000420 // Merge LHS and RHS according to operator.
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000421 Res = MCBinaryExpr::Create(Kind, Res, RHS, getContext());
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000422 }
423}
424
Chris Lattnerc4193832009-06-22 05:51:26 +0000425
426
427
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000428/// ParseStatement:
429/// ::= EndOfStatement
Chris Lattner2cf5f142009-06-22 01:29:09 +0000430/// ::= Label* Directive ...Operands... EndOfStatement
431/// ::= Label* Identifier OperandList* EndOfStatement
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000432bool AsmParser::ParseStatement() {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000433 if (Lexer.is(AsmToken::EndOfStatement)) {
Sean Callanan79ed1a82010-01-19 20:22:31 +0000434 Lex();
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000435 return false;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000436 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000437
438 // Statements always start with an identifier.
Sean Callanan18b83232010-01-19 21:44:56 +0000439 AsmToken ID = getTok();
Daniel Dunbar419aded2009-07-28 16:38:40 +0000440 SMLoc IDLoc = ID.getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000441 StringRef IDVal;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000442 int64_t LocalLabelVal = -1;
443 // GUESS allow an integer followed by a ':' as a directional local label
444 if (Lexer.is(AsmToken::Integer)) {
445 LocalLabelVal = getTok().getIntVal();
446 if (LocalLabelVal < 0) {
447 if (!TheCondState.Ignore)
448 return TokError("unexpected token at start of statement");
449 IDVal = "";
450 }
451 else {
452 IDVal = getTok().getString();
453 Lex(); // Consume the integer token to be used as an identifier token.
454 if (Lexer.getKind() != AsmToken::Colon) {
455 if (!TheCondState.Ignore)
456 return TokError("unexpected token at start of statement");
457 }
458 }
459 }
460 else if (ParseIdentifier(IDVal)) {
Chris Lattner7834fac2010-04-17 18:14:27 +0000461 if (!TheCondState.Ignore)
462 return TokError("unexpected token at start of statement");
463 IDVal = "";
464 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000465
Chris Lattner7834fac2010-04-17 18:14:27 +0000466 // Handle conditional assembly here before checking for skipping. We
467 // have to do this so that .endif isn't skipped in a ".if 0" block for
468 // example.
469 if (IDVal == ".if")
470 return ParseDirectiveIf(IDLoc);
471 if (IDVal == ".elseif")
472 return ParseDirectiveElseIf(IDLoc);
473 if (IDVal == ".else")
474 return ParseDirectiveElse(IDLoc);
475 if (IDVal == ".endif")
476 return ParseDirectiveEndIf(IDLoc);
477
478 // If we are in a ".if 0" block, ignore this statement.
479 if (TheCondState.Ignore) {
480 EatToEndOfStatement();
481 return false;
482 }
483
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000484 // FIXME: Recurse on local labels?
485
486 // See what kind of statement we have.
487 switch (Lexer.getKind()) {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000488 case AsmToken::Colon: {
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000489 // identifier ':' -> Label.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000490 Lex();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000491
492 // Diagnose attempt to use a variable as a label.
493 //
494 // FIXME: Diagnostics. Note the location of the definition as a label.
495 // FIXME: This doesn't diagnose assignment to a symbol which has been
496 // implicitly marked as external.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000497 MCSymbol *Sym;
498 if (LocalLabelVal == -1)
499 Sym = CreateSymbol(IDVal);
500 else
501 Sym = Ctx.CreateDirectionalLocalSymbol(LocalLabelVal);
Daniel Dunbarc3047182010-05-05 19:01:00 +0000502 if (!Sym->isUndefined() || Sym->isVariable())
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000503 return Error(IDLoc, "invalid symbol redefinition");
Chris Lattnerc69485e2009-06-24 04:31:49 +0000504
Daniel Dunbar959fd882009-08-26 22:13:22 +0000505 // Emit the label.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000506 Out.EmitLabel(Sym);
507
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000508 return ParseStatement();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000509 }
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000510
Daniel Dunbar3f872332009-07-28 16:08:33 +0000511 case AsmToken::Equal:
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000512 // identifier '=' ... -> assignment statement
Sean Callanan79ed1a82010-01-19 20:22:31 +0000513 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000514
Daniel Dunbare2ace502009-08-31 08:09:09 +0000515 return ParseAssignment(IDVal);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000516
517 default: // Normal instruction or directive.
518 break;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000519 }
520
521 // Otherwise, we have a normal instruction or directive.
Chris Lattner2cf5f142009-06-22 01:29:09 +0000522 if (IDVal[0] == '.') {
Chris Lattner529fb542009-06-24 05:13:15 +0000523 // FIXME: This should be driven based on a hash lookup and callback.
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000524 if (IDVal == ".section")
Chris Lattner529fb542009-06-24 05:13:15 +0000525 return ParseDirectiveDarwinSection();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000526 if (IDVal == ".text")
Chris Lattner529fb542009-06-24 05:13:15 +0000527 // FIXME: This changes behavior based on the -static flag to the
528 // assembler.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000529 return ParseDirectiveSectionSwitch("__TEXT", "__text",
530 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000531 if (IDVal == ".const")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000532 return ParseDirectiveSectionSwitch("__TEXT", "__const");
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000533 if (IDVal == ".static_const")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000534 return ParseDirectiveSectionSwitch("__TEXT", "__static_const");
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000535 if (IDVal == ".cstring")
Chris Lattnerff4bc462009-08-10 01:39:42 +0000536 return ParseDirectiveSectionSwitch("__TEXT","__cstring",
537 MCSectionMachO::S_CSTRING_LITERALS);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000538 if (IDVal == ".literal4")
Chris Lattnerff4bc462009-08-10 01:39:42 +0000539 return ParseDirectiveSectionSwitch("__TEXT", "__literal4",
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000540 MCSectionMachO::S_4BYTE_LITERALS,
541 4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000542 if (IDVal == ".literal8")
Chris Lattnerff4bc462009-08-10 01:39:42 +0000543 return ParseDirectiveSectionSwitch("__TEXT", "__literal8",
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000544 MCSectionMachO::S_8BYTE_LITERALS,
545 8);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000546 if (IDVal == ".literal16")
Chris Lattnerff4bc462009-08-10 01:39:42 +0000547 return ParseDirectiveSectionSwitch("__TEXT","__literal16",
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000548 MCSectionMachO::S_16BYTE_LITERALS,
549 16);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000550 if (IDVal == ".constructor")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000551 return ParseDirectiveSectionSwitch("__TEXT","__constructor");
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000552 if (IDVal == ".destructor")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000553 return ParseDirectiveSectionSwitch("__TEXT","__destructor");
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000554 if (IDVal == ".fvmlib_init0")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000555 return ParseDirectiveSectionSwitch("__TEXT","__fvmlib_init0");
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000556 if (IDVal == ".fvmlib_init1")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000557 return ParseDirectiveSectionSwitch("__TEXT","__fvmlib_init1");
558
559 // FIXME: The assembler manual claims that this has the self modify code
560 // flag, at least on x86-32, but that does not appear to be correct.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000561 if (IDVal == ".symbol_stub")
562 return ParseDirectiveSectionSwitch("__TEXT","__symbol_stub",
563 MCSectionMachO::S_SYMBOL_STUBS |
Chris Lattnerff4bc462009-08-10 01:39:42 +0000564 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
565 // FIXME: Different on PPC and ARM.
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000566 0, 16);
567 // FIXME: PowerPC only?
568 if (IDVal == ".picsymbol_stub")
569 return ParseDirectiveSectionSwitch("__TEXT","__picsymbol_stub",
570 MCSectionMachO::S_SYMBOL_STUBS |
571 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
572 0, 26);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000573 if (IDVal == ".data")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000574 return ParseDirectiveSectionSwitch("__DATA", "__data");
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000575 if (IDVal == ".static_data")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000576 return ParseDirectiveSectionSwitch("__DATA", "__static_data");
577
578 // FIXME: The section names of these two are misspelled in the assembler
579 // manual.
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000580 if (IDVal == ".non_lazy_symbol_pointer")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000581 return ParseDirectiveSectionSwitch("__DATA", "__nl_symbol_ptr",
582 MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS,
583 4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000584 if (IDVal == ".lazy_symbol_pointer")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000585 return ParseDirectiveSectionSwitch("__DATA", "__la_symbol_ptr",
586 MCSectionMachO::S_LAZY_SYMBOL_POINTERS,
587 4);
588
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000589 if (IDVal == ".dyld")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000590 return ParseDirectiveSectionSwitch("__DATA", "__dyld");
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000591 if (IDVal == ".mod_init_func")
Chris Lattnerff4bc462009-08-10 01:39:42 +0000592 return ParseDirectiveSectionSwitch("__DATA", "__mod_init_func",
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000593 MCSectionMachO::S_MOD_INIT_FUNC_POINTERS,
594 4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000595 if (IDVal == ".mod_term_func")
Chris Lattnerff4bc462009-08-10 01:39:42 +0000596 return ParseDirectiveSectionSwitch("__DATA", "__mod_term_func",
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000597 MCSectionMachO::S_MOD_TERM_FUNC_POINTERS,
598 4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000599 if (IDVal == ".const_data")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000600 return ParseDirectiveSectionSwitch("__DATA", "__const");
Chris Lattner529fb542009-06-24 05:13:15 +0000601
602
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000603 if (IDVal == ".objc_class")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000604 return ParseDirectiveSectionSwitch("__OBJC", "__class",
605 MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000606 if (IDVal == ".objc_meta_class")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000607 return ParseDirectiveSectionSwitch("__OBJC", "__meta_class",
608 MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000609 if (IDVal == ".objc_cat_cls_meth")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000610 return ParseDirectiveSectionSwitch("__OBJC", "__cat_cls_meth",
611 MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000612 if (IDVal == ".objc_cat_inst_meth")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000613 return ParseDirectiveSectionSwitch("__OBJC", "__cat_inst_meth",
614 MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000615 if (IDVal == ".objc_protocol")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000616 return ParseDirectiveSectionSwitch("__OBJC", "__protocol",
617 MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000618 if (IDVal == ".objc_string_object")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000619 return ParseDirectiveSectionSwitch("__OBJC", "__string_object",
620 MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000621 if (IDVal == ".objc_cls_meth")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000622 return ParseDirectiveSectionSwitch("__OBJC", "__cls_meth",
623 MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000624 if (IDVal == ".objc_inst_meth")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000625 return ParseDirectiveSectionSwitch("__OBJC", "__inst_meth",
626 MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000627 if (IDVal == ".objc_cls_refs")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000628 return ParseDirectiveSectionSwitch("__OBJC", "__cls_refs",
629 MCSectionMachO::S_ATTR_NO_DEAD_STRIP |
630 MCSectionMachO::S_LITERAL_POINTERS,
631 4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000632 if (IDVal == ".objc_message_refs")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000633 return ParseDirectiveSectionSwitch("__OBJC", "__message_refs",
634 MCSectionMachO::S_ATTR_NO_DEAD_STRIP |
635 MCSectionMachO::S_LITERAL_POINTERS,
636 4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000637 if (IDVal == ".objc_symbols")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000638 return ParseDirectiveSectionSwitch("__OBJC", "__symbols",
639 MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000640 if (IDVal == ".objc_category")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000641 return ParseDirectiveSectionSwitch("__OBJC", "__category",
642 MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000643 if (IDVal == ".objc_class_vars")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000644 return ParseDirectiveSectionSwitch("__OBJC", "__class_vars",
645 MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000646 if (IDVal == ".objc_instance_vars")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000647 return ParseDirectiveSectionSwitch("__OBJC", "__instance_vars",
648 MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000649 if (IDVal == ".objc_module_info")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000650 return ParseDirectiveSectionSwitch("__OBJC", "__module_info",
651 MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000652 if (IDVal == ".objc_class_names")
Chris Lattnerff4bc462009-08-10 01:39:42 +0000653 return ParseDirectiveSectionSwitch("__TEXT", "__cstring",
654 MCSectionMachO::S_CSTRING_LITERALS);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000655 if (IDVal == ".objc_meth_var_types")
Chris Lattnerff4bc462009-08-10 01:39:42 +0000656 return ParseDirectiveSectionSwitch("__TEXT", "__cstring",
657 MCSectionMachO::S_CSTRING_LITERALS);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000658 if (IDVal == ".objc_meth_var_names")
Chris Lattnerff4bc462009-08-10 01:39:42 +0000659 return ParseDirectiveSectionSwitch("__TEXT", "__cstring",
660 MCSectionMachO::S_CSTRING_LITERALS);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000661 if (IDVal == ".objc_selector_strs")
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000662 return ParseDirectiveSectionSwitch("__OBJC", "__selector_strs",
663 MCSectionMachO::S_CSTRING_LITERALS);
Chris Lattner9a023f72009-06-24 04:43:34 +0000664
Eric Christopherc6177a42010-05-17 22:53:55 +0000665 if (IDVal == ".tdata")
666 return ParseDirectiveSectionSwitch("__DATA", "__thread_data",
667 MCSectionMachO::S_THREAD_LOCAL_REGULAR);
668 if (IDVal == ".tlv")
669 return ParseDirectiveSectionSwitch("__DATA", "__thread_vars",
670 MCSectionMachO::S_THREAD_LOCAL_VARIABLES);
671 if (IDVal == ".thread_init_func")
672 return ParseDirectiveSectionSwitch("__DATA", "__thread_init",
673 MCSectionMachO::S_THREAD_LOCAL_INIT_FUNCTION_POINTERS);
674
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000675 // Assembler features
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000676 if (IDVal == ".set")
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000677 return ParseDirectiveSet();
678
Daniel Dunbara0d14262009-06-24 23:30:00 +0000679 // Data directives
680
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000681 if (IDVal == ".ascii")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000682 return ParseDirectiveAscii(false);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000683 if (IDVal == ".asciz")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000684 return ParseDirectiveAscii(true);
685
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000686 if (IDVal == ".byte")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000687 return ParseDirectiveValue(1);
Kevin Enderby9c656452009-09-10 20:51:44 +0000688 if (IDVal == ".short")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000689 return ParseDirectiveValue(2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000690 if (IDVal == ".long")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000691 return ParseDirectiveValue(4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000692 if (IDVal == ".quad")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000693 return ParseDirectiveValue(8);
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000694
695 // FIXME: Target hooks for IsPow2.
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000696 if (IDVal == ".align")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000697 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000698 if (IDVal == ".align32")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000699 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000700 if (IDVal == ".balign")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000701 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000702 if (IDVal == ".balignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000703 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000704 if (IDVal == ".balignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000705 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000706 if (IDVal == ".p2align")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000707 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000708 if (IDVal == ".p2alignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000709 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000710 if (IDVal == ".p2alignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000711 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
712
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000713 if (IDVal == ".org")
Daniel Dunbarc238b582009-06-25 22:44:51 +0000714 return ParseDirectiveOrg();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000715
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000716 if (IDVal == ".fill")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000717 return ParseDirectiveFill();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000718 if (IDVal == ".space")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000719 return ParseDirectiveSpace();
720
Daniel Dunbard7b267b2009-06-30 00:33:19 +0000721 // Symbol attribute directives
Daniel Dunbard0c14d62009-08-11 04:24:50 +0000722
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000723 if (IDVal == ".globl" || IDVal == ".global")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000724 return ParseDirectiveSymbolAttribute(MCSA_Global);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000725 if (IDVal == ".hidden")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000726 return ParseDirectiveSymbolAttribute(MCSA_Hidden);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000727 if (IDVal == ".indirect_symbol")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000728 return ParseDirectiveSymbolAttribute(MCSA_IndirectSymbol);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000729 if (IDVal == ".internal")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000730 return ParseDirectiveSymbolAttribute(MCSA_Internal);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000731 if (IDVal == ".lazy_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000732 return ParseDirectiveSymbolAttribute(MCSA_LazyReference);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000733 if (IDVal == ".no_dead_strip")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000734 return ParseDirectiveSymbolAttribute(MCSA_NoDeadStrip);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000735 if (IDVal == ".private_extern")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000736 return ParseDirectiveSymbolAttribute(MCSA_PrivateExtern);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000737 if (IDVal == ".protected")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000738 return ParseDirectiveSymbolAttribute(MCSA_Protected);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000739 if (IDVal == ".reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000740 return ParseDirectiveSymbolAttribute(MCSA_Reference);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000741 if (IDVal == ".weak")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000742 return ParseDirectiveSymbolAttribute(MCSA_Weak);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000743 if (IDVal == ".weak_definition")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000744 return ParseDirectiveSymbolAttribute(MCSA_WeakDefinition);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000745 if (IDVal == ".weak_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000746 return ParseDirectiveSymbolAttribute(MCSA_WeakReference);
Daniel Dunbard7b267b2009-06-30 00:33:19 +0000747
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000748 if (IDVal == ".comm")
Chris Lattner1fc3d752009-07-09 17:25:12 +0000749 return ParseDirectiveComm(/*IsLocal=*/false);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000750 if (IDVal == ".lcomm")
Chris Lattner1fc3d752009-07-09 17:25:12 +0000751 return ParseDirectiveComm(/*IsLocal=*/true);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000752 if (IDVal == ".zerofill")
Chris Lattner9be3fee2009-07-10 22:20:30 +0000753 return ParseDirectiveDarwinZerofill();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000754 if (IDVal == ".desc")
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000755 return ParseDirectiveDarwinSymbolDesc();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000756 if (IDVal == ".lsym")
Kevin Enderby71148242009-07-14 21:35:03 +0000757 return ParseDirectiveDarwinLsym();
Eric Christopher482eba02010-05-14 01:50:28 +0000758 if (IDVal == ".tbss")
759 return ParseDirectiveDarwinTBSS();
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000760
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000761 if (IDVal == ".subsections_via_symbols")
Kevin Enderbya5c78322009-07-13 21:03:15 +0000762 return ParseDirectiveDarwinSubsectionsViaSymbols();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000763 if (IDVal == ".abort")
Kevin Enderby5f1f0b82009-07-13 23:15:14 +0000764 return ParseDirectiveAbort();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000765 if (IDVal == ".include")
Kevin Enderby1f049b22009-07-14 23:21:55 +0000766 return ParseDirectiveInclude();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000767 if (IDVal == ".dump")
Kevin Enderby5026ae42009-07-20 20:25:37 +0000768 return ParseDirectiveDarwinDumpOrLoad(IDLoc, /*IsDump=*/true);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000769 if (IDVal == ".load")
Kevin Enderby5026ae42009-07-20 20:25:37 +0000770 return ParseDirectiveDarwinDumpOrLoad(IDLoc, /*IsLoad=*/false);
Kevin Enderbya5c78322009-07-13 21:03:15 +0000771
Chris Lattnerebb89b42009-09-27 21:16:52 +0000772 // Look up the handler in the handler table,
773 bool(AsmParser::*Handler)(StringRef, SMLoc) = DirectiveMap[IDVal];
774 if (Handler)
775 return (this->*Handler)(IDVal, IDLoc);
776
Kevin Enderby9c656452009-09-10 20:51:44 +0000777 // Target hook for parsing target specific directives.
778 if (!getTargetParser().ParseDirective(ID))
779 return false;
780
Daniel Dunbar3fb76832009-06-30 00:49:23 +0000781 Warning(IDLoc, "ignoring directive for now");
Chris Lattner2cf5f142009-06-22 01:29:09 +0000782 EatToEndOfStatement();
783 return false;
784 }
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000785
Chris Lattner98986712010-01-14 22:21:20 +0000786 SmallVector<MCParsedAsmOperand*, 8> ParsedOperands;
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000787 bool HadError = getTargetParser().ParseInstruction(IDVal, IDLoc,
788 ParsedOperands);
789 if (!HadError && Lexer.isNot(AsmToken::EndOfStatement))
790 HadError = TokError("unexpected token in argument list");
Chris Lattner2cf5f142009-06-22 01:29:09 +0000791
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000792 // If parsing succeeded, match the instruction.
793 if (!HadError) {
794 MCInst Inst;
795 if (!getTargetParser().MatchInstruction(ParsedOperands, Inst)) {
796 // Emit the instruction on success.
797 Out.EmitInstruction(Inst);
798 } else {
799 // Otherwise emit a diagnostic about the match failure and set the error
800 // flag.
801 //
802 // FIXME: We should give nicer diagnostics about the exact failure.
803 Error(IDLoc, "unrecognized instruction");
804 HadError = true;
805 }
806 }
Chris Lattner98986712010-01-14 22:21:20 +0000807
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000808 // If there was no error, consume the end-of-statement token. Otherwise this
809 // will be done by our caller.
810 if (!HadError)
811 Lex();
Chris Lattner98986712010-01-14 22:21:20 +0000812
813 // Free any parsed operands.
814 for (unsigned i = 0, e = ParsedOperands.size(); i != e; ++i)
815 delete ParsedOperands[i];
816
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000817 return HadError;
Chris Lattner27aa7d22009-06-21 20:16:42 +0000818}
Chris Lattner9a023f72009-06-24 04:43:34 +0000819
Daniel Dunbare2ace502009-08-31 08:09:09 +0000820bool AsmParser::ParseAssignment(const StringRef &Name) {
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000821 // FIXME: Use better location, we should use proper tokens.
822 SMLoc EqualLoc = Lexer.getLoc();
823
Daniel Dunbar821e3332009-08-31 08:09:28 +0000824 const MCExpr *Value;
Daniel Dunbar883f9202009-08-31 08:08:50 +0000825 SMLoc StartLoc = Lexer.getLoc();
Daniel Dunbar821e3332009-08-31 08:09:28 +0000826 if (ParseExpression(Value))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000827 return true;
828
Daniel Dunbar3f872332009-07-28 16:08:33 +0000829 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000830 return TokError("unexpected token in assignment");
831
832 // Eat the end of statement marker.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000833 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000834
Daniel Dunbar75773ff2009-10-16 01:57:39 +0000835 // Validate that the LHS is allowed to be a variable (either it has not been
836 // used as a symbol, or it is an absolute symbol).
837 MCSymbol *Sym = getContext().LookupSymbol(Name);
838 if (Sym) {
839 // Diagnose assignment to a label.
840 //
841 // FIXME: Diagnostics. Note the location of the definition as a label.
842 // FIXME: Diagnose assignment to protected identifier (e.g., register name).
Daniel Dunbar525a3a62010-05-17 17:46:23 +0000843 if (Sym->isUndefined() && !Sym->isUsedInExpr())
844 ; // Allow redefinitions of undefined symbols only used in directives.
845 else if (!Sym->isUndefined() && !Sym->isAbsolute())
Daniel Dunbar75773ff2009-10-16 01:57:39 +0000846 return Error(EqualLoc, "redefinition of '" + Name + "'");
847 else if (!Sym->isVariable())
848 return Error(EqualLoc, "invalid assignment to '" + Name + "'");
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000849 else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
Daniel Dunbar75773ff2009-10-16 01:57:39 +0000850 return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
851 Name + "'");
852 } else
853 Sym = CreateSymbol(Name);
854
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000855 // FIXME: Handle '.'.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000856
Daniel Dunbar525a3a62010-05-17 17:46:23 +0000857 Sym->setUsedInExpr(true);
858
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000859 // Do the assignment.
Daniel Dunbare2ace502009-08-31 08:09:09 +0000860 Out.EmitAssignment(Sym, Value);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000861
862 return false;
863}
864
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000865/// ParseIdentifier:
866/// ::= identifier
867/// ::= string
868bool AsmParser::ParseIdentifier(StringRef &Res) {
869 if (Lexer.isNot(AsmToken::Identifier) &&
870 Lexer.isNot(AsmToken::String))
871 return true;
872
Sean Callanan18b83232010-01-19 21:44:56 +0000873 Res = getTok().getIdentifier();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000874
Sean Callanan79ed1a82010-01-19 20:22:31 +0000875 Lex(); // Consume the identifier token.
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000876
877 return false;
878}
879
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000880/// ParseDirectiveSet:
881/// ::= .set identifier ',' expression
882bool AsmParser::ParseDirectiveSet() {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000883 StringRef Name;
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000884
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000885 if (ParseIdentifier(Name))
886 return TokError("expected identifier after '.set' directive");
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000887
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000888 if (Lexer.isNot(AsmToken::Comma))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000889 return TokError("unexpected token in '.set'");
Sean Callanan79ed1a82010-01-19 20:22:31 +0000890 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000891
Daniel Dunbare2ace502009-08-31 08:09:09 +0000892 return ParseAssignment(Name);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000893}
894
Chris Lattner9a023f72009-06-24 04:43:34 +0000895/// ParseDirectiveSection:
Chris Lattner529fb542009-06-24 05:13:15 +0000896/// ::= .section identifier (',' identifier)*
897/// FIXME: This should actually parse out the segment, section, attributes and
898/// sizeof_stub fields.
899bool AsmParser::ParseDirectiveDarwinSection() {
Daniel Dunbarace63122009-08-11 03:42:33 +0000900 SMLoc Loc = Lexer.getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000901
Daniel Dunbarace63122009-08-11 03:42:33 +0000902 StringRef SectionName;
903 if (ParseIdentifier(SectionName))
904 return Error(Loc, "expected identifier after '.section' directive");
905
906 // Verify there is a following comma.
907 if (!Lexer.is(AsmToken::Comma))
908 return TokError("unexpected token in '.section' directive");
909
Chris Lattnerff4bc462009-08-10 01:39:42 +0000910 std::string SectionSpec = SectionName;
Daniel Dunbarace63122009-08-11 03:42:33 +0000911 SectionSpec += ",";
912
913 // Add all the tokens until the end of the line, ParseSectionSpecifier will
914 // handle this.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000915 StringRef EOL = Lexer.LexUntilEndOfStatement();
916 SectionSpec.append(EOL.begin(), EOL.end());
Daniel Dunbarace63122009-08-11 03:42:33 +0000917
Sean Callanan79ed1a82010-01-19 20:22:31 +0000918 Lex();
Daniel Dunbar3f872332009-07-28 16:08:33 +0000919 if (Lexer.isNot(AsmToken::EndOfStatement))
Chris Lattner9a023f72009-06-24 04:43:34 +0000920 return TokError("unexpected token in '.section' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +0000921 Lex();
Chris Lattner9a023f72009-06-24 04:43:34 +0000922
Chris Lattnerff4bc462009-08-10 01:39:42 +0000923
924 StringRef Segment, Section;
925 unsigned TAA, StubSize;
926 std::string ErrorStr =
927 MCSectionMachO::ParseSectionSpecifier(SectionSpec, Segment, Section,
928 TAA, StubSize);
929
930 if (!ErrorStr.empty())
Daniel Dunbarace63122009-08-11 03:42:33 +0000931 return Error(Loc, ErrorStr.c_str());
Chris Lattnerff4bc462009-08-10 01:39:42 +0000932
Chris Lattner56594f92009-07-31 17:47:16 +0000933 // FIXME: Arch specific.
Chris Lattnerf60e9bb2010-02-26 18:32:26 +0000934 bool isText = Segment == "__TEXT"; // FIXME: Hack.
Chris Lattnerf0559e42010-04-08 20:30:37 +0000935 Out.SwitchSection(Ctx.getMachOSection(Segment, Section, TAA, StubSize,
936 isText ? SectionKind::getText()
937 : SectionKind::getDataRel()));
Chris Lattner9a023f72009-06-24 04:43:34 +0000938 return false;
939}
940
Chris Lattnere15c2d72009-08-10 18:05:55 +0000941/// ParseDirectiveSectionSwitch -
Chris Lattnerff4bc462009-08-10 01:39:42 +0000942bool AsmParser::ParseDirectiveSectionSwitch(const char *Segment,
943 const char *Section,
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000944 unsigned TAA, unsigned Align,
945 unsigned StubSize) {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000946 if (Lexer.isNot(AsmToken::EndOfStatement))
Chris Lattner529fb542009-06-24 05:13:15 +0000947 return TokError("unexpected token in section switching directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +0000948 Lex();
Chris Lattner529fb542009-06-24 05:13:15 +0000949
Chris Lattner56594f92009-07-31 17:47:16 +0000950 // FIXME: Arch specific.
Chris Lattnerf60e9bb2010-02-26 18:32:26 +0000951 bool isText = StringRef(Segment) == "__TEXT"; // FIXME: Hack.
Chris Lattnerf0559e42010-04-08 20:30:37 +0000952 Out.SwitchSection(Ctx.getMachOSection(Segment, Section, TAA, StubSize,
953 isText ? SectionKind::getText()
954 : SectionKind::getDataRel()));
Daniel Dunbar2330df62009-08-21 23:30:15 +0000955
956 // Set the implicit alignment, if any.
957 //
958 // FIXME: This isn't really what 'as' does; I think it just uses the implicit
959 // alignment on the section (e.g., if one manually inserts bytes into the
960 // section, then just issueing the section switch directive will not realign
961 // the section. However, this is arguably more reasonable behavior, and there
962 // is no good reason for someone to intentionally emit incorrectly sized
963 // values into the implicitly aligned sections.
964 if (Align)
965 Out.EmitValueToAlignment(Align, 0, 1, 0);
966
Chris Lattner529fb542009-06-24 05:13:15 +0000967 return false;
968}
Daniel Dunbara0d14262009-06-24 23:30:00 +0000969
Daniel Dunbar1ab75942009-08-14 18:19:52 +0000970bool AsmParser::ParseEscapedString(std::string &Data) {
971 assert(Lexer.is(AsmToken::String) && "Unexpected current token!");
972
973 Data = "";
Sean Callanan18b83232010-01-19 21:44:56 +0000974 StringRef Str = getTok().getStringContents();
Daniel Dunbar1ab75942009-08-14 18:19:52 +0000975 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
976 if (Str[i] != '\\') {
977 Data += Str[i];
978 continue;
979 }
980
981 // Recognize escaped characters. Note that this escape semantics currently
982 // loosely follows Darwin 'as'. Notably, it doesn't support hex escapes.
983 ++i;
984 if (i == e)
985 return TokError("unexpected backslash at end of string");
986
987 // Recognize octal sequences.
988 if ((unsigned) (Str[i] - '0') <= 7) {
989 // Consume up to three octal characters.
990 unsigned Value = Str[i] - '0';
991
992 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
993 ++i;
994 Value = Value * 8 + (Str[i] - '0');
995
996 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
997 ++i;
998 Value = Value * 8 + (Str[i] - '0');
999 }
1000 }
1001
1002 if (Value > 255)
1003 return TokError("invalid octal escape sequence (out of range)");
1004
1005 Data += (unsigned char) Value;
1006 continue;
1007 }
1008
1009 // Otherwise recognize individual escapes.
1010 switch (Str[i]) {
1011 default:
1012 // Just reject invalid escape sequences for now.
1013 return TokError("invalid escape sequence (unrecognized character)");
1014
1015 case 'b': Data += '\b'; break;
1016 case 'f': Data += '\f'; break;
1017 case 'n': Data += '\n'; break;
1018 case 'r': Data += '\r'; break;
1019 case 't': Data += '\t'; break;
1020 case '"': Data += '"'; break;
1021 case '\\': Data += '\\'; break;
1022 }
1023 }
1024
1025 return false;
1026}
1027
Daniel Dunbara0d14262009-06-24 23:30:00 +00001028/// ParseDirectiveAscii:
Daniel Dunbar475839e2009-06-29 20:37:27 +00001029/// ::= ( .ascii | .asciz ) [ "string" ( , "string" )* ]
Daniel Dunbara0d14262009-06-24 23:30:00 +00001030bool AsmParser::ParseDirectiveAscii(bool ZeroTerminated) {
Daniel Dunbar3f872332009-07-28 16:08:33 +00001031 if (Lexer.isNot(AsmToken::EndOfStatement)) {
Daniel Dunbara0d14262009-06-24 23:30:00 +00001032 for (;;) {
Daniel Dunbar3f872332009-07-28 16:08:33 +00001033 if (Lexer.isNot(AsmToken::String))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001034 return TokError("expected string in '.ascii' or '.asciz' directive");
1035
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001036 std::string Data;
1037 if (ParseEscapedString(Data))
1038 return true;
1039
Chris Lattneraaec2052010-01-19 19:46:13 +00001040 Out.EmitBytes(Data, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001041 if (ZeroTerminated)
Chris Lattneraaec2052010-01-19 19:46:13 +00001042 Out.EmitBytes(StringRef("\0", 1), DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001043
Sean Callanan79ed1a82010-01-19 20:22:31 +00001044 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001045
Daniel Dunbar3f872332009-07-28 16:08:33 +00001046 if (Lexer.is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001047 break;
1048
Daniel Dunbar3f872332009-07-28 16:08:33 +00001049 if (Lexer.isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001050 return TokError("unexpected token in '.ascii' or '.asciz' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001051 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001052 }
1053 }
1054
Sean Callanan79ed1a82010-01-19 20:22:31 +00001055 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001056 return false;
1057}
1058
1059/// ParseDirectiveValue
1060/// ::= (.byte | .short | ... ) [ expression (, expression)* ]
1061bool AsmParser::ParseDirectiveValue(unsigned Size) {
Daniel Dunbar3f872332009-07-28 16:08:33 +00001062 if (Lexer.isNot(AsmToken::EndOfStatement)) {
Daniel Dunbara0d14262009-06-24 23:30:00 +00001063 for (;;) {
Daniel Dunbar821e3332009-08-31 08:09:28 +00001064 const MCExpr *Value;
Bill Wendling9bc0af82009-12-28 01:34:57 +00001065 SMLoc ATTRIBUTE_UNUSED StartLoc = Lexer.getLoc();
Daniel Dunbar821e3332009-08-31 08:09:28 +00001066 if (ParseExpression(Value))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001067 return true;
1068
Chris Lattneraaec2052010-01-19 19:46:13 +00001069 Out.EmitValue(Value, Size, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001070
Daniel Dunbar3f872332009-07-28 16:08:33 +00001071 if (Lexer.is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001072 break;
1073
1074 // FIXME: Improve diagnostic.
Daniel Dunbar3f872332009-07-28 16:08:33 +00001075 if (Lexer.isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001076 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001077 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001078 }
1079 }
1080
Sean Callanan79ed1a82010-01-19 20:22:31 +00001081 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001082 return false;
1083}
1084
1085/// ParseDirectiveSpace
1086/// ::= .space expression [ , expression ]
1087bool AsmParser::ParseDirectiveSpace() {
1088 int64_t NumBytes;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001089 if (ParseAbsoluteExpression(NumBytes))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001090 return true;
1091
1092 int64_t FillExpr = 0;
1093 bool HasFillExpr = false;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001094 if (Lexer.isNot(AsmToken::EndOfStatement)) {
1095 if (Lexer.isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001096 return TokError("unexpected token in '.space' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001097 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001098
Daniel Dunbar475839e2009-06-29 20:37:27 +00001099 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001100 return true;
1101
1102 HasFillExpr = true;
1103
Daniel Dunbar3f872332009-07-28 16:08:33 +00001104 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001105 return TokError("unexpected token in '.space' directive");
1106 }
1107
Sean Callanan79ed1a82010-01-19 20:22:31 +00001108 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001109
1110 if (NumBytes <= 0)
1111 return TokError("invalid number of bytes in '.space' directive");
1112
1113 // FIXME: Sometimes the fill expr is 'nop' if it isn't supplied, instead of 0.
Chris Lattneraaec2052010-01-19 19:46:13 +00001114 Out.EmitFill(NumBytes, FillExpr, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001115
1116 return false;
1117}
1118
1119/// ParseDirectiveFill
1120/// ::= .fill expression , expression , expression
1121bool AsmParser::ParseDirectiveFill() {
1122 int64_t NumValues;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001123 if (ParseAbsoluteExpression(NumValues))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001124 return true;
1125
Daniel Dunbar3f872332009-07-28 16:08:33 +00001126 if (Lexer.isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001127 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001128 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001129
1130 int64_t FillSize;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001131 if (ParseAbsoluteExpression(FillSize))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001132 return true;
1133
Daniel Dunbar3f872332009-07-28 16:08:33 +00001134 if (Lexer.isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001135 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001136 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001137
1138 int64_t FillExpr;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001139 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001140 return true;
1141
Daniel Dunbar3f872332009-07-28 16:08:33 +00001142 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001143 return TokError("unexpected token in '.fill' directive");
1144
Sean Callanan79ed1a82010-01-19 20:22:31 +00001145 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001146
Daniel Dunbarbc38ca72009-08-21 15:43:35 +00001147 if (FillSize != 1 && FillSize != 2 && FillSize != 4 && FillSize != 8)
1148 return TokError("invalid '.fill' size, expected 1, 2, 4, or 8");
Daniel Dunbara0d14262009-06-24 23:30:00 +00001149
1150 for (uint64_t i = 0, e = NumValues; i != e; ++i)
Chris Lattneraaec2052010-01-19 19:46:13 +00001151 Out.EmitValue(MCConstantExpr::Create(FillExpr, getContext()), FillSize,
1152 DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001153
1154 return false;
1155}
Daniel Dunbarc238b582009-06-25 22:44:51 +00001156
1157/// ParseDirectiveOrg
1158/// ::= .org expression [ , expression ]
1159bool AsmParser::ParseDirectiveOrg() {
Daniel Dunbar821e3332009-08-31 08:09:28 +00001160 const MCExpr *Offset;
Daniel Dunbar883f9202009-08-31 08:08:50 +00001161 SMLoc StartLoc = Lexer.getLoc();
Daniel Dunbar821e3332009-08-31 08:09:28 +00001162 if (ParseExpression(Offset))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001163 return true;
1164
1165 // Parse optional fill expression.
1166 int64_t FillExpr = 0;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001167 if (Lexer.isNot(AsmToken::EndOfStatement)) {
1168 if (Lexer.isNot(AsmToken::Comma))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001169 return TokError("unexpected token in '.org' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001170 Lex();
Daniel Dunbarc238b582009-06-25 22:44:51 +00001171
Daniel Dunbar475839e2009-06-29 20:37:27 +00001172 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001173 return true;
1174
Daniel Dunbar3f872332009-07-28 16:08:33 +00001175 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001176 return TokError("unexpected token in '.org' directive");
1177 }
1178
Sean Callanan79ed1a82010-01-19 20:22:31 +00001179 Lex();
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00001180
1181 // FIXME: Only limited forms of relocatable expressions are accepted here, it
1182 // has to be relative to the current section.
1183 Out.EmitValueToOffset(Offset, FillExpr);
Daniel Dunbarc238b582009-06-25 22:44:51 +00001184
1185 return false;
1186}
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001187
1188/// ParseDirectiveAlign
1189/// ::= {.align, ...} expression [ , expression [ , expression ]]
1190bool AsmParser::ParseDirectiveAlign(bool IsPow2, unsigned ValueSize) {
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001191 SMLoc AlignmentLoc = Lexer.getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001192 int64_t Alignment;
1193 if (ParseAbsoluteExpression(Alignment))
1194 return true;
1195
1196 SMLoc MaxBytesLoc;
1197 bool HasFillExpr = false;
1198 int64_t FillExpr = 0;
1199 int64_t MaxBytesToFill = 0;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001200 if (Lexer.isNot(AsmToken::EndOfStatement)) {
1201 if (Lexer.isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001202 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001203 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001204
1205 // The fill expression can be omitted while specifying a maximum number of
1206 // alignment bytes, e.g:
1207 // .align 3,,4
Daniel Dunbar3f872332009-07-28 16:08:33 +00001208 if (Lexer.isNot(AsmToken::Comma)) {
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001209 HasFillExpr = true;
1210 if (ParseAbsoluteExpression(FillExpr))
1211 return true;
1212 }
1213
Daniel Dunbar3f872332009-07-28 16:08:33 +00001214 if (Lexer.isNot(AsmToken::EndOfStatement)) {
1215 if (Lexer.isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001216 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001217 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001218
1219 MaxBytesLoc = Lexer.getLoc();
1220 if (ParseAbsoluteExpression(MaxBytesToFill))
1221 return true;
1222
Daniel Dunbar3f872332009-07-28 16:08:33 +00001223 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001224 return TokError("unexpected token in directive");
1225 }
1226 }
1227
Sean Callanan79ed1a82010-01-19 20:22:31 +00001228 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001229
Daniel Dunbar648ac512010-05-17 21:54:30 +00001230 if (!HasFillExpr)
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001231 FillExpr = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001232
1233 // Compute alignment in bytes.
1234 if (IsPow2) {
1235 // FIXME: Diagnose overflow.
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001236 if (Alignment >= 32) {
1237 Error(AlignmentLoc, "invalid alignment value");
1238 Alignment = 31;
1239 }
1240
Benjamin Kramer12fd7672009-09-06 09:35:10 +00001241 Alignment = 1ULL << Alignment;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001242 }
1243
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001244 // Diagnose non-sensical max bytes to align.
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001245 if (MaxBytesLoc.isValid()) {
1246 if (MaxBytesToFill < 1) {
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001247 Error(MaxBytesLoc, "alignment directive can never be satisfied in this "
1248 "many bytes, ignoring maximum bytes expression");
Daniel Dunbar0afb9f52009-08-21 23:01:53 +00001249 MaxBytesToFill = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001250 }
1251
1252 if (MaxBytesToFill >= Alignment) {
Daniel Dunbar3fb76832009-06-30 00:49:23 +00001253 Warning(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
1254 "has no effect");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001255 MaxBytesToFill = 0;
1256 }
1257 }
1258
Daniel Dunbar648ac512010-05-17 21:54:30 +00001259 // Check whether we should use optimal code alignment for this .align
1260 // directive.
1261 //
1262 // FIXME: This should be using a target hook.
1263 bool UseCodeAlign = false;
1264 if (const MCSectionMachO *S = dyn_cast<MCSectionMachO>(
1265 Out.getCurrentSection()))
1266 UseCodeAlign = S->hasAttribute(MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS);
1267 if ((!HasFillExpr || Lexer.getMAI().getTextAlignFillValue() == FillExpr) &&
1268 ValueSize == 1 && UseCodeAlign) {
Kevin Enderbyd74acb02010-02-25 18:46:04 +00001269 Out.EmitCodeAlignment(Alignment, MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001270 } else {
Kevin Enderbyd74acb02010-02-25 18:46:04 +00001271 // FIXME: Target specific behavior about how the "extra" bytes are filled.
1272 Out.EmitValueToAlignment(Alignment, FillExpr, ValueSize, MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001273 }
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001274
1275 return false;
1276}
1277
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001278/// ParseDirectiveSymbolAttribute
1279/// ::= { ".globl", ".weak", ... } [ identifier ( , identifier )* ]
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001280bool AsmParser::ParseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
Daniel Dunbar3f872332009-07-28 16:08:33 +00001281 if (Lexer.isNot(AsmToken::EndOfStatement)) {
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001282 for (;;) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001283 StringRef Name;
1284
1285 if (ParseIdentifier(Name))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001286 return TokError("expected identifier in directive");
1287
Daniel Dunbar959fd882009-08-26 22:13:22 +00001288 MCSymbol *Sym = CreateSymbol(Name);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001289
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001290 Out.EmitSymbolAttribute(Sym, Attr);
1291
Daniel Dunbar3f872332009-07-28 16:08:33 +00001292 if (Lexer.is(AsmToken::EndOfStatement))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001293 break;
1294
Daniel Dunbar3f872332009-07-28 16:08:33 +00001295 if (Lexer.isNot(AsmToken::Comma))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001296 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001297 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001298 }
1299 }
1300
Sean Callanan79ed1a82010-01-19 20:22:31 +00001301 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001302 return false;
1303}
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001304
Kevin Enderby95cf30c2009-07-14 18:17:10 +00001305/// ParseDirectiveDarwinSymbolDesc
1306/// ::= .desc identifier , expression
1307bool AsmParser::ParseDirectiveDarwinSymbolDesc() {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001308 StringRef Name;
1309 if (ParseIdentifier(Name))
Kevin Enderby95cf30c2009-07-14 18:17:10 +00001310 return TokError("expected identifier in directive");
1311
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001312 // Handle the identifier as the key symbol.
Daniel Dunbar959fd882009-08-26 22:13:22 +00001313 MCSymbol *Sym = CreateSymbol(Name);
Kevin Enderby95cf30c2009-07-14 18:17:10 +00001314
Daniel Dunbar3f872332009-07-28 16:08:33 +00001315 if (Lexer.isNot(AsmToken::Comma))
Kevin Enderby95cf30c2009-07-14 18:17:10 +00001316 return TokError("unexpected token in '.desc' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001317 Lex();
Kevin Enderby95cf30c2009-07-14 18:17:10 +00001318
1319 SMLoc DescLoc = Lexer.getLoc();
1320 int64_t DescValue;
1321 if (ParseAbsoluteExpression(DescValue))
1322 return true;
1323
Daniel Dunbar3f872332009-07-28 16:08:33 +00001324 if (Lexer.isNot(AsmToken::EndOfStatement))
Kevin Enderby95cf30c2009-07-14 18:17:10 +00001325 return TokError("unexpected token in '.desc' directive");
1326
Sean Callanan79ed1a82010-01-19 20:22:31 +00001327 Lex();
Kevin Enderby95cf30c2009-07-14 18:17:10 +00001328
1329 // Set the n_desc field of this Symbol to this DescValue
1330 Out.EmitSymbolDesc(Sym, DescValue);
1331
1332 return false;
1333}
1334
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001335/// ParseDirectiveComm
Chris Lattner1fc3d752009-07-09 17:25:12 +00001336/// ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
1337bool AsmParser::ParseDirectiveComm(bool IsLocal) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001338 SMLoc IDLoc = Lexer.getLoc();
1339 StringRef Name;
1340 if (ParseIdentifier(Name))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001341 return TokError("expected identifier in directive");
1342
Daniel Dunbar76c4d762009-07-31 21:55:09 +00001343 // Handle the identifier as the key symbol.
Daniel Dunbar959fd882009-08-26 22:13:22 +00001344 MCSymbol *Sym = CreateSymbol(Name);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001345
Daniel Dunbar3f872332009-07-28 16:08:33 +00001346 if (Lexer.isNot(AsmToken::Comma))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001347 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001348 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001349
1350 int64_t Size;
1351 SMLoc SizeLoc = Lexer.getLoc();
1352 if (ParseAbsoluteExpression(Size))
1353 return true;
1354
1355 int64_t Pow2Alignment = 0;
1356 SMLoc Pow2AlignmentLoc;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001357 if (Lexer.is(AsmToken::Comma)) {
Sean Callanan79ed1a82010-01-19 20:22:31 +00001358 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001359 Pow2AlignmentLoc = Lexer.getLoc();
1360 if (ParseAbsoluteExpression(Pow2Alignment))
1361 return true;
Chris Lattner258281d2010-01-19 06:22:22 +00001362
1363 // If this target takes alignments in bytes (not log) validate and convert.
1364 if (Lexer.getMAI().getAlignmentIsInBytes()) {
1365 if (!isPowerOf2_64(Pow2Alignment))
1366 return Error(Pow2AlignmentLoc, "alignment must be a power of 2");
1367 Pow2Alignment = Log2_64(Pow2Alignment);
1368 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001369 }
1370
Daniel Dunbar3f872332009-07-28 16:08:33 +00001371 if (Lexer.isNot(AsmToken::EndOfStatement))
Chris Lattner1fc3d752009-07-09 17:25:12 +00001372 return TokError("unexpected token in '.comm' or '.lcomm' directive");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001373
Sean Callanan79ed1a82010-01-19 20:22:31 +00001374 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001375
Chris Lattner1fc3d752009-07-09 17:25:12 +00001376 // NOTE: a size of zero for a .comm should create a undefined symbol
1377 // but a size of .lcomm creates a bss symbol of size zero.
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001378 if (Size < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00001379 return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
1380 "be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001381
Eric Christopherc260a3e2010-05-14 01:38:54 +00001382 // NOTE: The alignment in the directive is a power of 2 value, the assembler
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001383 // may internally end up wanting an alignment in bytes.
1384 // FIXME: Diagnose overflow.
1385 if (Pow2Alignment < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00001386 return Error(Pow2AlignmentLoc, "invalid '.comm' or '.lcomm' directive "
1387 "alignment, can't be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001388
Daniel Dunbar8906ff12009-08-22 07:22:36 +00001389 if (!Sym->isUndefined())
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001390 return Error(IDLoc, "invalid symbol redefinition");
1391
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001392 // '.lcomm' is equivalent to '.zerofill'.
Chris Lattner1fc3d752009-07-09 17:25:12 +00001393 // Create the Symbol as a common or local common with Size and Pow2Alignment
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001394 if (IsLocal) {
Chris Lattnerf0559e42010-04-08 20:30:37 +00001395 Out.EmitZerofill(Ctx.getMachOSection("__DATA", "__bss",
1396 MCSectionMachO::S_ZEROFILL, 0,
1397 SectionKind::getBSS()),
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001398 Sym, Size, 1 << Pow2Alignment);
1399 return false;
1400 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001401
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001402 Out.EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001403 return false;
1404}
Chris Lattner9be3fee2009-07-10 22:20:30 +00001405
1406/// ParseDirectiveDarwinZerofill
1407/// ::= .zerofill segname , sectname [, identifier , size_expression [
1408/// , align_expression ]]
1409bool AsmParser::ParseDirectiveDarwinZerofill() {
Chris Lattner7bb7c552010-05-13 00:10:34 +00001410 StringRef Segment;
1411 if (ParseIdentifier(Segment))
Chris Lattner9be3fee2009-07-10 22:20:30 +00001412 return TokError("expected segment name after '.zerofill' directive");
Chris Lattner9be3fee2009-07-10 22:20:30 +00001413
Daniel Dunbar3f872332009-07-28 16:08:33 +00001414 if (Lexer.isNot(AsmToken::Comma))
Chris Lattner9be3fee2009-07-10 22:20:30 +00001415 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001416 Lex();
Chris Lattner7bb7c552010-05-13 00:10:34 +00001417
1418 StringRef Section;
1419 if (ParseIdentifier(Section))
Chris Lattner9be3fee2009-07-10 22:20:30 +00001420 return TokError("expected section name after comma in '.zerofill' "
1421 "directive");
Chris Lattner9be3fee2009-07-10 22:20:30 +00001422
Chris Lattner9be3fee2009-07-10 22:20:30 +00001423 // If this is the end of the line all that was wanted was to create the
1424 // the section but with no symbol.
Daniel Dunbar3f872332009-07-28 16:08:33 +00001425 if (Lexer.is(AsmToken::EndOfStatement)) {
Chris Lattner9be3fee2009-07-10 22:20:30 +00001426 // Create the zerofill section but no symbol
Chris Lattnerf0559e42010-04-08 20:30:37 +00001427 Out.EmitZerofill(Ctx.getMachOSection(Segment, Section,
1428 MCSectionMachO::S_ZEROFILL, 0,
1429 SectionKind::getBSS()));
Chris Lattner9be3fee2009-07-10 22:20:30 +00001430 return false;
1431 }
1432
Daniel Dunbar3f872332009-07-28 16:08:33 +00001433 if (Lexer.isNot(AsmToken::Comma))
Chris Lattner9be3fee2009-07-10 22:20:30 +00001434 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001435 Lex();
Chris Lattner9be3fee2009-07-10 22:20:30 +00001436
Chris Lattner7bb7c552010-05-13 00:10:34 +00001437 SMLoc IDLoc = Lexer.getLoc();
1438 StringRef IDStr;
1439 if (ParseIdentifier(IDStr))
Chris Lattner9be3fee2009-07-10 22:20:30 +00001440 return TokError("expected identifier in directive");
1441
1442 // handle the identifier as the key symbol.
Chris Lattner7bb7c552010-05-13 00:10:34 +00001443 MCSymbol *Sym = CreateSymbol(IDStr);
Chris Lattner9be3fee2009-07-10 22:20:30 +00001444
Daniel Dunbar3f872332009-07-28 16:08:33 +00001445 if (Lexer.isNot(AsmToken::Comma))
Chris Lattner9be3fee2009-07-10 22:20:30 +00001446 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001447 Lex();
Chris Lattner9be3fee2009-07-10 22:20:30 +00001448
1449 int64_t Size;
1450 SMLoc SizeLoc = Lexer.getLoc();
1451 if (ParseAbsoluteExpression(Size))
1452 return true;
1453
1454 int64_t Pow2Alignment = 0;
1455 SMLoc Pow2AlignmentLoc;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001456 if (Lexer.is(AsmToken::Comma)) {
Sean Callanan79ed1a82010-01-19 20:22:31 +00001457 Lex();
Chris Lattner9be3fee2009-07-10 22:20:30 +00001458 Pow2AlignmentLoc = Lexer.getLoc();
1459 if (ParseAbsoluteExpression(Pow2Alignment))
1460 return true;
1461 }
1462
Daniel Dunbar3f872332009-07-28 16:08:33 +00001463 if (Lexer.isNot(AsmToken::EndOfStatement))
Chris Lattner9be3fee2009-07-10 22:20:30 +00001464 return TokError("unexpected token in '.zerofill' directive");
1465
Sean Callanan79ed1a82010-01-19 20:22:31 +00001466 Lex();
Chris Lattner9be3fee2009-07-10 22:20:30 +00001467
1468 if (Size < 0)
1469 return Error(SizeLoc, "invalid '.zerofill' directive size, can't be less "
1470 "than zero");
1471
Eric Christopherc260a3e2010-05-14 01:38:54 +00001472 // NOTE: The alignment in the directive is a power of 2 value, the assembler
Chris Lattner9be3fee2009-07-10 22:20:30 +00001473 // may internally end up wanting an alignment in bytes.
1474 // FIXME: Diagnose overflow.
1475 if (Pow2Alignment < 0)
1476 return Error(Pow2AlignmentLoc, "invalid '.zerofill' directive alignment, "
1477 "can't be less than zero");
1478
Daniel Dunbar8906ff12009-08-22 07:22:36 +00001479 if (!Sym->isUndefined())
Chris Lattner9be3fee2009-07-10 22:20:30 +00001480 return Error(IDLoc, "invalid symbol redefinition");
1481
Daniel Dunbarbdee6df2009-08-27 23:58:10 +00001482 // Create the zerofill Symbol with Size and Pow2Alignment
Daniel Dunbar2e152922009-08-28 05:48:29 +00001483 //
1484 // FIXME: Arch specific.
Chris Lattnerf0559e42010-04-08 20:30:37 +00001485 Out.EmitZerofill(Ctx.getMachOSection(Segment, Section,
1486 MCSectionMachO::S_ZEROFILL, 0,
1487 SectionKind::getBSS()),
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001488 Sym, Size, 1 << Pow2Alignment);
Chris Lattner9be3fee2009-07-10 22:20:30 +00001489
1490 return false;
1491}
Kevin Enderbya5c78322009-07-13 21:03:15 +00001492
Eric Christopher482eba02010-05-14 01:50:28 +00001493/// ParseDirectiveDarwinTBSS
1494/// ::= .tbss identifier, size, align
1495bool AsmParser::ParseDirectiveDarwinTBSS() {
1496 SMLoc IDLoc = Lexer.getLoc();
1497 StringRef Name;
1498 if (ParseIdentifier(Name))
1499 return TokError("expected identifier in directive");
Eric Christopherd04d98d2010-05-17 02:13:02 +00001500
Eric Christopher482eba02010-05-14 01:50:28 +00001501 // Handle the identifier as the key symbol.
Eric Christopherd04d98d2010-05-17 02:13:02 +00001502 MCSymbol *Sym = CreateSymbol(Name);
Eric Christopher482eba02010-05-14 01:50:28 +00001503
1504 if (Lexer.isNot(AsmToken::Comma))
1505 return TokError("unexpected token in directive");
1506 Lex();
1507
1508 int64_t Size;
1509 SMLoc SizeLoc = Lexer.getLoc();
1510 if (ParseAbsoluteExpression(Size))
1511 return true;
1512
1513 int64_t Pow2Alignment = 0;
1514 SMLoc Pow2AlignmentLoc;
1515 if (Lexer.is(AsmToken::Comma)) {
1516 Lex();
1517 Pow2AlignmentLoc = Lexer.getLoc();
1518 if (ParseAbsoluteExpression(Pow2Alignment))
1519 return true;
1520 }
1521
1522 if (Lexer.isNot(AsmToken::EndOfStatement))
1523 return TokError("unexpected token in '.tbss' directive");
1524
1525 Lex();
1526
1527 if (Size < 0)
1528 return Error(SizeLoc, "invalid '.tbss' directive size, can't be less than"
1529 "zero");
1530
1531 // FIXME: Diagnose overflow.
1532 if (Pow2Alignment < 0)
1533 return Error(Pow2AlignmentLoc, "invalid '.tbss' alignment, can't be less"
1534 "than zero");
1535
1536 if (!Sym->isUndefined())
1537 return Error(IDLoc, "invalid symbol redefinition");
1538
Eric Christopher4d01cbe2010-05-18 21:16:04 +00001539 Out.EmitTBSSSymbol(Ctx.getMachOSection("__DATA", "__thread_bss",
1540 MCSectionMachO::S_THREAD_LOCAL_ZEROFILL,
1541 0, SectionKind::getThreadBSS()),
1542 Sym, Size, 1 << Pow2Alignment);
Eric Christopher482eba02010-05-14 01:50:28 +00001543
1544 return false;
1545}
1546
Kevin Enderbya5c78322009-07-13 21:03:15 +00001547/// ParseDirectiveDarwinSubsectionsViaSymbols
1548/// ::= .subsections_via_symbols
1549bool AsmParser::ParseDirectiveDarwinSubsectionsViaSymbols() {
Daniel Dunbar3f872332009-07-28 16:08:33 +00001550 if (Lexer.isNot(AsmToken::EndOfStatement))
Kevin Enderbya5c78322009-07-13 21:03:15 +00001551 return TokError("unexpected token in '.subsections_via_symbols' directive");
1552
Sean Callanan79ed1a82010-01-19 20:22:31 +00001553 Lex();
Kevin Enderbya5c78322009-07-13 21:03:15 +00001554
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001555 Out.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
Kevin Enderbya5c78322009-07-13 21:03:15 +00001556
1557 return false;
1558}
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001559
1560/// ParseDirectiveAbort
1561/// ::= .abort [ "abort_string" ]
1562bool AsmParser::ParseDirectiveAbort() {
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001563 // FIXME: Use loc from directive.
1564 SMLoc Loc = Lexer.getLoc();
1565
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001566 StringRef Str = "";
Daniel Dunbar3f872332009-07-28 16:08:33 +00001567 if (Lexer.isNot(AsmToken::EndOfStatement)) {
1568 if (Lexer.isNot(AsmToken::String))
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001569 return TokError("expected string in '.abort' directive");
1570
Sean Callanan18b83232010-01-19 21:44:56 +00001571 Str = getTok().getString();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001572
Sean Callanan79ed1a82010-01-19 20:22:31 +00001573 Lex();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001574 }
1575
Daniel Dunbar3f872332009-07-28 16:08:33 +00001576 if (Lexer.isNot(AsmToken::EndOfStatement))
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001577 return TokError("unexpected token in '.abort' directive");
1578
Sean Callanan79ed1a82010-01-19 20:22:31 +00001579 Lex();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001580
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001581 // FIXME: Handle here.
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001582 if (Str.empty())
1583 Error(Loc, ".abort detected. Assembly stopping.");
1584 else
1585 Error(Loc, ".abort '" + Str + "' detected. Assembly stopping.");
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001586
1587 return false;
1588}
Kevin Enderby71148242009-07-14 21:35:03 +00001589
1590/// ParseDirectiveLsym
1591/// ::= .lsym identifier , expression
1592bool AsmParser::ParseDirectiveDarwinLsym() {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001593 StringRef Name;
1594 if (ParseIdentifier(Name))
Kevin Enderby71148242009-07-14 21:35:03 +00001595 return TokError("expected identifier in directive");
1596
Daniel Dunbar76c4d762009-07-31 21:55:09 +00001597 // Handle the identifier as the key symbol.
Daniel Dunbar959fd882009-08-26 22:13:22 +00001598 MCSymbol *Sym = CreateSymbol(Name);
Kevin Enderby71148242009-07-14 21:35:03 +00001599
Daniel Dunbar3f872332009-07-28 16:08:33 +00001600 if (Lexer.isNot(AsmToken::Comma))
Kevin Enderby71148242009-07-14 21:35:03 +00001601 return TokError("unexpected token in '.lsym' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001602 Lex();
Kevin Enderby71148242009-07-14 21:35:03 +00001603
Daniel Dunbar821e3332009-08-31 08:09:28 +00001604 const MCExpr *Value;
Daniel Dunbar883f9202009-08-31 08:08:50 +00001605 SMLoc StartLoc = Lexer.getLoc();
Daniel Dunbar821e3332009-08-31 08:09:28 +00001606 if (ParseExpression(Value))
Kevin Enderby71148242009-07-14 21:35:03 +00001607 return true;
1608
Daniel Dunbar3f872332009-07-28 16:08:33 +00001609 if (Lexer.isNot(AsmToken::EndOfStatement))
Kevin Enderby71148242009-07-14 21:35:03 +00001610 return TokError("unexpected token in '.lsym' directive");
1611
Sean Callanan79ed1a82010-01-19 20:22:31 +00001612 Lex();
Kevin Enderby71148242009-07-14 21:35:03 +00001613
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001614 // We don't currently support this directive.
1615 //
1616 // FIXME: Diagnostic location!
1617 (void) Sym;
1618 return TokError("directive '.lsym' is unsupported");
Kevin Enderby71148242009-07-14 21:35:03 +00001619}
Kevin Enderby1f049b22009-07-14 23:21:55 +00001620
1621/// ParseDirectiveInclude
1622/// ::= .include "filename"
1623bool AsmParser::ParseDirectiveInclude() {
Daniel Dunbar3f872332009-07-28 16:08:33 +00001624 if (Lexer.isNot(AsmToken::String))
Kevin Enderby1f049b22009-07-14 23:21:55 +00001625 return TokError("expected string in '.include' directive");
1626
Sean Callanan18b83232010-01-19 21:44:56 +00001627 std::string Filename = getTok().getString();
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001628 SMLoc IncludeLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001629 Lex();
Kevin Enderby1f049b22009-07-14 23:21:55 +00001630
Daniel Dunbar3f872332009-07-28 16:08:33 +00001631 if (Lexer.isNot(AsmToken::EndOfStatement))
Kevin Enderby1f049b22009-07-14 23:21:55 +00001632 return TokError("unexpected token in '.include' directive");
1633
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001634 // Strip the quotes.
1635 Filename = Filename.substr(1, Filename.size()-2);
1636
1637 // Attempt to switch the lexer to the included file before consuming the end
1638 // of statement to avoid losing it when we switch.
Sean Callananfd0b0282010-01-21 00:19:58 +00001639 if (EnterIncludeFile(Filename)) {
Sean Callananbf2013e2010-01-20 23:19:55 +00001640 PrintMessage(IncludeLoc,
1641 "Could not find include file '" + Filename + "'",
1642 "error");
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001643 return true;
1644 }
Kevin Enderby1f049b22009-07-14 23:21:55 +00001645
1646 return false;
1647}
Kevin Enderby6e68cd92009-07-15 15:30:11 +00001648
1649/// ParseDirectiveDarwinDumpOrLoad
1650/// ::= ( .dump | .load ) "filename"
Kevin Enderby5026ae42009-07-20 20:25:37 +00001651bool AsmParser::ParseDirectiveDarwinDumpOrLoad(SMLoc IDLoc, bool IsDump) {
Daniel Dunbar3f872332009-07-28 16:08:33 +00001652 if (Lexer.isNot(AsmToken::String))
Kevin Enderby6e68cd92009-07-15 15:30:11 +00001653 return TokError("expected string in '.dump' or '.load' directive");
1654
Sean Callanan79ed1a82010-01-19 20:22:31 +00001655 Lex();
Kevin Enderby6e68cd92009-07-15 15:30:11 +00001656
Daniel Dunbar3f872332009-07-28 16:08:33 +00001657 if (Lexer.isNot(AsmToken::EndOfStatement))
Kevin Enderby6e68cd92009-07-15 15:30:11 +00001658 return TokError("unexpected token in '.dump' or '.load' directive");
1659
Sean Callanan79ed1a82010-01-19 20:22:31 +00001660 Lex();
Kevin Enderby6e68cd92009-07-15 15:30:11 +00001661
Kevin Enderby5026ae42009-07-20 20:25:37 +00001662 // FIXME: If/when .dump and .load are implemented they will be done in the
1663 // the assembly parser and not have any need for an MCStreamer API.
Kevin Enderby6e68cd92009-07-15 15:30:11 +00001664 if (IsDump)
Kevin Enderby5026ae42009-07-20 20:25:37 +00001665 Warning(IDLoc, "ignoring directive .dump for now");
Kevin Enderby6e68cd92009-07-15 15:30:11 +00001666 else
Kevin Enderby5026ae42009-07-20 20:25:37 +00001667 Warning(IDLoc, "ignoring directive .load for now");
Kevin Enderby6e68cd92009-07-15 15:30:11 +00001668
1669 return false;
1670}
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001671
1672/// ParseDirectiveIf
1673/// ::= .if expression
1674bool AsmParser::ParseDirectiveIf(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001675 TheCondStack.push_back(TheCondState);
1676 TheCondState.TheCond = AsmCond::IfCond;
1677 if(TheCondState.Ignore) {
1678 EatToEndOfStatement();
1679 }
1680 else {
1681 int64_t ExprValue;
1682 if (ParseAbsoluteExpression(ExprValue))
1683 return true;
1684
1685 if (Lexer.isNot(AsmToken::EndOfStatement))
1686 return TokError("unexpected token in '.if' directive");
1687
Sean Callanan79ed1a82010-01-19 20:22:31 +00001688 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001689
1690 TheCondState.CondMet = ExprValue;
1691 TheCondState.Ignore = !TheCondState.CondMet;
1692 }
1693
1694 return false;
1695}
1696
1697/// ParseDirectiveElseIf
1698/// ::= .elseif expression
1699bool AsmParser::ParseDirectiveElseIf(SMLoc DirectiveLoc) {
1700 if (TheCondState.TheCond != AsmCond::IfCond &&
1701 TheCondState.TheCond != AsmCond::ElseIfCond)
1702 Error(DirectiveLoc, "Encountered a .elseif that doesn't follow a .if or "
1703 " an .elseif");
1704 TheCondState.TheCond = AsmCond::ElseIfCond;
1705
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001706 bool LastIgnoreState = false;
1707 if (!TheCondStack.empty())
1708 LastIgnoreState = TheCondStack.back().Ignore;
1709 if (LastIgnoreState || TheCondState.CondMet) {
1710 TheCondState.Ignore = true;
1711 EatToEndOfStatement();
1712 }
1713 else {
1714 int64_t ExprValue;
1715 if (ParseAbsoluteExpression(ExprValue))
1716 return true;
1717
1718 if (Lexer.isNot(AsmToken::EndOfStatement))
1719 return TokError("unexpected token in '.elseif' directive");
1720
Sean Callanan79ed1a82010-01-19 20:22:31 +00001721 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001722 TheCondState.CondMet = ExprValue;
1723 TheCondState.Ignore = !TheCondState.CondMet;
1724 }
1725
1726 return false;
1727}
1728
1729/// ParseDirectiveElse
1730/// ::= .else
1731bool AsmParser::ParseDirectiveElse(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001732 if (Lexer.isNot(AsmToken::EndOfStatement))
1733 return TokError("unexpected token in '.else' directive");
1734
Sean Callanan79ed1a82010-01-19 20:22:31 +00001735 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001736
1737 if (TheCondState.TheCond != AsmCond::IfCond &&
1738 TheCondState.TheCond != AsmCond::ElseIfCond)
1739 Error(DirectiveLoc, "Encountered a .else that doesn't follow a .if or an "
1740 ".elseif");
1741 TheCondState.TheCond = AsmCond::ElseCond;
1742 bool LastIgnoreState = false;
1743 if (!TheCondStack.empty())
1744 LastIgnoreState = TheCondStack.back().Ignore;
1745 if (LastIgnoreState || TheCondState.CondMet)
1746 TheCondState.Ignore = true;
1747 else
1748 TheCondState.Ignore = false;
1749
1750 return false;
1751}
1752
1753/// ParseDirectiveEndIf
1754/// ::= .endif
1755bool AsmParser::ParseDirectiveEndIf(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001756 if (Lexer.isNot(AsmToken::EndOfStatement))
1757 return TokError("unexpected token in '.endif' directive");
1758
Sean Callanan79ed1a82010-01-19 20:22:31 +00001759 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001760
1761 if ((TheCondState.TheCond == AsmCond::NoCond) ||
1762 TheCondStack.empty())
1763 Error(DirectiveLoc, "Encountered a .endif that doesn't follow a .if or "
1764 ".else");
1765 if (!TheCondStack.empty()) {
1766 TheCondState = TheCondStack.back();
1767 TheCondStack.pop_back();
1768 }
1769
1770 return false;
1771}
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001772
1773/// ParseDirectiveFile
1774/// ::= .file [number] string
Chris Lattnerebb89b42009-09-27 21:16:52 +00001775bool AsmParser::ParseDirectiveFile(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001776 // FIXME: I'm not sure what this is.
1777 int64_t FileNumber = -1;
1778 if (Lexer.is(AsmToken::Integer)) {
Sean Callanan18b83232010-01-19 21:44:56 +00001779 FileNumber = getTok().getIntVal();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001780 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001781
1782 if (FileNumber < 1)
1783 return TokError("file number less than one");
1784 }
1785
1786 if (Lexer.isNot(AsmToken::String))
1787 return TokError("unexpected token in '.file' directive");
1788
Chris Lattnerd32e8032010-01-25 19:02:58 +00001789 StringRef Filename = getTok().getString();
1790 Filename = Filename.substr(1, Filename.size()-2);
Sean Callanan79ed1a82010-01-19 20:22:31 +00001791 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001792
1793 if (Lexer.isNot(AsmToken::EndOfStatement))
1794 return TokError("unexpected token in '.file' directive");
1795
Chris Lattnerd32e8032010-01-25 19:02:58 +00001796 if (FileNumber == -1)
1797 Out.EmitFileDirective(Filename);
1798 else
1799 Out.EmitDwarfFileDirective(FileNumber, Filename);
1800
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001801 return false;
1802}
1803
1804/// ParseDirectiveLine
1805/// ::= .line [number]
Chris Lattnerebb89b42009-09-27 21:16:52 +00001806bool AsmParser::ParseDirectiveLine(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001807 if (Lexer.isNot(AsmToken::EndOfStatement)) {
1808 if (Lexer.isNot(AsmToken::Integer))
1809 return TokError("unexpected token in '.line' directive");
1810
Sean Callanan18b83232010-01-19 21:44:56 +00001811 int64_t LineNumber = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001812 (void) LineNumber;
Sean Callanan79ed1a82010-01-19 20:22:31 +00001813 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001814
1815 // FIXME: Do something with the .line.
1816 }
1817
1818 if (Lexer.isNot(AsmToken::EndOfStatement))
1819 return TokError("unexpected token in '.file' directive");
1820
1821 return false;
1822}
1823
1824
1825/// ParseDirectiveLoc
1826/// ::= .loc number [number [number]]
Chris Lattnerebb89b42009-09-27 21:16:52 +00001827bool AsmParser::ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001828 if (Lexer.isNot(AsmToken::Integer))
1829 return TokError("unexpected token in '.loc' directive");
1830
1831 // FIXME: What are these fields?
Sean Callanan18b83232010-01-19 21:44:56 +00001832 int64_t FileNumber = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001833 (void) FileNumber;
1834 // FIXME: Validate file.
1835
Sean Callanan79ed1a82010-01-19 20:22:31 +00001836 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001837 if (Lexer.isNot(AsmToken::EndOfStatement)) {
1838 if (Lexer.isNot(AsmToken::Integer))
1839 return TokError("unexpected token in '.loc' directive");
1840
Sean Callanan18b83232010-01-19 21:44:56 +00001841 int64_t Param2 = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001842 (void) Param2;
Sean Callanan79ed1a82010-01-19 20:22:31 +00001843 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001844
1845 if (Lexer.isNot(AsmToken::EndOfStatement)) {
1846 if (Lexer.isNot(AsmToken::Integer))
1847 return TokError("unexpected token in '.loc' directive");
1848
Sean Callanan18b83232010-01-19 21:44:56 +00001849 int64_t Param3 = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001850 (void) Param3;
Sean Callanan79ed1a82010-01-19 20:22:31 +00001851 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001852
1853 // FIXME: Do something with the .loc.
1854 }
1855 }
1856
1857 if (Lexer.isNot(AsmToken::EndOfStatement))
1858 return TokError("unexpected token in '.file' directive");
1859
1860 return false;
1861}
1862