Daniel Dunbar | c7df3cb | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 1 | //===-- 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 Dunbar | 0b0441e | 2009-07-18 23:03:22 +0000 | [diff] [blame] | 10 | #include "X86.h" |
Daniel Dunbar | 78929e5 | 2009-07-20 20:01:54 +0000 | [diff] [blame] | 11 | #include "llvm/ADT/SmallVector.h" |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 12 | #include "llvm/ADT/Twine.h" |
Daniel Dunbar | d80432a | 2009-07-28 20:47:52 +0000 | [diff] [blame] | 13 | #include "llvm/MC/MCAsmLexer.h" |
Daniel Dunbar | 4b0f4ef | 2009-07-20 18:55:04 +0000 | [diff] [blame] | 14 | #include "llvm/MC/MCAsmParser.h" |
Kevin Enderby | ae90d09 | 2009-09-10 20:51:44 +0000 | [diff] [blame] | 15 | #include "llvm/MC/MCStreamer.h" |
Daniel Dunbar | 6e96621 | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 16 | #include "llvm/MC/MCExpr.h" |
Daniel Dunbar | a54716c | 2009-07-31 02:32:59 +0000 | [diff] [blame] | 17 | #include "llvm/MC/MCInst.h" |
Chris Lattner | 0c119a7 | 2010-01-14 21:20:55 +0000 | [diff] [blame] | 18 | #include "llvm/MC/MCParsedAsmOperand.h" |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 19 | #include "llvm/Support/SourceMgr.h" |
Daniel Dunbar | c7df3cb | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 20 | #include "llvm/Target/TargetRegistry.h" |
| 21 | #include "llvm/Target/TargetAsmParser.h" |
| 22 | using namespace llvm; |
| 23 | |
| 24 | namespace { |
Benjamin Kramer | 264834b | 2009-07-31 11:35:26 +0000 | [diff] [blame] | 25 | struct X86Operand; |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 26 | |
| 27 | class X86ATTAsmParser : public TargetAsmParser { |
| 28 | MCAsmParser &Parser; |
| 29 | |
| 30 | private: |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 31 | 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 Enderby | ae90d09 | 2009-09-10 20:51:44 +0000 | [diff] [blame] | 44 | |
| 45 | bool ParseDirectiveWord(unsigned Size, SMLoc L); |
| 46 | |
Daniel Dunbar | 85f1b39 | 2009-07-29 00:02:19 +0000 | [diff] [blame] | 47 | /// @name Auto-generated Match Functions |
| 48 | /// { |
| 49 | |
Daniel Dunbar | fe6759e | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 50 | bool MatchInstruction(SmallVectorImpl<X86Operand> &Operands, |
| 51 | MCInst &Inst); |
| 52 | |
Daniel Dunbar | b0e6abe | 2009-08-08 21:22:41 +0000 | [diff] [blame] | 53 | /// MatchRegisterName - Match the given string to a register name, or 0 if |
| 54 | /// there is no match. |
| 55 | unsigned MatchRegisterName(const StringRef &Name); |
Daniel Dunbar | 85f1b39 | 2009-07-29 00:02:19 +0000 | [diff] [blame] | 56 | |
| 57 | /// } |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 58 | |
| 59 | public: |
| 60 | X86ATTAsmParser(const Target &T, MCAsmParser &_Parser) |
| 61 | : TargetAsmParser(T), Parser(_Parser) {} |
| 62 | |
Chris Lattner | f66e4eb | 2010-01-14 21:32:45 +0000 | [diff] [blame^] | 63 | virtual bool ParseInstruction(const StringRef &Name, SMLoc NameLoc, |
| 64 | MCInst &Inst); |
Kevin Enderby | ae90d09 | 2009-09-10 20:51:44 +0000 | [diff] [blame] | 65 | |
| 66 | virtual bool ParseDirective(AsmToken DirectiveID); |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 67 | }; |
Chris Lattner | e54532b | 2009-07-29 06:33:53 +0000 | [diff] [blame] | 68 | |
| 69 | } // end anonymous namespace |
| 70 | |
| 71 | |
| 72 | namespace { |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 73 | |
| 74 | /// X86Operand - Instances of this class represent a parsed X86 machine |
| 75 | /// instruction. |
Chris Lattner | 0c119a7 | 2010-01-14 21:20:55 +0000 | [diff] [blame] | 76 | struct X86Operand : public MCParsedAsmOperand { |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 77 | enum { |
Daniel Dunbar | fe6759e | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 78 | Token, |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 79 | Register, |
| 80 | Immediate, |
| 81 | Memory |
| 82 | } Kind; |
| 83 | |
| 84 | union { |
| 85 | struct { |
Daniel Dunbar | fe6759e | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 86 | const char *Data; |
| 87 | unsigned Length; |
| 88 | } Tok; |
| 89 | |
| 90 | struct { |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 91 | unsigned RegNo; |
| 92 | } Reg; |
| 93 | |
| 94 | struct { |
Daniel Dunbar | 6e96621 | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 95 | const MCExpr *Val; |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 96 | } Imm; |
| 97 | |
| 98 | struct { |
| 99 | unsigned SegReg; |
Daniel Dunbar | 6e96621 | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 100 | const MCExpr *Disp; |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 101 | unsigned BaseReg; |
| 102 | unsigned IndexReg; |
| 103 | unsigned Scale; |
| 104 | } Mem; |
Daniel Dunbar | 78929e5 | 2009-07-20 20:01:54 +0000 | [diff] [blame] | 105 | }; |
Daniel Dunbar | c7df3cb | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 106 | |
Daniel Dunbar | fe6759e | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 107 | StringRef getToken() const { |
| 108 | assert(Kind == Token && "Invalid access!"); |
| 109 | return StringRef(Tok.Data, Tok.Length); |
| 110 | } |
| 111 | |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 112 | unsigned getReg() const { |
| 113 | assert(Kind == Register && "Invalid access!"); |
| 114 | return Reg.RegNo; |
| 115 | } |
Daniel Dunbar | d80432a | 2009-07-28 20:47:52 +0000 | [diff] [blame] | 116 | |
Daniel Dunbar | 6e96621 | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 117 | const MCExpr *getImm() const { |
Daniel Dunbar | b7ddef1 | 2009-07-31 20:53:16 +0000 | [diff] [blame] | 118 | assert(Kind == Immediate && "Invalid access!"); |
| 119 | return Imm.Val; |
| 120 | } |
| 121 | |
Daniel Dunbar | 6e96621 | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 122 | const MCExpr *getMemDisp() const { |
Daniel Dunbar | b7ddef1 | 2009-07-31 20:53:16 +0000 | [diff] [blame] | 123 | assert(Kind == Memory && "Invalid access!"); |
| 124 | return Mem.Disp; |
| 125 | } |
| 126 | unsigned getMemSegReg() const { |
| 127 | assert(Kind == Memory && "Invalid access!"); |
| 128 | return Mem.SegReg; |
| 129 | } |
| 130 | unsigned getMemBaseReg() const { |
| 131 | assert(Kind == Memory && "Invalid access!"); |
| 132 | return Mem.BaseReg; |
| 133 | } |
| 134 | unsigned getMemIndexReg() const { |
| 135 | assert(Kind == Memory && "Invalid access!"); |
| 136 | return Mem.IndexReg; |
| 137 | } |
| 138 | unsigned getMemScale() const { |
| 139 | assert(Kind == Memory && "Invalid access!"); |
| 140 | return Mem.Scale; |
| 141 | } |
| 142 | |
Daniel Dunbar | 378bee9 | 2009-08-08 07:50:56 +0000 | [diff] [blame] | 143 | bool isToken() const {return Kind == Token; } |
Daniel Dunbar | fe6759e | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 144 | |
| 145 | bool isImm() const { return Kind == Immediate; } |
| 146 | |
Daniel Dunbar | 06d5cb6 | 2009-08-09 07:20:21 +0000 | [diff] [blame] | 147 | bool isImmSExt8() const { |
| 148 | // Accept immediates which fit in 8 bits when sign extended, and |
| 149 | // non-absolute immediates. |
| 150 | if (!isImm()) |
| 151 | return false; |
| 152 | |
Daniel Dunbar | 6e96621 | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 153 | if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm())) { |
| 154 | int64_t Value = CE->getValue(); |
| 155 | return Value == (int64_t) (int8_t) Value; |
| 156 | } |
Daniel Dunbar | 06d5cb6 | 2009-08-09 07:20:21 +0000 | [diff] [blame] | 157 | |
Daniel Dunbar | 6e96621 | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 158 | return true; |
Daniel Dunbar | 06d5cb6 | 2009-08-09 07:20:21 +0000 | [diff] [blame] | 159 | } |
| 160 | |
Daniel Dunbar | fe6759e | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 161 | bool isMem() const { return Kind == Memory; } |
| 162 | |
| 163 | bool isReg() const { return Kind == Register; } |
| 164 | |
Daniel Dunbar | b3413d8 | 2009-08-10 21:00:45 +0000 | [diff] [blame] | 165 | void addRegOperands(MCInst &Inst, unsigned N) const { |
Daniel Dunbar | fe6759e | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 166 | assert(N == 1 && "Invalid number of operands!"); |
| 167 | Inst.addOperand(MCOperand::CreateReg(getReg())); |
| 168 | } |
| 169 | |
Daniel Dunbar | b3413d8 | 2009-08-10 21:00:45 +0000 | [diff] [blame] | 170 | void addImmOperands(MCInst &Inst, unsigned N) const { |
Daniel Dunbar | fe6759e | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 171 | assert(N == 1 && "Invalid number of operands!"); |
Daniel Dunbar | 6e96621 | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 172 | Inst.addOperand(MCOperand::CreateExpr(getImm())); |
Daniel Dunbar | fe6759e | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 173 | } |
| 174 | |
Daniel Dunbar | b3413d8 | 2009-08-10 21:00:45 +0000 | [diff] [blame] | 175 | void addImmSExt8Operands(MCInst &Inst, unsigned N) const { |
Daniel Dunbar | 06d5cb6 | 2009-08-09 07:20:21 +0000 | [diff] [blame] | 176 | // FIXME: Support user customization of the render method. |
| 177 | assert(N == 1 && "Invalid number of operands!"); |
Daniel Dunbar | 6e96621 | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 178 | Inst.addOperand(MCOperand::CreateExpr(getImm())); |
Daniel Dunbar | 06d5cb6 | 2009-08-09 07:20:21 +0000 | [diff] [blame] | 179 | } |
| 180 | |
Daniel Dunbar | b3413d8 | 2009-08-10 21:00:45 +0000 | [diff] [blame] | 181 | void addMemOperands(MCInst &Inst, unsigned N) const { |
Daniel Dunbar | fe6759e | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 182 | assert((N == 4 || N == 5) && "Invalid number of operands!"); |
| 183 | |
| 184 | Inst.addOperand(MCOperand::CreateReg(getMemBaseReg())); |
| 185 | Inst.addOperand(MCOperand::CreateImm(getMemScale())); |
| 186 | Inst.addOperand(MCOperand::CreateReg(getMemIndexReg())); |
Daniel Dunbar | 6e96621 | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 187 | Inst.addOperand(MCOperand::CreateExpr(getMemDisp())); |
Daniel Dunbar | fe6759e | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 188 | |
| 189 | // FIXME: What a hack. |
| 190 | if (N == 5) |
| 191 | Inst.addOperand(MCOperand::CreateReg(getMemSegReg())); |
| 192 | } |
| 193 | |
| 194 | static X86Operand CreateToken(StringRef Str) { |
| 195 | X86Operand Res; |
| 196 | Res.Kind = Token; |
| 197 | Res.Tok.Data = Str.data(); |
| 198 | Res.Tok.Length = Str.size(); |
| 199 | return Res; |
| 200 | } |
| 201 | |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 202 | static X86Operand CreateReg(unsigned RegNo) { |
| 203 | X86Operand Res; |
| 204 | Res.Kind = Register; |
| 205 | Res.Reg.RegNo = RegNo; |
| 206 | return Res; |
| 207 | } |
Daniel Dunbar | fe6759e | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 208 | |
Daniel Dunbar | 6e96621 | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 209 | static X86Operand CreateImm(const MCExpr *Val) { |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 210 | X86Operand Res; |
| 211 | Res.Kind = Immediate; |
| 212 | Res.Imm.Val = Val; |
| 213 | return Res; |
| 214 | } |
Daniel Dunbar | fe6759e | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 215 | |
Daniel Dunbar | 6e96621 | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 216 | static X86Operand CreateMem(unsigned SegReg, const MCExpr *Disp, |
| 217 | unsigned BaseReg, unsigned IndexReg, |
| 218 | unsigned Scale) { |
Daniel Dunbar | 2409171 | 2009-07-31 22:22:54 +0000 | [diff] [blame] | 219 | // We should never just have a displacement, that would be an immediate. |
| 220 | assert((SegReg || BaseReg || IndexReg) && "Invalid memory operand!"); |
| 221 | |
Daniel Dunbar | b7ddef1 | 2009-07-31 20:53:16 +0000 | [diff] [blame] | 222 | // The scale should always be one of {1,2,4,8}. |
| 223 | assert(((Scale == 1 || Scale == 2 || Scale == 4 || Scale == 8)) && |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 224 | "Invalid scale!"); |
| 225 | X86Operand Res; |
| 226 | Res.Kind = Memory; |
| 227 | Res.Mem.SegReg = SegReg; |
| 228 | Res.Mem.Disp = Disp; |
| 229 | Res.Mem.BaseReg = BaseReg; |
| 230 | Res.Mem.IndexReg = IndexReg; |
| 231 | Res.Mem.Scale = Scale; |
| 232 | return Res; |
| 233 | } |
| 234 | }; |
Daniel Dunbar | 4b0f4ef | 2009-07-20 18:55:04 +0000 | [diff] [blame] | 235 | |
Chris Lattner | e54532b | 2009-07-29 06:33:53 +0000 | [diff] [blame] | 236 | } // end anonymous namespace. |
Daniel Dunbar | d80432a | 2009-07-28 20:47:52 +0000 | [diff] [blame] | 237 | |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 238 | |
| 239 | bool X86ATTAsmParser::ParseRegister(X86Operand &Op) { |
Kevin Enderby | e71842b | 2009-09-03 17:15:07 +0000 | [diff] [blame] | 240 | const AsmToken &TokPercent = getLexer().getTok(); |
Duncan Sands | e0a6add | 2009-09-06 16:27:34 +0000 | [diff] [blame] | 241 | (void)TokPercent; // Avoid warning when assertions are disabled. |
Kevin Enderby | e71842b | 2009-09-03 17:15:07 +0000 | [diff] [blame] | 242 | assert(TokPercent.is(AsmToken::Percent) && "Invalid token kind!"); |
| 243 | getLexer().Lex(); // Eat percent token. |
| 244 | |
Chris Lattner | e54532b | 2009-07-29 06:33:53 +0000 | [diff] [blame] | 245 | const AsmToken &Tok = getLexer().getTok(); |
Kevin Enderby | 01b83cf | 2009-09-16 17:18:29 +0000 | [diff] [blame] | 246 | if (Tok.isNot(AsmToken::Identifier)) |
| 247 | return Error(Tok.getLoc(), "invalid register name"); |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 248 | |
Daniel Dunbar | 85f1b39 | 2009-07-29 00:02:19 +0000 | [diff] [blame] | 249 | // FIXME: Validate register for the current architecture; we have to do |
| 250 | // validation later, so maybe there is no need for this here. |
| 251 | unsigned RegNo; |
Daniel Dunbar | b0e6abe | 2009-08-08 21:22:41 +0000 | [diff] [blame] | 252 | |
Kevin Enderby | e71842b | 2009-09-03 17:15:07 +0000 | [diff] [blame] | 253 | RegNo = MatchRegisterName(Tok.getString()); |
Daniel Dunbar | b0e6abe | 2009-08-08 21:22:41 +0000 | [diff] [blame] | 254 | if (RegNo == 0) |
Daniel Dunbar | 85f1b39 | 2009-07-29 00:02:19 +0000 | [diff] [blame] | 255 | return Error(Tok.getLoc(), "invalid register name"); |
| 256 | |
| 257 | Op = X86Operand::CreateReg(RegNo); |
Kevin Enderby | e71842b | 2009-09-03 17:15:07 +0000 | [diff] [blame] | 258 | getLexer().Lex(); // Eat identifier token. |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 259 | |
| 260 | return false; |
Daniel Dunbar | c7df3cb | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 261 | } |
| 262 | |
Daniel Dunbar | 78929e5 | 2009-07-20 20:01:54 +0000 | [diff] [blame] | 263 | bool X86ATTAsmParser::ParseOperand(X86Operand &Op) { |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 264 | switch (getLexer().getKind()) { |
| 265 | default: |
| 266 | return ParseMemOperand(Op); |
Kevin Enderby | e71842b | 2009-09-03 17:15:07 +0000 | [diff] [blame] | 267 | case AsmToken::Percent: |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 268 | // FIXME: if a segment register, this could either be just the seg reg, or |
| 269 | // the start of a memory operand. |
| 270 | return ParseRegister(Op); |
| 271 | case AsmToken::Dollar: { |
| 272 | // $42 -> immediate. |
| 273 | getLexer().Lex(); |
Daniel Dunbar | 6e96621 | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 274 | const MCExpr *Val; |
| 275 | if (getParser().ParseExpression(Val)) |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 276 | return true; |
| 277 | Op = X86Operand::CreateImm(Val); |
| 278 | return false; |
| 279 | } |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 280 | } |
Daniel Dunbar | 78929e5 | 2009-07-20 20:01:54 +0000 | [diff] [blame] | 281 | } |
| 282 | |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 283 | /// ParseMemOperand: segment: disp(basereg, indexreg, scale) |
| 284 | bool X86ATTAsmParser::ParseMemOperand(X86Operand &Op) { |
| 285 | // FIXME: If SegReg ':' (e.g. %gs:), eat and remember. |
| 286 | unsigned SegReg = 0; |
| 287 | |
| 288 | // We have to disambiguate a parenthesized expression "(4+5)" from the start |
| 289 | // of a memory operand with a missing displacement "(%ebx)" or "(,%eax)". The |
| 290 | // only way to do this without lookahead is to eat the ( and see what is after |
| 291 | // it. |
Daniel Dunbar | 6e96621 | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 292 | const MCExpr *Disp = MCConstantExpr::Create(0, getParser().getContext()); |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 293 | if (getLexer().isNot(AsmToken::LParen)) { |
Daniel Dunbar | 6e96621 | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 294 | if (getParser().ParseExpression(Disp)) return true; |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 295 | |
| 296 | // After parsing the base expression we could either have a parenthesized |
| 297 | // memory address or not. If not, return now. If so, eat the (. |
| 298 | if (getLexer().isNot(AsmToken::LParen)) { |
Daniel Dunbar | 2409171 | 2009-07-31 22:22:54 +0000 | [diff] [blame] | 299 | // Unless we have a segment register, treat this as an immediate. |
| 300 | if (SegReg) |
| 301 | Op = X86Operand::CreateMem(SegReg, Disp, 0, 0, 1); |
| 302 | else |
| 303 | Op = X86Operand::CreateImm(Disp); |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 304 | return false; |
| 305 | } |
| 306 | |
| 307 | // Eat the '('. |
| 308 | getLexer().Lex(); |
| 309 | } else { |
| 310 | // Okay, we have a '('. We don't know if this is an expression or not, but |
| 311 | // so we have to eat the ( to see beyond it. |
| 312 | getLexer().Lex(); // Eat the '('. |
| 313 | |
Kevin Enderby | e71842b | 2009-09-03 17:15:07 +0000 | [diff] [blame] | 314 | if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) { |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 315 | // Nothing to do here, fall into the code below with the '(' part of the |
| 316 | // memory operand consumed. |
| 317 | } else { |
| 318 | // It must be an parenthesized expression, parse it now. |
Daniel Dunbar | 6e96621 | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 319 | if (getParser().ParseParenExpression(Disp)) |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 320 | return true; |
| 321 | |
| 322 | // After parsing the base expression we could either have a parenthesized |
| 323 | // memory address or not. If not, return now. If so, eat the (. |
| 324 | if (getLexer().isNot(AsmToken::LParen)) { |
Daniel Dunbar | 2409171 | 2009-07-31 22:22:54 +0000 | [diff] [blame] | 325 | // Unless we have a segment register, treat this as an immediate. |
| 326 | if (SegReg) |
| 327 | Op = X86Operand::CreateMem(SegReg, Disp, 0, 0, 1); |
| 328 | else |
| 329 | Op = X86Operand::CreateImm(Disp); |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 330 | return false; |
| 331 | } |
| 332 | |
| 333 | // Eat the '('. |
| 334 | getLexer().Lex(); |
| 335 | } |
| 336 | } |
| 337 | |
| 338 | // If we reached here, then we just ate the ( of the memory operand. Process |
| 339 | // the rest of the memory operand. |
Daniel Dunbar | b7ddef1 | 2009-07-31 20:53:16 +0000 | [diff] [blame] | 340 | unsigned BaseReg = 0, IndexReg = 0, Scale = 1; |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 341 | |
Kevin Enderby | e71842b | 2009-09-03 17:15:07 +0000 | [diff] [blame] | 342 | if (getLexer().is(AsmToken::Percent)) { |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 343 | if (ParseRegister(Op)) |
| 344 | return true; |
| 345 | BaseReg = Op.getReg(); |
| 346 | } |
| 347 | |
| 348 | if (getLexer().is(AsmToken::Comma)) { |
| 349 | getLexer().Lex(); // Eat the comma. |
| 350 | |
| 351 | // Following the comma we should have either an index register, or a scale |
| 352 | // value. We don't support the later form, but we want to parse it |
| 353 | // correctly. |
| 354 | // |
| 355 | // Not that even though it would be completely consistent to support syntax |
| 356 | // like "1(%eax,,1)", the assembler doesn't. |
Kevin Enderby | e71842b | 2009-09-03 17:15:07 +0000 | [diff] [blame] | 357 | if (getLexer().is(AsmToken::Percent)) { |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 358 | if (ParseRegister(Op)) |
| 359 | return true; |
| 360 | IndexReg = Op.getReg(); |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 361 | |
| 362 | if (getLexer().isNot(AsmToken::RParen)) { |
| 363 | // Parse the scale amount: |
| 364 | // ::= ',' [scale-expression] |
| 365 | if (getLexer().isNot(AsmToken::Comma)) |
| 366 | return true; |
| 367 | getLexer().Lex(); // Eat the comma. |
| 368 | |
| 369 | if (getLexer().isNot(AsmToken::RParen)) { |
| 370 | SMLoc Loc = getLexer().getTok().getLoc(); |
| 371 | |
| 372 | int64_t ScaleVal; |
| 373 | if (getParser().ParseAbsoluteExpression(ScaleVal)) |
| 374 | return true; |
| 375 | |
| 376 | // Validate the scale amount. |
| 377 | if (ScaleVal != 1 && ScaleVal != 2 && ScaleVal != 4 && ScaleVal != 8) |
| 378 | return Error(Loc, "scale factor in address must be 1, 2, 4 or 8"); |
| 379 | Scale = (unsigned)ScaleVal; |
| 380 | } |
| 381 | } |
| 382 | } else if (getLexer().isNot(AsmToken::RParen)) { |
| 383 | // Otherwise we have the unsupported form of a scale amount without an |
| 384 | // index. |
| 385 | SMLoc Loc = getLexer().getTok().getLoc(); |
| 386 | |
| 387 | int64_t Value; |
| 388 | if (getParser().ParseAbsoluteExpression(Value)) |
| 389 | return true; |
| 390 | |
| 391 | return Error(Loc, "cannot have scale factor without index register"); |
| 392 | } |
| 393 | } |
| 394 | |
| 395 | // Ok, we've eaten the memory operand, verify we have a ')' and eat it too. |
| 396 | if (getLexer().isNot(AsmToken::RParen)) |
| 397 | return Error(getLexer().getTok().getLoc(), |
| 398 | "unexpected token in memory operand"); |
| 399 | getLexer().Lex(); // Eat the ')'. |
| 400 | |
| 401 | Op = X86Operand::CreateMem(SegReg, Disp, BaseReg, IndexReg, Scale); |
| 402 | return false; |
| 403 | } |
| 404 | |
Chris Lattner | f66e4eb | 2010-01-14 21:32:45 +0000 | [diff] [blame^] | 405 | bool X86ATTAsmParser::ParseInstruction(const StringRef &Name, |
| 406 | SMLoc NameLoc, MCInst &Inst) { |
Daniel Dunbar | 62beebc | 2009-08-07 20:33:39 +0000 | [diff] [blame] | 407 | SmallVector<X86Operand, 8> Operands; |
Daniel Dunbar | fe6759e | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 408 | |
| 409 | Operands.push_back(X86Operand::CreateToken(Name)); |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 410 | |
Daniel Dunbar | a54716c | 2009-07-31 02:32:59 +0000 | [diff] [blame] | 411 | SMLoc Loc = getLexer().getTok().getLoc(); |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 412 | if (getLexer().isNot(AsmToken::EndOfStatement)) { |
Daniel Dunbar | 7695367 | 2009-08-11 05:00:25 +0000 | [diff] [blame] | 413 | |
| 414 | // Parse '*' modifier. |
| 415 | if (getLexer().is(AsmToken::Star)) { |
| 416 | getLexer().Lex(); // Eat the star. |
| 417 | Operands.push_back(X86Operand::CreateToken("*")); |
| 418 | } |
| 419 | |
Daniel Dunbar | 14c5bf8 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 420 | // Read the first operand. |
| 421 | Operands.push_back(X86Operand()); |
| 422 | if (ParseOperand(Operands.back())) |
| 423 | return true; |
| 424 | |
| 425 | while (getLexer().is(AsmToken::Comma)) { |
| 426 | getLexer().Lex(); // Eat the comma. |
| 427 | |
| 428 | // Parse and remember the operand. |
| 429 | Operands.push_back(X86Operand()); |
| 430 | if (ParseOperand(Operands.back())) |
| 431 | return true; |
| 432 | } |
| 433 | } |
| 434 | |
Daniel Dunbar | fe6759e | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 435 | if (!MatchInstruction(Operands, Inst)) |
Daniel Dunbar | a54716c | 2009-07-31 02:32:59 +0000 | [diff] [blame] | 436 | return false; |
| 437 | |
| 438 | // FIXME: We should give nicer diagnostics about the exact failure. |
| 439 | |
Daniel Dunbar | 575db96 | 2009-08-14 03:48:55 +0000 | [diff] [blame] | 440 | Error(Loc, "unrecognized instruction"); |
| 441 | return true; |
Daniel Dunbar | 4b0f4ef | 2009-07-20 18:55:04 +0000 | [diff] [blame] | 442 | } |
| 443 | |
Kevin Enderby | ae90d09 | 2009-09-10 20:51:44 +0000 | [diff] [blame] | 444 | bool X86ATTAsmParser::ParseDirective(AsmToken DirectiveID) { |
| 445 | StringRef IDVal = DirectiveID.getIdentifier(); |
| 446 | if (IDVal == ".word") |
| 447 | return ParseDirectiveWord(2, DirectiveID.getLoc()); |
| 448 | return true; |
| 449 | } |
| 450 | |
| 451 | /// ParseDirectiveWord |
| 452 | /// ::= .word [ expression (, expression)* ] |
| 453 | bool X86ATTAsmParser::ParseDirectiveWord(unsigned Size, SMLoc L) { |
| 454 | if (getLexer().isNot(AsmToken::EndOfStatement)) { |
| 455 | for (;;) { |
| 456 | const MCExpr *Value; |
| 457 | if (getParser().ParseExpression(Value)) |
| 458 | return true; |
| 459 | |
| 460 | getParser().getStreamer().EmitValue(Value, Size); |
| 461 | |
| 462 | if (getLexer().is(AsmToken::EndOfStatement)) |
| 463 | break; |
| 464 | |
| 465 | // FIXME: Improve diagnostic. |
| 466 | if (getLexer().isNot(AsmToken::Comma)) |
| 467 | return Error(L, "unexpected token in directive"); |
| 468 | getLexer().Lex(); |
| 469 | } |
| 470 | } |
| 471 | |
| 472 | getLexer().Lex(); |
| 473 | return false; |
| 474 | } |
| 475 | |
Daniel Dunbar | c7df3cb | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 476 | // Force static initialization. |
| 477 | extern "C" void LLVMInitializeX86AsmParser() { |
Daniel Dunbar | c680b01 | 2009-07-25 06:49:55 +0000 | [diff] [blame] | 478 | RegisterAsmParser<X86ATTAsmParser> X(TheX86_32Target); |
| 479 | RegisterAsmParser<X86ATTAsmParser> Y(TheX86_64Target); |
Daniel Dunbar | c7df3cb | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 480 | } |
Daniel Dunbar | 85f1b39 | 2009-07-29 00:02:19 +0000 | [diff] [blame] | 481 | |
| 482 | #include "X86GenAsmMatcher.inc" |