Daniel Dunbar | 092a9dd | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 1 | //===-- X86AsmParser.cpp - Parse X86 assembly to MCInst instructions ------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
Chris Lattner | 9898671 | 2010-01-14 22:21:20 +0000 | [diff] [blame] | 10 | #include "llvm/Target/TargetAsmParser.h" |
Daniel Dunbar | 4cb1e13 | 2009-07-18 23:03:22 +0000 | [diff] [blame] | 11 | #include "X86.h" |
Daniel Dunbar | 54074b5 | 2010-07-19 05:44:09 +0000 | [diff] [blame] | 12 | #include "X86Subtarget.h" |
Chris Lattner | 33d60d5 | 2010-09-22 04:11:10 +0000 | [diff] [blame] | 13 | #include "llvm/Target/TargetRegistry.h" |
| 14 | #include "llvm/Target/TargetAsmParser.h" |
Kevin Enderby | 9c65645 | 2009-09-10 20:51:44 +0000 | [diff] [blame] | 15 | #include "llvm/MC/MCStreamer.h" |
Daniel Dunbar | 8c2eebe | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 16 | #include "llvm/MC/MCExpr.h" |
Daniel Dunbar | a027d22 | 2009-07-31 02:32:59 +0000 | [diff] [blame] | 17 | #include "llvm/MC/MCInst.h" |
Chris Lattner | c6ef277 | 2010-01-22 01:44:57 +0000 | [diff] [blame] | 18 | #include "llvm/MC/MCParser/MCAsmLexer.h" |
| 19 | #include "llvm/MC/MCParser/MCAsmParser.h" |
| 20 | #include "llvm/MC/MCParser/MCParsedAsmOperand.h" |
Chris Lattner | 33d60d5 | 2010-09-22 04:11:10 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SmallString.h" |
| 22 | #include "llvm/ADT/SmallVector.h" |
| 23 | #include "llvm/ADT/StringExtras.h" |
| 24 | #include "llvm/ADT/StringSwitch.h" |
| 25 | #include "llvm/ADT/Twine.h" |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 26 | #include "llvm/Support/SourceMgr.h" |
Daniel Dunbar | 09062b1 | 2010-08-12 00:55:42 +0000 | [diff] [blame] | 27 | #include "llvm/Support/raw_ostream.h" |
Daniel Dunbar | 092a9dd | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 28 | using namespace llvm; |
| 29 | |
| 30 | namespace { |
Benjamin Kramer | c6b79ac | 2009-07-31 11:35:26 +0000 | [diff] [blame] | 31 | struct X86Operand; |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 32 | |
| 33 | class X86ATTAsmParser : public TargetAsmParser { |
| 34 | MCAsmParser &Parser; |
Daniel Dunbar | d73ada7 | 2010-07-19 00:33:49 +0000 | [diff] [blame] | 35 | TargetMachine &TM; |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 36 | |
Daniel Dunbar | f98bc63 | 2010-03-18 20:06:02 +0000 | [diff] [blame] | 37 | protected: |
| 38 | unsigned Is64Bit : 1; |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 39 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 40 | private: |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 41 | MCAsmParser &getParser() const { return Parser; } |
| 42 | |
| 43 | MCAsmLexer &getLexer() const { return Parser.getLexer(); } |
| 44 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 45 | bool Error(SMLoc L, const Twine &Msg) { return Parser.Error(L, Msg); } |
| 46 | |
Chris Lattner | 29ef9a2 | 2010-01-15 18:51:29 +0000 | [diff] [blame] | 47 | bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc); |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 48 | |
Chris Lattner | 309264d | 2010-01-15 18:44:13 +0000 | [diff] [blame] | 49 | X86Operand *ParseOperand(); |
Chris Lattner | eef6d78 | 2010-04-17 18:56:34 +0000 | [diff] [blame] | 50 | X86Operand *ParseMemOperand(unsigned SegReg, SMLoc StartLoc); |
Kevin Enderby | 9c65645 | 2009-09-10 20:51:44 +0000 | [diff] [blame] | 51 | |
| 52 | bool ParseDirectiveWord(unsigned Size, SMLoc L); |
| 53 | |
Chris Lattner | 7036f8b | 2010-09-29 01:42:58 +0000 | [diff] [blame] | 54 | bool MatchAndEmitInstruction(SMLoc IDLoc, |
Chris Lattner | 7c51a31 | 2010-09-29 01:50:45 +0000 | [diff] [blame] | 55 | SmallVectorImpl<MCParsedAsmOperand*> &Operands, |
Chris Lattner | 7036f8b | 2010-09-29 01:42:58 +0000 | [diff] [blame] | 56 | MCStreamer &Out); |
Daniel Dunbar | 20927f2 | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 57 | |
Daniel Dunbar | 54074b5 | 2010-07-19 05:44:09 +0000 | [diff] [blame] | 58 | /// @name Auto-generated Matcher Functions |
| 59 | /// { |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 60 | |
Chris Lattner | 0692ee6 | 2010-09-06 19:11:01 +0000 | [diff] [blame] | 61 | #define GET_ASSEMBLER_HEADER |
| 62 | #include "X86GenAsmMatcher.inc" |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 63 | |
Daniel Dunbar | 0e2771f | 2009-07-29 00:02:19 +0000 | [diff] [blame] | 64 | /// } |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 65 | |
| 66 | public: |
Chris Lattner | 9a82e70 | 2010-10-30 04:57:14 +0000 | [diff] [blame] | 67 | X86ATTAsmParser(const Target &T, MCAsmParser &parser, TargetMachine &TM) |
| 68 | : TargetAsmParser(T), Parser(parser), TM(TM) { |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 69 | |
Daniel Dunbar | 54074b5 | 2010-07-19 05:44:09 +0000 | [diff] [blame] | 70 | // Initialize the set of available features. |
| 71 | setAvailableFeatures(ComputeAvailableFeatures( |
| 72 | &TM.getSubtarget<X86Subtarget>())); |
| 73 | } |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 74 | |
Benjamin Kramer | 38e5989 | 2010-07-14 22:38:02 +0000 | [diff] [blame] | 75 | virtual bool ParseInstruction(StringRef Name, SMLoc NameLoc, |
Chris Lattner | 9898671 | 2010-01-14 22:21:20 +0000 | [diff] [blame] | 76 | SmallVectorImpl<MCParsedAsmOperand*> &Operands); |
Kevin Enderby | 9c65645 | 2009-09-10 20:51:44 +0000 | [diff] [blame] | 77 | |
| 78 | virtual bool ParseDirective(AsmToken DirectiveID); |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 79 | }; |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 80 | |
Daniel Dunbar | f98bc63 | 2010-03-18 20:06:02 +0000 | [diff] [blame] | 81 | class X86_32ATTAsmParser : public X86ATTAsmParser { |
| 82 | public: |
Chris Lattner | 9a82e70 | 2010-10-30 04:57:14 +0000 | [diff] [blame] | 83 | X86_32ATTAsmParser(const Target &T, MCAsmParser &Parser, TargetMachine &TM) |
| 84 | : X86ATTAsmParser(T, Parser, TM) { |
Daniel Dunbar | f98bc63 | 2010-03-18 20:06:02 +0000 | [diff] [blame] | 85 | Is64Bit = false; |
| 86 | } |
| 87 | }; |
| 88 | |
| 89 | class X86_64ATTAsmParser : public X86ATTAsmParser { |
| 90 | public: |
Chris Lattner | 9a82e70 | 2010-10-30 04:57:14 +0000 | [diff] [blame] | 91 | X86_64ATTAsmParser(const Target &T, MCAsmParser &Parser, TargetMachine &TM) |
| 92 | : X86ATTAsmParser(T, Parser, TM) { |
Daniel Dunbar | f98bc63 | 2010-03-18 20:06:02 +0000 | [diff] [blame] | 93 | Is64Bit = true; |
| 94 | } |
| 95 | }; |
| 96 | |
Chris Lattner | 37dfdec | 2009-07-29 06:33:53 +0000 | [diff] [blame] | 97 | } // end anonymous namespace |
| 98 | |
Sean Callanan | e9b466d | 2010-01-23 00:40:33 +0000 | [diff] [blame] | 99 | /// @name Auto-generated Match Functions |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 100 | /// { |
Sean Callanan | e9b466d | 2010-01-23 00:40:33 +0000 | [diff] [blame] | 101 | |
Chris Lattner | b8d6e98 | 2010-02-09 00:34:28 +0000 | [diff] [blame] | 102 | static unsigned MatchRegisterName(StringRef Name); |
Sean Callanan | e9b466d | 2010-01-23 00:40:33 +0000 | [diff] [blame] | 103 | |
| 104 | /// } |
Chris Lattner | 37dfdec | 2009-07-29 06:33:53 +0000 | [diff] [blame] | 105 | |
| 106 | namespace { |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 107 | |
| 108 | /// X86Operand - Instances of this class represent a parsed X86 machine |
| 109 | /// instruction. |
Chris Lattner | 45220a8 | 2010-01-14 21:20:55 +0000 | [diff] [blame] | 110 | struct X86Operand : public MCParsedAsmOperand { |
Chris Lattner | 1f19f0f | 2010-01-15 19:06:59 +0000 | [diff] [blame] | 111 | enum KindTy { |
Daniel Dunbar | 20927f2 | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 112 | Token, |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 113 | Register, |
| 114 | Immediate, |
| 115 | Memory |
| 116 | } Kind; |
| 117 | |
Chris Lattner | 29ef9a2 | 2010-01-15 18:51:29 +0000 | [diff] [blame] | 118 | SMLoc StartLoc, EndLoc; |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 119 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 120 | union { |
| 121 | struct { |
Daniel Dunbar | 20927f2 | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 122 | const char *Data; |
| 123 | unsigned Length; |
| 124 | } Tok; |
| 125 | |
| 126 | struct { |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 127 | unsigned RegNo; |
| 128 | } Reg; |
| 129 | |
| 130 | struct { |
Daniel Dunbar | 8c2eebe | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 131 | const MCExpr *Val; |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 132 | } Imm; |
| 133 | |
| 134 | struct { |
| 135 | unsigned SegReg; |
Daniel Dunbar | 8c2eebe | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 136 | const MCExpr *Disp; |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 137 | unsigned BaseReg; |
| 138 | unsigned IndexReg; |
| 139 | unsigned Scale; |
| 140 | } Mem; |
Daniel Dunbar | dbd692a | 2009-07-20 20:01:54 +0000 | [diff] [blame] | 141 | }; |
Daniel Dunbar | 092a9dd | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 142 | |
Chris Lattner | 0a3c5a5 | 2010-01-15 19:33:43 +0000 | [diff] [blame] | 143 | X86Operand(KindTy K, SMLoc Start, SMLoc End) |
Chris Lattner | 1f19f0f | 2010-01-15 19:06:59 +0000 | [diff] [blame] | 144 | : Kind(K), StartLoc(Start), EndLoc(End) {} |
Daniel Dunbar | c918d60 | 2010-05-04 16:12:42 +0000 | [diff] [blame] | 145 | |
Chris Lattner | 1f19f0f | 2010-01-15 19:06:59 +0000 | [diff] [blame] | 146 | /// getStartLoc - Get the location of the first token of this operand. |
| 147 | SMLoc getStartLoc() const { return StartLoc; } |
| 148 | /// getEndLoc - Get the location of the last token of this operand. |
| 149 | SMLoc getEndLoc() const { return EndLoc; } |
| 150 | |
Daniel Dunbar | b3cb696 | 2010-08-11 06:37:04 +0000 | [diff] [blame] | 151 | virtual void dump(raw_ostream &OS) const {} |
| 152 | |
Daniel Dunbar | 20927f2 | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 153 | StringRef getToken() const { |
| 154 | assert(Kind == Token && "Invalid access!"); |
| 155 | return StringRef(Tok.Data, Tok.Length); |
| 156 | } |
Daniel Dunbar | c918d60 | 2010-05-04 16:12:42 +0000 | [diff] [blame] | 157 | void setTokenValue(StringRef Value) { |
| 158 | assert(Kind == Token && "Invalid access!"); |
| 159 | Tok.Data = Value.data(); |
| 160 | Tok.Length = Value.size(); |
| 161 | } |
Daniel Dunbar | 20927f2 | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 162 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 163 | unsigned getReg() const { |
| 164 | assert(Kind == Register && "Invalid access!"); |
| 165 | return Reg.RegNo; |
| 166 | } |
Daniel Dunbar | a2edbab | 2009-07-28 20:47:52 +0000 | [diff] [blame] | 167 | |
Daniel Dunbar | 8c2eebe | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 168 | const MCExpr *getImm() const { |
Daniel Dunbar | 022e2a8 | 2009-07-31 20:53:16 +0000 | [diff] [blame] | 169 | assert(Kind == Immediate && "Invalid access!"); |
| 170 | return Imm.Val; |
| 171 | } |
| 172 | |
Daniel Dunbar | 8c2eebe | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 173 | const MCExpr *getMemDisp() const { |
Daniel Dunbar | 022e2a8 | 2009-07-31 20:53:16 +0000 | [diff] [blame] | 174 | assert(Kind == Memory && "Invalid access!"); |
| 175 | return Mem.Disp; |
| 176 | } |
| 177 | unsigned getMemSegReg() const { |
| 178 | assert(Kind == Memory && "Invalid access!"); |
| 179 | return Mem.SegReg; |
| 180 | } |
| 181 | unsigned getMemBaseReg() const { |
| 182 | assert(Kind == Memory && "Invalid access!"); |
| 183 | return Mem.BaseReg; |
| 184 | } |
| 185 | unsigned getMemIndexReg() const { |
| 186 | assert(Kind == Memory && "Invalid access!"); |
| 187 | return Mem.IndexReg; |
| 188 | } |
| 189 | unsigned getMemScale() const { |
| 190 | assert(Kind == Memory && "Invalid access!"); |
| 191 | return Mem.Scale; |
| 192 | } |
| 193 | |
Daniel Dunbar | a3741fa | 2009-08-08 07:50:56 +0000 | [diff] [blame] | 194 | bool isToken() const {return Kind == Token; } |
Daniel Dunbar | 20927f2 | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 195 | |
| 196 | bool isImm() const { return Kind == Immediate; } |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 197 | |
Daniel Dunbar | 62e4c67 | 2010-05-22 21:02:33 +0000 | [diff] [blame] | 198 | bool isImmSExti16i8() const { |
Daniel Dunbar | 5fe6338 | 2009-08-09 07:20:21 +0000 | [diff] [blame] | 199 | if (!isImm()) |
| 200 | return false; |
| 201 | |
Daniel Dunbar | 62e4c67 | 2010-05-22 21:02:33 +0000 | [diff] [blame] | 202 | // If this isn't a constant expr, just assume it fits and let relaxation |
| 203 | // handle it. |
| 204 | const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); |
| 205 | if (!CE) |
| 206 | return true; |
Daniel Dunbar | 5fe6338 | 2009-08-09 07:20:21 +0000 | [diff] [blame] | 207 | |
Daniel Dunbar | 62e4c67 | 2010-05-22 21:02:33 +0000 | [diff] [blame] | 208 | // Otherwise, check the value is in a range that makes sense for this |
| 209 | // extension. |
| 210 | uint64_t Value = CE->getValue(); |
| 211 | return (( Value <= 0x000000000000007FULL)|| |
| 212 | (0x000000000000FF80ULL <= Value && Value <= 0x000000000000FFFFULL)|| |
| 213 | (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL)); |
Daniel Dunbar | 5fe6338 | 2009-08-09 07:20:21 +0000 | [diff] [blame] | 214 | } |
Daniel Dunbar | 62e4c67 | 2010-05-22 21:02:33 +0000 | [diff] [blame] | 215 | bool isImmSExti32i8() const { |
Daniel Dunbar | 1fe591d | 2010-05-20 20:20:39 +0000 | [diff] [blame] | 216 | if (!isImm()) |
| 217 | return false; |
| 218 | |
Daniel Dunbar | 62e4c67 | 2010-05-22 21:02:33 +0000 | [diff] [blame] | 219 | // If this isn't a constant expr, just assume it fits and let relaxation |
| 220 | // handle it. |
| 221 | const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); |
| 222 | if (!CE) |
| 223 | return true; |
Daniel Dunbar | 1fe591d | 2010-05-20 20:20:39 +0000 | [diff] [blame] | 224 | |
Daniel Dunbar | 62e4c67 | 2010-05-22 21:02:33 +0000 | [diff] [blame] | 225 | // Otherwise, check the value is in a range that makes sense for this |
| 226 | // extension. |
| 227 | uint64_t Value = CE->getValue(); |
| 228 | return (( Value <= 0x000000000000007FULL)|| |
| 229 | (0x00000000FFFFFF80ULL <= Value && Value <= 0x00000000FFFFFFFFULL)|| |
| 230 | (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL)); |
| 231 | } |
| 232 | bool isImmSExti64i8() const { |
| 233 | if (!isImm()) |
| 234 | return false; |
| 235 | |
| 236 | // If this isn't a constant expr, just assume it fits and let relaxation |
| 237 | // handle it. |
| 238 | const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); |
| 239 | if (!CE) |
| 240 | return true; |
| 241 | |
| 242 | // Otherwise, check the value is in a range that makes sense for this |
| 243 | // extension. |
| 244 | uint64_t Value = CE->getValue(); |
| 245 | return (( Value <= 0x000000000000007FULL)|| |
| 246 | (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL)); |
| 247 | } |
| 248 | bool isImmSExti64i32() const { |
| 249 | if (!isImm()) |
| 250 | return false; |
| 251 | |
| 252 | // If this isn't a constant expr, just assume it fits and let relaxation |
| 253 | // handle it. |
| 254 | const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); |
| 255 | if (!CE) |
| 256 | return true; |
| 257 | |
| 258 | // Otherwise, check the value is in a range that makes sense for this |
| 259 | // extension. |
| 260 | uint64_t Value = CE->getValue(); |
| 261 | return (( Value <= 0x000000007FFFFFFFULL)|| |
| 262 | (0xFFFFFFFF80000000ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL)); |
Daniel Dunbar | 1fe591d | 2010-05-20 20:20:39 +0000 | [diff] [blame] | 263 | } |
| 264 | |
Daniel Dunbar | 20927f2 | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 265 | bool isMem() const { return Kind == Memory; } |
| 266 | |
Daniel Dunbar | b834f5d | 2010-01-30 01:02:48 +0000 | [diff] [blame] | 267 | bool isAbsMem() const { |
| 268 | return Kind == Memory && !getMemSegReg() && !getMemBaseReg() && |
Daniel Dunbar | 7b9147a | 2010-02-02 21:44:16 +0000 | [diff] [blame] | 269 | !getMemIndexReg() && getMemScale() == 1; |
Daniel Dunbar | b834f5d | 2010-01-30 01:02:48 +0000 | [diff] [blame] | 270 | } |
| 271 | |
Daniel Dunbar | 20927f2 | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 272 | bool isReg() const { return Kind == Register; } |
| 273 | |
Daniel Dunbar | 9c60f53 | 2010-02-13 00:17:21 +0000 | [diff] [blame] | 274 | void addExpr(MCInst &Inst, const MCExpr *Expr) const { |
| 275 | // Add as immediates when possible. |
| 276 | if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr)) |
| 277 | Inst.addOperand(MCOperand::CreateImm(CE->getValue())); |
| 278 | else |
| 279 | Inst.addOperand(MCOperand::CreateExpr(Expr)); |
| 280 | } |
| 281 | |
Daniel Dunbar | 5c468e3 | 2009-08-10 21:00:45 +0000 | [diff] [blame] | 282 | void addRegOperands(MCInst &Inst, unsigned N) const { |
Daniel Dunbar | 20927f2 | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 283 | assert(N == 1 && "Invalid number of operands!"); |
| 284 | Inst.addOperand(MCOperand::CreateReg(getReg())); |
| 285 | } |
| 286 | |
Daniel Dunbar | 5c468e3 | 2009-08-10 21:00:45 +0000 | [diff] [blame] | 287 | void addImmOperands(MCInst &Inst, unsigned N) const { |
Daniel Dunbar | 20927f2 | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 288 | assert(N == 1 && "Invalid number of operands!"); |
Daniel Dunbar | 9c60f53 | 2010-02-13 00:17:21 +0000 | [diff] [blame] | 289 | addExpr(Inst, getImm()); |
Daniel Dunbar | 20927f2 | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 290 | } |
| 291 | |
Daniel Dunbar | 5c468e3 | 2009-08-10 21:00:45 +0000 | [diff] [blame] | 292 | void addMemOperands(MCInst &Inst, unsigned N) const { |
Daniel Dunbar | ec2b1f1 | 2010-01-30 00:24:00 +0000 | [diff] [blame] | 293 | assert((N == 5) && "Invalid number of operands!"); |
Daniel Dunbar | 20927f2 | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 294 | Inst.addOperand(MCOperand::CreateReg(getMemBaseReg())); |
| 295 | Inst.addOperand(MCOperand::CreateImm(getMemScale())); |
| 296 | Inst.addOperand(MCOperand::CreateReg(getMemIndexReg())); |
Daniel Dunbar | 9c60f53 | 2010-02-13 00:17:21 +0000 | [diff] [blame] | 297 | addExpr(Inst, getMemDisp()); |
Daniel Dunbar | ec2b1f1 | 2010-01-30 00:24:00 +0000 | [diff] [blame] | 298 | Inst.addOperand(MCOperand::CreateReg(getMemSegReg())); |
| 299 | } |
Daniel Dunbar | 20927f2 | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 300 | |
Daniel Dunbar | b834f5d | 2010-01-30 01:02:48 +0000 | [diff] [blame] | 301 | void addAbsMemOperands(MCInst &Inst, unsigned N) const { |
| 302 | assert((N == 1) && "Invalid number of operands!"); |
| 303 | Inst.addOperand(MCOperand::CreateExpr(getMemDisp())); |
| 304 | } |
| 305 | |
Chris Lattner | b4307b3 | 2010-01-15 19:28:38 +0000 | [diff] [blame] | 306 | static X86Operand *CreateToken(StringRef Str, SMLoc Loc) { |
| 307 | X86Operand *Res = new X86Operand(Token, Loc, Loc); |
Chris Lattner | 29ef9a2 | 2010-01-15 18:51:29 +0000 | [diff] [blame] | 308 | Res->Tok.Data = Str.data(); |
| 309 | Res->Tok.Length = Str.size(); |
Daniel Dunbar | 20927f2 | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 310 | return Res; |
| 311 | } |
| 312 | |
Chris Lattner | 29ef9a2 | 2010-01-15 18:51:29 +0000 | [diff] [blame] | 313 | static X86Operand *CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc) { |
Chris Lattner | 1f19f0f | 2010-01-15 19:06:59 +0000 | [diff] [blame] | 314 | X86Operand *Res = new X86Operand(Register, StartLoc, EndLoc); |
Chris Lattner | 29ef9a2 | 2010-01-15 18:51:29 +0000 | [diff] [blame] | 315 | Res->Reg.RegNo = RegNo; |
Chris Lattner | 29ef9a2 | 2010-01-15 18:51:29 +0000 | [diff] [blame] | 316 | return Res; |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 317 | } |
Daniel Dunbar | 20927f2 | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 318 | |
Chris Lattner | b4307b3 | 2010-01-15 19:28:38 +0000 | [diff] [blame] | 319 | static X86Operand *CreateImm(const MCExpr *Val, SMLoc StartLoc, SMLoc EndLoc){ |
| 320 | X86Operand *Res = new X86Operand(Immediate, StartLoc, EndLoc); |
Chris Lattner | 29ef9a2 | 2010-01-15 18:51:29 +0000 | [diff] [blame] | 321 | Res->Imm.Val = Val; |
| 322 | return Res; |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 323 | } |
Daniel Dunbar | 20927f2 | 2009-08-07 08:26:05 +0000 | [diff] [blame] | 324 | |
Daniel Dunbar | b834f5d | 2010-01-30 01:02:48 +0000 | [diff] [blame] | 325 | /// Create an absolute memory operand. |
| 326 | static X86Operand *CreateMem(const MCExpr *Disp, SMLoc StartLoc, |
| 327 | SMLoc EndLoc) { |
| 328 | X86Operand *Res = new X86Operand(Memory, StartLoc, EndLoc); |
| 329 | Res->Mem.SegReg = 0; |
| 330 | Res->Mem.Disp = Disp; |
| 331 | Res->Mem.BaseReg = 0; |
| 332 | Res->Mem.IndexReg = 0; |
Daniel Dunbar | 7b9147a | 2010-02-02 21:44:16 +0000 | [diff] [blame] | 333 | Res->Mem.Scale = 1; |
Daniel Dunbar | b834f5d | 2010-01-30 01:02:48 +0000 | [diff] [blame] | 334 | return Res; |
| 335 | } |
| 336 | |
| 337 | /// Create a generalized memory operand. |
Chris Lattner | 309264d | 2010-01-15 18:44:13 +0000 | [diff] [blame] | 338 | static X86Operand *CreateMem(unsigned SegReg, const MCExpr *Disp, |
| 339 | unsigned BaseReg, unsigned IndexReg, |
Chris Lattner | 0a3c5a5 | 2010-01-15 19:33:43 +0000 | [diff] [blame] | 340 | unsigned Scale, SMLoc StartLoc, SMLoc EndLoc) { |
Daniel Dunbar | b834f5d | 2010-01-30 01:02:48 +0000 | [diff] [blame] | 341 | // We should never just have a displacement, that should be parsed as an |
| 342 | // absolute memory operand. |
Daniel Dunbar | c09e411 | 2009-07-31 22:22:54 +0000 | [diff] [blame] | 343 | assert((SegReg || BaseReg || IndexReg) && "Invalid memory operand!"); |
| 344 | |
Daniel Dunbar | 022e2a8 | 2009-07-31 20:53:16 +0000 | [diff] [blame] | 345 | // The scale should always be one of {1,2,4,8}. |
| 346 | assert(((Scale == 1 || Scale == 2 || Scale == 4 || Scale == 8)) && |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 347 | "Invalid scale!"); |
Chris Lattner | 0a3c5a5 | 2010-01-15 19:33:43 +0000 | [diff] [blame] | 348 | X86Operand *Res = new X86Operand(Memory, StartLoc, EndLoc); |
Chris Lattner | 29ef9a2 | 2010-01-15 18:51:29 +0000 | [diff] [blame] | 349 | Res->Mem.SegReg = SegReg; |
| 350 | Res->Mem.Disp = Disp; |
| 351 | Res->Mem.BaseReg = BaseReg; |
| 352 | Res->Mem.IndexReg = IndexReg; |
| 353 | Res->Mem.Scale = Scale; |
| 354 | return Res; |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 355 | } |
| 356 | }; |
Daniel Dunbar | a3af370 | 2009-07-20 18:55:04 +0000 | [diff] [blame] | 357 | |
Chris Lattner | 37dfdec | 2009-07-29 06:33:53 +0000 | [diff] [blame] | 358 | } // end anonymous namespace. |
Daniel Dunbar | a2edbab | 2009-07-28 20:47:52 +0000 | [diff] [blame] | 359 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 360 | |
Chris Lattner | 29ef9a2 | 2010-01-15 18:51:29 +0000 | [diff] [blame] | 361 | bool X86ATTAsmParser::ParseRegister(unsigned &RegNo, |
| 362 | SMLoc &StartLoc, SMLoc &EndLoc) { |
Chris Lattner | 2307574 | 2010-01-15 18:27:19 +0000 | [diff] [blame] | 363 | RegNo = 0; |
Sean Callanan | 18b8323 | 2010-01-19 21:44:56 +0000 | [diff] [blame] | 364 | const AsmToken &TokPercent = Parser.getTok(); |
Kevin Enderby | 7b4608d | 2009-09-03 17:15:07 +0000 | [diff] [blame] | 365 | assert(TokPercent.is(AsmToken::Percent) && "Invalid token kind!"); |
Chris Lattner | 29ef9a2 | 2010-01-15 18:51:29 +0000 | [diff] [blame] | 366 | StartLoc = TokPercent.getLoc(); |
Sean Callanan | b9a25b7 | 2010-01-19 20:27:46 +0000 | [diff] [blame] | 367 | Parser.Lex(); // Eat percent token. |
Kevin Enderby | 7b4608d | 2009-09-03 17:15:07 +0000 | [diff] [blame] | 368 | |
Sean Callanan | 18b8323 | 2010-01-19 21:44:56 +0000 | [diff] [blame] | 369 | const AsmToken &Tok = Parser.getTok(); |
Kevin Enderby | 0d6cd00 | 2009-09-16 17:18:29 +0000 | [diff] [blame] | 370 | if (Tok.isNot(AsmToken::Identifier)) |
| 371 | return Error(Tok.getLoc(), "invalid register name"); |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 372 | |
Daniel Dunbar | 0e2771f | 2009-07-29 00:02:19 +0000 | [diff] [blame] | 373 | // FIXME: Validate register for the current architecture; we have to do |
| 374 | // validation later, so maybe there is no need for this here. |
Kevin Enderby | 7b4608d | 2009-09-03 17:15:07 +0000 | [diff] [blame] | 375 | RegNo = MatchRegisterName(Tok.getString()); |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 376 | |
Chris Lattner | 33d60d5 | 2010-09-22 04:11:10 +0000 | [diff] [blame] | 377 | // If the match failed, try the register name as lowercase. |
| 378 | if (RegNo == 0) |
| 379 | RegNo = MatchRegisterName(LowercaseString(Tok.getString())); |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 380 | |
Bruno Cardoso Lopes | 3c8e1be | 2010-07-24 00:06:39 +0000 | [diff] [blame] | 381 | // FIXME: This should be done using Requires<In32BitMode> and |
| 382 | // Requires<In64BitMode> so "eiz" usage in 64-bit instructions |
| 383 | // can be also checked. |
| 384 | if (RegNo == X86::RIZ && !Is64Bit) |
| 385 | return Error(Tok.getLoc(), "riz register in 64-bit mode only"); |
| 386 | |
Chris Lattner | 33d60d5 | 2010-09-22 04:11:10 +0000 | [diff] [blame] | 387 | // Parse "%st" as "%st(0)" and "%st(1)", which is multiple tokens. |
| 388 | if (RegNo == 0 && (Tok.getString() == "st" || Tok.getString() == "ST")) { |
Chris Lattner | e16b0fc | 2010-02-09 00:49:22 +0000 | [diff] [blame] | 389 | RegNo = X86::ST0; |
| 390 | EndLoc = Tok.getLoc(); |
| 391 | Parser.Lex(); // Eat 'st' |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 392 | |
Chris Lattner | e16b0fc | 2010-02-09 00:49:22 +0000 | [diff] [blame] | 393 | // Check to see if we have '(4)' after %st. |
| 394 | if (getLexer().isNot(AsmToken::LParen)) |
| 395 | return false; |
| 396 | // Lex the paren. |
| 397 | getParser().Lex(); |
| 398 | |
| 399 | const AsmToken &IntTok = Parser.getTok(); |
| 400 | if (IntTok.isNot(AsmToken::Integer)) |
| 401 | return Error(IntTok.getLoc(), "expected stack index"); |
| 402 | switch (IntTok.getIntVal()) { |
| 403 | case 0: RegNo = X86::ST0; break; |
| 404 | case 1: RegNo = X86::ST1; break; |
| 405 | case 2: RegNo = X86::ST2; break; |
| 406 | case 3: RegNo = X86::ST3; break; |
| 407 | case 4: RegNo = X86::ST4; break; |
| 408 | case 5: RegNo = X86::ST5; break; |
| 409 | case 6: RegNo = X86::ST6; break; |
| 410 | case 7: RegNo = X86::ST7; break; |
| 411 | default: return Error(IntTok.getLoc(), "invalid stack index"); |
| 412 | } |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 413 | |
Chris Lattner | e16b0fc | 2010-02-09 00:49:22 +0000 | [diff] [blame] | 414 | if (getParser().Lex().isNot(AsmToken::RParen)) |
| 415 | return Error(Parser.getTok().getLoc(), "expected ')'"); |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 416 | |
Chris Lattner | e16b0fc | 2010-02-09 00:49:22 +0000 | [diff] [blame] | 417 | EndLoc = Tok.getLoc(); |
| 418 | Parser.Lex(); // Eat ')' |
| 419 | return false; |
| 420 | } |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 421 | |
Chris Lattner | 645b209 | 2010-06-24 07:29:18 +0000 | [diff] [blame] | 422 | // If this is "db[0-7]", match it as an alias |
| 423 | // for dr[0-7]. |
| 424 | if (RegNo == 0 && Tok.getString().size() == 3 && |
| 425 | Tok.getString().startswith("db")) { |
| 426 | switch (Tok.getString()[2]) { |
| 427 | case '0': RegNo = X86::DR0; break; |
| 428 | case '1': RegNo = X86::DR1; break; |
| 429 | case '2': RegNo = X86::DR2; break; |
| 430 | case '3': RegNo = X86::DR3; break; |
| 431 | case '4': RegNo = X86::DR4; break; |
| 432 | case '5': RegNo = X86::DR5; break; |
| 433 | case '6': RegNo = X86::DR6; break; |
| 434 | case '7': RegNo = X86::DR7; break; |
| 435 | } |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 436 | |
Chris Lattner | 645b209 | 2010-06-24 07:29:18 +0000 | [diff] [blame] | 437 | if (RegNo != 0) { |
| 438 | EndLoc = Tok.getLoc(); |
| 439 | Parser.Lex(); // Eat it. |
| 440 | return false; |
| 441 | } |
| 442 | } |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 443 | |
Daniel Dunbar | 245f058 | 2009-08-08 21:22:41 +0000 | [diff] [blame] | 444 | if (RegNo == 0) |
Daniel Dunbar | 0e2771f | 2009-07-29 00:02:19 +0000 | [diff] [blame] | 445 | return Error(Tok.getLoc(), "invalid register name"); |
| 446 | |
Chris Lattner | 29ef9a2 | 2010-01-15 18:51:29 +0000 | [diff] [blame] | 447 | EndLoc = Tok.getLoc(); |
Sean Callanan | b9a25b7 | 2010-01-19 20:27:46 +0000 | [diff] [blame] | 448 | Parser.Lex(); // Eat identifier token. |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 449 | return false; |
Daniel Dunbar | 092a9dd | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 450 | } |
| 451 | |
Chris Lattner | 309264d | 2010-01-15 18:44:13 +0000 | [diff] [blame] | 452 | X86Operand *X86ATTAsmParser::ParseOperand() { |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 453 | switch (getLexer().getKind()) { |
| 454 | default: |
Chris Lattner | eef6d78 | 2010-04-17 18:56:34 +0000 | [diff] [blame] | 455 | // Parse a memory operand with no segment register. |
| 456 | return ParseMemOperand(0, Parser.getTok().getLoc()); |
Chris Lattner | 2307574 | 2010-01-15 18:27:19 +0000 | [diff] [blame] | 457 | case AsmToken::Percent: { |
Chris Lattner | eef6d78 | 2010-04-17 18:56:34 +0000 | [diff] [blame] | 458 | // Read the register. |
Chris Lattner | 2307574 | 2010-01-15 18:27:19 +0000 | [diff] [blame] | 459 | unsigned RegNo; |
Chris Lattner | 29ef9a2 | 2010-01-15 18:51:29 +0000 | [diff] [blame] | 460 | SMLoc Start, End; |
| 461 | if (ParseRegister(RegNo, Start, End)) return 0; |
Bruno Cardoso Lopes | 3c8e1be | 2010-07-24 00:06:39 +0000 | [diff] [blame] | 462 | if (RegNo == X86::EIZ || RegNo == X86::RIZ) { |
| 463 | Error(Start, "eiz and riz can only be used as index registers"); |
| 464 | return 0; |
| 465 | } |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 466 | |
Chris Lattner | eef6d78 | 2010-04-17 18:56:34 +0000 | [diff] [blame] | 467 | // If this is a segment register followed by a ':', then this is the start |
| 468 | // of a memory reference, otherwise this is a normal register reference. |
| 469 | if (getLexer().isNot(AsmToken::Colon)) |
| 470 | return X86Operand::CreateReg(RegNo, Start, End); |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 471 | |
| 472 | |
Chris Lattner | eef6d78 | 2010-04-17 18:56:34 +0000 | [diff] [blame] | 473 | getParser().Lex(); // Eat the colon. |
| 474 | return ParseMemOperand(RegNo, Start); |
Chris Lattner | 2307574 | 2010-01-15 18:27:19 +0000 | [diff] [blame] | 475 | } |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 476 | case AsmToken::Dollar: { |
| 477 | // $42 -> immediate. |
Sean Callanan | 18b8323 | 2010-01-19 21:44:56 +0000 | [diff] [blame] | 478 | SMLoc Start = Parser.getTok().getLoc(), End; |
Sean Callanan | b9a25b7 | 2010-01-19 20:27:46 +0000 | [diff] [blame] | 479 | Parser.Lex(); |
Daniel Dunbar | 8c2eebe | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 480 | const MCExpr *Val; |
Chris Lattner | 54482b4 | 2010-01-15 19:39:23 +0000 | [diff] [blame] | 481 | if (getParser().ParseExpression(Val, End)) |
Chris Lattner | 309264d | 2010-01-15 18:44:13 +0000 | [diff] [blame] | 482 | return 0; |
Chris Lattner | b4307b3 | 2010-01-15 19:28:38 +0000 | [diff] [blame] | 483 | return X86Operand::CreateImm(Val, Start, End); |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 484 | } |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 485 | } |
Daniel Dunbar | dbd692a | 2009-07-20 20:01:54 +0000 | [diff] [blame] | 486 | } |
| 487 | |
Chris Lattner | eef6d78 | 2010-04-17 18:56:34 +0000 | [diff] [blame] | 488 | /// ParseMemOperand: segment: disp(basereg, indexreg, scale). The '%ds:' prefix |
| 489 | /// has already been parsed if present. |
| 490 | X86Operand *X86ATTAsmParser::ParseMemOperand(unsigned SegReg, SMLoc MemStart) { |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 491 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 492 | // We have to disambiguate a parenthesized expression "(4+5)" from the start |
| 493 | // of a memory operand with a missing displacement "(%ebx)" or "(,%eax)". The |
Chris Lattner | 75f265f | 2010-01-24 01:07:33 +0000 | [diff] [blame] | 494 | // only way to do this without lookahead is to eat the '(' and see what is |
| 495 | // after it. |
Daniel Dunbar | 8c2eebe | 2009-08-31 08:08:38 +0000 | [diff] [blame] | 496 | const MCExpr *Disp = MCConstantExpr::Create(0, getParser().getContext()); |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 497 | if (getLexer().isNot(AsmToken::LParen)) { |
Chris Lattner | 54482b4 | 2010-01-15 19:39:23 +0000 | [diff] [blame] | 498 | SMLoc ExprEnd; |
| 499 | if (getParser().ParseExpression(Disp, ExprEnd)) return 0; |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 500 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 501 | // After parsing the base expression we could either have a parenthesized |
| 502 | // memory address or not. If not, return now. If so, eat the (. |
| 503 | if (getLexer().isNot(AsmToken::LParen)) { |
Daniel Dunbar | c09e411 | 2009-07-31 22:22:54 +0000 | [diff] [blame] | 504 | // Unless we have a segment register, treat this as an immediate. |
Chris Lattner | 309264d | 2010-01-15 18:44:13 +0000 | [diff] [blame] | 505 | if (SegReg == 0) |
Daniel Dunbar | b834f5d | 2010-01-30 01:02:48 +0000 | [diff] [blame] | 506 | return X86Operand::CreateMem(Disp, MemStart, ExprEnd); |
Chris Lattner | 0a3c5a5 | 2010-01-15 19:33:43 +0000 | [diff] [blame] | 507 | return X86Operand::CreateMem(SegReg, Disp, 0, 0, 1, MemStart, ExprEnd); |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 508 | } |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 509 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 510 | // Eat the '('. |
Sean Callanan | b9a25b7 | 2010-01-19 20:27:46 +0000 | [diff] [blame] | 511 | Parser.Lex(); |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 512 | } else { |
| 513 | // Okay, we have a '('. We don't know if this is an expression or not, but |
| 514 | // so we have to eat the ( to see beyond it. |
Sean Callanan | 18b8323 | 2010-01-19 21:44:56 +0000 | [diff] [blame] | 515 | SMLoc LParenLoc = Parser.getTok().getLoc(); |
Sean Callanan | b9a25b7 | 2010-01-19 20:27:46 +0000 | [diff] [blame] | 516 | Parser.Lex(); // Eat the '('. |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 517 | |
Kevin Enderby | 7b4608d | 2009-09-03 17:15:07 +0000 | [diff] [blame] | 518 | if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) { |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 519 | // Nothing to do here, fall into the code below with the '(' part of the |
| 520 | // memory operand consumed. |
| 521 | } else { |
Chris Lattner | b4307b3 | 2010-01-15 19:28:38 +0000 | [diff] [blame] | 522 | SMLoc ExprEnd; |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 523 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 524 | // It must be an parenthesized expression, parse it now. |
Chris Lattner | b4307b3 | 2010-01-15 19:28:38 +0000 | [diff] [blame] | 525 | if (getParser().ParseParenExpression(Disp, ExprEnd)) |
Chris Lattner | 309264d | 2010-01-15 18:44:13 +0000 | [diff] [blame] | 526 | return 0; |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 527 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 528 | // After parsing the base expression we could either have a parenthesized |
| 529 | // memory address or not. If not, return now. If so, eat the (. |
| 530 | if (getLexer().isNot(AsmToken::LParen)) { |
Daniel Dunbar | c09e411 | 2009-07-31 22:22:54 +0000 | [diff] [blame] | 531 | // Unless we have a segment register, treat this as an immediate. |
Chris Lattner | 309264d | 2010-01-15 18:44:13 +0000 | [diff] [blame] | 532 | if (SegReg == 0) |
Daniel Dunbar | b834f5d | 2010-01-30 01:02:48 +0000 | [diff] [blame] | 533 | return X86Operand::CreateMem(Disp, LParenLoc, ExprEnd); |
Chris Lattner | 0a3c5a5 | 2010-01-15 19:33:43 +0000 | [diff] [blame] | 534 | return X86Operand::CreateMem(SegReg, Disp, 0, 0, 1, MemStart, ExprEnd); |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 535 | } |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 536 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 537 | // Eat the '('. |
Sean Callanan | b9a25b7 | 2010-01-19 20:27:46 +0000 | [diff] [blame] | 538 | Parser.Lex(); |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 539 | } |
| 540 | } |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 541 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 542 | // If we reached here, then we just ate the ( of the memory operand. Process |
| 543 | // the rest of the memory operand. |
Daniel Dunbar | 022e2a8 | 2009-07-31 20:53:16 +0000 | [diff] [blame] | 544 | unsigned BaseReg = 0, IndexReg = 0, Scale = 1; |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 545 | |
Chris Lattner | 29ef9a2 | 2010-01-15 18:51:29 +0000 | [diff] [blame] | 546 | if (getLexer().is(AsmToken::Percent)) { |
| 547 | SMLoc L; |
| 548 | if (ParseRegister(BaseReg, L, L)) return 0; |
Bruno Cardoso Lopes | 3c8e1be | 2010-07-24 00:06:39 +0000 | [diff] [blame] | 549 | if (BaseReg == X86::EIZ || BaseReg == X86::RIZ) { |
| 550 | Error(L, "eiz and riz can only be used as index registers"); |
| 551 | return 0; |
| 552 | } |
Chris Lattner | 29ef9a2 | 2010-01-15 18:51:29 +0000 | [diff] [blame] | 553 | } |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 554 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 555 | if (getLexer().is(AsmToken::Comma)) { |
Sean Callanan | b9a25b7 | 2010-01-19 20:27:46 +0000 | [diff] [blame] | 556 | Parser.Lex(); // Eat the comma. |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 557 | |
| 558 | // Following the comma we should have either an index register, or a scale |
| 559 | // value. We don't support the later form, but we want to parse it |
| 560 | // correctly. |
| 561 | // |
| 562 | // Not that even though it would be completely consistent to support syntax |
Bruno Cardoso Lopes | 3c8e1be | 2010-07-24 00:06:39 +0000 | [diff] [blame] | 563 | // like "1(%eax,,1)", the assembler doesn't. Use "eiz" or "riz" for this. |
Kevin Enderby | 7b4608d | 2009-09-03 17:15:07 +0000 | [diff] [blame] | 564 | if (getLexer().is(AsmToken::Percent)) { |
Chris Lattner | 29ef9a2 | 2010-01-15 18:51:29 +0000 | [diff] [blame] | 565 | SMLoc L; |
| 566 | if (ParseRegister(IndexReg, L, L)) return 0; |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 567 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 568 | if (getLexer().isNot(AsmToken::RParen)) { |
| 569 | // Parse the scale amount: |
| 570 | // ::= ',' [scale-expression] |
Chris Lattner | 309264d | 2010-01-15 18:44:13 +0000 | [diff] [blame] | 571 | if (getLexer().isNot(AsmToken::Comma)) { |
Sean Callanan | 18b8323 | 2010-01-19 21:44:56 +0000 | [diff] [blame] | 572 | Error(Parser.getTok().getLoc(), |
Chris Lattner | 309264d | 2010-01-15 18:44:13 +0000 | [diff] [blame] | 573 | "expected comma in scale expression"); |
| 574 | return 0; |
| 575 | } |
Sean Callanan | b9a25b7 | 2010-01-19 20:27:46 +0000 | [diff] [blame] | 576 | Parser.Lex(); // Eat the comma. |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 577 | |
| 578 | if (getLexer().isNot(AsmToken::RParen)) { |
Sean Callanan | 18b8323 | 2010-01-19 21:44:56 +0000 | [diff] [blame] | 579 | SMLoc Loc = Parser.getTok().getLoc(); |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 580 | |
| 581 | int64_t ScaleVal; |
| 582 | if (getParser().ParseAbsoluteExpression(ScaleVal)) |
Chris Lattner | 309264d | 2010-01-15 18:44:13 +0000 | [diff] [blame] | 583 | return 0; |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 584 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 585 | // Validate the scale amount. |
Chris Lattner | 309264d | 2010-01-15 18:44:13 +0000 | [diff] [blame] | 586 | if (ScaleVal != 1 && ScaleVal != 2 && ScaleVal != 4 && ScaleVal != 8){ |
| 587 | Error(Loc, "scale factor in address must be 1, 2, 4 or 8"); |
| 588 | return 0; |
| 589 | } |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 590 | Scale = (unsigned)ScaleVal; |
| 591 | } |
| 592 | } |
| 593 | } else if (getLexer().isNot(AsmToken::RParen)) { |
Daniel Dunbar | ee91025 | 2010-08-24 19:13:38 +0000 | [diff] [blame] | 594 | // A scale amount without an index is ignored. |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 595 | // index. |
Sean Callanan | 18b8323 | 2010-01-19 21:44:56 +0000 | [diff] [blame] | 596 | SMLoc Loc = Parser.getTok().getLoc(); |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 597 | |
| 598 | int64_t Value; |
| 599 | if (getParser().ParseAbsoluteExpression(Value)) |
Chris Lattner | 309264d | 2010-01-15 18:44:13 +0000 | [diff] [blame] | 600 | return 0; |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 601 | |
Daniel Dunbar | ee91025 | 2010-08-24 19:13:38 +0000 | [diff] [blame] | 602 | if (Value != 1) |
| 603 | Warning(Loc, "scale factor without index register is ignored"); |
| 604 | Scale = 1; |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 605 | } |
| 606 | } |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 607 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 608 | // Ok, we've eaten the memory operand, verify we have a ')' and eat it too. |
Chris Lattner | 309264d | 2010-01-15 18:44:13 +0000 | [diff] [blame] | 609 | if (getLexer().isNot(AsmToken::RParen)) { |
Sean Callanan | 18b8323 | 2010-01-19 21:44:56 +0000 | [diff] [blame] | 610 | Error(Parser.getTok().getLoc(), "unexpected token in memory operand"); |
Chris Lattner | 309264d | 2010-01-15 18:44:13 +0000 | [diff] [blame] | 611 | return 0; |
| 612 | } |
Sean Callanan | 18b8323 | 2010-01-19 21:44:56 +0000 | [diff] [blame] | 613 | SMLoc MemEnd = Parser.getTok().getLoc(); |
Sean Callanan | b9a25b7 | 2010-01-19 20:27:46 +0000 | [diff] [blame] | 614 | Parser.Lex(); // Eat the ')'. |
Bruno Cardoso Lopes | f64a7d4 | 2010-07-23 22:15:26 +0000 | [diff] [blame] | 615 | |
Chris Lattner | 0a3c5a5 | 2010-01-15 19:33:43 +0000 | [diff] [blame] | 616 | return X86Operand::CreateMem(SegReg, Disp, BaseReg, IndexReg, Scale, |
| 617 | MemStart, MemEnd); |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 618 | } |
| 619 | |
Chris Lattner | 9898671 | 2010-01-14 22:21:20 +0000 | [diff] [blame] | 620 | bool X86ATTAsmParser:: |
Benjamin Kramer | 38e5989 | 2010-07-14 22:38:02 +0000 | [diff] [blame] | 621 | ParseInstruction(StringRef Name, SMLoc NameLoc, |
Chris Lattner | 9898671 | 2010-01-14 22:21:20 +0000 | [diff] [blame] | 622 | SmallVectorImpl<MCParsedAsmOperand*> &Operands) { |
Chris Lattner | 693173f | 2010-10-30 19:23:13 +0000 | [diff] [blame^] | 623 | // FIXME: This is not correct at all. |
| 624 | if (Name == "movzx") Name = "movzb"; |
| 625 | |
| 626 | StringRef PatchedName = Name; |
Daniel Dunbar | 39e2dd7 | 2010-05-25 19:49:32 +0000 | [diff] [blame] | 627 | |
| 628 | // FIXME: Hack to recognize cmp<comparison code>{ss,sd,ps,pd}. |
| 629 | const MCExpr *ExtraImmOp = 0; |
Bruno Cardoso Lopes | 428256b | 2010-06-23 21:10:57 +0000 | [diff] [blame] | 630 | if ((PatchedName.startswith("cmp") || PatchedName.startswith("vcmp")) && |
Daniel Dunbar | 39e2dd7 | 2010-05-25 19:49:32 +0000 | [diff] [blame] | 631 | (PatchedName.endswith("ss") || PatchedName.endswith("sd") || |
| 632 | PatchedName.endswith("ps") || PatchedName.endswith("pd"))) { |
Bruno Cardoso Lopes | 428256b | 2010-06-23 21:10:57 +0000 | [diff] [blame] | 633 | bool IsVCMP = PatchedName.startswith("vcmp"); |
| 634 | unsigned SSECCIdx = IsVCMP ? 4 : 3; |
Daniel Dunbar | 39e2dd7 | 2010-05-25 19:49:32 +0000 | [diff] [blame] | 635 | unsigned SSEComparisonCode = StringSwitch<unsigned>( |
Bruno Cardoso Lopes | 428256b | 2010-06-23 21:10:57 +0000 | [diff] [blame] | 636 | PatchedName.slice(SSECCIdx, PatchedName.size() - 2)) |
Bruno Cardoso Lopes | cc69e13 | 2010-07-07 22:24:03 +0000 | [diff] [blame] | 637 | .Case("eq", 0) |
| 638 | .Case("lt", 1) |
| 639 | .Case("le", 2) |
| 640 | .Case("unord", 3) |
| 641 | .Case("neq", 4) |
| 642 | .Case("nlt", 5) |
| 643 | .Case("nle", 6) |
| 644 | .Case("ord", 7) |
| 645 | .Case("eq_uq", 8) |
| 646 | .Case("nge", 9) |
| 647 | .Case("ngt", 0x0A) |
| 648 | .Case("false", 0x0B) |
| 649 | .Case("neq_oq", 0x0C) |
| 650 | .Case("ge", 0x0D) |
| 651 | .Case("gt", 0x0E) |
| 652 | .Case("true", 0x0F) |
| 653 | .Case("eq_os", 0x10) |
| 654 | .Case("lt_oq", 0x11) |
| 655 | .Case("le_oq", 0x12) |
| 656 | .Case("unord_s", 0x13) |
| 657 | .Case("neq_us", 0x14) |
| 658 | .Case("nlt_uq", 0x15) |
| 659 | .Case("nle_uq", 0x16) |
| 660 | .Case("ord_s", 0x17) |
| 661 | .Case("eq_us", 0x18) |
| 662 | .Case("nge_uq", 0x19) |
| 663 | .Case("ngt_uq", 0x1A) |
| 664 | .Case("false_os", 0x1B) |
| 665 | .Case("neq_os", 0x1C) |
| 666 | .Case("ge_oq", 0x1D) |
| 667 | .Case("gt_oq", 0x1E) |
| 668 | .Case("true_us", 0x1F) |
Daniel Dunbar | 39e2dd7 | 2010-05-25 19:49:32 +0000 | [diff] [blame] | 669 | .Default(~0U); |
| 670 | if (SSEComparisonCode != ~0U) { |
| 671 | ExtraImmOp = MCConstantExpr::Create(SSEComparisonCode, |
| 672 | getParser().getContext()); |
| 673 | if (PatchedName.endswith("ss")) { |
Bruno Cardoso Lopes | 428256b | 2010-06-23 21:10:57 +0000 | [diff] [blame] | 674 | PatchedName = IsVCMP ? "vcmpss" : "cmpss"; |
Daniel Dunbar | 39e2dd7 | 2010-05-25 19:49:32 +0000 | [diff] [blame] | 675 | } else if (PatchedName.endswith("sd")) { |
Bruno Cardoso Lopes | 428256b | 2010-06-23 21:10:57 +0000 | [diff] [blame] | 676 | PatchedName = IsVCMP ? "vcmpsd" : "cmpsd"; |
Daniel Dunbar | 39e2dd7 | 2010-05-25 19:49:32 +0000 | [diff] [blame] | 677 | } else if (PatchedName.endswith("ps")) { |
Bruno Cardoso Lopes | 428256b | 2010-06-23 21:10:57 +0000 | [diff] [blame] | 678 | PatchedName = IsVCMP ? "vcmpps" : "cmpps"; |
Daniel Dunbar | 39e2dd7 | 2010-05-25 19:49:32 +0000 | [diff] [blame] | 679 | } else { |
| 680 | assert(PatchedName.endswith("pd") && "Unexpected mnemonic!"); |
Bruno Cardoso Lopes | 428256b | 2010-06-23 21:10:57 +0000 | [diff] [blame] | 681 | PatchedName = IsVCMP ? "vcmppd" : "cmppd"; |
Daniel Dunbar | 39e2dd7 | 2010-05-25 19:49:32 +0000 | [diff] [blame] | 682 | } |
| 683 | } |
| 684 | } |
Bruno Cardoso Lopes | f528d2b | 2010-07-23 18:41:12 +0000 | [diff] [blame] | 685 | |
| 686 | // FIXME: Hack to recognize vpclmul<src1_quadword, src2_quadword>dq |
| 687 | if (PatchedName.startswith("vpclmul")) { |
| 688 | unsigned CLMULQuadWordSelect = StringSwitch<unsigned>( |
| 689 | PatchedName.slice(7, PatchedName.size() - 2)) |
| 690 | .Case("lqlq", 0x00) // src1[63:0], src2[63:0] |
| 691 | .Case("hqlq", 0x01) // src1[127:64], src2[63:0] |
| 692 | .Case("lqhq", 0x10) // src1[63:0], src2[127:64] |
| 693 | .Case("hqhq", 0x11) // src1[127:64], src2[127:64] |
| 694 | .Default(~0U); |
| 695 | if (CLMULQuadWordSelect != ~0U) { |
| 696 | ExtraImmOp = MCConstantExpr::Create(CLMULQuadWordSelect, |
| 697 | getParser().getContext()); |
| 698 | assert(PatchedName.endswith("dq") && "Unexpected mnemonic!"); |
| 699 | PatchedName = "vpclmulqdq"; |
| 700 | } |
| 701 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 702 | |
Daniel Dunbar | 1b6c060 | 2010-02-10 21:19:28 +0000 | [diff] [blame] | 703 | Operands.push_back(X86Operand::CreateToken(PatchedName, NameLoc)); |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 704 | |
Daniel Dunbar | 39e2dd7 | 2010-05-25 19:49:32 +0000 | [diff] [blame] | 705 | if (ExtraImmOp) |
| 706 | Operands.push_back(X86Operand::CreateImm(ExtraImmOp, NameLoc, NameLoc)); |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 707 | |
| 708 | |
Chris Lattner | 2544f42 | 2010-09-08 05:17:37 +0000 | [diff] [blame] | 709 | // Determine whether this is an instruction prefix. |
| 710 | bool isPrefix = |
Chris Lattner | 693173f | 2010-10-30 19:23:13 +0000 | [diff] [blame^] | 711 | Name == "lock" || Name == "rep" || |
| 712 | Name == "repe" || Name == "repz" || |
| 713 | Name == "repne" || Name == "repnz"; |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 714 | |
| 715 | |
Chris Lattner | 2544f42 | 2010-09-08 05:17:37 +0000 | [diff] [blame] | 716 | // This does the actual operand parsing. Don't parse any more if we have a |
| 717 | // prefix juxtaposed with an operation like "lock incl 4(%rax)", because we |
| 718 | // just want to parse the "lock" as the first instruction and the "incl" as |
| 719 | // the next one. |
| 720 | if (getLexer().isNot(AsmToken::EndOfStatement) && !isPrefix) { |
Daniel Dunbar | 0db68f4 | 2009-08-11 05:00:25 +0000 | [diff] [blame] | 721 | |
| 722 | // Parse '*' modifier. |
| 723 | if (getLexer().is(AsmToken::Star)) { |
Sean Callanan | 18b8323 | 2010-01-19 21:44:56 +0000 | [diff] [blame] | 724 | SMLoc Loc = Parser.getTok().getLoc(); |
Chris Lattner | b4307b3 | 2010-01-15 19:28:38 +0000 | [diff] [blame] | 725 | Operands.push_back(X86Operand::CreateToken("*", Loc)); |
Sean Callanan | b9a25b7 | 2010-01-19 20:27:46 +0000 | [diff] [blame] | 726 | Parser.Lex(); // Eat the star. |
Daniel Dunbar | 0db68f4 | 2009-08-11 05:00:25 +0000 | [diff] [blame] | 727 | } |
| 728 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 729 | // Read the first operand. |
Chris Lattner | 309264d | 2010-01-15 18:44:13 +0000 | [diff] [blame] | 730 | if (X86Operand *Op = ParseOperand()) |
| 731 | Operands.push_back(Op); |
Chris Lattner | cbf8a98 | 2010-09-11 16:18:25 +0000 | [diff] [blame] | 732 | else { |
| 733 | Parser.EatToEndOfStatement(); |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 734 | return true; |
Chris Lattner | cbf8a98 | 2010-09-11 16:18:25 +0000 | [diff] [blame] | 735 | } |
Daniel Dunbar | 39e2dd7 | 2010-05-25 19:49:32 +0000 | [diff] [blame] | 736 | |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 737 | while (getLexer().is(AsmToken::Comma)) { |
Sean Callanan | b9a25b7 | 2010-01-19 20:27:46 +0000 | [diff] [blame] | 738 | Parser.Lex(); // Eat the comma. |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 739 | |
| 740 | // Parse and remember the operand. |
Chris Lattner | 309264d | 2010-01-15 18:44:13 +0000 | [diff] [blame] | 741 | if (X86Operand *Op = ParseOperand()) |
| 742 | Operands.push_back(Op); |
Chris Lattner | cbf8a98 | 2010-09-11 16:18:25 +0000 | [diff] [blame] | 743 | else { |
| 744 | Parser.EatToEndOfStatement(); |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 745 | return true; |
Chris Lattner | cbf8a98 | 2010-09-11 16:18:25 +0000 | [diff] [blame] | 746 | } |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 747 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 748 | |
Chris Lattner | cbf8a98 | 2010-09-11 16:18:25 +0000 | [diff] [blame] | 749 | if (getLexer().isNot(AsmToken::EndOfStatement)) { |
| 750 | Parser.EatToEndOfStatement(); |
Chris Lattner | 2544f42 | 2010-09-08 05:17:37 +0000 | [diff] [blame] | 751 | return TokError("unexpected token in argument list"); |
Chris Lattner | cbf8a98 | 2010-09-11 16:18:25 +0000 | [diff] [blame] | 752 | } |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 753 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 754 | |
Chris Lattner | 2544f42 | 2010-09-08 05:17:37 +0000 | [diff] [blame] | 755 | if (getLexer().is(AsmToken::EndOfStatement)) |
| 756 | Parser.Lex(); // Consume the EndOfStatement |
Daniel Dunbar | 16cdcb3 | 2009-07-28 22:40:46 +0000 | [diff] [blame] | 757 | |
Chris Lattner | 508fc47 | 2010-10-05 21:09:45 +0000 | [diff] [blame] | 758 | // Hack to allow 'movq <largeimm>, <reg>' as an alias for movabsq. |
| 759 | if ((Name == "movq" || Name == "mov") && Operands.size() == 3 && |
| 760 | static_cast<X86Operand*>(Operands[2])->isReg() && |
| 761 | static_cast<X86Operand*>(Operands[1])->isImm() && |
| 762 | !static_cast<X86Operand*>(Operands[1])->isImmSExti64i32()) { |
| 763 | delete Operands[0]; |
| 764 | Operands[0] = X86Operand::CreateToken("movabsq", NameLoc); |
| 765 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 766 | |
Chris Lattner | e9e16a3 | 2010-09-15 04:33:27 +0000 | [diff] [blame] | 767 | // FIXME: Hack to handle recognize s{hr,ar,hl} $1, <op>. Canonicalize to |
Chris Lattner | ee211d0 | 2010-09-11 16:32:12 +0000 | [diff] [blame] | 768 | // "shift <op>". |
Daniel Dunbar | d5e7705 | 2010-03-13 00:47:29 +0000 | [diff] [blame] | 769 | if ((Name.startswith("shr") || Name.startswith("sar") || |
Chris Lattner | 1a1ecc9 | 2010-10-30 18:13:10 +0000 | [diff] [blame] | 770 | Name.startswith("shl") || Name.startswith("sal")) && |
Chris Lattner | 47ab90b | 2010-09-06 18:32:06 +0000 | [diff] [blame] | 771 | Operands.size() == 3) { |
| 772 | X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]); |
| 773 | if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) && |
| 774 | cast<MCConstantExpr>(Op1->getImm())->getValue() == 1) { |
| 775 | delete Operands[1]; |
| 776 | Operands.erase(Operands.begin() + 1); |
| 777 | } |
Daniel Dunbar | f2de13f | 2010-03-20 22:36:38 +0000 | [diff] [blame] | 778 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 779 | |
Chris Lattner | e9e16a3 | 2010-09-15 04:33:27 +0000 | [diff] [blame] | 780 | // FIXME: Hack to handle recognize "rc[lr] <op>" -> "rcl $1, <op>". |
| 781 | if ((Name.startswith("rcl") || Name.startswith("rcr")) && |
| 782 | Operands.size() == 2) { |
| 783 | const MCExpr *One = MCConstantExpr::Create(1, getParser().getContext()); |
| 784 | Operands.push_back(X86Operand::CreateImm(One, NameLoc, NameLoc)); |
| 785 | std::swap(Operands[1], Operands[2]); |
| 786 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 787 | |
Chris Lattner | cfad564 | 2010-09-15 04:37:18 +0000 | [diff] [blame] | 788 | // FIXME: Hack to handle recognize "sh[lr]d op,op" -> "shld $1, op,op". |
| 789 | if ((Name.startswith("shld") || Name.startswith("shrd")) && |
| 790 | Operands.size() == 3) { |
| 791 | const MCExpr *One = MCConstantExpr::Create(1, getParser().getContext()); |
| 792 | Operands.insert(Operands.begin()+1, |
| 793 | X86Operand::CreateImm(One, NameLoc, NameLoc)); |
| 794 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 795 | |
Daniel Dunbar | d5e7705 | 2010-03-13 00:47:29 +0000 | [diff] [blame] | 796 | |
Chris Lattner | ee211d0 | 2010-09-11 16:32:12 +0000 | [diff] [blame] | 797 | // FIXME: Hack to handle recognize "in[bwl] <op>". Canonicalize it to |
| 798 | // "inb <op>, %al". |
| 799 | if ((Name == "inb" || Name == "inw" || Name == "inl") && |
| 800 | Operands.size() == 2) { |
| 801 | unsigned Reg; |
| 802 | if (Name[2] == 'b') |
| 803 | Reg = MatchRegisterName("al"); |
| 804 | else if (Name[2] == 'w') |
| 805 | Reg = MatchRegisterName("ax"); |
| 806 | else |
| 807 | Reg = MatchRegisterName("eax"); |
| 808 | SMLoc Loc = Operands.back()->getEndLoc(); |
| 809 | Operands.push_back(X86Operand::CreateReg(Reg, Loc, Loc)); |
| 810 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 811 | |
Chris Lattner | ee211d0 | 2010-09-11 16:32:12 +0000 | [diff] [blame] | 812 | // FIXME: Hack to handle recognize "out[bwl] <op>". Canonicalize it to |
| 813 | // "outb %al, <op>". |
| 814 | if ((Name == "outb" || Name == "outw" || Name == "outl") && |
| 815 | Operands.size() == 2) { |
| 816 | unsigned Reg; |
| 817 | if (Name[3] == 'b') |
| 818 | Reg = MatchRegisterName("al"); |
| 819 | else if (Name[3] == 'w') |
| 820 | Reg = MatchRegisterName("ax"); |
| 821 | else |
| 822 | Reg = MatchRegisterName("eax"); |
| 823 | SMLoc Loc = Operands.back()->getEndLoc(); |
| 824 | Operands.push_back(X86Operand::CreateReg(Reg, Loc, Loc)); |
| 825 | std::swap(Operands[1], Operands[2]); |
| 826 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 827 | |
Chris Lattner | ef63c9a | 2010-09-14 23:34:29 +0000 | [diff] [blame] | 828 | // FIXME: Hack to handle "out[bwl]? %al, (%dx)" -> "outb %al, %dx". |
| 829 | if ((Name == "outb" || Name == "outw" || Name == "outl" || Name == "out") && |
| 830 | Operands.size() == 3) { |
| 831 | X86Operand &Op = *(X86Operand*)Operands.back(); |
| 832 | if (Op.isMem() && Op.Mem.SegReg == 0 && |
| 833 | isa<MCConstantExpr>(Op.Mem.Disp) && |
| 834 | cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 && |
| 835 | Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) { |
| 836 | SMLoc Loc = Op.getEndLoc(); |
| 837 | Operands.back() = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc); |
| 838 | delete &Op; |
| 839 | } |
| 840 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 841 | |
Kevin Enderby | cf50a53 | 2010-05-25 20:52:34 +0000 | [diff] [blame] | 842 | // FIXME: Hack to handle "f{mul*,add*,sub*,div*} $op, st(0)" the same as |
| 843 | // "f{mul*,add*,sub*,div*} $op" |
| 844 | if ((Name.startswith("fmul") || Name.startswith("fadd") || |
| 845 | Name.startswith("fsub") || Name.startswith("fdiv")) && |
| 846 | Operands.size() == 3 && |
| 847 | static_cast<X86Operand*>(Operands[2])->isReg() && |
| 848 | static_cast<X86Operand*>(Operands[2])->getReg() == X86::ST0) { |
| 849 | delete Operands[2]; |
| 850 | Operands.erase(Operands.begin() + 2); |
| 851 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 852 | |
Chris Lattner | cb296ec | 2010-09-27 07:08:21 +0000 | [diff] [blame] | 853 | // FIXME: Hack to handle "f{mulp,addp} st(0), $op" the same as |
Chris Lattner | a25f933 | 2010-09-29 18:39:16 +0000 | [diff] [blame] | 854 | // "f{mulp,addp} $op", since they commute. We also allow fdivrp/fsubrp even |
| 855 | // though they don't commute, solely because gas does support this. |
| 856 | if ((Name=="fmulp" || Name=="faddp" || Name=="fsubrp" || Name=="fdivrp") && |
| 857 | Operands.size() == 3 && |
Chris Lattner | 2c5291b | 2010-09-22 06:26:39 +0000 | [diff] [blame] | 858 | static_cast<X86Operand*>(Operands[1])->isReg() && |
| 859 | static_cast<X86Operand*>(Operands[1])->getReg() == X86::ST0) { |
| 860 | delete Operands[1]; |
| 861 | Operands.erase(Operands.begin() + 1); |
| 862 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 863 | |
Daniel Dunbar | fba88d4 | 2010-08-24 19:37:56 +0000 | [diff] [blame] | 864 | // FIXME: Hack to handle "imul <imm>, B" which is an alias for "imul <imm>, B, |
| 865 | // B". |
Daniel Dunbar | ae528f6 | 2010-08-24 19:24:18 +0000 | [diff] [blame] | 866 | if (Name.startswith("imul") && Operands.size() == 3 && |
Daniel Dunbar | fba88d4 | 2010-08-24 19:37:56 +0000 | [diff] [blame] | 867 | static_cast<X86Operand*>(Operands[1])->isImm() && |
Daniel Dunbar | ae528f6 | 2010-08-24 19:24:18 +0000 | [diff] [blame] | 868 | static_cast<X86Operand*>(Operands.back())->isReg()) { |
| 869 | X86Operand *Op = static_cast<X86Operand*>(Operands.back()); |
| 870 | Operands.push_back(X86Operand::CreateReg(Op->getReg(), Op->getStartLoc(), |
| 871 | Op->getEndLoc())); |
| 872 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 873 | |
Chris Lattner | c5cebeb | 2010-09-06 23:51:44 +0000 | [diff] [blame] | 874 | // 'sldt <mem>' can be encoded with either sldtw or sldtq with the same |
| 875 | // effect (both store to a 16-bit mem). Force to sldtw to avoid ambiguity |
| 876 | // errors, since its encoding is the most compact. |
| 877 | if (Name == "sldt" && Operands.size() == 2 && |
Benjamin Kramer | aceeb3a | 2010-09-07 14:40:58 +0000 | [diff] [blame] | 878 | static_cast<X86Operand*>(Operands[1])->isMem()) { |
| 879 | delete Operands[0]; |
Chris Lattner | c5cebeb | 2010-09-06 23:51:44 +0000 | [diff] [blame] | 880 | Operands[0] = X86Operand::CreateToken("sldtw", NameLoc); |
Benjamin Kramer | aceeb3a | 2010-09-07 14:40:58 +0000 | [diff] [blame] | 881 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 882 | |
Chris Lattner | 9607c40 | 2010-09-08 04:53:27 +0000 | [diff] [blame] | 883 | // The assembler accepts "xchgX <reg>, <mem>" and "xchgX <mem>, <reg>" as |
| 884 | // synonyms. Our tables only have the "<reg>, <mem>" form, so if we see the |
| 885 | // other operand order, swap them. |
Chris Lattner | 90b5454 | 2010-09-08 22:27:05 +0000 | [diff] [blame] | 886 | if (Name == "xchgb" || Name == "xchgw" || Name == "xchgl" || Name == "xchgq"|| |
| 887 | Name == "xchg") |
Chris Lattner | 9607c40 | 2010-09-08 04:53:27 +0000 | [diff] [blame] | 888 | if (Operands.size() == 3 && |
| 889 | static_cast<X86Operand*>(Operands[1])->isMem() && |
| 890 | static_cast<X86Operand*>(Operands[2])->isReg()) { |
| 891 | std::swap(Operands[1], Operands[2]); |
| 892 | } |
Daniel Dunbar | ae528f6 | 2010-08-24 19:24:18 +0000 | [diff] [blame] | 893 | |
Chris Lattner | c8ae35a | 2010-09-08 05:51:12 +0000 | [diff] [blame] | 894 | // The assembler accepts "testX <reg>, <mem>" and "testX <mem>, <reg>" as |
| 895 | // synonyms. Our tables only have the "<mem>, <reg>" form, so if we see the |
| 896 | // other operand order, swap them. |
Chris Lattner | 90b5454 | 2010-09-08 22:27:05 +0000 | [diff] [blame] | 897 | if (Name == "testb" || Name == "testw" || Name == "testl" || Name == "testq"|| |
| 898 | Name == "test") |
Chris Lattner | c8ae35a | 2010-09-08 05:51:12 +0000 | [diff] [blame] | 899 | if (Operands.size() == 3 && |
| 900 | static_cast<X86Operand*>(Operands[1])->isReg() && |
| 901 | static_cast<X86Operand*>(Operands[2])->isMem()) { |
| 902 | std::swap(Operands[1], Operands[2]); |
| 903 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 904 | |
Chris Lattner | 2d592d1 | 2010-09-15 04:04:33 +0000 | [diff] [blame] | 905 | // The assembler accepts these instructions with no operand as a synonym for |
| 906 | // an instruction acting on st(1). e.g. "fxch" -> "fxch %st(1)". |
| 907 | if ((Name == "fxch" || Name == "fucom" || Name == "fucomp" || |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 908 | Name == "faddp" || Name == "fsubp" || Name == "fsubrp" || |
Chris Lattner | 2d592d1 | 2010-09-15 04:04:33 +0000 | [diff] [blame] | 909 | Name == "fmulp" || Name == "fdivp" || Name == "fdivrp") && |
| 910 | Operands.size() == 1) { |
| 911 | Operands.push_back(X86Operand::CreateReg(MatchRegisterName("st(1)"), |
| 912 | NameLoc, NameLoc)); |
| 913 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 914 | |
Chris Lattner | 8f777a2 | 2010-09-15 04:08:38 +0000 | [diff] [blame] | 915 | // The assembler accepts these instructions with two few operands as a synonym |
| 916 | // for taking %st(1),%st(0) or X, %st(0). |
Kevin Enderby | 41e8cc7 | 2010-10-27 00:59:28 +0000 | [diff] [blame] | 917 | if ((Name == "fcomi" || Name == "fucomi" || Name == "fucompi" || |
| 918 | Name == "fcompi" ) && |
| 919 | Operands.size() < 3) { |
Chris Lattner | 8f777a2 | 2010-09-15 04:08:38 +0000 | [diff] [blame] | 920 | if (Operands.size() == 1) |
| 921 | Operands.push_back(X86Operand::CreateReg(MatchRegisterName("st(1)"), |
| 922 | NameLoc, NameLoc)); |
| 923 | Operands.push_back(X86Operand::CreateReg(MatchRegisterName("st(0)"), |
| 924 | NameLoc, NameLoc)); |
| 925 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 926 | |
Chris Lattner | 84f362d | 2010-09-15 04:15:16 +0000 | [diff] [blame] | 927 | // The assembler accepts various amounts of brokenness for fnstsw. |
Chris Lattner | 8b260a7 | 2010-10-30 18:07:17 +0000 | [diff] [blame] | 928 | if (Name == "fnstsw" || Name == "fnstsww") { |
Chris Lattner | 84f362d | 2010-09-15 04:15:16 +0000 | [diff] [blame] | 929 | if (Operands.size() == 2 && |
| 930 | static_cast<X86Operand*>(Operands[1])->isReg()) { |
| 931 | // "fnstsw al" and "fnstsw eax" -> "fnstw" |
| 932 | unsigned Reg = static_cast<X86Operand*>(Operands[1])->Reg.RegNo; |
| 933 | if (Reg == MatchRegisterName("eax") || |
| 934 | Reg == MatchRegisterName("al")) { |
| 935 | delete Operands[1]; |
| 936 | Operands.pop_back(); |
| 937 | } |
| 938 | } |
| 939 | |
| 940 | // "fnstw" -> "fnstw %ax" |
| 941 | if (Operands.size() == 1) |
| 942 | Operands.push_back(X86Operand::CreateReg(MatchRegisterName("ax"), |
| 943 | NameLoc, NameLoc)); |
| 944 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 945 | |
Chris Lattner | cbb4426 | 2010-09-15 05:25:21 +0000 | [diff] [blame] | 946 | // jmp $42,$5 -> ljmp, similarly for call. |
| 947 | if ((Name.startswith("call") || Name.startswith("jmp")) && |
| 948 | Operands.size() == 3 && |
| 949 | static_cast<X86Operand*>(Operands[1])->isImm() && |
| 950 | static_cast<X86Operand*>(Operands[2])->isImm()) { |
| 951 | const char *NewOpName = StringSwitch<const char *>(Name) |
| 952 | .Case("jmp", "ljmp") |
| 953 | .Case("jmpw", "ljmpw") |
| 954 | .Case("jmpl", "ljmpl") |
| 955 | .Case("jmpq", "ljmpq") |
| 956 | .Case("call", "lcall") |
| 957 | .Case("callw", "lcallw") |
| 958 | .Case("calll", "lcalll") |
| 959 | .Case("callq", "lcallq") |
| 960 | .Default(0); |
| 961 | if (NewOpName) { |
| 962 | delete Operands[0]; |
| 963 | Operands[0] = X86Operand::CreateToken(NewOpName, NameLoc); |
Chris Lattner | d0bcc9a | 2010-09-15 05:30:20 +0000 | [diff] [blame] | 964 | Name = NewOpName; |
Chris Lattner | cbb4426 | 2010-09-15 05:25:21 +0000 | [diff] [blame] | 965 | } |
| 966 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 967 | |
Chris Lattner | d0bcc9a | 2010-09-15 05:30:20 +0000 | [diff] [blame] | 968 | // lcall and ljmp -> lcalll and ljmpl |
| 969 | if ((Name == "lcall" || Name == "ljmp") && Operands.size() == 3) { |
| 970 | delete Operands[0]; |
| 971 | Operands[0] = X86Operand::CreateToken(Name == "lcall" ? "lcalll" : "ljmpl", |
| 972 | NameLoc); |
| 973 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 974 | |
Chris Lattner | 1eb1b68 | 2010-09-22 05:49:14 +0000 | [diff] [blame] | 975 | // call foo is not ambiguous with callw. |
| 976 | if (Name == "call" && Operands.size() == 2) { |
| 977 | const char *NewName = Is64Bit ? "callq" : "calll"; |
| 978 | delete Operands[0]; |
| 979 | Operands[0] = X86Operand::CreateToken(NewName, NameLoc); |
| 980 | Name = NewName; |
| 981 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 982 | |
Chris Lattner | 6112925 | 2010-09-22 03:50:32 +0000 | [diff] [blame] | 983 | // movsd -> movsl (when no operands are specified). |
| 984 | if (Name == "movsd" && Operands.size() == 1) { |
| 985 | delete Operands[0]; |
| 986 | Operands[0] = X86Operand::CreateToken("movsl", NameLoc); |
| 987 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 988 | |
Chris Lattner | 0c289c1 | 2010-09-22 04:04:03 +0000 | [diff] [blame] | 989 | // fstp <mem> -> fstps <mem>. Without this, we'll default to fstpl due to |
| 990 | // suffix searching. |
| 991 | if (Name == "fstp" && Operands.size() == 2 && |
| 992 | static_cast<X86Operand*>(Operands[1])->isMem()) { |
| 993 | delete Operands[0]; |
| 994 | Operands[0] = X86Operand::CreateToken("fstps", NameLoc); |
| 995 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 996 | |
| 997 | |
Chris Lattner | fd8fddd | 2010-09-27 04:23:03 +0000 | [diff] [blame] | 998 | // "clr <reg>" -> "xor <reg>, <reg>". |
| 999 | if ((Name == "clrb" || Name == "clrw" || Name == "clrl" || Name == "clrq" || |
| 1000 | Name == "clr") && Operands.size() == 2 && |
| 1001 | static_cast<X86Operand*>(Operands[1])->isReg()) { |
| 1002 | unsigned RegNo = static_cast<X86Operand*>(Operands[1])->getReg(); |
| 1003 | Operands.push_back(X86Operand::CreateReg(RegNo, NameLoc, NameLoc)); |
| 1004 | delete Operands[0]; |
| 1005 | Operands[0] = X86Operand::CreateToken("xor", NameLoc); |
| 1006 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 1007 | |
Kevin Enderby | 7aef62f | 2010-10-18 17:04:36 +0000 | [diff] [blame] | 1008 | // FIXME: Hack to handle recognize "aa[dm]" -> "aa[dm] $0xA". |
| 1009 | if ((Name.startswith("aad") || Name.startswith("aam")) && |
| 1010 | Operands.size() == 1) { |
| 1011 | const MCExpr *A = MCConstantExpr::Create(0xA, getParser().getContext()); |
| 1012 | Operands.push_back(X86Operand::CreateImm(A, NameLoc, NameLoc)); |
| 1013 | } |
| 1014 | |
Kevin Enderby | 87f4a1a | 2010-10-19 00:01:44 +0000 | [diff] [blame] | 1015 | // "lgdtl" is not ambiguous 32-bit mode and is the same as "lgdt". |
| 1016 | // "lgdtq" is not ambiguous 64-bit mode and is the same as "lgdt". |
| 1017 | if ((Name == "lgdtl" && Is64Bit == false) || |
| 1018 | (Name == "lgdtq" && Is64Bit == true)) { |
| 1019 | const char *NewName = "lgdt"; |
| 1020 | delete Operands[0]; |
| 1021 | Operands[0] = X86Operand::CreateToken(NewName, NameLoc); |
| 1022 | Name = NewName; |
| 1023 | } |
| 1024 | |
| 1025 | // "lidtl" is not ambiguous 32-bit mode and is the same as "lidt". |
| 1026 | // "lidtq" is not ambiguous 64-bit mode and is the same as "lidt". |
| 1027 | if ((Name == "lidtl" && Is64Bit == false) || |
| 1028 | (Name == "lidtq" && Is64Bit == true)) { |
| 1029 | const char *NewName = "lidt"; |
| 1030 | delete Operands[0]; |
| 1031 | Operands[0] = X86Operand::CreateToken(NewName, NameLoc); |
| 1032 | Name = NewName; |
| 1033 | } |
| 1034 | |
| 1035 | // "sgdtl" is not ambiguous 32-bit mode and is the same as "sgdt". |
| 1036 | // "sgdtq" is not ambiguous 64-bit mode and is the same as "sgdt". |
| 1037 | if ((Name == "sgdtl" && Is64Bit == false) || |
| 1038 | (Name == "sgdtq" && Is64Bit == true)) { |
| 1039 | const char *NewName = "sgdt"; |
| 1040 | delete Operands[0]; |
| 1041 | Operands[0] = X86Operand::CreateToken(NewName, NameLoc); |
| 1042 | Name = NewName; |
| 1043 | } |
| 1044 | |
| 1045 | // "sidtl" is not ambiguous 32-bit mode and is the same as "sidt". |
| 1046 | // "sidtq" is not ambiguous 64-bit mode and is the same as "sidt". |
| 1047 | if ((Name == "sidtl" && Is64Bit == false) || |
| 1048 | (Name == "sidtq" && Is64Bit == true)) { |
| 1049 | const char *NewName = "sidt"; |
| 1050 | delete Operands[0]; |
| 1051 | Operands[0] = X86Operand::CreateToken(NewName, NameLoc); |
| 1052 | Name = NewName; |
| 1053 | } |
| 1054 | |
Chris Lattner | 9898671 | 2010-01-14 22:21:20 +0000 | [diff] [blame] | 1055 | return false; |
Daniel Dunbar | a3af370 | 2009-07-20 18:55:04 +0000 | [diff] [blame] | 1056 | } |
| 1057 | |
Chris Lattner | 2d592d1 | 2010-09-15 04:04:33 +0000 | [diff] [blame] | 1058 | bool X86ATTAsmParser:: |
Chris Lattner | 7036f8b | 2010-09-29 01:42:58 +0000 | [diff] [blame] | 1059 | MatchAndEmitInstruction(SMLoc IDLoc, |
Chris Lattner | 7c51a31 | 2010-09-29 01:50:45 +0000 | [diff] [blame] | 1060 | SmallVectorImpl<MCParsedAsmOperand*> &Operands, |
Chris Lattner | 7036f8b | 2010-09-29 01:42:58 +0000 | [diff] [blame] | 1061 | MCStreamer &Out) { |
Daniel Dunbar | f1e29d4 | 2010-08-12 00:55:38 +0000 | [diff] [blame] | 1062 | assert(!Operands.empty() && "Unexpect empty operand list!"); |
Chris Lattner | 7c51a31 | 2010-09-29 01:50:45 +0000 | [diff] [blame] | 1063 | X86Operand *Op = static_cast<X86Operand*>(Operands[0]); |
| 1064 | assert(Op->isToken() && "Leading operand should always be a mnemonic!"); |
Daniel Dunbar | f1e29d4 | 2010-08-12 00:55:38 +0000 | [diff] [blame] | 1065 | |
Chris Lattner | 7c51a31 | 2010-09-29 01:50:45 +0000 | [diff] [blame] | 1066 | // First, handle aliases that expand to multiple instructions. |
| 1067 | // FIXME: This should be replaced with a real .td file alias mechanism. |
Andrew Trick | 0966ec0 | 2010-10-22 03:58:29 +0000 | [diff] [blame] | 1068 | if (Op->getToken() == "fstsw" || Op->getToken() == "fstcw" || |
Chris Lattner | 8b260a7 | 2010-10-30 18:07:17 +0000 | [diff] [blame] | 1069 | Op->getToken() == "fstsww" || Op->getToken() == "fstcww" || |
Chris Lattner | 905f2e0 | 2010-09-30 17:11:29 +0000 | [diff] [blame] | 1070 | Op->getToken() == "finit" || Op->getToken() == "fsave" || |
Kevin Enderby | 5a37807 | 2010-10-27 02:53:04 +0000 | [diff] [blame] | 1071 | Op->getToken() == "fstenv" || Op->getToken() == "fclex") { |
Chris Lattner | 7c51a31 | 2010-09-29 01:50:45 +0000 | [diff] [blame] | 1072 | MCInst Inst; |
| 1073 | Inst.setOpcode(X86::WAIT); |
| 1074 | Out.EmitInstruction(Inst); |
| 1075 | |
Chris Lattner | 0bb83a8 | 2010-09-30 16:39:29 +0000 | [diff] [blame] | 1076 | const char *Repl = |
| 1077 | StringSwitch<const char*>(Op->getToken()) |
Chris Lattner | 8b260a7 | 2010-10-30 18:07:17 +0000 | [diff] [blame] | 1078 | .Case("finit", "fninit") |
| 1079 | .Case("fsave", "fnsave") |
| 1080 | .Case("fstcw", "fnstcw") |
| 1081 | .Case("fstcww", "fnstcw") |
Chris Lattner | 905f2e0 | 2010-09-30 17:11:29 +0000 | [diff] [blame] | 1082 | .Case("fstenv", "fnstenv") |
Chris Lattner | 8b260a7 | 2010-10-30 18:07:17 +0000 | [diff] [blame] | 1083 | .Case("fstsw", "fnstsw") |
| 1084 | .Case("fstsww", "fnstsw") |
| 1085 | .Case("fclex", "fnclex") |
Chris Lattner | 0bb83a8 | 2010-09-30 16:39:29 +0000 | [diff] [blame] | 1086 | .Default(0); |
| 1087 | assert(Repl && "Unknown wait-prefixed instruction"); |
Benjamin Kramer | b0f96fa | 2010-10-01 12:25:27 +0000 | [diff] [blame] | 1088 | delete Operands[0]; |
Chris Lattner | 0bb83a8 | 2010-09-30 16:39:29 +0000 | [diff] [blame] | 1089 | Operands[0] = X86Operand::CreateToken(Repl, IDLoc); |
Chris Lattner | 7c51a31 | 2010-09-29 01:50:45 +0000 | [diff] [blame] | 1090 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 1091 | |
Chris Lattner | a008e8a | 2010-09-06 21:54:15 +0000 | [diff] [blame] | 1092 | bool WasOriginallyInvalidOperand = false; |
Chris Lattner | ce4a335 | 2010-09-06 22:11:18 +0000 | [diff] [blame] | 1093 | unsigned OrigErrorInfo; |
Chris Lattner | 7036f8b | 2010-09-29 01:42:58 +0000 | [diff] [blame] | 1094 | MCInst Inst; |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 1095 | |
Daniel Dunbar | c918d60 | 2010-05-04 16:12:42 +0000 | [diff] [blame] | 1096 | // First, try a direct match. |
Chris Lattner | ce4a335 | 2010-09-06 22:11:18 +0000 | [diff] [blame] | 1097 | switch (MatchInstructionImpl(Operands, Inst, OrigErrorInfo)) { |
Chris Lattner | ec6789f | 2010-09-06 20:08:02 +0000 | [diff] [blame] | 1098 | case Match_Success: |
Chris Lattner | 7036f8b | 2010-09-29 01:42:58 +0000 | [diff] [blame] | 1099 | Out.EmitInstruction(Inst); |
Daniel Dunbar | c918d60 | 2010-05-04 16:12:42 +0000 | [diff] [blame] | 1100 | return false; |
Chris Lattner | ec6789f | 2010-09-06 20:08:02 +0000 | [diff] [blame] | 1101 | case Match_MissingFeature: |
| 1102 | Error(IDLoc, "instruction requires a CPU feature not currently enabled"); |
| 1103 | return true; |
Chris Lattner | a008e8a | 2010-09-06 21:54:15 +0000 | [diff] [blame] | 1104 | case Match_InvalidOperand: |
| 1105 | WasOriginallyInvalidOperand = true; |
| 1106 | break; |
| 1107 | case Match_MnemonicFail: |
Chris Lattner | ec6789f | 2010-09-06 20:08:02 +0000 | [diff] [blame] | 1108 | break; |
| 1109 | } |
Daniel Dunbar | c918d60 | 2010-05-04 16:12:42 +0000 | [diff] [blame] | 1110 | |
Daniel Dunbar | c918d60 | 2010-05-04 16:12:42 +0000 | [diff] [blame] | 1111 | // FIXME: Ideally, we would only attempt suffix matches for things which are |
| 1112 | // valid prefixes, and we could just infer the right unambiguous |
| 1113 | // type. However, that requires substantially more matcher support than the |
| 1114 | // following hack. |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 1115 | |
Daniel Dunbar | c918d60 | 2010-05-04 16:12:42 +0000 | [diff] [blame] | 1116 | // Change the operand to point to a temporary token. |
Daniel Dunbar | c918d60 | 2010-05-04 16:12:42 +0000 | [diff] [blame] | 1117 | StringRef Base = Op->getToken(); |
Daniel Dunbar | f1e29d4 | 2010-08-12 00:55:38 +0000 | [diff] [blame] | 1118 | SmallString<16> Tmp; |
| 1119 | Tmp += Base; |
| 1120 | Tmp += ' '; |
| 1121 | Op->setTokenValue(Tmp.str()); |
Daniel Dunbar | c918d60 | 2010-05-04 16:12:42 +0000 | [diff] [blame] | 1122 | |
| 1123 | // Check for the various suffix matches. |
| 1124 | Tmp[Base.size()] = 'b'; |
Chris Lattner | ce4a335 | 2010-09-06 22:11:18 +0000 | [diff] [blame] | 1125 | unsigned BErrorInfo, WErrorInfo, LErrorInfo, QErrorInfo; |
| 1126 | MatchResultTy MatchB = MatchInstructionImpl(Operands, Inst, BErrorInfo); |
Daniel Dunbar | c918d60 | 2010-05-04 16:12:42 +0000 | [diff] [blame] | 1127 | Tmp[Base.size()] = 'w'; |
Chris Lattner | ce4a335 | 2010-09-06 22:11:18 +0000 | [diff] [blame] | 1128 | MatchResultTy MatchW = MatchInstructionImpl(Operands, Inst, WErrorInfo); |
Daniel Dunbar | c918d60 | 2010-05-04 16:12:42 +0000 | [diff] [blame] | 1129 | Tmp[Base.size()] = 'l'; |
Chris Lattner | ce4a335 | 2010-09-06 22:11:18 +0000 | [diff] [blame] | 1130 | MatchResultTy MatchL = MatchInstructionImpl(Operands, Inst, LErrorInfo); |
Daniel Dunbar | 0481449 | 2010-05-12 00:54:20 +0000 | [diff] [blame] | 1131 | Tmp[Base.size()] = 'q'; |
Chris Lattner | ce4a335 | 2010-09-06 22:11:18 +0000 | [diff] [blame] | 1132 | MatchResultTy MatchQ = MatchInstructionImpl(Operands, Inst, QErrorInfo); |
Daniel Dunbar | c918d60 | 2010-05-04 16:12:42 +0000 | [diff] [blame] | 1133 | |
| 1134 | // Restore the old token. |
| 1135 | Op->setTokenValue(Base); |
| 1136 | |
| 1137 | // If exactly one matched, then we treat that as a successful match (and the |
| 1138 | // instruction will already have been filled in correctly, since the failing |
| 1139 | // matches won't have modified it). |
Chris Lattner | ec6789f | 2010-09-06 20:08:02 +0000 | [diff] [blame] | 1140 | unsigned NumSuccessfulMatches = |
| 1141 | (MatchB == Match_Success) + (MatchW == Match_Success) + |
| 1142 | (MatchL == Match_Success) + (MatchQ == Match_Success); |
Chris Lattner | 7036f8b | 2010-09-29 01:42:58 +0000 | [diff] [blame] | 1143 | if (NumSuccessfulMatches == 1) { |
| 1144 | Out.EmitInstruction(Inst); |
Daniel Dunbar | c918d60 | 2010-05-04 16:12:42 +0000 | [diff] [blame] | 1145 | return false; |
Chris Lattner | 7036f8b | 2010-09-29 01:42:58 +0000 | [diff] [blame] | 1146 | } |
Daniel Dunbar | c918d60 | 2010-05-04 16:12:42 +0000 | [diff] [blame] | 1147 | |
Chris Lattner | ec6789f | 2010-09-06 20:08:02 +0000 | [diff] [blame] | 1148 | // Otherwise, the match failed, try to produce a decent error message. |
Daniel Dunbar | f1e29d4 | 2010-08-12 00:55:38 +0000 | [diff] [blame] | 1149 | |
Daniel Dunbar | 09062b1 | 2010-08-12 00:55:42 +0000 | [diff] [blame] | 1150 | // If we had multiple suffix matches, then identify this as an ambiguous |
| 1151 | // match. |
Chris Lattner | ec6789f | 2010-09-06 20:08:02 +0000 | [diff] [blame] | 1152 | if (NumSuccessfulMatches > 1) { |
Daniel Dunbar | 09062b1 | 2010-08-12 00:55:42 +0000 | [diff] [blame] | 1153 | char MatchChars[4]; |
| 1154 | unsigned NumMatches = 0; |
Chris Lattner | ec6789f | 2010-09-06 20:08:02 +0000 | [diff] [blame] | 1155 | if (MatchB == Match_Success) |
Daniel Dunbar | 09062b1 | 2010-08-12 00:55:42 +0000 | [diff] [blame] | 1156 | MatchChars[NumMatches++] = 'b'; |
Chris Lattner | ec6789f | 2010-09-06 20:08:02 +0000 | [diff] [blame] | 1157 | if (MatchW == Match_Success) |
Daniel Dunbar | 09062b1 | 2010-08-12 00:55:42 +0000 | [diff] [blame] | 1158 | MatchChars[NumMatches++] = 'w'; |
Chris Lattner | ec6789f | 2010-09-06 20:08:02 +0000 | [diff] [blame] | 1159 | if (MatchL == Match_Success) |
Daniel Dunbar | 09062b1 | 2010-08-12 00:55:42 +0000 | [diff] [blame] | 1160 | MatchChars[NumMatches++] = 'l'; |
Chris Lattner | ec6789f | 2010-09-06 20:08:02 +0000 | [diff] [blame] | 1161 | if (MatchQ == Match_Success) |
Daniel Dunbar | 09062b1 | 2010-08-12 00:55:42 +0000 | [diff] [blame] | 1162 | MatchChars[NumMatches++] = 'q'; |
| 1163 | |
| 1164 | SmallString<126> Msg; |
| 1165 | raw_svector_ostream OS(Msg); |
| 1166 | OS << "ambiguous instructions require an explicit suffix (could be "; |
| 1167 | for (unsigned i = 0; i != NumMatches; ++i) { |
| 1168 | if (i != 0) |
| 1169 | OS << ", "; |
| 1170 | if (i + 1 == NumMatches) |
| 1171 | OS << "or "; |
| 1172 | OS << "'" << Base << MatchChars[i] << "'"; |
| 1173 | } |
| 1174 | OS << ")"; |
| 1175 | Error(IDLoc, OS.str()); |
Chris Lattner | ec6789f | 2010-09-06 20:08:02 +0000 | [diff] [blame] | 1176 | return true; |
Daniel Dunbar | 09062b1 | 2010-08-12 00:55:42 +0000 | [diff] [blame] | 1177 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 1178 | |
Chris Lattner | a008e8a | 2010-09-06 21:54:15 +0000 | [diff] [blame] | 1179 | // Okay, we know that none of the variants matched successfully. |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 1180 | |
Chris Lattner | a008e8a | 2010-09-06 21:54:15 +0000 | [diff] [blame] | 1181 | // If all of the instructions reported an invalid mnemonic, then the original |
| 1182 | // mnemonic was invalid. |
| 1183 | if ((MatchB == Match_MnemonicFail) && (MatchW == Match_MnemonicFail) && |
| 1184 | (MatchL == Match_MnemonicFail) && (MatchQ == Match_MnemonicFail)) { |
Chris Lattner | ce4a335 | 2010-09-06 22:11:18 +0000 | [diff] [blame] | 1185 | if (!WasOriginallyInvalidOperand) { |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 1186 | Error(IDLoc, "invalid instruction mnemonic '" + Base + "'"); |
Chris Lattner | ce4a335 | 2010-09-06 22:11:18 +0000 | [diff] [blame] | 1187 | return true; |
| 1188 | } |
| 1189 | |
| 1190 | // Recover location info for the operand if we know which was the problem. |
| 1191 | SMLoc ErrorLoc = IDLoc; |
| 1192 | if (OrigErrorInfo != ~0U) { |
Chris Lattner | f884012 | 2010-09-15 03:50:11 +0000 | [diff] [blame] | 1193 | if (OrigErrorInfo >= Operands.size()) |
| 1194 | return Error(IDLoc, "too few operands for instruction"); |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 1195 | |
Chris Lattner | ce4a335 | 2010-09-06 22:11:18 +0000 | [diff] [blame] | 1196 | ErrorLoc = ((X86Operand*)Operands[OrigErrorInfo])->getStartLoc(); |
| 1197 | if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc; |
| 1198 | } |
| 1199 | |
Chris Lattner | f884012 | 2010-09-15 03:50:11 +0000 | [diff] [blame] | 1200 | return Error(ErrorLoc, "invalid operand for instruction"); |
Chris Lattner | a008e8a | 2010-09-06 21:54:15 +0000 | [diff] [blame] | 1201 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 1202 | |
Chris Lattner | ec6789f | 2010-09-06 20:08:02 +0000 | [diff] [blame] | 1203 | // If one instruction matched with a missing feature, report this as a |
| 1204 | // missing feature. |
| 1205 | if ((MatchB == Match_MissingFeature) + (MatchW == Match_MissingFeature) + |
Chris Lattner | a008e8a | 2010-09-06 21:54:15 +0000 | [diff] [blame] | 1206 | (MatchL == Match_MissingFeature) + (MatchQ == Match_MissingFeature) == 1){ |
Chris Lattner | ec6789f | 2010-09-06 20:08:02 +0000 | [diff] [blame] | 1207 | Error(IDLoc, "instruction requires a CPU feature not currently enabled"); |
| 1208 | return true; |
| 1209 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 1210 | |
Chris Lattner | a008e8a | 2010-09-06 21:54:15 +0000 | [diff] [blame] | 1211 | // If one instruction matched with an invalid operand, report this as an |
| 1212 | // operand failure. |
| 1213 | if ((MatchB == Match_InvalidOperand) + (MatchW == Match_InvalidOperand) + |
| 1214 | (MatchL == Match_InvalidOperand) + (MatchQ == Match_InvalidOperand) == 1){ |
| 1215 | Error(IDLoc, "invalid operand for instruction"); |
| 1216 | return true; |
| 1217 | } |
Michael J. Spencer | c0c8df3 | 2010-10-09 11:00:50 +0000 | [diff] [blame] | 1218 | |
Chris Lattner | ec6789f | 2010-09-06 20:08:02 +0000 | [diff] [blame] | 1219 | // If all of these were an outright failure, report it in a useless way. |
| 1220 | // FIXME: We should give nicer diagnostics about the exact failure. |
Chris Lattner | a008e8a | 2010-09-06 21:54:15 +0000 | [diff] [blame] | 1221 | Error(IDLoc, "unknown use of instruction mnemonic without a size suffix"); |
Daniel Dunbar | c918d60 | 2010-05-04 16:12:42 +0000 | [diff] [blame] | 1222 | return true; |
| 1223 | } |
| 1224 | |
| 1225 | |
Chris Lattner | 537ca84 | 2010-10-30 17:38:55 +0000 | [diff] [blame] | 1226 | bool X86ATTAsmParser::ParseDirective(AsmToken DirectiveID) { |
| 1227 | StringRef IDVal = DirectiveID.getIdentifier(); |
| 1228 | if (IDVal == ".word") |
| 1229 | return ParseDirectiveWord(2, DirectiveID.getLoc()); |
| 1230 | return true; |
| 1231 | } |
| 1232 | |
| 1233 | /// ParseDirectiveWord |
| 1234 | /// ::= .word [ expression (, expression)* ] |
| 1235 | bool X86ATTAsmParser::ParseDirectiveWord(unsigned Size, SMLoc L) { |
| 1236 | if (getLexer().isNot(AsmToken::EndOfStatement)) { |
| 1237 | for (;;) { |
| 1238 | const MCExpr *Value; |
| 1239 | if (getParser().ParseExpression(Value)) |
| 1240 | return true; |
| 1241 | |
| 1242 | getParser().getStreamer().EmitValue(Value, Size, 0 /*addrspace*/); |
| 1243 | |
| 1244 | if (getLexer().is(AsmToken::EndOfStatement)) |
| 1245 | break; |
| 1246 | |
| 1247 | // FIXME: Improve diagnostic. |
| 1248 | if (getLexer().isNot(AsmToken::Comma)) |
| 1249 | return Error(L, "unexpected token in directive"); |
| 1250 | Parser.Lex(); |
| 1251 | } |
| 1252 | } |
| 1253 | |
| 1254 | Parser.Lex(); |
| 1255 | return false; |
| 1256 | } |
| 1257 | |
| 1258 | |
| 1259 | |
| 1260 | |
Sean Callanan | e88f552 | 2010-01-23 02:43:15 +0000 | [diff] [blame] | 1261 | extern "C" void LLVMInitializeX86AsmLexer(); |
| 1262 | |
Daniel Dunbar | 092a9dd | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 1263 | // Force static initialization. |
| 1264 | extern "C" void LLVMInitializeX86AsmParser() { |
Daniel Dunbar | f98bc63 | 2010-03-18 20:06:02 +0000 | [diff] [blame] | 1265 | RegisterAsmParser<X86_32ATTAsmParser> X(TheX86_32Target); |
| 1266 | RegisterAsmParser<X86_64ATTAsmParser> Y(TheX86_64Target); |
Sean Callanan | e88f552 | 2010-01-23 02:43:15 +0000 | [diff] [blame] | 1267 | LLVMInitializeX86AsmLexer(); |
Daniel Dunbar | 092a9dd | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 1268 | } |
Daniel Dunbar | 0e2771f | 2009-07-29 00:02:19 +0000 | [diff] [blame] | 1269 | |
Chris Lattner | 0692ee6 | 2010-09-06 19:11:01 +0000 | [diff] [blame] | 1270 | #define GET_REGISTER_MATCHER |
| 1271 | #define GET_MATCHER_IMPLEMENTATION |
Daniel Dunbar | 0e2771f | 2009-07-29 00:02:19 +0000 | [diff] [blame] | 1272 | #include "X86GenAsmMatcher.inc" |