blob: 1237c45c5f948896fb5e00b2e8ff64ade78e60da [file] [log] [blame]
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +00001//===-- X86AsmParser.cpp - Parse X86 assembly to MCInst instructions ------===//
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
Daniel Dunbar0b0441e2009-07-18 23:03:22 +000010#include "X86.h"
Daniel Dunbar78929e52009-07-20 20:01:54 +000011#include "llvm/ADT/SmallVector.h"
Daniel Dunbar14c5bf82009-07-28 22:40:46 +000012#include "llvm/ADT/Twine.h"
Daniel Dunbard80432a2009-07-28 20:47:52 +000013#include "llvm/MC/MCAsmLexer.h"
Daniel Dunbar4b0f4ef2009-07-20 18:55:04 +000014#include "llvm/MC/MCAsmParser.h"
Kevin Enderbyae90d092009-09-10 20:51:44 +000015#include "llvm/MC/MCStreamer.h"
Daniel Dunbar6e966212009-08-31 08:08:38 +000016#include "llvm/MC/MCExpr.h"
Daniel Dunbara54716c2009-07-31 02:32:59 +000017#include "llvm/MC/MCInst.h"
Chris Lattner0c119a72010-01-14 21:20:55 +000018#include "llvm/MC/MCParsedAsmOperand.h"
Daniel Dunbar14c5bf82009-07-28 22:40:46 +000019#include "llvm/Support/SourceMgr.h"
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +000020#include "llvm/Target/TargetRegistry.h"
21#include "llvm/Target/TargetAsmParser.h"
22using namespace llvm;
23
24namespace {
Benjamin Kramer264834b2009-07-31 11:35:26 +000025struct X86Operand;
Daniel Dunbar14c5bf82009-07-28 22:40:46 +000026
27class X86ATTAsmParser : public TargetAsmParser {
28 MCAsmParser &Parser;
29
30private:
Daniel Dunbar14c5bf82009-07-28 22:40:46 +000031 MCAsmParser &getParser() const { return Parser; }
32
33 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
34
35 void Warning(SMLoc L, const Twine &Msg) { Parser.Warning(L, Msg); }
36
37 bool Error(SMLoc L, const Twine &Msg) { return Parser.Error(L, Msg); }
38
39 bool ParseRegister(X86Operand &Op);
40
41 bool ParseOperand(X86Operand &Op);
42
43 bool ParseMemOperand(X86Operand &Op);
Kevin Enderbyae90d092009-09-10 20:51:44 +000044
45 bool ParseDirectiveWord(unsigned Size, SMLoc L);
46
Daniel Dunbar85f1b392009-07-29 00:02:19 +000047 /// @name Auto-generated Match Functions
48 /// {
49
Daniel Dunbarfe6759e2009-08-07 08:26:05 +000050 bool MatchInstruction(SmallVectorImpl<X86Operand> &Operands,
51 MCInst &Inst);
52
Daniel Dunbarb0e6abe2009-08-08 21:22:41 +000053 /// MatchRegisterName - Match the given string to a register name, or 0 if
54 /// there is no match.
55 unsigned MatchRegisterName(const StringRef &Name);
Daniel Dunbar85f1b392009-07-29 00:02:19 +000056
57 /// }
Daniel Dunbar14c5bf82009-07-28 22:40:46 +000058
59public:
60 X86ATTAsmParser(const Target &T, MCAsmParser &_Parser)
61 : TargetAsmParser(T), Parser(_Parser) {}
62
63 virtual bool ParseInstruction(const StringRef &Name, MCInst &Inst);
Kevin Enderbyae90d092009-09-10 20:51:44 +000064
65 virtual bool ParseDirective(AsmToken DirectiveID);
Daniel Dunbar14c5bf82009-07-28 22:40:46 +000066};
Chris Lattnere54532b2009-07-29 06:33:53 +000067
68} // end anonymous namespace
69
70
71namespace {
Daniel Dunbar14c5bf82009-07-28 22:40:46 +000072
73/// X86Operand - Instances of this class represent a parsed X86 machine
74/// instruction.
Chris Lattner0c119a72010-01-14 21:20:55 +000075struct X86Operand : public MCParsedAsmOperand {
Daniel Dunbar14c5bf82009-07-28 22:40:46 +000076 enum {
Daniel Dunbarfe6759e2009-08-07 08:26:05 +000077 Token,
Daniel Dunbar14c5bf82009-07-28 22:40:46 +000078 Register,
79 Immediate,
80 Memory
81 } Kind;
82
83 union {
84 struct {
Daniel Dunbarfe6759e2009-08-07 08:26:05 +000085 const char *Data;
86 unsigned Length;
87 } Tok;
88
89 struct {
Daniel Dunbar14c5bf82009-07-28 22:40:46 +000090 unsigned RegNo;
91 } Reg;
92
93 struct {
Daniel Dunbar6e966212009-08-31 08:08:38 +000094 const MCExpr *Val;
Daniel Dunbar14c5bf82009-07-28 22:40:46 +000095 } Imm;
96
97 struct {
98 unsigned SegReg;
Daniel Dunbar6e966212009-08-31 08:08:38 +000099 const MCExpr *Disp;
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000100 unsigned BaseReg;
101 unsigned IndexReg;
102 unsigned Scale;
103 } Mem;
Daniel Dunbar78929e52009-07-20 20:01:54 +0000104 };
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +0000105
Daniel Dunbarfe6759e2009-08-07 08:26:05 +0000106 StringRef getToken() const {
107 assert(Kind == Token && "Invalid access!");
108 return StringRef(Tok.Data, Tok.Length);
109 }
110
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000111 unsigned getReg() const {
112 assert(Kind == Register && "Invalid access!");
113 return Reg.RegNo;
114 }
Daniel Dunbard80432a2009-07-28 20:47:52 +0000115
Daniel Dunbar6e966212009-08-31 08:08:38 +0000116 const MCExpr *getImm() const {
Daniel Dunbarb7ddef12009-07-31 20:53:16 +0000117 assert(Kind == Immediate && "Invalid access!");
118 return Imm.Val;
119 }
120
Daniel Dunbar6e966212009-08-31 08:08:38 +0000121 const MCExpr *getMemDisp() const {
Daniel Dunbarb7ddef12009-07-31 20:53:16 +0000122 assert(Kind == Memory && "Invalid access!");
123 return Mem.Disp;
124 }
125 unsigned getMemSegReg() const {
126 assert(Kind == Memory && "Invalid access!");
127 return Mem.SegReg;
128 }
129 unsigned getMemBaseReg() const {
130 assert(Kind == Memory && "Invalid access!");
131 return Mem.BaseReg;
132 }
133 unsigned getMemIndexReg() const {
134 assert(Kind == Memory && "Invalid access!");
135 return Mem.IndexReg;
136 }
137 unsigned getMemScale() const {
138 assert(Kind == Memory && "Invalid access!");
139 return Mem.Scale;
140 }
141
Daniel Dunbar378bee92009-08-08 07:50:56 +0000142 bool isToken() const {return Kind == Token; }
Daniel Dunbarfe6759e2009-08-07 08:26:05 +0000143
144 bool isImm() const { return Kind == Immediate; }
145
Daniel Dunbar06d5cb62009-08-09 07:20:21 +0000146 bool isImmSExt8() const {
147 // Accept immediates which fit in 8 bits when sign extended, and
148 // non-absolute immediates.
149 if (!isImm())
150 return false;
151
Daniel Dunbar6e966212009-08-31 08:08:38 +0000152 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm())) {
153 int64_t Value = CE->getValue();
154 return Value == (int64_t) (int8_t) Value;
155 }
Daniel Dunbar06d5cb62009-08-09 07:20:21 +0000156
Daniel Dunbar6e966212009-08-31 08:08:38 +0000157 return true;
Daniel Dunbar06d5cb62009-08-09 07:20:21 +0000158 }
159
Daniel Dunbarfe6759e2009-08-07 08:26:05 +0000160 bool isMem() const { return Kind == Memory; }
161
162 bool isReg() const { return Kind == Register; }
163
Daniel Dunbarb3413d82009-08-10 21:00:45 +0000164 void addRegOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbarfe6759e2009-08-07 08:26:05 +0000165 assert(N == 1 && "Invalid number of operands!");
166 Inst.addOperand(MCOperand::CreateReg(getReg()));
167 }
168
Daniel Dunbarb3413d82009-08-10 21:00:45 +0000169 void addImmOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbarfe6759e2009-08-07 08:26:05 +0000170 assert(N == 1 && "Invalid number of operands!");
Daniel Dunbar6e966212009-08-31 08:08:38 +0000171 Inst.addOperand(MCOperand::CreateExpr(getImm()));
Daniel Dunbarfe6759e2009-08-07 08:26:05 +0000172 }
173
Daniel Dunbarb3413d82009-08-10 21:00:45 +0000174 void addImmSExt8Operands(MCInst &Inst, unsigned N) const {
Daniel Dunbar06d5cb62009-08-09 07:20:21 +0000175 // FIXME: Support user customization of the render method.
176 assert(N == 1 && "Invalid number of operands!");
Daniel Dunbar6e966212009-08-31 08:08:38 +0000177 Inst.addOperand(MCOperand::CreateExpr(getImm()));
Daniel Dunbar06d5cb62009-08-09 07:20:21 +0000178 }
179
Daniel Dunbarb3413d82009-08-10 21:00:45 +0000180 void addMemOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbarfe6759e2009-08-07 08:26:05 +0000181 assert((N == 4 || N == 5) && "Invalid number of operands!");
182
183 Inst.addOperand(MCOperand::CreateReg(getMemBaseReg()));
184 Inst.addOperand(MCOperand::CreateImm(getMemScale()));
185 Inst.addOperand(MCOperand::CreateReg(getMemIndexReg()));
Daniel Dunbar6e966212009-08-31 08:08:38 +0000186 Inst.addOperand(MCOperand::CreateExpr(getMemDisp()));
Daniel Dunbarfe6759e2009-08-07 08:26:05 +0000187
188 // FIXME: What a hack.
189 if (N == 5)
190 Inst.addOperand(MCOperand::CreateReg(getMemSegReg()));
191 }
192
193 static X86Operand CreateToken(StringRef Str) {
194 X86Operand Res;
195 Res.Kind = Token;
196 Res.Tok.Data = Str.data();
197 Res.Tok.Length = Str.size();
198 return Res;
199 }
200
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000201 static X86Operand CreateReg(unsigned RegNo) {
202 X86Operand Res;
203 Res.Kind = Register;
204 Res.Reg.RegNo = RegNo;
205 return Res;
206 }
Daniel Dunbarfe6759e2009-08-07 08:26:05 +0000207
Daniel Dunbar6e966212009-08-31 08:08:38 +0000208 static X86Operand CreateImm(const MCExpr *Val) {
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000209 X86Operand Res;
210 Res.Kind = Immediate;
211 Res.Imm.Val = Val;
212 return Res;
213 }
Daniel Dunbarfe6759e2009-08-07 08:26:05 +0000214
Daniel Dunbar6e966212009-08-31 08:08:38 +0000215 static X86Operand CreateMem(unsigned SegReg, const MCExpr *Disp,
216 unsigned BaseReg, unsigned IndexReg,
217 unsigned Scale) {
Daniel Dunbar24091712009-07-31 22:22:54 +0000218 // We should never just have a displacement, that would be an immediate.
219 assert((SegReg || BaseReg || IndexReg) && "Invalid memory operand!");
220
Daniel Dunbarb7ddef12009-07-31 20:53:16 +0000221 // The scale should always be one of {1,2,4,8}.
222 assert(((Scale == 1 || Scale == 2 || Scale == 4 || Scale == 8)) &&
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000223 "Invalid scale!");
224 X86Operand Res;
225 Res.Kind = Memory;
226 Res.Mem.SegReg = SegReg;
227 Res.Mem.Disp = Disp;
228 Res.Mem.BaseReg = BaseReg;
229 Res.Mem.IndexReg = IndexReg;
230 Res.Mem.Scale = Scale;
231 return Res;
232 }
233};
Daniel Dunbar4b0f4ef2009-07-20 18:55:04 +0000234
Chris Lattnere54532b2009-07-29 06:33:53 +0000235} // end anonymous namespace.
Daniel Dunbard80432a2009-07-28 20:47:52 +0000236
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000237
238bool X86ATTAsmParser::ParseRegister(X86Operand &Op) {
Kevin Enderbye71842b2009-09-03 17:15:07 +0000239 const AsmToken &TokPercent = getLexer().getTok();
Duncan Sandse0a6add2009-09-06 16:27:34 +0000240 (void)TokPercent; // Avoid warning when assertions are disabled.
Kevin Enderbye71842b2009-09-03 17:15:07 +0000241 assert(TokPercent.is(AsmToken::Percent) && "Invalid token kind!");
242 getLexer().Lex(); // Eat percent token.
243
Chris Lattnere54532b2009-07-29 06:33:53 +0000244 const AsmToken &Tok = getLexer().getTok();
Kevin Enderby01b83cf2009-09-16 17:18:29 +0000245 if (Tok.isNot(AsmToken::Identifier))
246 return Error(Tok.getLoc(), "invalid register name");
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000247
Daniel Dunbar85f1b392009-07-29 00:02:19 +0000248 // FIXME: Validate register for the current architecture; we have to do
249 // validation later, so maybe there is no need for this here.
250 unsigned RegNo;
Daniel Dunbarb0e6abe2009-08-08 21:22:41 +0000251
Kevin Enderbye71842b2009-09-03 17:15:07 +0000252 RegNo = MatchRegisterName(Tok.getString());
Daniel Dunbarb0e6abe2009-08-08 21:22:41 +0000253 if (RegNo == 0)
Daniel Dunbar85f1b392009-07-29 00:02:19 +0000254 return Error(Tok.getLoc(), "invalid register name");
255
256 Op = X86Operand::CreateReg(RegNo);
Kevin Enderbye71842b2009-09-03 17:15:07 +0000257 getLexer().Lex(); // Eat identifier token.
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000258
259 return false;
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +0000260}
261
Daniel Dunbar78929e52009-07-20 20:01:54 +0000262bool X86ATTAsmParser::ParseOperand(X86Operand &Op) {
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000263 switch (getLexer().getKind()) {
264 default:
265 return ParseMemOperand(Op);
Kevin Enderbye71842b2009-09-03 17:15:07 +0000266 case AsmToken::Percent:
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000267 // FIXME: if a segment register, this could either be just the seg reg, or
268 // the start of a memory operand.
269 return ParseRegister(Op);
270 case AsmToken::Dollar: {
271 // $42 -> immediate.
272 getLexer().Lex();
Daniel Dunbar6e966212009-08-31 08:08:38 +0000273 const MCExpr *Val;
274 if (getParser().ParseExpression(Val))
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000275 return true;
276 Op = X86Operand::CreateImm(Val);
277 return false;
278 }
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000279 }
Daniel Dunbar78929e52009-07-20 20:01:54 +0000280}
281
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000282/// ParseMemOperand: segment: disp(basereg, indexreg, scale)
283bool X86ATTAsmParser::ParseMemOperand(X86Operand &Op) {
284 // FIXME: If SegReg ':' (e.g. %gs:), eat and remember.
285 unsigned SegReg = 0;
286
287 // We have to disambiguate a parenthesized expression "(4+5)" from the start
288 // of a memory operand with a missing displacement "(%ebx)" or "(,%eax)". The
289 // only way to do this without lookahead is to eat the ( and see what is after
290 // it.
Daniel Dunbar6e966212009-08-31 08:08:38 +0000291 const MCExpr *Disp = MCConstantExpr::Create(0, getParser().getContext());
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000292 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbar6e966212009-08-31 08:08:38 +0000293 if (getParser().ParseExpression(Disp)) return true;
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000294
295 // After parsing the base expression we could either have a parenthesized
296 // memory address or not. If not, return now. If so, eat the (.
297 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbar24091712009-07-31 22:22:54 +0000298 // Unless we have a segment register, treat this as an immediate.
299 if (SegReg)
300 Op = X86Operand::CreateMem(SegReg, Disp, 0, 0, 1);
301 else
302 Op = X86Operand::CreateImm(Disp);
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000303 return false;
304 }
305
306 // Eat the '('.
307 getLexer().Lex();
308 } else {
309 // Okay, we have a '('. We don't know if this is an expression or not, but
310 // so we have to eat the ( to see beyond it.
311 getLexer().Lex(); // Eat the '('.
312
Kevin Enderbye71842b2009-09-03 17:15:07 +0000313 if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) {
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000314 // Nothing to do here, fall into the code below with the '(' part of the
315 // memory operand consumed.
316 } else {
317 // It must be an parenthesized expression, parse it now.
Daniel Dunbar6e966212009-08-31 08:08:38 +0000318 if (getParser().ParseParenExpression(Disp))
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000319 return true;
320
321 // After parsing the base expression we could either have a parenthesized
322 // memory address or not. If not, return now. If so, eat the (.
323 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbar24091712009-07-31 22:22:54 +0000324 // Unless we have a segment register, treat this as an immediate.
325 if (SegReg)
326 Op = X86Operand::CreateMem(SegReg, Disp, 0, 0, 1);
327 else
328 Op = X86Operand::CreateImm(Disp);
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000329 return false;
330 }
331
332 // Eat the '('.
333 getLexer().Lex();
334 }
335 }
336
337 // If we reached here, then we just ate the ( of the memory operand. Process
338 // the rest of the memory operand.
Daniel Dunbarb7ddef12009-07-31 20:53:16 +0000339 unsigned BaseReg = 0, IndexReg = 0, Scale = 1;
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000340
Kevin Enderbye71842b2009-09-03 17:15:07 +0000341 if (getLexer().is(AsmToken::Percent)) {
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000342 if (ParseRegister(Op))
343 return true;
344 BaseReg = Op.getReg();
345 }
346
347 if (getLexer().is(AsmToken::Comma)) {
348 getLexer().Lex(); // Eat the comma.
349
350 // Following the comma we should have either an index register, or a scale
351 // value. We don't support the later form, but we want to parse it
352 // correctly.
353 //
354 // Not that even though it would be completely consistent to support syntax
355 // like "1(%eax,,1)", the assembler doesn't.
Kevin Enderbye71842b2009-09-03 17:15:07 +0000356 if (getLexer().is(AsmToken::Percent)) {
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000357 if (ParseRegister(Op))
358 return true;
359 IndexReg = Op.getReg();
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000360
361 if (getLexer().isNot(AsmToken::RParen)) {
362 // Parse the scale amount:
363 // ::= ',' [scale-expression]
364 if (getLexer().isNot(AsmToken::Comma))
365 return true;
366 getLexer().Lex(); // Eat the comma.
367
368 if (getLexer().isNot(AsmToken::RParen)) {
369 SMLoc Loc = getLexer().getTok().getLoc();
370
371 int64_t ScaleVal;
372 if (getParser().ParseAbsoluteExpression(ScaleVal))
373 return true;
374
375 // Validate the scale amount.
376 if (ScaleVal != 1 && ScaleVal != 2 && ScaleVal != 4 && ScaleVal != 8)
377 return Error(Loc, "scale factor in address must be 1, 2, 4 or 8");
378 Scale = (unsigned)ScaleVal;
379 }
380 }
381 } else if (getLexer().isNot(AsmToken::RParen)) {
382 // Otherwise we have the unsupported form of a scale amount without an
383 // index.
384 SMLoc Loc = getLexer().getTok().getLoc();
385
386 int64_t Value;
387 if (getParser().ParseAbsoluteExpression(Value))
388 return true;
389
390 return Error(Loc, "cannot have scale factor without index register");
391 }
392 }
393
394 // Ok, we've eaten the memory operand, verify we have a ')' and eat it too.
395 if (getLexer().isNot(AsmToken::RParen))
396 return Error(getLexer().getTok().getLoc(),
397 "unexpected token in memory operand");
398 getLexer().Lex(); // Eat the ')'.
399
400 Op = X86Operand::CreateMem(SegReg, Disp, BaseReg, IndexReg, Scale);
401 return false;
402}
403
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000404bool X86ATTAsmParser::ParseInstruction(const StringRef &Name, MCInst &Inst) {
Daniel Dunbar62beebc2009-08-07 20:33:39 +0000405 SmallVector<X86Operand, 8> Operands;
Daniel Dunbarfe6759e2009-08-07 08:26:05 +0000406
407 Operands.push_back(X86Operand::CreateToken(Name));
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000408
Daniel Dunbara54716c2009-07-31 02:32:59 +0000409 SMLoc Loc = getLexer().getTok().getLoc();
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000410 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbar76953672009-08-11 05:00:25 +0000411
412 // Parse '*' modifier.
413 if (getLexer().is(AsmToken::Star)) {
414 getLexer().Lex(); // Eat the star.
415 Operands.push_back(X86Operand::CreateToken("*"));
416 }
417
Daniel Dunbar14c5bf82009-07-28 22:40:46 +0000418 // Read the first operand.
419 Operands.push_back(X86Operand());
420 if (ParseOperand(Operands.back()))
421 return true;
422
423 while (getLexer().is(AsmToken::Comma)) {
424 getLexer().Lex(); // Eat the comma.
425
426 // Parse and remember the operand.
427 Operands.push_back(X86Operand());
428 if (ParseOperand(Operands.back()))
429 return true;
430 }
431 }
432
Daniel Dunbarfe6759e2009-08-07 08:26:05 +0000433 if (!MatchInstruction(Operands, Inst))
Daniel Dunbara54716c2009-07-31 02:32:59 +0000434 return false;
435
436 // FIXME: We should give nicer diagnostics about the exact failure.
437
Daniel Dunbar575db962009-08-14 03:48:55 +0000438 Error(Loc, "unrecognized instruction");
439 return true;
Daniel Dunbar4b0f4ef2009-07-20 18:55:04 +0000440}
441
Kevin Enderbyae90d092009-09-10 20:51:44 +0000442bool X86ATTAsmParser::ParseDirective(AsmToken DirectiveID) {
443 StringRef IDVal = DirectiveID.getIdentifier();
444 if (IDVal == ".word")
445 return ParseDirectiveWord(2, DirectiveID.getLoc());
446 return true;
447}
448
449/// ParseDirectiveWord
450/// ::= .word [ expression (, expression)* ]
451bool X86ATTAsmParser::ParseDirectiveWord(unsigned Size, SMLoc L) {
452 if (getLexer().isNot(AsmToken::EndOfStatement)) {
453 for (;;) {
454 const MCExpr *Value;
455 if (getParser().ParseExpression(Value))
456 return true;
457
458 getParser().getStreamer().EmitValue(Value, Size);
459
460 if (getLexer().is(AsmToken::EndOfStatement))
461 break;
462
463 // FIXME: Improve diagnostic.
464 if (getLexer().isNot(AsmToken::Comma))
465 return Error(L, "unexpected token in directive");
466 getLexer().Lex();
467 }
468 }
469
470 getLexer().Lex();
471 return false;
472}
473
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +0000474// Force static initialization.
475extern "C" void LLVMInitializeX86AsmParser() {
Daniel Dunbarc680b012009-07-25 06:49:55 +0000476 RegisterAsmParser<X86ATTAsmParser> X(TheX86_32Target);
477 RegisterAsmParser<X86ATTAsmParser> Y(TheX86_64Target);
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +0000478}
Daniel Dunbar85f1b392009-07-29 00:02:19 +0000479
480#include "X86GenAsmMatcher.inc"