6647262279032d98d55252fc2d8fb3d4c54f2bb9
[oota-llvm.git] / lib / Target / X86 / AsmParser / X86AsmParser.cpp
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
10 #include "MCTargetDesc/X86BaseInfo.h"
11 #include "llvm/ADT/APFloat.h"
12 #include "llvm/ADT/SmallString.h"
13 #include "llvm/ADT/SmallVector.h"
14 #include "llvm/ADT/StringSwitch.h"
15 #include "llvm/ADT/Twine.h"
16 #include "llvm/MC/MCContext.h"
17 #include "llvm/MC/MCExpr.h"
18 #include "llvm/MC/MCInst.h"
19 #include "llvm/MC/MCParser/MCAsmLexer.h"
20 #include "llvm/MC/MCParser/MCAsmParser.h"
21 #include "llvm/MC/MCParser/MCParsedAsmOperand.h"
22 #include "llvm/MC/MCRegisterInfo.h"
23 #include "llvm/MC/MCStreamer.h"
24 #include "llvm/MC/MCSubtargetInfo.h"
25 #include "llvm/MC/MCSymbol.h"
26 #include "llvm/MC/MCTargetAsmParser.h"
27 #include "llvm/Support/SourceMgr.h"
28 #include "llvm/Support/TargetRegistry.h"
29 #include "llvm/Support/raw_ostream.h"
30
31 using namespace llvm;
32
33 namespace {
34 struct X86Operand;
35
36 static const char OpPrecedence[] = {
37   0, // IC_PLUS
38   0, // IC_MINUS
39   1, // IC_MULTIPLY
40   1, // IC_DIVIDE
41   2, // IC_RPAREN
42   3, // IC_LPAREN
43   0, // IC_IMM
44   0  // IC_REGISTER
45 };
46
47 class X86AsmParser : public MCTargetAsmParser {
48   MCSubtargetInfo &STI;
49   MCAsmParser &Parser;
50   ParseInstructionInfo *InstInfo;
51 private:
52   enum InfixCalculatorTok {
53     IC_PLUS = 0,
54     IC_MINUS,
55     IC_MULTIPLY,
56     IC_DIVIDE,
57     IC_RPAREN,
58     IC_LPAREN,
59     IC_IMM,
60     IC_REGISTER
61   };
62
63   class InfixCalculator {
64     typedef std::pair< InfixCalculatorTok, int64_t > ICToken;
65     SmallVector<InfixCalculatorTok, 4> InfixOperatorStack;
66     SmallVector<ICToken, 4> PostfixStack;
67     
68   public:
69     int64_t popOperand() {
70       assert (!PostfixStack.empty() && "Poped an empty stack!");
71       ICToken Op = PostfixStack.pop_back_val();
72       assert ((Op.first == IC_IMM || Op.first == IC_REGISTER)
73               && "Expected and immediate or register!");
74       return Op.second;
75     }
76     void pushOperand(InfixCalculatorTok Op, int64_t Val = 0) {
77       assert ((Op == IC_IMM || Op == IC_REGISTER) &&
78               "Unexpected operand!");
79       PostfixStack.push_back(std::make_pair(Op, Val));
80     }
81     
82     void popOperator() { InfixOperatorStack.pop_back_val(); }
83     void pushOperator(InfixCalculatorTok Op) {
84       // Push the new operator if the stack is empty.
85       if (InfixOperatorStack.empty()) {
86         InfixOperatorStack.push_back(Op);
87         return;
88       }
89       
90       // Push the new operator if it has a higher precedence than the operator
91       // on the top of the stack or the operator on the top of the stack is a
92       // left parentheses.
93       unsigned Idx = InfixOperatorStack.size() - 1;
94       InfixCalculatorTok StackOp = InfixOperatorStack[Idx];
95       if (OpPrecedence[Op] > OpPrecedence[StackOp] || StackOp == IC_LPAREN) {
96         InfixOperatorStack.push_back(Op);
97         return;
98       }
99       
100       // The operator on the top of the stack has higher precedence than the
101       // new operator.
102       unsigned ParenCount = 0;
103       while (1) {
104         // Nothing to process.
105         if (InfixOperatorStack.empty())
106           break;
107         
108         Idx = InfixOperatorStack.size() - 1;
109         StackOp = InfixOperatorStack[Idx];
110         if (!(OpPrecedence[StackOp] >= OpPrecedence[Op] || ParenCount))
111           break;
112         
113         // If we have an even parentheses count and we see a left parentheses,
114         // then stop processing.
115         if (!ParenCount && StackOp == IC_LPAREN)
116           break;
117         
118         if (StackOp == IC_RPAREN) {
119           ++ParenCount;
120           InfixOperatorStack.pop_back_val();
121         } else if (StackOp == IC_LPAREN) {
122           --ParenCount;
123           InfixOperatorStack.pop_back_val();
124         } else {
125           InfixOperatorStack.pop_back_val();
126           PostfixStack.push_back(std::make_pair(StackOp, 0));
127         }
128       }
129       // Push the new operator.
130       InfixOperatorStack.push_back(Op);
131     }
132     int64_t execute() {
133       // Push any remaining operators onto the postfix stack.
134       while (!InfixOperatorStack.empty()) {
135         InfixCalculatorTok StackOp = InfixOperatorStack.pop_back_val();
136         if (StackOp != IC_LPAREN && StackOp != IC_RPAREN)
137           PostfixStack.push_back(std::make_pair(StackOp, 0));
138       }
139       
140       if (PostfixStack.empty())
141         return 0;
142       
143       SmallVector<ICToken, 16> OperandStack;
144       for (unsigned i = 0, e = PostfixStack.size(); i != e; ++i) {
145         ICToken Op = PostfixStack[i];
146         if (Op.first == IC_IMM || Op.first == IC_REGISTER) {
147           OperandStack.push_back(Op);
148         } else {
149           assert (OperandStack.size() > 1 && "Too few operands.");
150           int64_t Val;
151           ICToken Op2 = OperandStack.pop_back_val();
152           ICToken Op1 = OperandStack.pop_back_val();
153           switch (Op.first) {
154           default:
155             report_fatal_error("Unexpected operator!");
156             break;
157           case IC_PLUS:
158             Val = Op1.second + Op2.second;
159             OperandStack.push_back(std::make_pair(IC_IMM, Val));
160             break;
161           case IC_MINUS:
162             Val = Op1.second - Op2.second;
163             OperandStack.push_back(std::make_pair(IC_IMM, Val));
164             break;
165           case IC_MULTIPLY:
166             assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
167                     "Multiply operation with an immediate and a register!");
168             Val = Op1.second * Op2.second;
169             OperandStack.push_back(std::make_pair(IC_IMM, Val));
170             break;
171           case IC_DIVIDE:
172             assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
173                     "Divide operation with an immediate and a register!");
174             assert (Op2.second != 0 && "Division by zero!");
175             Val = Op1.second / Op2.second;
176             OperandStack.push_back(std::make_pair(IC_IMM, Val));
177             break;
178           }
179         }
180       }
181       assert (OperandStack.size() == 1 && "Expected a single result.");
182       return OperandStack.pop_back_val().second;
183     }
184   };
185
186   enum IntelExprState {
187     IES_PLUS,
188     IES_MINUS,
189     IES_MULTIPLY,
190     IES_DIVIDE,
191     IES_LBRAC,
192     IES_RBRAC,
193     IES_LPAREN,
194     IES_RPAREN,
195     IES_REGISTER,
196     IES_REGISTER_STAR,
197     IES_INTEGER,
198     IES_INTEGER_STAR,
199     IES_IDENTIFIER,
200     IES_ERROR
201   };
202
203   class IntelExprStateMachine {
204     IntelExprState State;
205     unsigned BaseReg, IndexReg, TmpReg, Scale;
206     int64_t Disp;
207     const MCExpr *Sym;
208     StringRef SymName;
209     InfixCalculator IC;
210   public:
211     IntelExprStateMachine(int64_t disp) :
212       State(IES_PLUS), BaseReg(0), IndexReg(0), TmpReg(0), Scale(1), Disp(disp),
213       Sym(0) {}
214     
215     unsigned getBaseReg() { return BaseReg; }
216     unsigned getIndexReg() { return IndexReg; }
217     unsigned getScale() { return Scale; }
218     const MCExpr *getSym() { return Sym; }
219     StringRef getSymName() { return SymName; }
220     int64_t getImm() { return Disp + IC.execute(); }
221     bool isValidEndState() { return State == IES_RBRAC; }
222     
223     void onPlus() {
224       switch (State) {
225       default:
226         State = IES_ERROR;
227         break;
228       case IES_INTEGER:
229       case IES_RPAREN:
230         State = IES_PLUS;
231         IC.pushOperator(IC_PLUS);
232         break;
233       case IES_REGISTER:
234         State = IES_PLUS;
235         // If we already have a BaseReg, then assume this is the IndexReg with a
236         // scale of 1.
237         if (!BaseReg) {
238           BaseReg = TmpReg;
239         } else {
240           assert (!IndexReg && "BaseReg/IndexReg already set!");
241           IndexReg = TmpReg;
242           Scale = 1;
243         }
244         IC.pushOperator(IC_PLUS);
245         break;
246       }
247     }
248     void onMinus() {
249       switch (State) {
250       default:
251         State = IES_ERROR;
252         break;
253       case IES_PLUS:
254       case IES_LPAREN:
255         IC.pushOperand(IC_IMM);
256       case IES_INTEGER:
257       case IES_RPAREN:
258         State = IES_MINUS;
259         IC.pushOperator(IC_MINUS);
260         break;
261       case IES_REGISTER:
262         State = IES_MINUS;
263         // If we already have a BaseReg, then assume this is the IndexReg with a
264         // scale of 1.
265         if (!BaseReg) {
266           BaseReg = TmpReg;
267         } else {
268           assert (!IndexReg && "BaseReg/IndexReg already set!");
269           IndexReg = TmpReg;
270           Scale = 1;
271         }
272         IC.pushOperator(IC_MINUS);
273         break;
274       }
275     }
276     void onRegister(unsigned Reg) {
277       switch (State) {
278       default:
279         State = IES_ERROR;
280         break;
281       case IES_PLUS:
282       case IES_LPAREN:
283         State = IES_REGISTER;
284         TmpReg = Reg;
285         IC.pushOperand(IC_REGISTER);
286         break;
287       case IES_INTEGER_STAR:
288         assert (!IndexReg && "IndexReg already set!");
289         State = IES_INTEGER;
290         IndexReg = Reg;
291         Scale = IC.popOperand();
292         IC.pushOperand(IC_IMM);
293         IC.popOperator();
294         break;
295       }
296     }
297     void onDispExpr(const MCExpr *SymRef, StringRef SymRefName) {
298       switch (State) {
299       default:
300         State = IES_ERROR;
301         break;
302       case IES_PLUS:
303       case IES_MINUS:
304         State = IES_INTEGER;
305         Sym = SymRef;
306         SymName = SymRefName;
307         IC.pushOperand(IC_IMM);
308         break;
309       }
310     }
311     void onInteger(int64_t TmpInt) {
312       switch (State) {
313       default:
314         State = IES_ERROR;
315         break;
316       case IES_PLUS:
317       case IES_MINUS:
318       case IES_MULTIPLY:
319       case IES_DIVIDE:
320       case IES_LPAREN:
321       case IES_INTEGER_STAR:
322         State = IES_INTEGER;
323         IC.pushOperand(IC_IMM, TmpInt);
324         break;
325       case IES_REGISTER_STAR:
326         assert (!IndexReg && "IndexReg already set!");
327         State = IES_INTEGER;
328         IndexReg = TmpReg;
329         Scale = TmpInt;
330         IC.popOperator();
331         break;
332       }
333     }
334     void onStar() {
335       switch (State) {
336       default:
337         State = IES_ERROR;
338         break;
339       case IES_INTEGER:
340         State = IES_INTEGER_STAR;
341         IC.pushOperator(IC_MULTIPLY);
342         break;
343       case IES_REGISTER:
344         State = IES_REGISTER_STAR;
345         IC.pushOperator(IC_MULTIPLY);
346         break;
347       case IES_RPAREN:
348         State = IES_MULTIPLY;
349         IC.pushOperator(IC_MULTIPLY);
350         break;
351       }
352     }
353     void onDivide() {
354       switch (State) {
355       default:
356         State = IES_ERROR;
357         break;
358       case IES_INTEGER:
359         State = IES_DIVIDE;
360         IC.pushOperator(IC_DIVIDE);
361         break;
362       }
363     }
364     void onLBrac() {
365       switch (State) {
366       default:
367         State = IES_ERROR;
368         break;
369       case IES_RBRAC:
370         State = IES_PLUS;
371         IC.pushOperator(IC_PLUS);
372         break;
373       }
374     }
375     void onRBrac() {
376       switch (State) {
377       default:
378         State = IES_ERROR;
379         break;
380       case IES_RPAREN:
381       case IES_INTEGER:
382         State = IES_RBRAC;
383         break;
384       case IES_REGISTER:
385         State = IES_RBRAC;
386         // If we already have a BaseReg, then assume this is the IndexReg with a
387         // scale of 1.
388         if (!BaseReg) {
389           BaseReg = TmpReg;
390         } else {
391           assert (!IndexReg && "BaseReg/IndexReg already set!");
392           IndexReg = TmpReg;
393           Scale = 1;
394         }
395         break;
396       }
397     }
398     void onLParen() {
399       switch (State) {
400       default:
401         State = IES_ERROR;
402         break;
403       case IES_PLUS:
404       case IES_MINUS:
405       case IES_MULTIPLY:
406       case IES_DIVIDE:
407       case IES_INTEGER_STAR:
408       case IES_LPAREN:
409         State = IES_LPAREN;
410         IC.pushOperator(IC_LPAREN);
411         break;
412       }
413     }
414     void onRParen() {
415       switch (State) {
416       default:
417         State = IES_ERROR;
418         break;
419       case IES_REGISTER:
420       case IES_INTEGER:
421       case IES_PLUS:
422       case IES_MINUS:
423       case IES_MULTIPLY:
424       case IES_DIVIDE:
425       case IES_RPAREN:
426         State = IES_RPAREN;
427         IC.pushOperator(IC_RPAREN);
428         break;
429       }
430     }
431   };
432
433   MCAsmParser &getParser() const { return Parser; }
434
435   MCAsmLexer &getLexer() const { return Parser.getLexer(); }
436
437   bool Error(SMLoc L, const Twine &Msg,
438              ArrayRef<SMRange> Ranges = ArrayRef<SMRange>(),
439              bool MatchingInlineAsm = false) {
440     if (MatchingInlineAsm) return true;
441     return Parser.Error(L, Msg, Ranges);
442   }
443
444   X86Operand *ErrorOperand(SMLoc Loc, StringRef Msg) {
445     Error(Loc, Msg);
446     return 0;
447   }
448
449   X86Operand *ParseOperand();
450   X86Operand *ParseATTOperand();
451   X86Operand *ParseIntelOperand();
452   X86Operand *ParseIntelOffsetOfOperator();
453   X86Operand *ParseIntelOperator(unsigned OpKind);
454   X86Operand *ParseIntelMemOperand(unsigned SegReg, uint64_t ImmDisp,
455                                    SMLoc StartLoc);
456   X86Operand *ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End);
457   X86Operand *ParseIntelBracExpression(unsigned SegReg, SMLoc Start,
458                                        uint64_t ImmDisp, unsigned Size);
459   X86Operand *ParseIntelVarWithQualifier(const MCExpr *&Disp,
460                                          StringRef &Identifier);
461   X86Operand *ParseMemOperand(unsigned SegReg, SMLoc StartLoc);
462
463   X86Operand *CreateMemForInlineAsm(unsigned SegReg, const MCExpr *Disp,
464                                     unsigned BaseReg, unsigned IndexReg,
465                                     unsigned Scale, SMLoc Start, SMLoc End,
466                                     unsigned Size, StringRef SymName);
467
468   bool ParseIntelDotOperator(const MCExpr *Disp, const MCExpr **NewDisp,
469                              SmallString<64> &Err);
470
471   bool ParseDirectiveWord(unsigned Size, SMLoc L);
472   bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
473
474   bool processInstruction(MCInst &Inst,
475                           const SmallVectorImpl<MCParsedAsmOperand*> &Ops);
476
477   bool MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
478                                SmallVectorImpl<MCParsedAsmOperand*> &Operands,
479                                MCStreamer &Out, unsigned &ErrorInfo,
480                                bool MatchingInlineAsm);
481
482   /// isSrcOp - Returns true if operand is either (%rsi) or %ds:%(rsi)
483   /// in 64bit mode or (%esi) or %es:(%esi) in 32bit mode.
484   bool isSrcOp(X86Operand &Op);
485
486   /// isDstOp - Returns true if operand is either (%rdi) or %es:(%rdi)
487   /// in 64bit mode or (%edi) or %es:(%edi) in 32bit mode.
488   bool isDstOp(X86Operand &Op);
489
490   bool is64BitMode() const {
491     // FIXME: Can tablegen auto-generate this?
492     return (STI.getFeatureBits() & X86::Mode64Bit) != 0;
493   }
494   void SwitchMode() {
495     unsigned FB = ComputeAvailableFeatures(STI.ToggleFeature(X86::Mode64Bit));
496     setAvailableFeatures(FB);
497   }
498
499   /// @name Auto-generated Matcher Functions
500   /// {
501
502 #define GET_ASSEMBLER_HEADER
503 #include "X86GenAsmMatcher.inc"
504
505   /// }
506
507 public:
508   X86AsmParser(MCSubtargetInfo &sti, MCAsmParser &parser)
509     : MCTargetAsmParser(), STI(sti), Parser(parser), InstInfo(0) {
510
511     // Initialize the set of available features.
512     setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
513   }
514   virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
515
516   virtual bool ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
517                                 SMLoc NameLoc,
518                                 SmallVectorImpl<MCParsedAsmOperand*> &Operands);
519
520   virtual bool ParseDirective(AsmToken DirectiveID);
521
522   bool isParsingIntelSyntax() {
523     return getParser().getAssemblerDialect();
524   }
525 };
526 } // end anonymous namespace
527
528 /// @name Auto-generated Match Functions
529 /// {
530
531 static unsigned MatchRegisterName(StringRef Name);
532
533 /// }
534
535 static bool isImmSExti16i8Value(uint64_t Value) {
536   return ((                                  Value <= 0x000000000000007FULL)||
537           (0x000000000000FF80ULL <= Value && Value <= 0x000000000000FFFFULL)||
538           (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
539 }
540
541 static bool isImmSExti32i8Value(uint64_t Value) {
542   return ((                                  Value <= 0x000000000000007FULL)||
543           (0x00000000FFFFFF80ULL <= Value && Value <= 0x00000000FFFFFFFFULL)||
544           (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
545 }
546
547 static bool isImmZExtu32u8Value(uint64_t Value) {
548     return (Value <= 0x00000000000000FFULL);
549 }
550
551 static bool isImmSExti64i8Value(uint64_t Value) {
552   return ((                                  Value <= 0x000000000000007FULL)||
553           (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
554 }
555
556 static bool isImmSExti64i32Value(uint64_t Value) {
557   return ((                                  Value <= 0x000000007FFFFFFFULL)||
558           (0xFFFFFFFF80000000ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
559 }
560 namespace {
561
562 /// X86Operand - Instances of this class represent a parsed X86 machine
563 /// instruction.
564 struct X86Operand : public MCParsedAsmOperand {
565   enum KindTy {
566     Token,
567     Register,
568     Immediate,
569     Memory
570   } Kind;
571
572   SMLoc StartLoc, EndLoc;
573   SMLoc OffsetOfLoc;
574   StringRef SymName;
575   bool AddressOf;
576
577   struct TokOp {
578     const char *Data;
579     unsigned Length;
580   };
581
582   struct RegOp {
583     unsigned RegNo;
584   };
585
586   struct ImmOp {
587     const MCExpr *Val;
588   };
589
590   struct MemOp {
591     unsigned SegReg;
592     const MCExpr *Disp;
593     unsigned BaseReg;
594     unsigned IndexReg;
595     unsigned Scale;
596     unsigned Size;
597   };
598
599   union {
600     struct TokOp Tok;
601     struct RegOp Reg;
602     struct ImmOp Imm;
603     struct MemOp Mem;
604   };
605
606   X86Operand(KindTy K, SMLoc Start, SMLoc End)
607     : Kind(K), StartLoc(Start), EndLoc(End) {}
608
609   StringRef getSymName() { return SymName; }
610
611   /// getStartLoc - Get the location of the first token of this operand.
612   SMLoc getStartLoc() const { return StartLoc; }
613   /// getEndLoc - Get the location of the last token of this operand.
614   SMLoc getEndLoc() const { return EndLoc; }
615   /// getLocRange - Get the range between the first and last token of this
616   /// operand.
617   SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); }
618   /// getOffsetOfLoc - Get the location of the offset operator.
619   SMLoc getOffsetOfLoc() const { return OffsetOfLoc; }
620
621   virtual void print(raw_ostream &OS) const {}
622
623   StringRef getToken() const {
624     assert(Kind == Token && "Invalid access!");
625     return StringRef(Tok.Data, Tok.Length);
626   }
627   void setTokenValue(StringRef Value) {
628     assert(Kind == Token && "Invalid access!");
629     Tok.Data = Value.data();
630     Tok.Length = Value.size();
631   }
632
633   unsigned getReg() const {
634     assert(Kind == Register && "Invalid access!");
635     return Reg.RegNo;
636   }
637
638   const MCExpr *getImm() const {
639     assert(Kind == Immediate && "Invalid access!");
640     return Imm.Val;
641   }
642
643   const MCExpr *getMemDisp() const {
644     assert(Kind == Memory && "Invalid access!");
645     return Mem.Disp;
646   }
647   unsigned getMemSegReg() const {
648     assert(Kind == Memory && "Invalid access!");
649     return Mem.SegReg;
650   }
651   unsigned getMemBaseReg() const {
652     assert(Kind == Memory && "Invalid access!");
653     return Mem.BaseReg;
654   }
655   unsigned getMemIndexReg() const {
656     assert(Kind == Memory && "Invalid access!");
657     return Mem.IndexReg;
658   }
659   unsigned getMemScale() const {
660     assert(Kind == Memory && "Invalid access!");
661     return Mem.Scale;
662   }
663
664   bool isToken() const {return Kind == Token; }
665
666   bool isImm() const { return Kind == Immediate; }
667
668   bool isImmSExti16i8() const {
669     if (!isImm())
670       return false;
671
672     // If this isn't a constant expr, just assume it fits and let relaxation
673     // handle it.
674     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
675     if (!CE)
676       return true;
677
678     // Otherwise, check the value is in a range that makes sense for this
679     // extension.
680     return isImmSExti16i8Value(CE->getValue());
681   }
682   bool isImmSExti32i8() const {
683     if (!isImm())
684       return false;
685
686     // If this isn't a constant expr, just assume it fits and let relaxation
687     // handle it.
688     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
689     if (!CE)
690       return true;
691
692     // Otherwise, check the value is in a range that makes sense for this
693     // extension.
694     return isImmSExti32i8Value(CE->getValue());
695   }
696   bool isImmZExtu32u8() const {
697     if (!isImm())
698       return false;
699
700     // If this isn't a constant expr, just assume it fits and let relaxation
701     // handle it.
702     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
703     if (!CE)
704       return true;
705
706     // Otherwise, check the value is in a range that makes sense for this
707     // extension.
708     return isImmZExtu32u8Value(CE->getValue());
709   }
710   bool isImmSExti64i8() const {
711     if (!isImm())
712       return false;
713
714     // If this isn't a constant expr, just assume it fits and let relaxation
715     // handle it.
716     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
717     if (!CE)
718       return true;
719
720     // Otherwise, check the value is in a range that makes sense for this
721     // extension.
722     return isImmSExti64i8Value(CE->getValue());
723   }
724   bool isImmSExti64i32() const {
725     if (!isImm())
726       return false;
727
728     // If this isn't a constant expr, just assume it fits and let relaxation
729     // handle it.
730     const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
731     if (!CE)
732       return true;
733
734     // Otherwise, check the value is in a range that makes sense for this
735     // extension.
736     return isImmSExti64i32Value(CE->getValue());
737   }
738
739   bool isOffsetOf() const {
740     return OffsetOfLoc.getPointer();
741   }
742
743   bool needAddressOf() const {
744     return AddressOf;
745   }
746
747   bool isMem() const { return Kind == Memory; }
748   bool isMem8() const {
749     return Kind == Memory && (!Mem.Size || Mem.Size == 8);
750   }
751   bool isMem16() const {
752     return Kind == Memory && (!Mem.Size || Mem.Size == 16);
753   }
754   bool isMem32() const {
755     return Kind == Memory && (!Mem.Size || Mem.Size == 32);
756   }
757   bool isMem64() const {
758     return Kind == Memory && (!Mem.Size || Mem.Size == 64);
759   }
760   bool isMem80() const {
761     return Kind == Memory && (!Mem.Size || Mem.Size == 80);
762   }
763   bool isMem128() const {
764     return Kind == Memory && (!Mem.Size || Mem.Size == 128);
765   }
766   bool isMem256() const {
767     return Kind == Memory && (!Mem.Size || Mem.Size == 256);
768   }
769
770   bool isMemVX32() const {
771     return Kind == Memory && (!Mem.Size || Mem.Size == 32) &&
772       getMemIndexReg() >= X86::XMM0 && getMemIndexReg() <= X86::XMM15;
773   }
774   bool isMemVY32() const {
775     return Kind == Memory && (!Mem.Size || Mem.Size == 32) &&
776       getMemIndexReg() >= X86::YMM0 && getMemIndexReg() <= X86::YMM15;
777   }
778   bool isMemVX64() const {
779     return Kind == Memory && (!Mem.Size || Mem.Size == 64) &&
780       getMemIndexReg() >= X86::XMM0 && getMemIndexReg() <= X86::XMM15;
781   }
782   bool isMemVY64() const {
783     return Kind == Memory && (!Mem.Size || Mem.Size == 64) &&
784       getMemIndexReg() >= X86::YMM0 && getMemIndexReg() <= X86::YMM15;
785   }
786
787   bool isAbsMem() const {
788     return Kind == Memory && !getMemSegReg() && !getMemBaseReg() &&
789       !getMemIndexReg() && getMemScale() == 1;
790   }
791
792   bool isReg() const { return Kind == Register; }
793
794   void addExpr(MCInst &Inst, const MCExpr *Expr) const {
795     // Add as immediates when possible.
796     if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr))
797       Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
798     else
799       Inst.addOperand(MCOperand::CreateExpr(Expr));
800   }
801
802   void addRegOperands(MCInst &Inst, unsigned N) const {
803     assert(N == 1 && "Invalid number of operands!");
804     Inst.addOperand(MCOperand::CreateReg(getReg()));
805   }
806
807   void addImmOperands(MCInst &Inst, unsigned N) const {
808     assert(N == 1 && "Invalid number of operands!");
809     addExpr(Inst, getImm());
810   }
811
812   void addMem8Operands(MCInst &Inst, unsigned N) const {
813     addMemOperands(Inst, N);
814   }
815   void addMem16Operands(MCInst &Inst, unsigned N) const {
816     addMemOperands(Inst, N);
817   }
818   void addMem32Operands(MCInst &Inst, unsigned N) const {
819     addMemOperands(Inst, N);
820   }
821   void addMem64Operands(MCInst &Inst, unsigned N) const {
822     addMemOperands(Inst, N);
823   }
824   void addMem80Operands(MCInst &Inst, unsigned N) const {
825     addMemOperands(Inst, N);
826   }
827   void addMem128Operands(MCInst &Inst, unsigned N) const {
828     addMemOperands(Inst, N);
829   }
830   void addMem256Operands(MCInst &Inst, unsigned N) const {
831     addMemOperands(Inst, N);
832   }
833   void addMemVX32Operands(MCInst &Inst, unsigned N) const {
834     addMemOperands(Inst, N);
835   }
836   void addMemVY32Operands(MCInst &Inst, unsigned N) const {
837     addMemOperands(Inst, N);
838   }
839   void addMemVX64Operands(MCInst &Inst, unsigned N) const {
840     addMemOperands(Inst, N);
841   }
842   void addMemVY64Operands(MCInst &Inst, unsigned N) const {
843     addMemOperands(Inst, N);
844   }
845
846   void addMemOperands(MCInst &Inst, unsigned N) const {
847     assert((N == 5) && "Invalid number of operands!");
848     Inst.addOperand(MCOperand::CreateReg(getMemBaseReg()));
849     Inst.addOperand(MCOperand::CreateImm(getMemScale()));
850     Inst.addOperand(MCOperand::CreateReg(getMemIndexReg()));
851     addExpr(Inst, getMemDisp());
852     Inst.addOperand(MCOperand::CreateReg(getMemSegReg()));
853   }
854
855   void addAbsMemOperands(MCInst &Inst, unsigned N) const {
856     assert((N == 1) && "Invalid number of operands!");
857     // Add as immediates when possible.
858     if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemDisp()))
859       Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
860     else
861       Inst.addOperand(MCOperand::CreateExpr(getMemDisp()));
862   }
863
864   static X86Operand *CreateToken(StringRef Str, SMLoc Loc) {
865     SMLoc EndLoc = SMLoc::getFromPointer(Loc.getPointer() + Str.size());
866     X86Operand *Res = new X86Operand(Token, Loc, EndLoc);
867     Res->Tok.Data = Str.data();
868     Res->Tok.Length = Str.size();
869     return Res;
870   }
871
872   static X86Operand *CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc,
873                                bool AddressOf = false,
874                                SMLoc OffsetOfLoc = SMLoc(),
875                                StringRef SymName = StringRef()) {
876     X86Operand *Res = new X86Operand(Register, StartLoc, EndLoc);
877     Res->Reg.RegNo = RegNo;
878     Res->AddressOf = AddressOf;
879     Res->OffsetOfLoc = OffsetOfLoc;
880     Res->SymName = SymName;
881     return Res;
882   }
883
884   static X86Operand *CreateImm(const MCExpr *Val, SMLoc StartLoc, SMLoc EndLoc){
885     X86Operand *Res = new X86Operand(Immediate, StartLoc, EndLoc);
886     Res->Imm.Val = Val;
887     return Res;
888   }
889
890   /// Create an absolute memory operand.
891   static X86Operand *CreateMem(const MCExpr *Disp, SMLoc StartLoc, SMLoc EndLoc,
892                                unsigned Size = 0,
893                                StringRef SymName = StringRef()) {
894     X86Operand *Res = new X86Operand(Memory, StartLoc, EndLoc);
895     Res->Mem.SegReg   = 0;
896     Res->Mem.Disp     = Disp;
897     Res->Mem.BaseReg  = 0;
898     Res->Mem.IndexReg = 0;
899     Res->Mem.Scale    = 1;
900     Res->Mem.Size     = Size;
901     Res->SymName = SymName;
902     Res->AddressOf = false;
903     return Res;
904   }
905
906   /// Create a generalized memory operand.
907   static X86Operand *CreateMem(unsigned SegReg, const MCExpr *Disp,
908                                unsigned BaseReg, unsigned IndexReg,
909                                unsigned Scale, SMLoc StartLoc, SMLoc EndLoc,
910                                unsigned Size = 0,
911                                StringRef SymName = StringRef()) {
912     // We should never just have a displacement, that should be parsed as an
913     // absolute memory operand.
914     assert((SegReg || BaseReg || IndexReg) && "Invalid memory operand!");
915
916     // The scale should always be one of {1,2,4,8}.
917     assert(((Scale == 1 || Scale == 2 || Scale == 4 || Scale == 8)) &&
918            "Invalid scale!");
919     X86Operand *Res = new X86Operand(Memory, StartLoc, EndLoc);
920     Res->Mem.SegReg   = SegReg;
921     Res->Mem.Disp     = Disp;
922     Res->Mem.BaseReg  = BaseReg;
923     Res->Mem.IndexReg = IndexReg;
924     Res->Mem.Scale    = Scale;
925     Res->Mem.Size     = Size;
926     Res->SymName = SymName;
927     Res->AddressOf = false;
928     return Res;
929   }
930 };
931
932 } // end anonymous namespace.
933
934 bool X86AsmParser::isSrcOp(X86Operand &Op) {
935   unsigned basereg = is64BitMode() ? X86::RSI : X86::ESI;
936
937   return (Op.isMem() &&
938     (Op.Mem.SegReg == 0 || Op.Mem.SegReg == X86::DS) &&
939     isa<MCConstantExpr>(Op.Mem.Disp) &&
940     cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
941     Op.Mem.BaseReg == basereg && Op.Mem.IndexReg == 0);
942 }
943
944 bool X86AsmParser::isDstOp(X86Operand &Op) {
945   unsigned basereg = is64BitMode() ? X86::RDI : X86::EDI;
946
947   return Op.isMem() &&
948     (Op.Mem.SegReg == 0 || Op.Mem.SegReg == X86::ES) &&
949     isa<MCConstantExpr>(Op.Mem.Disp) &&
950     cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
951     Op.Mem.BaseReg == basereg && Op.Mem.IndexReg == 0;
952 }
953
954 bool X86AsmParser::ParseRegister(unsigned &RegNo,
955                                  SMLoc &StartLoc, SMLoc &EndLoc) {
956   RegNo = 0;
957   const AsmToken &PercentTok = Parser.getTok();
958   StartLoc = PercentTok.getLoc();
959
960   // If we encounter a %, ignore it. This code handles registers with and
961   // without the prefix, unprefixed registers can occur in cfi directives.
962   if (!isParsingIntelSyntax() && PercentTok.is(AsmToken::Percent))
963     Parser.Lex(); // Eat percent token.
964
965   const AsmToken &Tok = Parser.getTok();
966   EndLoc = Tok.getEndLoc();
967
968   if (Tok.isNot(AsmToken::Identifier)) {
969     if (isParsingIntelSyntax()) return true;
970     return Error(StartLoc, "invalid register name",
971                  SMRange(StartLoc, EndLoc));
972   }
973
974   RegNo = MatchRegisterName(Tok.getString());
975
976   // If the match failed, try the register name as lowercase.
977   if (RegNo == 0)
978     RegNo = MatchRegisterName(Tok.getString().lower());
979
980   if (!is64BitMode()) {
981     // FIXME: This should be done using Requires<In32BitMode> and
982     // Requires<In64BitMode> so "eiz" usage in 64-bit instructions can be also
983     // checked.
984     // FIXME: Check AH, CH, DH, BH cannot be used in an instruction requiring a
985     // REX prefix.
986     if (RegNo == X86::RIZ ||
987         X86MCRegisterClasses[X86::GR64RegClassID].contains(RegNo) ||
988         X86II::isX86_64NonExtLowByteReg(RegNo) ||
989         X86II::isX86_64ExtendedReg(RegNo))
990       return Error(StartLoc, "register %"
991                    + Tok.getString() + " is only available in 64-bit mode",
992                    SMRange(StartLoc, EndLoc));
993   }
994
995   // Parse "%st" as "%st(0)" and "%st(1)", which is multiple tokens.
996   if (RegNo == 0 && (Tok.getString() == "st" || Tok.getString() == "ST")) {
997     RegNo = X86::ST0;
998     Parser.Lex(); // Eat 'st'
999
1000     // Check to see if we have '(4)' after %st.
1001     if (getLexer().isNot(AsmToken::LParen))
1002       return false;
1003     // Lex the paren.
1004     getParser().Lex();
1005
1006     const AsmToken &IntTok = Parser.getTok();
1007     if (IntTok.isNot(AsmToken::Integer))
1008       return Error(IntTok.getLoc(), "expected stack index");
1009     switch (IntTok.getIntVal()) {
1010     case 0: RegNo = X86::ST0; break;
1011     case 1: RegNo = X86::ST1; break;
1012     case 2: RegNo = X86::ST2; break;
1013     case 3: RegNo = X86::ST3; break;
1014     case 4: RegNo = X86::ST4; break;
1015     case 5: RegNo = X86::ST5; break;
1016     case 6: RegNo = X86::ST6; break;
1017     case 7: RegNo = X86::ST7; break;
1018     default: return Error(IntTok.getLoc(), "invalid stack index");
1019     }
1020
1021     if (getParser().Lex().isNot(AsmToken::RParen))
1022       return Error(Parser.getTok().getLoc(), "expected ')'");
1023
1024     EndLoc = Parser.getTok().getEndLoc();
1025     Parser.Lex(); // Eat ')'
1026     return false;
1027   }
1028
1029   EndLoc = Parser.getTok().getEndLoc();
1030
1031   // If this is "db[0-7]", match it as an alias
1032   // for dr[0-7].
1033   if (RegNo == 0 && Tok.getString().size() == 3 &&
1034       Tok.getString().startswith("db")) {
1035     switch (Tok.getString()[2]) {
1036     case '0': RegNo = X86::DR0; break;
1037     case '1': RegNo = X86::DR1; break;
1038     case '2': RegNo = X86::DR2; break;
1039     case '3': RegNo = X86::DR3; break;
1040     case '4': RegNo = X86::DR4; break;
1041     case '5': RegNo = X86::DR5; break;
1042     case '6': RegNo = X86::DR6; break;
1043     case '7': RegNo = X86::DR7; break;
1044     }
1045
1046     if (RegNo != 0) {
1047       EndLoc = Parser.getTok().getEndLoc();
1048       Parser.Lex(); // Eat it.
1049       return false;
1050     }
1051   }
1052
1053   if (RegNo == 0) {
1054     if (isParsingIntelSyntax()) return true;
1055     return Error(StartLoc, "invalid register name",
1056                  SMRange(StartLoc, EndLoc));
1057   }
1058
1059   Parser.Lex(); // Eat identifier token.
1060   return false;
1061 }
1062
1063 X86Operand *X86AsmParser::ParseOperand() {
1064   if (isParsingIntelSyntax())
1065     return ParseIntelOperand();
1066   return ParseATTOperand();
1067 }
1068
1069 /// getIntelMemOperandSize - Return intel memory operand size.
1070 static unsigned getIntelMemOperandSize(StringRef OpStr) {
1071   unsigned Size = StringSwitch<unsigned>(OpStr)
1072     .Cases("BYTE", "byte", 8)
1073     .Cases("WORD", "word", 16)
1074     .Cases("DWORD", "dword", 32)
1075     .Cases("QWORD", "qword", 64)
1076     .Cases("XWORD", "xword", 80)
1077     .Cases("XMMWORD", "xmmword", 128)
1078     .Cases("YMMWORD", "ymmword", 256)
1079     .Default(0);
1080   return Size;
1081 }
1082
1083 X86Operand *
1084 X86AsmParser::CreateMemForInlineAsm(unsigned SegReg, const MCExpr *Disp,
1085                                     unsigned BaseReg, unsigned IndexReg,
1086                                     unsigned Scale, SMLoc Start, SMLoc End,
1087                                     unsigned Size, StringRef SymName) {
1088   bool NeedSizeDir = false;
1089   if (const MCSymbolRefExpr *SymRef = dyn_cast<MCSymbolRefExpr>(Disp)) {
1090     const MCSymbol &Sym = SymRef->getSymbol();
1091     // FIXME: The SemaLookup will fail if the name is anything other then an
1092     // identifier.
1093     // FIXME: Pass a valid SMLoc.
1094     bool IsVarDecl = false;
1095     unsigned tLength, tSize, tType;
1096     SemaCallback->LookupInlineAsmIdentifier(Sym.getName(), NULL, tLength, tSize,
1097                                             tType, IsVarDecl);
1098     if (!Size) {
1099       Size = tType * 8; // Size is in terms of bits in this context.
1100       NeedSizeDir = Size > 0;
1101     }
1102     // If this is not a VarDecl then assume it is a FuncDecl or some other label
1103     // reference.  We need an 'r' constraint here, so we need to create register
1104     // operand to ensure proper matching.  Just pick a GPR based on the size of
1105     // a pointer.
1106     if (!IsVarDecl) {
1107       unsigned RegNo = is64BitMode() ? X86::RBX : X86::EBX;
1108       return X86Operand::CreateReg(RegNo, Start, End, /*AddressOf=*/true,
1109                                    SMLoc(), SymName);
1110     }
1111   }
1112
1113   if (NeedSizeDir)
1114     InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_SizeDirective, Start,
1115                                                 /*Len=*/0, Size));  
1116
1117   // When parsing inline assembly we set the base register to a non-zero value
1118   // if we don't know the actual value at this time.  This is necessary to
1119   // get the matching correct in some cases.
1120   BaseReg = BaseReg ? BaseReg : 1;
1121   return X86Operand::CreateMem(SegReg, Disp, BaseReg, IndexReg, Scale, Start,
1122                                End, Size, SymName);
1123 }
1124
1125 static void
1126 RewriteIntelBracExpression(SmallVectorImpl<AsmRewrite> *AsmRewrites,
1127                            StringRef SymName, int64_t ImmDisp,
1128                            int64_t FinalImmDisp, SMLoc &BracLoc,
1129                            SMLoc &StartInBrac, SMLoc &End) {
1130   // Remove the '[' and ']' from the IR string.
1131   AsmRewrites->push_back(AsmRewrite(AOK_Skip, BracLoc, 1));
1132   AsmRewrites->push_back(AsmRewrite(AOK_Skip, End, 1));
1133
1134   // If ImmDisp is non-zero, then we parsed a displacement before the
1135   // bracketed expression (i.e., ImmDisp [ BaseReg + Scale*IndexReg + Disp])
1136   // If ImmDisp doesn't match the displacement computed by the state machine
1137   // then we have an additional displacement in the bracketed expression.
1138   if (ImmDisp != FinalImmDisp) {
1139     if (ImmDisp) {
1140       // We have an immediate displacement before the bracketed expression.
1141       // Adjust this to match the final immediate displacement.
1142       bool Found = false;
1143       for (SmallVectorImpl<AsmRewrite>::iterator I = AsmRewrites->begin(),
1144              E = AsmRewrites->end(); I != E; ++I) {
1145         if ((*I).Loc.getPointer() > BracLoc.getPointer())
1146           continue;
1147         if ((*I).Kind == AOK_ImmPrefix) {
1148           (*I).Kind = AOK_Imm;
1149           (*I).Len = BracLoc.getPointer() - (*I).Loc.getPointer();
1150           (*I).Val = FinalImmDisp;
1151           Found = true;
1152           break;
1153         }
1154       }
1155       assert (Found && "Unable to rewrite ImmDisp.");
1156     } else {
1157       // We have a symbolic and an immediate displacement, but no displacement
1158       // before the bracketed expression.
1159       
1160       // Put the immediate displacement before the bracketed expression.
1161       AsmRewrites->push_back(AsmRewrite(AOK_Imm, BracLoc, 0,
1162                                         FinalImmDisp));
1163     }
1164   }
1165   // Remove all the ImmPrefix rewrites within the brackets.
1166   for (SmallVectorImpl<AsmRewrite>::iterator I = AsmRewrites->begin(),
1167          E = AsmRewrites->end(); I != E; ++I) {
1168     if ((*I).Loc.getPointer() < StartInBrac.getPointer())
1169       continue;
1170     if ((*I).Kind == AOK_ImmPrefix)
1171       (*I).Kind = AOK_Delete;
1172   }
1173   const char *SymLocPtr = SymName.data();
1174   // Skip everything before the symbol.        
1175   if (unsigned Len = SymLocPtr - StartInBrac.getPointer()) {
1176     assert(Len > 0 && "Expected a non-negative length.");
1177     AsmRewrites->push_back(AsmRewrite(AOK_Skip, StartInBrac, Len));
1178   }
1179   // Skip everything after the symbol.
1180   if (unsigned Len = End.getPointer() - (SymLocPtr + SymName.size())) {
1181     SMLoc Loc = SMLoc::getFromPointer(SymLocPtr + SymName.size());
1182     assert(Len > 0 && "Expected a non-negative length.");
1183     AsmRewrites->push_back(AsmRewrite(AOK_Skip, Loc, Len));
1184   }
1185 }
1186
1187 X86Operand *
1188 X86AsmParser::ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End) {
1189   const AsmToken &Tok = Parser.getTok();
1190
1191   bool Done = false;
1192   while (!Done) {
1193     bool UpdateLocLex = true;
1194
1195     // The period in the dot operator (e.g., [ebx].foo.bar) is parsed as an
1196     // identifier.  Don't try an parse it as a register.
1197     if (Tok.getString().startswith("."))
1198       break;
1199
1200     switch (getLexer().getKind()) {
1201     default: {
1202       if (SM.isValidEndState()) {
1203         Done = true;
1204         break;
1205       }
1206       return ErrorOperand(Tok.getLoc(), "Unexpected token!");
1207     }
1208     case AsmToken::Identifier: {
1209       // This could be a register or a symbolic displacement.
1210       unsigned TmpReg;
1211       const MCExpr *Disp = 0;
1212       SMLoc IdentLoc = Tok.getLoc();
1213       StringRef Identifier = Tok.getString();
1214       if(!ParseRegister(TmpReg, IdentLoc, End)) {
1215         SM.onRegister(TmpReg);
1216         UpdateLocLex = false;
1217         break;
1218       } else if (!getParser().parsePrimaryExpr(Disp, End)) {
1219         if (X86Operand *Err = ParseIntelVarWithQualifier(Disp, Identifier))
1220           return Err;
1221
1222         SM.onDispExpr(Disp, Identifier);
1223         UpdateLocLex = false;
1224         break;
1225       }
1226       return ErrorOperand(Tok.getLoc(), "Unexpected identifier!");
1227     }
1228     case AsmToken::Integer:
1229       if (isParsingInlineAsm())
1230         InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_ImmPrefix,
1231                                                     Tok.getLoc()));
1232       SM.onInteger(Tok.getIntVal());
1233       break;
1234     case AsmToken::Plus:    SM.onPlus(); break;
1235     case AsmToken::Minus:   SM.onMinus(); break;
1236     case AsmToken::Star:    SM.onStar(); break;
1237     case AsmToken::Slash:   SM.onDivide(); break;
1238     case AsmToken::LBrac:   SM.onLBrac(); break;
1239     case AsmToken::RBrac:   SM.onRBrac(); break;
1240     case AsmToken::LParen:  SM.onLParen(); break;
1241     case AsmToken::RParen:  SM.onRParen(); break;
1242     }
1243     if (!Done && UpdateLocLex) {
1244       End = Tok.getLoc();
1245       Parser.Lex(); // Consume the token.
1246     }
1247   }
1248   return 0;
1249 }
1250
1251 X86Operand *X86AsmParser::ParseIntelBracExpression(unsigned SegReg, SMLoc Start,
1252                                                    uint64_t ImmDisp,
1253                                                    unsigned Size) {
1254   const AsmToken &Tok = Parser.getTok();
1255   SMLoc BracLoc = Tok.getLoc(), End = Tok.getEndLoc();
1256   if (getLexer().isNot(AsmToken::LBrac))
1257     return ErrorOperand(BracLoc, "Expected '[' token!");
1258   Parser.Lex(); // Eat '['
1259
1260   SMLoc StartInBrac = Tok.getLoc();
1261   // Parse [ Symbol + ImmDisp ] and [ BaseReg + Scale*IndexReg + ImmDisp ].  We
1262   // may have already parsed an immediate displacement before the bracketed
1263   // expression.
1264   IntelExprStateMachine SM(ImmDisp);
1265   if (X86Operand *Err = ParseIntelExpression(SM, End))
1266     return Err;
1267
1268   const MCExpr *Disp;
1269   if (const MCExpr *Sym = SM.getSym()) {
1270     // A symbolic displacement.
1271     Disp = Sym;
1272     if (isParsingInlineAsm())
1273       RewriteIntelBracExpression(InstInfo->AsmRewrites, SM.getSymName(),
1274                                  ImmDisp, SM.getImm(), BracLoc, StartInBrac,
1275                                  End);
1276   } else {
1277     // An immediate displacement only.
1278     Disp = MCConstantExpr::Create(SM.getImm(), getContext());
1279   }
1280
1281   // Parse the dot operator (e.g., [ebx].foo.bar).
1282   if (Tok.getString().startswith(".")) {
1283     SmallString<64> Err;
1284     const MCExpr *NewDisp;
1285     if (ParseIntelDotOperator(Disp, &NewDisp, Err))
1286       return ErrorOperand(Tok.getLoc(), Err);
1287     
1288     End = Tok.getEndLoc();
1289     Parser.Lex();  // Eat the field.
1290     Disp = NewDisp;
1291   }
1292
1293   int BaseReg = SM.getBaseReg();
1294   int IndexReg = SM.getIndexReg();
1295   int Scale = SM.getScale();
1296
1297   if (isParsingInlineAsm())
1298     return CreateMemForInlineAsm(SegReg, Disp, BaseReg, IndexReg, Scale, Start,
1299                                  End, Size, SM.getSymName());
1300
1301   // handle [-42]
1302   if (!BaseReg && !IndexReg) {
1303     if (!SegReg)
1304       return X86Operand::CreateMem(Disp, Start, End, Size);
1305     else
1306       return X86Operand::CreateMem(SegReg, Disp, 0, 0, 1, Start, End, Size);
1307   }
1308   return X86Operand::CreateMem(SegReg, Disp, BaseReg, IndexReg, Scale, Start,
1309                                End, Size);
1310 }
1311
1312 // Inline assembly may use variable names with namespace alias qualifiers.
1313 X86Operand *X86AsmParser::ParseIntelVarWithQualifier(const MCExpr *&Disp,
1314                                                      StringRef &Identifier) {
1315   // We should only see Foo::Bar if we're parsing inline assembly.
1316   if (!isParsingInlineAsm())
1317     return 0;
1318
1319   // If we don't see a ':' then there can't be a qualifier.
1320   if (getLexer().isNot(AsmToken::Colon))
1321     return 0;
1322
1323   bool Done = false;
1324   const AsmToken &Tok = Parser.getTok();
1325   AsmToken IdentEnd = Tok;
1326   while (!Done) {
1327     switch (getLexer().getKind()) {
1328     default:
1329       Done = true; 
1330       break;
1331     case AsmToken::Colon:
1332       getLexer().Lex(); // Consume ':'.
1333       if (getLexer().isNot(AsmToken::Colon))
1334         return ErrorOperand(Tok.getLoc(), "Expected ':' token!");
1335       getLexer().Lex(); // Consume second ':'.
1336       if (getLexer().isNot(AsmToken::Identifier))
1337         return ErrorOperand(Tok.getLoc(), "Expected an identifier token!");
1338       break;
1339     case AsmToken::Identifier:
1340       IdentEnd = Tok;
1341       getLexer().Lex(); // Consume the identifier.
1342       break;
1343     }
1344   }
1345
1346   unsigned Len = IdentEnd.getLoc().getPointer() - Identifier.data();
1347   Identifier = StringRef(Identifier.data(), Len + IdentEnd.getString().size());
1348   MCSymbol *Sym = getContext().GetOrCreateSymbol(Identifier);
1349   MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
1350   Disp = MCSymbolRefExpr::Create(Sym, Variant, getParser().getContext());
1351   return 0;
1352 }
1353
1354 /// ParseIntelMemOperand - Parse intel style memory operand.
1355 X86Operand *X86AsmParser::ParseIntelMemOperand(unsigned SegReg,
1356                                                uint64_t ImmDisp,
1357                                                SMLoc Start) {
1358   const AsmToken &Tok = Parser.getTok();
1359   SMLoc End;
1360
1361   unsigned Size = getIntelMemOperandSize(Tok.getString());
1362   if (Size) {
1363     Parser.Lex();
1364     assert ((Tok.getString() == "PTR" || Tok.getString() == "ptr") &&
1365             "Unexpected token!");
1366     Parser.Lex();
1367   }
1368
1369   // Parse ImmDisp [ BaseReg + Scale*IndexReg + Disp ].
1370   if (getLexer().is(AsmToken::Integer)) {
1371     if (isParsingInlineAsm())
1372       InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_ImmPrefix,
1373                                                   Tok.getLoc()));
1374     uint64_t ImmDisp = Tok.getIntVal();
1375     Parser.Lex(); // Eat the integer.
1376     if (getLexer().isNot(AsmToken::LBrac))
1377       return ErrorOperand(Start, "Expected '[' token!");
1378     return ParseIntelBracExpression(SegReg, Start, ImmDisp, Size);
1379   }
1380
1381   if (getLexer().is(AsmToken::LBrac))
1382     return ParseIntelBracExpression(SegReg, Start, ImmDisp, Size);
1383
1384   if (!ParseRegister(SegReg, Start, End)) {
1385     // Handel SegReg : [ ... ]
1386     if (getLexer().isNot(AsmToken::Colon))
1387       return ErrorOperand(Start, "Expected ':' token!");
1388     Parser.Lex(); // Eat :
1389     if (getLexer().isNot(AsmToken::LBrac))
1390       return ErrorOperand(Start, "Expected '[' token!");
1391     return ParseIntelBracExpression(SegReg, Start, ImmDisp, Size);
1392   }
1393
1394   const MCExpr *Disp = 0;
1395   StringRef Identifier = Tok.getString();
1396   if (getParser().parsePrimaryExpr(Disp, End))
1397     return 0;
1398
1399   if (!isParsingInlineAsm())
1400     return X86Operand::CreateMem(Disp, Start, End, Size);
1401
1402   if (X86Operand *Err = ParseIntelVarWithQualifier(Disp, Identifier))
1403     return Err;
1404
1405   return CreateMemForInlineAsm(/*SegReg=*/0, Disp, /*BaseReg=*/0,/*IndexReg=*/0,
1406                                /*Scale=*/1, Start, End, Size, Identifier);
1407 }
1408
1409 /// Parse the '.' operator.
1410 bool X86AsmParser::ParseIntelDotOperator(const MCExpr *Disp,
1411                                          const MCExpr **NewDisp,
1412                                          SmallString<64> &Err) {
1413   const AsmToken &Tok = Parser.getTok();
1414   uint64_t OrigDispVal, DotDispVal;
1415
1416   // FIXME: Handle non-constant expressions.
1417   if (const MCConstantExpr *OrigDisp = dyn_cast<MCConstantExpr>(Disp)) {
1418     OrigDispVal = OrigDisp->getValue();
1419   } else {
1420     Err = "Non-constant offsets are not supported!";
1421     return true;
1422   }
1423
1424   // Drop the '.'.
1425   StringRef DotDispStr = Tok.getString().drop_front(1);
1426
1427   // .Imm gets lexed as a real.
1428   if (Tok.is(AsmToken::Real)) {
1429     APInt DotDisp;
1430     DotDispStr.getAsInteger(10, DotDisp);
1431     DotDispVal = DotDisp.getZExtValue();
1432   } else if (Tok.is(AsmToken::Identifier)) {
1433     // We should only see an identifier when parsing the original inline asm.
1434     // The front-end should rewrite this in terms of immediates.
1435     assert (isParsingInlineAsm() && "Unexpected field name!");
1436
1437     unsigned DotDisp;
1438     std::pair<StringRef, StringRef> BaseMember = DotDispStr.split('.');
1439     if (SemaCallback->LookupInlineAsmField(BaseMember.first, BaseMember.second,
1440                                            DotDisp)) {
1441       Err = "Unable to lookup field reference!";
1442       return true;
1443     }
1444     DotDispVal = DotDisp;
1445   } else {
1446     Err = "Unexpected token type!";
1447     return true;
1448   }
1449
1450   if (isParsingInlineAsm() && Tok.is(AsmToken::Identifier)) {
1451     SMLoc Loc = SMLoc::getFromPointer(DotDispStr.data());
1452     unsigned Len = DotDispStr.size();
1453     unsigned Val = OrigDispVal + DotDispVal;
1454     InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_DotOperator, Loc, Len,
1455                                                 Val));
1456   }
1457
1458   *NewDisp = MCConstantExpr::Create(OrigDispVal + DotDispVal, getContext());
1459   return false;
1460 }
1461
1462 /// Parse the 'offset' operator.  This operator is used to specify the
1463 /// location rather then the content of a variable.
1464 X86Operand *X86AsmParser::ParseIntelOffsetOfOperator() {
1465   const AsmToken &Tok = Parser.getTok();
1466   SMLoc OffsetOfLoc = Tok.getLoc();
1467   Parser.Lex(); // Eat offset.
1468   assert (Tok.is(AsmToken::Identifier) && "Expected an identifier");
1469
1470   const MCExpr *Val;
1471   SMLoc Start = Tok.getLoc(), End;
1472   StringRef Identifier = Tok.getString();
1473   if (getParser().parsePrimaryExpr(Val, End))
1474     return ErrorOperand(Start, "Unable to parse expression!");
1475
1476   const MCExpr *Disp = 0;
1477   if (X86Operand *Err = ParseIntelVarWithQualifier(Disp, Identifier))
1478     return Err;
1479
1480   // Don't emit the offset operator.
1481   InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Skip, OffsetOfLoc, 7));
1482
1483   // The offset operator will have an 'r' constraint, thus we need to create
1484   // register operand to ensure proper matching.  Just pick a GPR based on
1485   // the size of a pointer.
1486   unsigned RegNo = is64BitMode() ? X86::RBX : X86::EBX;
1487   return X86Operand::CreateReg(RegNo, Start, End, /*GetAddress=*/true,
1488                                OffsetOfLoc, Identifier);
1489 }
1490
1491 enum IntelOperatorKind {
1492   IOK_LENGTH,
1493   IOK_SIZE,
1494   IOK_TYPE
1495 };
1496
1497 /// Parse the 'LENGTH', 'TYPE' and 'SIZE' operators.  The LENGTH operator
1498 /// returns the number of elements in an array.  It returns the value 1 for
1499 /// non-array variables.  The SIZE operator returns the size of a C or C++
1500 /// variable.  A variable's size is the product of its LENGTH and TYPE.  The
1501 /// TYPE operator returns the size of a C or C++ type or variable. If the
1502 /// variable is an array, TYPE returns the size of a single element.
1503 X86Operand *X86AsmParser::ParseIntelOperator(unsigned OpKind) {
1504   const AsmToken &Tok = Parser.getTok();
1505   SMLoc TypeLoc = Tok.getLoc();
1506   Parser.Lex(); // Eat operator.
1507   assert (Tok.is(AsmToken::Identifier) && "Expected an identifier");
1508
1509   const MCExpr *Val;
1510   AsmToken StartTok = Tok;
1511   SMLoc Start = Tok.getLoc(), End;
1512   StringRef Identifier = Tok.getString();
1513   if (getParser().parsePrimaryExpr(Val, End))
1514     return ErrorOperand(Start, "Unable to parse expression!");
1515
1516   const MCExpr *Disp = 0;
1517   if (X86Operand *Err = ParseIntelVarWithQualifier(Disp, Identifier))
1518     return Err;
1519
1520   unsigned Length = 0, Size = 0, Type = 0;
1521   if (const MCSymbolRefExpr *SymRef = dyn_cast<MCSymbolRefExpr>(Val)) {
1522     const MCSymbol &Sym = SymRef->getSymbol();
1523     // FIXME: The SemaLookup will fail if the name is anything other then an
1524     // identifier.
1525     // FIXME: Pass a valid SMLoc.
1526     bool IsVarDecl;
1527     if (!SemaCallback->LookupInlineAsmIdentifier(Sym.getName(), NULL, Length,
1528                                                  Size, Type, IsVarDecl))
1529       // FIXME: We don't warn on variables with namespace alias qualifiers
1530       // because support still needs to be added in the frontend.
1531       if (Identifier.equals(StartTok.getString()))
1532         return ErrorOperand(Start, "Unable to lookup expr!");
1533   }
1534   unsigned CVal;
1535   switch(OpKind) {
1536   default: llvm_unreachable("Unexpected operand kind!");
1537   case IOK_LENGTH: CVal = Length; break;
1538   case IOK_SIZE: CVal = Size; break;
1539   case IOK_TYPE: CVal = Type; break;
1540   }
1541
1542   // Rewrite the type operator and the C or C++ type or variable in terms of an
1543   // immediate.  E.g. TYPE foo -> $$4
1544   unsigned Len = End.getPointer() - TypeLoc.getPointer();
1545   InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Imm, TypeLoc, Len, CVal));
1546
1547   const MCExpr *Imm = MCConstantExpr::Create(CVal, getContext());
1548   return X86Operand::CreateImm(Imm, Start, End);
1549 }
1550
1551 X86Operand *X86AsmParser::ParseIntelOperand() {
1552   const AsmToken &Tok = Parser.getTok();
1553   SMLoc Start = Tok.getLoc(), End;
1554   StringRef AsmTokStr = Tok.getString();
1555
1556   // Offset, length, type and size operators.
1557   if (isParsingInlineAsm()) {
1558     if (AsmTokStr == "offset" || AsmTokStr == "OFFSET")
1559       return ParseIntelOffsetOfOperator();
1560     if (AsmTokStr == "length" || AsmTokStr == "LENGTH")
1561       return ParseIntelOperator(IOK_LENGTH);
1562     if (AsmTokStr == "size" || AsmTokStr == "SIZE")
1563       return ParseIntelOperator(IOK_SIZE);
1564     if (AsmTokStr == "type" || AsmTokStr == "TYPE")
1565       return ParseIntelOperator(IOK_TYPE);
1566   }
1567
1568   // Immediate.
1569   if (getLexer().is(AsmToken::Integer) || getLexer().is(AsmToken::Real) ||
1570       getLexer().is(AsmToken::Minus)) {
1571     const MCExpr *Val;
1572     bool isInteger = getLexer().is(AsmToken::Integer);
1573     if (!getParser().parseExpression(Val, End)) {
1574       if (isParsingInlineAsm())
1575         InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_ImmPrefix, Start));
1576       // Immediate.
1577       if (getLexer().isNot(AsmToken::LBrac))
1578         return X86Operand::CreateImm(Val, Start, End);
1579
1580       // Only positive immediates are valid.
1581       if (!isInteger) {
1582         Error(Tok.getLoc(), "expected a positive immediate "
1583               "displacement before bracketed expr.");
1584         return 0;
1585       }
1586
1587       // Parse ImmDisp [ BaseReg + Scale*IndexReg + Disp ].
1588       if (uint64_t ImmDisp = dyn_cast<MCConstantExpr>(Val)->getValue())
1589         return ParseIntelMemOperand(/*SegReg=*/0, ImmDisp, Start);
1590     }
1591   }
1592
1593   // Register.
1594   unsigned RegNo = 0;
1595   if (!ParseRegister(RegNo, Start, End)) {
1596     // If this is a segment register followed by a ':', then this is the start
1597     // of a memory reference, otherwise this is a normal register reference.
1598     if (getLexer().isNot(AsmToken::Colon))
1599       return X86Operand::CreateReg(RegNo, Start, End);
1600
1601     getParser().Lex(); // Eat the colon.
1602     return ParseIntelMemOperand(/*SegReg=*/RegNo, /*Disp=*/0, Start);
1603   }
1604
1605   // Memory operand.
1606   return ParseIntelMemOperand(/*SegReg=*/0, /*Disp=*/0, Start);
1607 }
1608
1609 X86Operand *X86AsmParser::ParseATTOperand() {
1610   switch (getLexer().getKind()) {
1611   default:
1612     // Parse a memory operand with no segment register.
1613     return ParseMemOperand(0, Parser.getTok().getLoc());
1614   case AsmToken::Percent: {
1615     // Read the register.
1616     unsigned RegNo;
1617     SMLoc Start, End;
1618     if (ParseRegister(RegNo, Start, End)) return 0;
1619     if (RegNo == X86::EIZ || RegNo == X86::RIZ) {
1620       Error(Start, "%eiz and %riz can only be used as index registers",
1621             SMRange(Start, End));
1622       return 0;
1623     }
1624
1625     // If this is a segment register followed by a ':', then this is the start
1626     // of a memory reference, otherwise this is a normal register reference.
1627     if (getLexer().isNot(AsmToken::Colon))
1628       return X86Operand::CreateReg(RegNo, Start, End);
1629
1630     getParser().Lex(); // Eat the colon.
1631     return ParseMemOperand(RegNo, Start);
1632   }
1633   case AsmToken::Dollar: {
1634     // $42 -> immediate.
1635     SMLoc Start = Parser.getTok().getLoc(), End;
1636     Parser.Lex();
1637     const MCExpr *Val;
1638     if (getParser().parseExpression(Val, End))
1639       return 0;
1640     return X86Operand::CreateImm(Val, Start, End);
1641   }
1642   }
1643 }
1644
1645 /// ParseMemOperand: segment: disp(basereg, indexreg, scale).  The '%ds:' prefix
1646 /// has already been parsed if present.
1647 X86Operand *X86AsmParser::ParseMemOperand(unsigned SegReg, SMLoc MemStart) {
1648
1649   // We have to disambiguate a parenthesized expression "(4+5)" from the start
1650   // of a memory operand with a missing displacement "(%ebx)" or "(,%eax)".  The
1651   // only way to do this without lookahead is to eat the '(' and see what is
1652   // after it.
1653   const MCExpr *Disp = MCConstantExpr::Create(0, getParser().getContext());
1654   if (getLexer().isNot(AsmToken::LParen)) {
1655     SMLoc ExprEnd;
1656     if (getParser().parseExpression(Disp, ExprEnd)) return 0;
1657
1658     // After parsing the base expression we could either have a parenthesized
1659     // memory address or not.  If not, return now.  If so, eat the (.
1660     if (getLexer().isNot(AsmToken::LParen)) {
1661       // Unless we have a segment register, treat this as an immediate.
1662       if (SegReg == 0)
1663         return X86Operand::CreateMem(Disp, MemStart, ExprEnd);
1664       return X86Operand::CreateMem(SegReg, Disp, 0, 0, 1, MemStart, ExprEnd);
1665     }
1666
1667     // Eat the '('.
1668     Parser.Lex();
1669   } else {
1670     // Okay, we have a '('.  We don't know if this is an expression or not, but
1671     // so we have to eat the ( to see beyond it.
1672     SMLoc LParenLoc = Parser.getTok().getLoc();
1673     Parser.Lex(); // Eat the '('.
1674
1675     if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) {
1676       // Nothing to do here, fall into the code below with the '(' part of the
1677       // memory operand consumed.
1678     } else {
1679       SMLoc ExprEnd;
1680
1681       // It must be an parenthesized expression, parse it now.
1682       if (getParser().parseParenExpression(Disp, ExprEnd))
1683         return 0;
1684
1685       // After parsing the base expression we could either have a parenthesized
1686       // memory address or not.  If not, return now.  If so, eat the (.
1687       if (getLexer().isNot(AsmToken::LParen)) {
1688         // Unless we have a segment register, treat this as an immediate.
1689         if (SegReg == 0)
1690           return X86Operand::CreateMem(Disp, LParenLoc, ExprEnd);
1691         return X86Operand::CreateMem(SegReg, Disp, 0, 0, 1, MemStart, ExprEnd);
1692       }
1693
1694       // Eat the '('.
1695       Parser.Lex();
1696     }
1697   }
1698
1699   // If we reached here, then we just ate the ( of the memory operand.  Process
1700   // the rest of the memory operand.
1701   unsigned BaseReg = 0, IndexReg = 0, Scale = 1;
1702   SMLoc IndexLoc;
1703
1704   if (getLexer().is(AsmToken::Percent)) {
1705     SMLoc StartLoc, EndLoc;
1706     if (ParseRegister(BaseReg, StartLoc, EndLoc)) return 0;
1707     if (BaseReg == X86::EIZ || BaseReg == X86::RIZ) {
1708       Error(StartLoc, "eiz and riz can only be used as index registers",
1709             SMRange(StartLoc, EndLoc));
1710       return 0;
1711     }
1712   }
1713
1714   if (getLexer().is(AsmToken::Comma)) {
1715     Parser.Lex(); // Eat the comma.
1716     IndexLoc = Parser.getTok().getLoc();
1717
1718     // Following the comma we should have either an index register, or a scale
1719     // value. We don't support the later form, but we want to parse it
1720     // correctly.
1721     //
1722     // Not that even though it would be completely consistent to support syntax
1723     // like "1(%eax,,1)", the assembler doesn't. Use "eiz" or "riz" for this.
1724     if (getLexer().is(AsmToken::Percent)) {
1725       SMLoc L;
1726       if (ParseRegister(IndexReg, L, L)) return 0;
1727
1728       if (getLexer().isNot(AsmToken::RParen)) {
1729         // Parse the scale amount:
1730         //  ::= ',' [scale-expression]
1731         if (getLexer().isNot(AsmToken::Comma)) {
1732           Error(Parser.getTok().getLoc(),
1733                 "expected comma in scale expression");
1734           return 0;
1735         }
1736         Parser.Lex(); // Eat the comma.
1737
1738         if (getLexer().isNot(AsmToken::RParen)) {
1739           SMLoc Loc = Parser.getTok().getLoc();
1740
1741           int64_t ScaleVal;
1742           if (getParser().parseAbsoluteExpression(ScaleVal)){
1743             Error(Loc, "expected scale expression");
1744             return 0;
1745           }
1746
1747           // Validate the scale amount.
1748           if (ScaleVal != 1 && ScaleVal != 2 && ScaleVal != 4 && ScaleVal != 8){
1749             Error(Loc, "scale factor in address must be 1, 2, 4 or 8");
1750             return 0;
1751           }
1752           Scale = (unsigned)ScaleVal;
1753         }
1754       }
1755     } else if (getLexer().isNot(AsmToken::RParen)) {
1756       // A scale amount without an index is ignored.
1757       // index.
1758       SMLoc Loc = Parser.getTok().getLoc();
1759
1760       int64_t Value;
1761       if (getParser().parseAbsoluteExpression(Value))
1762         return 0;
1763
1764       if (Value != 1)
1765         Warning(Loc, "scale factor without index register is ignored");
1766       Scale = 1;
1767     }
1768   }
1769
1770   // Ok, we've eaten the memory operand, verify we have a ')' and eat it too.
1771   if (getLexer().isNot(AsmToken::RParen)) {
1772     Error(Parser.getTok().getLoc(), "unexpected token in memory operand");
1773     return 0;
1774   }
1775   SMLoc MemEnd = Parser.getTok().getEndLoc();
1776   Parser.Lex(); // Eat the ')'.
1777
1778   // If we have both a base register and an index register make sure they are
1779   // both 64-bit or 32-bit registers.
1780   // To support VSIB, IndexReg can be 128-bit or 256-bit registers.
1781   if (BaseReg != 0 && IndexReg != 0) {
1782     if (X86MCRegisterClasses[X86::GR64RegClassID].contains(BaseReg) &&
1783         (X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
1784          X86MCRegisterClasses[X86::GR32RegClassID].contains(IndexReg)) &&
1785         IndexReg != X86::RIZ) {
1786       Error(IndexLoc, "index register is 32-bit, but base register is 64-bit");
1787       return 0;
1788     }
1789     if (X86MCRegisterClasses[X86::GR32RegClassID].contains(BaseReg) &&
1790         (X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
1791          X86MCRegisterClasses[X86::GR64RegClassID].contains(IndexReg)) &&
1792         IndexReg != X86::EIZ){
1793       Error(IndexLoc, "index register is 64-bit, but base register is 32-bit");
1794       return 0;
1795     }
1796   }
1797
1798   return X86Operand::CreateMem(SegReg, Disp, BaseReg, IndexReg, Scale,
1799                                MemStart, MemEnd);
1800 }
1801
1802 bool X86AsmParser::
1803 ParseInstruction(ParseInstructionInfo &Info, StringRef Name, SMLoc NameLoc,
1804                  SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
1805   InstInfo = &Info;
1806   StringRef PatchedName = Name;
1807
1808   // FIXME: Hack to recognize setneb as setne.
1809   if (PatchedName.startswith("set") && PatchedName.endswith("b") &&
1810       PatchedName != "setb" && PatchedName != "setnb")
1811     PatchedName = PatchedName.substr(0, Name.size()-1);
1812
1813   // FIXME: Hack to recognize cmp<comparison code>{ss,sd,ps,pd}.
1814   const MCExpr *ExtraImmOp = 0;
1815   if ((PatchedName.startswith("cmp") || PatchedName.startswith("vcmp")) &&
1816       (PatchedName.endswith("ss") || PatchedName.endswith("sd") ||
1817        PatchedName.endswith("ps") || PatchedName.endswith("pd"))) {
1818     bool IsVCMP = PatchedName[0] == 'v';
1819     unsigned SSECCIdx = IsVCMP ? 4 : 3;
1820     unsigned SSEComparisonCode = StringSwitch<unsigned>(
1821       PatchedName.slice(SSECCIdx, PatchedName.size() - 2))
1822       .Case("eq",       0x00)
1823       .Case("lt",       0x01)
1824       .Case("le",       0x02)
1825       .Case("unord",    0x03)
1826       .Case("neq",      0x04)
1827       .Case("nlt",      0x05)
1828       .Case("nle",      0x06)
1829       .Case("ord",      0x07)
1830       /* AVX only from here */
1831       .Case("eq_uq",    0x08)
1832       .Case("nge",      0x09)
1833       .Case("ngt",      0x0A)
1834       .Case("false",    0x0B)
1835       .Case("neq_oq",   0x0C)
1836       .Case("ge",       0x0D)
1837       .Case("gt",       0x0E)
1838       .Case("true",     0x0F)
1839       .Case("eq_os",    0x10)
1840       .Case("lt_oq",    0x11)
1841       .Case("le_oq",    0x12)
1842       .Case("unord_s",  0x13)
1843       .Case("neq_us",   0x14)
1844       .Case("nlt_uq",   0x15)
1845       .Case("nle_uq",   0x16)
1846       .Case("ord_s",    0x17)
1847       .Case("eq_us",    0x18)
1848       .Case("nge_uq",   0x19)
1849       .Case("ngt_uq",   0x1A)
1850       .Case("false_os", 0x1B)
1851       .Case("neq_os",   0x1C)
1852       .Case("ge_oq",    0x1D)
1853       .Case("gt_oq",    0x1E)
1854       .Case("true_us",  0x1F)
1855       .Default(~0U);
1856     if (SSEComparisonCode != ~0U && (IsVCMP || SSEComparisonCode < 8)) {
1857       ExtraImmOp = MCConstantExpr::Create(SSEComparisonCode,
1858                                           getParser().getContext());
1859       if (PatchedName.endswith("ss")) {
1860         PatchedName = IsVCMP ? "vcmpss" : "cmpss";
1861       } else if (PatchedName.endswith("sd")) {
1862         PatchedName = IsVCMP ? "vcmpsd" : "cmpsd";
1863       } else if (PatchedName.endswith("ps")) {
1864         PatchedName = IsVCMP ? "vcmpps" : "cmpps";
1865       } else {
1866         assert(PatchedName.endswith("pd") && "Unexpected mnemonic!");
1867         PatchedName = IsVCMP ? "vcmppd" : "cmppd";
1868       }
1869     }
1870   }
1871
1872   Operands.push_back(X86Operand::CreateToken(PatchedName, NameLoc));
1873
1874   if (ExtraImmOp && !isParsingIntelSyntax())
1875     Operands.push_back(X86Operand::CreateImm(ExtraImmOp, NameLoc, NameLoc));
1876
1877   // Determine whether this is an instruction prefix.
1878   bool isPrefix =
1879     Name == "lock" || Name == "rep" ||
1880     Name == "repe" || Name == "repz" ||
1881     Name == "repne" || Name == "repnz" ||
1882     Name == "rex64" || Name == "data16";
1883
1884
1885   // This does the actual operand parsing.  Don't parse any more if we have a
1886   // prefix juxtaposed with an operation like "lock incl 4(%rax)", because we
1887   // just want to parse the "lock" as the first instruction and the "incl" as
1888   // the next one.
1889   if (getLexer().isNot(AsmToken::EndOfStatement) && !isPrefix) {
1890
1891     // Parse '*' modifier.
1892     if (getLexer().is(AsmToken::Star)) {
1893       SMLoc Loc = Parser.getTok().getLoc();
1894       Operands.push_back(X86Operand::CreateToken("*", Loc));
1895       Parser.Lex(); // Eat the star.
1896     }
1897
1898     // Read the first operand.
1899     if (X86Operand *Op = ParseOperand())
1900       Operands.push_back(Op);
1901     else {
1902       Parser.eatToEndOfStatement();
1903       return true;
1904     }
1905
1906     while (getLexer().is(AsmToken::Comma)) {
1907       Parser.Lex();  // Eat the comma.
1908
1909       // Parse and remember the operand.
1910       if (X86Operand *Op = ParseOperand())
1911         Operands.push_back(Op);
1912       else {
1913         Parser.eatToEndOfStatement();
1914         return true;
1915       }
1916     }
1917
1918     if (getLexer().isNot(AsmToken::EndOfStatement)) {
1919       SMLoc Loc = getLexer().getLoc();
1920       Parser.eatToEndOfStatement();
1921       return Error(Loc, "unexpected token in argument list");
1922     }
1923   }
1924
1925   if (getLexer().is(AsmToken::EndOfStatement))
1926     Parser.Lex(); // Consume the EndOfStatement
1927   else if (isPrefix && getLexer().is(AsmToken::Slash))
1928     Parser.Lex(); // Consume the prefix separator Slash
1929
1930   if (ExtraImmOp && isParsingIntelSyntax())
1931     Operands.push_back(X86Operand::CreateImm(ExtraImmOp, NameLoc, NameLoc));
1932
1933   // This is a terrible hack to handle "out[bwl]? %al, (%dx)" ->
1934   // "outb %al, %dx".  Out doesn't take a memory form, but this is a widely
1935   // documented form in various unofficial manuals, so a lot of code uses it.
1936   if ((Name == "outb" || Name == "outw" || Name == "outl" || Name == "out") &&
1937       Operands.size() == 3) {
1938     X86Operand &Op = *(X86Operand*)Operands.back();
1939     if (Op.isMem() && Op.Mem.SegReg == 0 &&
1940         isa<MCConstantExpr>(Op.Mem.Disp) &&
1941         cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
1942         Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
1943       SMLoc Loc = Op.getEndLoc();
1944       Operands.back() = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
1945       delete &Op;
1946     }
1947   }
1948   // Same hack for "in[bwl]? (%dx), %al" -> "inb %dx, %al".
1949   if ((Name == "inb" || Name == "inw" || Name == "inl" || Name == "in") &&
1950       Operands.size() == 3) {
1951     X86Operand &Op = *(X86Operand*)Operands.begin()[1];
1952     if (Op.isMem() && Op.Mem.SegReg == 0 &&
1953         isa<MCConstantExpr>(Op.Mem.Disp) &&
1954         cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
1955         Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
1956       SMLoc Loc = Op.getEndLoc();
1957       Operands.begin()[1] = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
1958       delete &Op;
1959     }
1960   }
1961   // Transform "ins[bwl] %dx, %es:(%edi)" into "ins[bwl]"
1962   if (Name.startswith("ins") && Operands.size() == 3 &&
1963       (Name == "insb" || Name == "insw" || Name == "insl")) {
1964     X86Operand &Op = *(X86Operand*)Operands.begin()[1];
1965     X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
1966     if (Op.isReg() && Op.getReg() == X86::DX && isDstOp(Op2)) {
1967       Operands.pop_back();
1968       Operands.pop_back();
1969       delete &Op;
1970       delete &Op2;
1971     }
1972   }
1973
1974   // Transform "outs[bwl] %ds:(%esi), %dx" into "out[bwl]"
1975   if (Name.startswith("outs") && Operands.size() == 3 &&
1976       (Name == "outsb" || Name == "outsw" || Name == "outsl")) {
1977     X86Operand &Op = *(X86Operand*)Operands.begin()[1];
1978     X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
1979     if (isSrcOp(Op) && Op2.isReg() && Op2.getReg() == X86::DX) {
1980       Operands.pop_back();
1981       Operands.pop_back();
1982       delete &Op;
1983       delete &Op2;
1984     }
1985   }
1986
1987   // Transform "movs[bwl] %ds:(%esi), %es:(%edi)" into "movs[bwl]"
1988   if (Name.startswith("movs") && Operands.size() == 3 &&
1989       (Name == "movsb" || Name == "movsw" || Name == "movsl" ||
1990        (is64BitMode() && Name == "movsq"))) {
1991     X86Operand &Op = *(X86Operand*)Operands.begin()[1];
1992     X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
1993     if (isSrcOp(Op) && isDstOp(Op2)) {
1994       Operands.pop_back();
1995       Operands.pop_back();
1996       delete &Op;
1997       delete &Op2;
1998     }
1999   }
2000   // Transform "lods[bwl] %ds:(%esi),{%al,%ax,%eax,%rax}" into "lods[bwl]"
2001   if (Name.startswith("lods") && Operands.size() == 3 &&
2002       (Name == "lods" || Name == "lodsb" || Name == "lodsw" ||
2003        Name == "lodsl" || (is64BitMode() && Name == "lodsq"))) {
2004     X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
2005     X86Operand *Op2 = static_cast<X86Operand*>(Operands[2]);
2006     if (isSrcOp(*Op1) && Op2->isReg()) {
2007       const char *ins;
2008       unsigned reg = Op2->getReg();
2009       bool isLods = Name == "lods";
2010       if (reg == X86::AL && (isLods || Name == "lodsb"))
2011         ins = "lodsb";
2012       else if (reg == X86::AX && (isLods || Name == "lodsw"))
2013         ins = "lodsw";
2014       else if (reg == X86::EAX && (isLods || Name == "lodsl"))
2015         ins = "lodsl";
2016       else if (reg == X86::RAX && (isLods || Name == "lodsq"))
2017         ins = "lodsq";
2018       else
2019         ins = NULL;
2020       if (ins != NULL) {
2021         Operands.pop_back();
2022         Operands.pop_back();
2023         delete Op1;
2024         delete Op2;
2025         if (Name != ins)
2026           static_cast<X86Operand*>(Operands[0])->setTokenValue(ins);
2027       }
2028     }
2029   }
2030   // Transform "stos[bwl] {%al,%ax,%eax,%rax},%es:(%edi)" into "stos[bwl]"
2031   if (Name.startswith("stos") && Operands.size() == 3 &&
2032       (Name == "stos" || Name == "stosb" || Name == "stosw" ||
2033        Name == "stosl" || (is64BitMode() && Name == "stosq"))) {
2034     X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
2035     X86Operand *Op2 = static_cast<X86Operand*>(Operands[2]);
2036     if (isDstOp(*Op2) && Op1->isReg()) {
2037       const char *ins;
2038       unsigned reg = Op1->getReg();
2039       bool isStos = Name == "stos";
2040       if (reg == X86::AL && (isStos || Name == "stosb"))
2041         ins = "stosb";
2042       else if (reg == X86::AX && (isStos || Name == "stosw"))
2043         ins = "stosw";
2044       else if (reg == X86::EAX && (isStos || Name == "stosl"))
2045         ins = "stosl";
2046       else if (reg == X86::RAX && (isStos || Name == "stosq"))
2047         ins = "stosq";
2048       else
2049         ins = NULL;
2050       if (ins != NULL) {
2051         Operands.pop_back();
2052         Operands.pop_back();
2053         delete Op1;
2054         delete Op2;
2055         if (Name != ins)
2056           static_cast<X86Operand*>(Operands[0])->setTokenValue(ins);
2057       }
2058     }
2059   }
2060
2061   // FIXME: Hack to handle recognize s{hr,ar,hl} $1, <op>.  Canonicalize to
2062   // "shift <op>".
2063   if ((Name.startswith("shr") || Name.startswith("sar") ||
2064        Name.startswith("shl") || Name.startswith("sal") ||
2065        Name.startswith("rcl") || Name.startswith("rcr") ||
2066        Name.startswith("rol") || Name.startswith("ror")) &&
2067       Operands.size() == 3) {
2068     if (isParsingIntelSyntax()) {
2069       // Intel syntax
2070       X86Operand *Op1 = static_cast<X86Operand*>(Operands[2]);
2071       if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
2072           cast<MCConstantExpr>(Op1->getImm())->getValue() == 1) {
2073         delete Operands[2];
2074         Operands.pop_back();
2075       }
2076     } else {
2077       X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
2078       if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
2079           cast<MCConstantExpr>(Op1->getImm())->getValue() == 1) {
2080         delete Operands[1];
2081         Operands.erase(Operands.begin() + 1);
2082       }
2083     }
2084   }
2085
2086   // Transforms "int $3" into "int3" as a size optimization.  We can't write an
2087   // instalias with an immediate operand yet.
2088   if (Name == "int" && Operands.size() == 2) {
2089     X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
2090     if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
2091         cast<MCConstantExpr>(Op1->getImm())->getValue() == 3) {
2092       delete Operands[1];
2093       Operands.erase(Operands.begin() + 1);
2094       static_cast<X86Operand*>(Operands[0])->setTokenValue("int3");
2095     }
2096   }
2097
2098   return false;
2099 }
2100
2101 static bool convertToSExti8(MCInst &Inst, unsigned Opcode, unsigned Reg,
2102                             bool isCmp) {
2103   MCInst TmpInst;
2104   TmpInst.setOpcode(Opcode);
2105   if (!isCmp)
2106     TmpInst.addOperand(MCOperand::CreateReg(Reg));
2107   TmpInst.addOperand(MCOperand::CreateReg(Reg));
2108   TmpInst.addOperand(Inst.getOperand(0));
2109   Inst = TmpInst;
2110   return true;
2111 }
2112
2113 static bool convert16i16to16ri8(MCInst &Inst, unsigned Opcode,
2114                                 bool isCmp = false) {
2115   if (!Inst.getOperand(0).isImm() ||
2116       !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
2117     return false;
2118
2119   return convertToSExti8(Inst, Opcode, X86::AX, isCmp);
2120 }
2121
2122 static bool convert32i32to32ri8(MCInst &Inst, unsigned Opcode,
2123                                 bool isCmp = false) {
2124   if (!Inst.getOperand(0).isImm() ||
2125       !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
2126     return false;
2127
2128   return convertToSExti8(Inst, Opcode, X86::EAX, isCmp);
2129 }
2130
2131 static bool convert64i32to64ri8(MCInst &Inst, unsigned Opcode,
2132                                 bool isCmp = false) {
2133   if (!Inst.getOperand(0).isImm() ||
2134       !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
2135     return false;
2136
2137   return convertToSExti8(Inst, Opcode, X86::RAX, isCmp);
2138 }
2139
2140 bool X86AsmParser::
2141 processInstruction(MCInst &Inst,
2142                    const SmallVectorImpl<MCParsedAsmOperand*> &Ops) {
2143   switch (Inst.getOpcode()) {
2144   default: return false;
2145   case X86::AND16i16: return convert16i16to16ri8(Inst, X86::AND16ri8);
2146   case X86::AND32i32: return convert32i32to32ri8(Inst, X86::AND32ri8);
2147   case X86::AND64i32: return convert64i32to64ri8(Inst, X86::AND64ri8);
2148   case X86::XOR16i16: return convert16i16to16ri8(Inst, X86::XOR16ri8);
2149   case X86::XOR32i32: return convert32i32to32ri8(Inst, X86::XOR32ri8);
2150   case X86::XOR64i32: return convert64i32to64ri8(Inst, X86::XOR64ri8);
2151   case X86::OR16i16:  return convert16i16to16ri8(Inst, X86::OR16ri8);
2152   case X86::OR32i32:  return convert32i32to32ri8(Inst, X86::OR32ri8);
2153   case X86::OR64i32:  return convert64i32to64ri8(Inst, X86::OR64ri8);
2154   case X86::CMP16i16: return convert16i16to16ri8(Inst, X86::CMP16ri8, true);
2155   case X86::CMP32i32: return convert32i32to32ri8(Inst, X86::CMP32ri8, true);
2156   case X86::CMP64i32: return convert64i32to64ri8(Inst, X86::CMP64ri8, true);
2157   case X86::ADD16i16: return convert16i16to16ri8(Inst, X86::ADD16ri8);
2158   case X86::ADD32i32: return convert32i32to32ri8(Inst, X86::ADD32ri8);
2159   case X86::ADD64i32: return convert64i32to64ri8(Inst, X86::ADD64ri8);
2160   case X86::SUB16i16: return convert16i16to16ri8(Inst, X86::SUB16ri8);
2161   case X86::SUB32i32: return convert32i32to32ri8(Inst, X86::SUB32ri8);
2162   case X86::SUB64i32: return convert64i32to64ri8(Inst, X86::SUB64ri8);
2163   case X86::ADC16i16: return convert16i16to16ri8(Inst, X86::ADC16ri8);
2164   case X86::ADC32i32: return convert32i32to32ri8(Inst, X86::ADC32ri8);
2165   case X86::ADC64i32: return convert64i32to64ri8(Inst, X86::ADC64ri8);
2166   case X86::SBB16i16: return convert16i16to16ri8(Inst, X86::SBB16ri8);
2167   case X86::SBB32i32: return convert32i32to32ri8(Inst, X86::SBB32ri8);
2168   case X86::SBB64i32: return convert64i32to64ri8(Inst, X86::SBB64ri8);
2169   }
2170 }
2171
2172 static const char *getSubtargetFeatureName(unsigned Val);
2173 bool X86AsmParser::
2174 MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
2175                         SmallVectorImpl<MCParsedAsmOperand*> &Operands,
2176                         MCStreamer &Out, unsigned &ErrorInfo,
2177                         bool MatchingInlineAsm) {
2178   assert(!Operands.empty() && "Unexpect empty operand list!");
2179   X86Operand *Op = static_cast<X86Operand*>(Operands[0]);
2180   assert(Op->isToken() && "Leading operand should always be a mnemonic!");
2181   ArrayRef<SMRange> EmptyRanges = ArrayRef<SMRange>();
2182
2183   // First, handle aliases that expand to multiple instructions.
2184   // FIXME: This should be replaced with a real .td file alias mechanism.
2185   // Also, MatchInstructionImpl should actually *do* the EmitInstruction
2186   // call.
2187   if (Op->getToken() == "fstsw" || Op->getToken() == "fstcw" ||
2188       Op->getToken() == "fstsww" || Op->getToken() == "fstcww" ||
2189       Op->getToken() == "finit" || Op->getToken() == "fsave" ||
2190       Op->getToken() == "fstenv" || Op->getToken() == "fclex") {
2191     MCInst Inst;
2192     Inst.setOpcode(X86::WAIT);
2193     Inst.setLoc(IDLoc);
2194     if (!MatchingInlineAsm)
2195       Out.EmitInstruction(Inst);
2196
2197     const char *Repl =
2198       StringSwitch<const char*>(Op->getToken())
2199         .Case("finit",  "fninit")
2200         .Case("fsave",  "fnsave")
2201         .Case("fstcw",  "fnstcw")
2202         .Case("fstcww",  "fnstcw")
2203         .Case("fstenv", "fnstenv")
2204         .Case("fstsw",  "fnstsw")
2205         .Case("fstsww", "fnstsw")
2206         .Case("fclex",  "fnclex")
2207         .Default(0);
2208     assert(Repl && "Unknown wait-prefixed instruction");
2209     delete Operands[0];
2210     Operands[0] = X86Operand::CreateToken(Repl, IDLoc);
2211   }
2212
2213   bool WasOriginallyInvalidOperand = false;
2214   MCInst Inst;
2215
2216   // First, try a direct match.
2217   switch (MatchInstructionImpl(Operands, Inst,
2218                                ErrorInfo, MatchingInlineAsm,
2219                                isParsingIntelSyntax())) {
2220   default: break;
2221   case Match_Success:
2222     // Some instructions need post-processing to, for example, tweak which
2223     // encoding is selected. Loop on it while changes happen so the
2224     // individual transformations can chain off each other.
2225     if (!MatchingInlineAsm)
2226       while (processInstruction(Inst, Operands))
2227         ;
2228
2229     Inst.setLoc(IDLoc);
2230     if (!MatchingInlineAsm)
2231       Out.EmitInstruction(Inst);
2232     Opcode = Inst.getOpcode();
2233     return false;
2234   case Match_MissingFeature: {
2235     assert(ErrorInfo && "Unknown missing feature!");
2236     // Special case the error message for the very common case where only
2237     // a single subtarget feature is missing.
2238     std::string Msg = "instruction requires:";
2239     unsigned Mask = 1;
2240     for (unsigned i = 0; i < (sizeof(ErrorInfo)*8-1); ++i) {
2241       if (ErrorInfo & Mask) {
2242         Msg += " ";
2243         Msg += getSubtargetFeatureName(ErrorInfo & Mask);
2244       }
2245       Mask <<= 1;
2246     }
2247     return Error(IDLoc, Msg, EmptyRanges, MatchingInlineAsm);
2248   }
2249   case Match_InvalidOperand:
2250     WasOriginallyInvalidOperand = true;
2251     break;
2252   case Match_MnemonicFail:
2253     break;
2254   }
2255
2256   // FIXME: Ideally, we would only attempt suffix matches for things which are
2257   // valid prefixes, and we could just infer the right unambiguous
2258   // type. However, that requires substantially more matcher support than the
2259   // following hack.
2260
2261   // Change the operand to point to a temporary token.
2262   StringRef Base = Op->getToken();
2263   SmallString<16> Tmp;
2264   Tmp += Base;
2265   Tmp += ' ';
2266   Op->setTokenValue(Tmp.str());
2267
2268   // If this instruction starts with an 'f', then it is a floating point stack
2269   // instruction.  These come in up to three forms for 32-bit, 64-bit, and
2270   // 80-bit floating point, which use the suffixes s,l,t respectively.
2271   //
2272   // Otherwise, we assume that this may be an integer instruction, which comes
2273   // in 8/16/32/64-bit forms using the b,w,l,q suffixes respectively.
2274   const char *Suffixes = Base[0] != 'f' ? "bwlq" : "slt\0";
2275
2276   // Check for the various suffix matches.
2277   Tmp[Base.size()] = Suffixes[0];
2278   unsigned ErrorInfoIgnore;
2279   unsigned ErrorInfoMissingFeature = 0; // Init suppresses compiler warnings.
2280   unsigned Match1, Match2, Match3, Match4;
2281
2282   Match1 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
2283                                 isParsingIntelSyntax());
2284   // If this returned as a missing feature failure, remember that.
2285   if (Match1 == Match_MissingFeature)
2286     ErrorInfoMissingFeature = ErrorInfoIgnore;
2287   Tmp[Base.size()] = Suffixes[1];
2288   Match2 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
2289                                 isParsingIntelSyntax());
2290   // If this returned as a missing feature failure, remember that.
2291   if (Match2 == Match_MissingFeature)
2292     ErrorInfoMissingFeature = ErrorInfoIgnore;
2293   Tmp[Base.size()] = Suffixes[2];
2294   Match3 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
2295                                 isParsingIntelSyntax());
2296   // If this returned as a missing feature failure, remember that.
2297   if (Match3 == Match_MissingFeature)
2298     ErrorInfoMissingFeature = ErrorInfoIgnore;
2299   Tmp[Base.size()] = Suffixes[3];
2300   Match4 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
2301                                 isParsingIntelSyntax());
2302   // If this returned as a missing feature failure, remember that.
2303   if (Match4 == Match_MissingFeature)
2304     ErrorInfoMissingFeature = ErrorInfoIgnore;
2305
2306   // Restore the old token.
2307   Op->setTokenValue(Base);
2308
2309   // If exactly one matched, then we treat that as a successful match (and the
2310   // instruction will already have been filled in correctly, since the failing
2311   // matches won't have modified it).
2312   unsigned NumSuccessfulMatches =
2313     (Match1 == Match_Success) + (Match2 == Match_Success) +
2314     (Match3 == Match_Success) + (Match4 == Match_Success);
2315   if (NumSuccessfulMatches == 1) {
2316     Inst.setLoc(IDLoc);
2317     if (!MatchingInlineAsm)
2318       Out.EmitInstruction(Inst);
2319     Opcode = Inst.getOpcode();
2320     return false;
2321   }
2322
2323   // Otherwise, the match failed, try to produce a decent error message.
2324
2325   // If we had multiple suffix matches, then identify this as an ambiguous
2326   // match.
2327   if (NumSuccessfulMatches > 1) {
2328     char MatchChars[4];
2329     unsigned NumMatches = 0;
2330     if (Match1 == Match_Success) MatchChars[NumMatches++] = Suffixes[0];
2331     if (Match2 == Match_Success) MatchChars[NumMatches++] = Suffixes[1];
2332     if (Match3 == Match_Success) MatchChars[NumMatches++] = Suffixes[2];
2333     if (Match4 == Match_Success) MatchChars[NumMatches++] = Suffixes[3];
2334
2335     SmallString<126> Msg;
2336     raw_svector_ostream OS(Msg);
2337     OS << "ambiguous instructions require an explicit suffix (could be ";
2338     for (unsigned i = 0; i != NumMatches; ++i) {
2339       if (i != 0)
2340         OS << ", ";
2341       if (i + 1 == NumMatches)
2342         OS << "or ";
2343       OS << "'" << Base << MatchChars[i] << "'";
2344     }
2345     OS << ")";
2346     Error(IDLoc, OS.str(), EmptyRanges, MatchingInlineAsm);
2347     return true;
2348   }
2349
2350   // Okay, we know that none of the variants matched successfully.
2351
2352   // If all of the instructions reported an invalid mnemonic, then the original
2353   // mnemonic was invalid.
2354   if ((Match1 == Match_MnemonicFail) && (Match2 == Match_MnemonicFail) &&
2355       (Match3 == Match_MnemonicFail) && (Match4 == Match_MnemonicFail)) {
2356     if (!WasOriginallyInvalidOperand) {
2357       ArrayRef<SMRange> Ranges = MatchingInlineAsm ? EmptyRanges :
2358         Op->getLocRange();
2359       return Error(IDLoc, "invalid instruction mnemonic '" + Base + "'",
2360                    Ranges, MatchingInlineAsm);
2361     }
2362
2363     // Recover location info for the operand if we know which was the problem.
2364     if (ErrorInfo != ~0U) {
2365       if (ErrorInfo >= Operands.size())
2366         return Error(IDLoc, "too few operands for instruction",
2367                      EmptyRanges, MatchingInlineAsm);
2368
2369       X86Operand *Operand = (X86Operand*)Operands[ErrorInfo];
2370       if (Operand->getStartLoc().isValid()) {
2371         SMRange OperandRange = Operand->getLocRange();
2372         return Error(Operand->getStartLoc(), "invalid operand for instruction",
2373                      OperandRange, MatchingInlineAsm);
2374       }
2375     }
2376
2377     return Error(IDLoc, "invalid operand for instruction", EmptyRanges,
2378                  MatchingInlineAsm);
2379   }
2380
2381   // If one instruction matched with a missing feature, report this as a
2382   // missing feature.
2383   if ((Match1 == Match_MissingFeature) + (Match2 == Match_MissingFeature) +
2384       (Match3 == Match_MissingFeature) + (Match4 == Match_MissingFeature) == 1){
2385     std::string Msg = "instruction requires:";
2386     unsigned Mask = 1;
2387     for (unsigned i = 0; i < (sizeof(ErrorInfoMissingFeature)*8-1); ++i) {
2388       if (ErrorInfoMissingFeature & Mask) {
2389         Msg += " ";
2390         Msg += getSubtargetFeatureName(ErrorInfoMissingFeature & Mask);
2391       }
2392       Mask <<= 1;
2393     }
2394     return Error(IDLoc, Msg, EmptyRanges, MatchingInlineAsm);
2395   }
2396
2397   // If one instruction matched with an invalid operand, report this as an
2398   // operand failure.
2399   if ((Match1 == Match_InvalidOperand) + (Match2 == Match_InvalidOperand) +
2400       (Match3 == Match_InvalidOperand) + (Match4 == Match_InvalidOperand) == 1){
2401     Error(IDLoc, "invalid operand for instruction", EmptyRanges,
2402           MatchingInlineAsm);
2403     return true;
2404   }
2405
2406   // If all of these were an outright failure, report it in a useless way.
2407   Error(IDLoc, "unknown use of instruction mnemonic without a size suffix",
2408         EmptyRanges, MatchingInlineAsm);
2409   return true;
2410 }
2411
2412
2413 bool X86AsmParser::ParseDirective(AsmToken DirectiveID) {
2414   StringRef IDVal = DirectiveID.getIdentifier();
2415   if (IDVal == ".word")
2416     return ParseDirectiveWord(2, DirectiveID.getLoc());
2417   else if (IDVal.startswith(".code"))
2418     return ParseDirectiveCode(IDVal, DirectiveID.getLoc());
2419   else if (IDVal.startswith(".att_syntax")) {
2420     getParser().setAssemblerDialect(0);
2421     return false;
2422   } else if (IDVal.startswith(".intel_syntax")) {
2423     getParser().setAssemblerDialect(1);
2424     if (getLexer().isNot(AsmToken::EndOfStatement)) {
2425       if(Parser.getTok().getString() == "noprefix") {
2426         // FIXME : Handle noprefix
2427         Parser.Lex();
2428       } else
2429         return true;
2430     }
2431     return false;
2432   }
2433   return true;
2434 }
2435
2436 /// ParseDirectiveWord
2437 ///  ::= .word [ expression (, expression)* ]
2438 bool X86AsmParser::ParseDirectiveWord(unsigned Size, SMLoc L) {
2439   if (getLexer().isNot(AsmToken::EndOfStatement)) {
2440     for (;;) {
2441       const MCExpr *Value;
2442       if (getParser().parseExpression(Value))
2443         return true;
2444
2445       getParser().getStreamer().EmitValue(Value, Size);
2446
2447       if (getLexer().is(AsmToken::EndOfStatement))
2448         break;
2449
2450       // FIXME: Improve diagnostic.
2451       if (getLexer().isNot(AsmToken::Comma))
2452         return Error(L, "unexpected token in directive");
2453       Parser.Lex();
2454     }
2455   }
2456
2457   Parser.Lex();
2458   return false;
2459 }
2460
2461 /// ParseDirectiveCode
2462 ///  ::= .code32 | .code64
2463 bool X86AsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) {
2464   if (IDVal == ".code32") {
2465     Parser.Lex();
2466     if (is64BitMode()) {
2467       SwitchMode();
2468       getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
2469     }
2470   } else if (IDVal == ".code64") {
2471     Parser.Lex();
2472     if (!is64BitMode()) {
2473       SwitchMode();
2474       getParser().getStreamer().EmitAssemblerFlag(MCAF_Code64);
2475     }
2476   } else {
2477     return Error(L, "unexpected directive " + IDVal);
2478   }
2479
2480   return false;
2481 }
2482
2483 // Force static initialization.
2484 extern "C" void LLVMInitializeX86AsmParser() {
2485   RegisterMCAsmParser<X86AsmParser> X(TheX86_32Target);
2486   RegisterMCAsmParser<X86AsmParser> Y(TheX86_64Target);
2487 }
2488
2489 #define GET_REGISTER_MATCHER
2490 #define GET_MATCHER_IMPLEMENTATION
2491 #define GET_SUBTARGET_FEATURE_NAME
2492 #include "X86GenAsmMatcher.inc"