blob: 806ec4429ce37423f941d0a4e69aae81b1b07488 [file] [log] [blame]
Chris Lattnere6c561b2009-06-23 18:41:30 +00001//===- MC-X86Specific.cpp - X86-Specific code for MC ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements X86-specific parsing, encoding and decoding stuff for
11// MC.
12//
13//===----------------------------------------------------------------------===//
14
15#include "AsmParser.h"
16#include "llvm/MC/MCInst.h"
17using namespace llvm;
18
19/// X86Operand - Instances of this class represent one X86 machine instruction.
20struct AsmParser::X86Operand {
21 enum {
22 Register,
23 Immediate,
24 Memory
25 } Kind;
26
27 union {
28 struct {
29 unsigned RegNo;
30 } Reg;
31
32 struct {
Daniel Dunbar4967dbd2009-06-30 23:02:44 +000033 MCValue Val;
Chris Lattnere6c561b2009-06-23 18:41:30 +000034 } Imm;
35
36 struct {
37 unsigned SegReg;
Daniel Dunbar4967dbd2009-06-30 23:02:44 +000038 MCValue Disp;
Chris Lattnere6c561b2009-06-23 18:41:30 +000039 unsigned BaseReg;
40 unsigned Scale;
41 unsigned ScaleReg;
42 } Mem;
43 };
44
45 static X86Operand CreateReg(unsigned RegNo) {
46 X86Operand Res;
47 Res.Kind = Register;
48 Res.Reg.RegNo = RegNo;
49 return Res;
50 }
Daniel Dunbar4967dbd2009-06-30 23:02:44 +000051 static X86Operand CreateImm(MCValue Val) {
Chris Lattnere6c561b2009-06-23 18:41:30 +000052 X86Operand Res;
53 Res.Kind = Immediate;
54 Res.Imm.Val = Val;
55 return Res;
56 }
Daniel Dunbar4967dbd2009-06-30 23:02:44 +000057 static X86Operand CreateMem(unsigned SegReg, MCValue Disp, unsigned BaseReg,
Chris Lattnere6c561b2009-06-23 18:41:30 +000058 unsigned Scale, unsigned ScaleReg) {
59 X86Operand Res;
60 Res.Kind = Memory;
61 Res.Mem.SegReg = SegReg;
62 Res.Mem.Disp = Disp;
63 Res.Mem.BaseReg = BaseReg;
64 Res.Mem.Scale = Scale;
65 Res.Mem.ScaleReg = ScaleReg;
66 return Res;
67 }
68
69 void AddToMCInst(MCInst &I) {
70 // FIXME: Add in x86 order here.
71 }
72};
73
74bool AsmParser::ParseX86Operand(X86Operand &Op) {
75 switch (Lexer.getKind()) {
76 default:
77 return ParseX86MemOperand(Op);
78 case asmtok::Register:
79 // FIXME: Decode reg #.
80 // FIXME: if a segment register, this could either be just the seg reg, or
81 // the start of a memory operand.
82 Op = X86Operand::CreateReg(123);
83 Lexer.Lex(); // Eat register.
84 return false;
85 case asmtok::Dollar: {
86 // $42 -> immediate.
87 Lexer.Lex();
Daniel Dunbar4967dbd2009-06-30 23:02:44 +000088 MCValue Val;
89 if (ParseRelocatableExpression(Val))
90 return true;
91 Op = X86Operand::CreateImm(Val);
Chris Lattnere6c561b2009-06-23 18:41:30 +000092 return false;
Daniel Dunbar4967dbd2009-06-30 23:02:44 +000093 }
94 case asmtok::Star: {
Chris Lattnere6c561b2009-06-23 18:41:30 +000095 Lexer.Lex(); // Eat the star.
96
97 if (Lexer.is(asmtok::Register)) {
98 Op = X86Operand::CreateReg(123);
99 Lexer.Lex(); // Eat register.
100 } else if (ParseX86MemOperand(Op))
101 return true;
102
103 // FIXME: Note that these are 'dereferenced' so that clients know the '*' is
104 // there.
105 return false;
106 }
107 }
108}
109
110/// ParseX86MemOperand: segment: disp(basereg, indexreg, scale)
111bool AsmParser::ParseX86MemOperand(X86Operand &Op) {
112 // FIXME: If SegReg ':' (e.g. %gs:), eat and remember.
113 unsigned SegReg = 0;
114
115 // We have to disambiguate a parenthesized expression "(4+5)" from the start
116 // of a memory operand with a missing displacement "(%ebx)" or "(,%eax)". The
117 // only way to do this without lookahead is to eat the ( and see what is after
118 // it.
Daniel Dunbar4967dbd2009-06-30 23:02:44 +0000119 MCValue Disp = MCValue::get(0, 0, 0);
Chris Lattnere6c561b2009-06-23 18:41:30 +0000120 if (Lexer.isNot(asmtok::LParen)) {
Daniel Dunbar4967dbd2009-06-30 23:02:44 +0000121 if (ParseRelocatableExpression(Disp)) return true;
Chris Lattnere6c561b2009-06-23 18:41:30 +0000122
123 // After parsing the base expression we could either have a parenthesized
124 // memory address or not. If not, return now. If so, eat the (.
125 if (Lexer.isNot(asmtok::LParen)) {
126 Op = X86Operand::CreateMem(SegReg, Disp, 0, 0, 0);
127 return false;
128 }
129
130 // Eat the '('.
131 Lexer.Lex();
132 } else {
133 // Okay, we have a '('. We don't know if this is an expression or not, but
134 // so we have to eat the ( to see beyond it.
135 Lexer.Lex(); // Eat the '('.
136
137 if (Lexer.is(asmtok::Register) || Lexer.is(asmtok::Comma)) {
138 // Nothing to do here, fall into the code below with the '(' part of the
139 // memory operand consumed.
140 } else {
141 // It must be an parenthesized expression, parse it now.
Daniel Dunbar4967dbd2009-06-30 23:02:44 +0000142 if (ParseRelocatableExpression(Disp))
Chris Lattnere6c561b2009-06-23 18:41:30 +0000143 return true;
144
145 // After parsing the base expression we could either have a parenthesized
146 // memory address or not. If not, return now. If so, eat the (.
147 if (Lexer.isNot(asmtok::LParen)) {
148 Op = X86Operand::CreateMem(SegReg, Disp, 0, 0, 0);
149 return false;
150 }
151
152 // Eat the '('.
153 Lexer.Lex();
154 }
155 }
156
157 // If we reached here, then we just ate the ( of the memory operand. Process
158 // the rest of the memory operand.
159 unsigned BaseReg = 0, ScaleReg = 0, Scale = 0;
160
161 if (Lexer.is(asmtok::Register)) {
162 BaseReg = 123; // FIXME: decode reg #
163 Lexer.Lex(); // eat the register.
164 }
165
166 if (Lexer.is(asmtok::Comma)) {
167 Lexer.Lex(); // eat the comma.
168
169 if (Lexer.is(asmtok::Register)) {
170 ScaleReg = 123; // FIXME: decode reg #
171 Lexer.Lex(); // eat the register.
172 Scale = 1; // If not specified, the scale defaults to 1.
173 }
174
175 if (Lexer.is(asmtok::Comma)) {
176 Lexer.Lex(); // eat the comma.
177
178 // If present, get and validate scale amount.
179 if (Lexer.is(asmtok::IntVal)) {
180 int64_t ScaleVal = Lexer.getCurIntVal();
181 if (ScaleVal != 1 && ScaleVal != 2 && ScaleVal != 4 && ScaleVal != 8)
182 return TokError("scale factor in address must be 1, 2, 4 or 8");
183 Lexer.Lex(); // eat the scale.
184 Scale = (unsigned)ScaleVal;
185 }
186 }
187 }
188
189 // Ok, we've eaten the memory operand, verify we have a ')' and eat it too.
190 if (Lexer.isNot(asmtok::RParen))
191 return TokError("unexpected token in memory operand");
192 Lexer.Lex(); // Eat the ')'.
193
194 Op = X86Operand::CreateMem(SegReg, Disp, BaseReg, Scale, ScaleReg);
195 return false;
196}
197
198/// ParseX86InstOperands - Parse the operands of an X86 instruction and return
199/// them as the operands of an MCInst.
200bool AsmParser::ParseX86InstOperands(MCInst &Inst) {
201 // If no operands are present, just return.
202 if (Lexer.is(asmtok::EndOfStatement))
203 return false;
204
205 // Read the first operand.
206 X86Operand Op;
207 if (ParseX86Operand(Op))
208 return true;
209 Op.AddToMCInst(Inst);
210
211 while (Lexer.is(asmtok::Comma)) {
212 Lexer.Lex(); // Eat the comma.
213
214 // Parse and remember the operand.
215 Op = X86Operand();
216 if (ParseX86Operand(Op))
217 return true;
218 Op.AddToMCInst(Inst);
219 }
220 return false;
221}