blob: 755b9afa244beef2320200edd16ac11332c59f87 [file] [log] [blame]
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00001//===-- ARMAsmParser.cpp - Parse ARM assembly to MCInst instructions ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "ARM.h"
Bill Wendling92b5a2e2010-11-03 01:49:29 +000011#include "ARMAddressingModes.h"
Evan Cheng75972122011-01-13 07:58:56 +000012#include "ARMMCExpr.h"
Evan Chengb72d2a92011-01-11 21:46:47 +000013#include "ARMBaseRegisterInfo.h"
Daniel Dunbar3483aca2010-08-11 05:24:50 +000014#include "ARMSubtarget.h"
Chris Lattnerc6ef2772010-01-22 01:44:57 +000015#include "llvm/MC/MCParser/MCAsmLexer.h"
16#include "llvm/MC/MCParser/MCAsmParser.h"
17#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
Jim Grosbach642fc9c2010-11-05 22:33:53 +000018#include "llvm/MC/MCContext.h"
Kevin Enderbyca9c42c2009-09-15 00:27:25 +000019#include "llvm/MC/MCStreamer.h"
20#include "llvm/MC/MCExpr.h"
21#include "llvm/MC/MCInst.h"
Kevin Enderbyca9c42c2009-09-15 00:27:25 +000022#include "llvm/Target/TargetRegistry.h"
23#include "llvm/Target/TargetAsmParser.h"
Chris Lattnerc6ef2772010-01-22 01:44:57 +000024#include "llvm/Support/SourceMgr.h"
Daniel Dunbarfa315de2010-08-11 06:37:12 +000025#include "llvm/Support/raw_ostream.h"
Chris Lattnerc6ef2772010-01-22 01:44:57 +000026#include "llvm/ADT/SmallVector.h"
Owen Anderson0c9f2502011-01-13 22:50:36 +000027#include "llvm/ADT/StringExtras.h"
Daniel Dunbar345a9a62010-08-11 06:37:20 +000028#include "llvm/ADT/StringSwitch.h"
Chris Lattnerc6ef2772010-01-22 01:44:57 +000029#include "llvm/ADT/Twine.h"
Kevin Enderbyca9c42c2009-09-15 00:27:25 +000030using namespace llvm;
31
Chris Lattner3a697562010-10-28 17:20:03 +000032namespace {
Bill Wendling146018f2010-11-06 21:42:12 +000033
34class ARMOperand;
Jim Grosbach16c74252010-10-29 14:46:02 +000035
Kevin Enderbyca9c42c2009-09-15 00:27:25 +000036class ARMAsmParser : public TargetAsmParser {
37 MCAsmParser &Parser;
Daniel Dunbard73ada72010-07-19 00:33:49 +000038 TargetMachine &TM;
Kevin Enderbyca9c42c2009-09-15 00:27:25 +000039
Kevin Enderbyca9c42c2009-09-15 00:27:25 +000040 MCAsmParser &getParser() const { return Parser; }
Kevin Enderbyca9c42c2009-09-15 00:27:25 +000041 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
42
43 void Warning(SMLoc L, const Twine &Msg) { Parser.Warning(L, Msg); }
Kevin Enderbyca9c42c2009-09-15 00:27:25 +000044 bool Error(SMLoc L, const Twine &Msg) { return Parser.Error(L, Msg); }
45
Chris Lattnere5658fa2010-10-30 04:09:10 +000046 int TryParseRegister();
Roman Divackybf755322011-01-27 17:14:22 +000047 virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
Bill Wendling50d0f582010-11-18 23:43:05 +000048 bool TryParseRegisterWithWriteBack(SmallVectorImpl<MCParsedAsmOperand*> &);
Owen Anderson00828302011-03-18 22:50:18 +000049 bool TryParseShiftRegister(SmallVectorImpl<MCParsedAsmOperand*> &);
Bill Wendling50d0f582010-11-18 23:43:05 +000050 bool ParseRegisterList(SmallVectorImpl<MCParsedAsmOperand*> &);
51 bool ParseMemory(SmallVectorImpl<MCParsedAsmOperand*> &);
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +000052 bool ParseOperand(SmallVectorImpl<MCParsedAsmOperand*> &, StringRef Mnemonic);
Evan Cheng75972122011-01-13 07:58:56 +000053 bool ParsePrefix(ARMMCExpr::VariantKind &RefKind);
Jason W Kim9081b4b2011-01-11 23:53:41 +000054 const MCExpr *ApplyPrefixToExpr(const MCExpr *E,
55 MCSymbolRefExpr::VariantKind Variant);
56
Kevin Enderbya7ba3a82009-10-06 22:26:42 +000057
Kevin Enderby9c41fa82009-10-30 22:55:57 +000058 bool ParseMemoryOffsetReg(bool &Negative,
59 bool &OffsetRegShifted,
Owen Anderson00828302011-03-18 22:50:18 +000060 enum ARM_AM::ShiftOpc &ShiftType,
Kevin Enderby9c41fa82009-10-30 22:55:57 +000061 const MCExpr *&ShiftAmount,
62 const MCExpr *&Offset,
63 bool &OffsetIsReg,
Sean Callanan76264762010-04-02 22:27:05 +000064 int &OffsetRegNum,
65 SMLoc &E);
Owen Anderson00828302011-03-18 22:50:18 +000066 bool ParseShift(enum ARM_AM::ShiftOpc &St,
67 const MCExpr *&ShiftAmount, SMLoc &E);
Kevin Enderbyca9c42c2009-09-15 00:27:25 +000068 bool ParseDirectiveWord(unsigned Size, SMLoc L);
Kevin Enderby515d5092009-10-15 20:48:48 +000069 bool ParseDirectiveThumb(SMLoc L);
Kevin Enderby515d5092009-10-15 20:48:48 +000070 bool ParseDirectiveThumbFunc(SMLoc L);
Kevin Enderby515d5092009-10-15 20:48:48 +000071 bool ParseDirectiveCode(SMLoc L);
Kevin Enderby515d5092009-10-15 20:48:48 +000072 bool ParseDirectiveSyntax(SMLoc L);
73
Chris Lattner7036f8b2010-09-29 01:42:58 +000074 bool MatchAndEmitInstruction(SMLoc IDLoc,
Chris Lattner7c51a312010-09-29 01:50:45 +000075 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Chris Lattnerfa42fad2010-10-28 21:28:01 +000076 MCStreamer &Out);
Bruno Cardoso Lopesfdcee772011-01-18 20:55:11 +000077 void GetMnemonicAcceptInfo(StringRef Mnemonic, bool &CanAcceptCarrySet,
78 bool &CanAcceptPredicationCode);
Jim Grosbach16c74252010-10-29 14:46:02 +000079
Kevin Enderbya7ba3a82009-10-06 22:26:42 +000080 /// @name Auto-generated Match Functions
81 /// {
Daniel Dunbar3483aca2010-08-11 05:24:50 +000082
Chris Lattner0692ee62010-09-06 19:11:01 +000083#define GET_ASSEMBLER_HEADER
84#include "ARMGenAsmMatcher.inc"
Kevin Enderbya7ba3a82009-10-06 22:26:42 +000085
Kevin Enderbya7ba3a82009-10-06 22:26:42 +000086 /// }
87
Jim Grosbachf922c472011-02-12 01:34:40 +000088 OperandMatchResultTy tryParseCoprocNumOperand(
89 SmallVectorImpl<MCParsedAsmOperand*>&);
90 OperandMatchResultTy tryParseCoprocRegOperand(
91 SmallVectorImpl<MCParsedAsmOperand*>&);
92 OperandMatchResultTy tryParseMemBarrierOptOperand(
Bruno Cardoso Lopes8bba1a52011-02-18 19:49:06 +000093 SmallVectorImpl<MCParsedAsmOperand*>&);
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +000094 OperandMatchResultTy tryParseProcIFlagsOperand(
Bruno Cardoso Lopes8bba1a52011-02-18 19:49:06 +000095 SmallVectorImpl<MCParsedAsmOperand*>&);
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +000096 OperandMatchResultTy tryParseMSRMaskOperand(
Bruno Cardoso Lopes8bba1a52011-02-18 19:49:06 +000097 SmallVectorImpl<MCParsedAsmOperand*>&);
Jim Grosbachf922c472011-02-12 01:34:40 +000098
Kevin Enderbyca9c42c2009-09-15 00:27:25 +000099public:
Daniel Dunbard73ada72010-07-19 00:33:49 +0000100 ARMAsmParser(const Target &T, MCAsmParser &_Parser, TargetMachine &_TM)
Jim Grosbach833c93c2010-11-01 16:59:54 +0000101 : TargetAsmParser(T), Parser(_Parser), TM(_TM) {
102 // Initialize the set of available features.
103 setAvailableFeatures(ComputeAvailableFeatures(
104 &TM.getSubtarget<ARMSubtarget>()));
105 }
Kevin Enderbyca9c42c2009-09-15 00:27:25 +0000106
Benjamin Kramer38e59892010-07-14 22:38:02 +0000107 virtual bool ParseInstruction(StringRef Name, SMLoc NameLoc,
Chris Lattner98986712010-01-14 22:21:20 +0000108 SmallVectorImpl<MCParsedAsmOperand*> &Operands);
Kevin Enderbyca9c42c2009-09-15 00:27:25 +0000109 virtual bool ParseDirective(AsmToken DirectiveID);
110};
Jim Grosbach16c74252010-10-29 14:46:02 +0000111} // end anonymous namespace
112
Chris Lattner3a697562010-10-28 17:20:03 +0000113namespace {
114
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000115/// ARMOperand - Instances of this class represent a parsed ARM machine
116/// instruction.
Bill Wendling146018f2010-11-06 21:42:12 +0000117class ARMOperand : public MCParsedAsmOperand {
Sean Callanan76264762010-04-02 22:27:05 +0000118 enum KindTy {
Daniel Dunbar8462b302010-08-11 06:36:53 +0000119 CondCode,
Jim Grosbachd67641b2010-12-06 18:21:12 +0000120 CCOut,
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000121 CoprocNum,
122 CoprocReg,
Kevin Enderbycfe07242009-10-13 22:19:02 +0000123 Immediate,
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +0000124 MemBarrierOpt,
Daniel Dunbar8462b302010-08-11 06:36:53 +0000125 Memory,
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000126 MSRMask,
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000127 ProcIFlags,
Daniel Dunbar8462b302010-08-11 06:36:53 +0000128 Register,
Bill Wendling8d5acb72010-11-06 19:56:04 +0000129 RegisterList,
Bill Wendling0f630752010-11-17 04:32:08 +0000130 DPRRegisterList,
131 SPRRegisterList,
Owen Anderson00828302011-03-18 22:50:18 +0000132 Shifter,
Daniel Dunbar8462b302010-08-11 06:36:53 +0000133 Token
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000134 } Kind;
135
Sean Callanan76264762010-04-02 22:27:05 +0000136 SMLoc StartLoc, EndLoc;
Bill Wendling24d22d22010-11-18 21:50:54 +0000137 SmallVector<unsigned, 8> Registers;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000138
139 union {
140 struct {
Daniel Dunbar8462b302010-08-11 06:36:53 +0000141 ARMCC::CondCodes Val;
142 } CC;
143
144 struct {
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +0000145 ARM_MB::MemBOpt Val;
146 } MBOpt;
147
148 struct {
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000149 unsigned Val;
150 } Cop;
151
152 struct {
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000153 ARM_PROC::IFlags Val;
154 } IFlags;
155
156 struct {
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000157 unsigned Val;
158 } MMask;
159
160 struct {
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000161 const char *Data;
162 unsigned Length;
163 } Tok;
164
165 struct {
166 unsigned RegNum;
167 } Reg;
168
Bill Wendling8155e5b2010-11-06 22:19:43 +0000169 struct {
Kevin Enderbycfe07242009-10-13 22:19:02 +0000170 const MCExpr *Val;
171 } Imm;
Jim Grosbach16c74252010-10-29 14:46:02 +0000172
Daniel Dunbar6a5c22e2011-01-10 15:26:21 +0000173 /// Combined record for all forms of ARM address expressions.
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000174 struct {
175 unsigned BaseRegNum;
Daniel Dunbar2637dc92011-01-18 05:55:15 +0000176 union {
177 unsigned RegNum; ///< Offset register num, when OffsetIsReg.
178 const MCExpr *Value; ///< Offset value, when !OffsetIsReg.
179 } Offset;
Bill Wendling146018f2010-11-06 21:42:12 +0000180 const MCExpr *ShiftAmount; // used when OffsetRegShifted is true
Owen Anderson00828302011-03-18 22:50:18 +0000181 enum ARM_AM::ShiftOpc ShiftType; // used when OffsetRegShifted is true
Bill Wendling146018f2010-11-06 21:42:12 +0000182 unsigned OffsetRegShifted : 1; // only used when OffsetIsReg is true
Bill Wendling50d0f582010-11-18 23:43:05 +0000183 unsigned Preindexed : 1;
184 unsigned Postindexed : 1;
185 unsigned OffsetIsReg : 1;
186 unsigned Negative : 1; // only used when OffsetIsReg is true
187 unsigned Writeback : 1;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000188 } Mem;
Owen Anderson00828302011-03-18 22:50:18 +0000189
190 struct {
191 ARM_AM::ShiftOpc ShiftTy;
192 unsigned RegNum;
193 } Shift;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000194 };
Jim Grosbach16c74252010-10-29 14:46:02 +0000195
Bill Wendling146018f2010-11-06 21:42:12 +0000196 ARMOperand(KindTy K) : MCParsedAsmOperand(), Kind(K) {}
197public:
Sean Callanan76264762010-04-02 22:27:05 +0000198 ARMOperand(const ARMOperand &o) : MCParsedAsmOperand() {
199 Kind = o.Kind;
200 StartLoc = o.StartLoc;
201 EndLoc = o.EndLoc;
202 switch (Kind) {
Daniel Dunbar8462b302010-08-11 06:36:53 +0000203 case CondCode:
204 CC = o.CC;
205 break;
Sean Callanan76264762010-04-02 22:27:05 +0000206 case Token:
Daniel Dunbar8462b302010-08-11 06:36:53 +0000207 Tok = o.Tok;
Sean Callanan76264762010-04-02 22:27:05 +0000208 break;
Jim Grosbachd67641b2010-12-06 18:21:12 +0000209 case CCOut:
Sean Callanan76264762010-04-02 22:27:05 +0000210 case Register:
211 Reg = o.Reg;
212 break;
Bill Wendling8d5acb72010-11-06 19:56:04 +0000213 case RegisterList:
Bill Wendling0f630752010-11-17 04:32:08 +0000214 case DPRRegisterList:
215 case SPRRegisterList:
Bill Wendling24d22d22010-11-18 21:50:54 +0000216 Registers = o.Registers;
Bill Wendling8d5acb72010-11-06 19:56:04 +0000217 break;
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000218 case CoprocNum:
219 case CoprocReg:
220 Cop = o.Cop;
221 break;
Sean Callanan76264762010-04-02 22:27:05 +0000222 case Immediate:
223 Imm = o.Imm;
224 break;
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +0000225 case MemBarrierOpt:
226 MBOpt = o.MBOpt;
227 break;
Sean Callanan76264762010-04-02 22:27:05 +0000228 case Memory:
229 Mem = o.Mem;
230 break;
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000231 case MSRMask:
232 MMask = o.MMask;
233 break;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000234 case ProcIFlags:
235 IFlags = o.IFlags;
Owen Anderson00828302011-03-18 22:50:18 +0000236 break;
237 case Shifter:
238 Shift = o.Shift;
239 break;
Sean Callanan76264762010-04-02 22:27:05 +0000240 }
241 }
Jim Grosbach16c74252010-10-29 14:46:02 +0000242
Sean Callanan76264762010-04-02 22:27:05 +0000243 /// getStartLoc - Get the location of the first token of this operand.
244 SMLoc getStartLoc() const { return StartLoc; }
245 /// getEndLoc - Get the location of the last token of this operand.
246 SMLoc getEndLoc() const { return EndLoc; }
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000247
Daniel Dunbar8462b302010-08-11 06:36:53 +0000248 ARMCC::CondCodes getCondCode() const {
249 assert(Kind == CondCode && "Invalid access!");
250 return CC.Val;
251 }
252
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000253 unsigned getCoproc() const {
254 assert((Kind == CoprocNum || Kind == CoprocReg) && "Invalid access!");
255 return Cop.Val;
256 }
257
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000258 StringRef getToken() const {
259 assert(Kind == Token && "Invalid access!");
260 return StringRef(Tok.Data, Tok.Length);
261 }
262
263 unsigned getReg() const {
Benjamin Kramer6aa49432010-12-07 15:50:35 +0000264 assert((Kind == Register || Kind == CCOut) && "Invalid access!");
Bill Wendling7729e062010-11-09 22:44:22 +0000265 return Reg.RegNum;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000266 }
267
Bill Wendling5fa22a12010-11-09 23:28:44 +0000268 const SmallVectorImpl<unsigned> &getRegList() const {
Bill Wendling0f630752010-11-17 04:32:08 +0000269 assert((Kind == RegisterList || Kind == DPRRegisterList ||
270 Kind == SPRRegisterList) && "Invalid access!");
Bill Wendling24d22d22010-11-18 21:50:54 +0000271 return Registers;
Bill Wendling8d5acb72010-11-06 19:56:04 +0000272 }
273
Kevin Enderbycfe07242009-10-13 22:19:02 +0000274 const MCExpr *getImm() const {
275 assert(Kind == Immediate && "Invalid access!");
276 return Imm.Val;
277 }
278
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +0000279 ARM_MB::MemBOpt getMemBarrierOpt() const {
280 assert(Kind == MemBarrierOpt && "Invalid access!");
281 return MBOpt.Val;
282 }
283
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000284 ARM_PROC::IFlags getProcIFlags() const {
285 assert(Kind == ProcIFlags && "Invalid access!");
286 return IFlags.Val;
287 }
288
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000289 unsigned getMSRMask() const {
290 assert(Kind == MSRMask && "Invalid access!");
291 return MMask.Val;
292 }
293
Daniel Dunbar6ec56202011-01-18 05:55:21 +0000294 /// @name Memory Operand Accessors
295 /// @{
296
297 unsigned getMemBaseRegNum() const {
298 return Mem.BaseRegNum;
299 }
300 unsigned getMemOffsetRegNum() const {
301 assert(Mem.OffsetIsReg && "Invalid access!");
302 return Mem.Offset.RegNum;
303 }
304 const MCExpr *getMemOffset() const {
305 assert(!Mem.OffsetIsReg && "Invalid access!");
306 return Mem.Offset.Value;
307 }
308 unsigned getMemOffsetRegShifted() const {
309 assert(Mem.OffsetIsReg && "Invalid access!");
310 return Mem.OffsetRegShifted;
311 }
312 const MCExpr *getMemShiftAmount() const {
313 assert(Mem.OffsetIsReg && Mem.OffsetRegShifted && "Invalid access!");
314 return Mem.ShiftAmount;
315 }
Owen Anderson00828302011-03-18 22:50:18 +0000316 enum ARM_AM::ShiftOpc getMemShiftType() const {
Daniel Dunbar6ec56202011-01-18 05:55:21 +0000317 assert(Mem.OffsetIsReg && Mem.OffsetRegShifted && "Invalid access!");
318 return Mem.ShiftType;
319 }
320 bool getMemPreindexed() const { return Mem.Preindexed; }
321 bool getMemPostindexed() const { return Mem.Postindexed; }
322 bool getMemOffsetIsReg() const { return Mem.OffsetIsReg; }
323 bool getMemNegative() const { return Mem.Negative; }
324 bool getMemWriteback() const { return Mem.Writeback; }
325
326 /// @}
327
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000328 bool isCoprocNum() const { return Kind == CoprocNum; }
329 bool isCoprocReg() const { return Kind == CoprocReg; }
Daniel Dunbar8462b302010-08-11 06:36:53 +0000330 bool isCondCode() const { return Kind == CondCode; }
Jim Grosbachd67641b2010-12-06 18:21:12 +0000331 bool isCCOut() const { return Kind == CCOut; }
Daniel Dunbar3483aca2010-08-11 05:24:50 +0000332 bool isImm() const { return Kind == Immediate; }
Bill Wendlingb32e7842010-11-08 00:32:40 +0000333 bool isReg() const { return Kind == Register; }
Bill Wendling8d5acb72010-11-06 19:56:04 +0000334 bool isRegList() const { return Kind == RegisterList; }
Bill Wendling0f630752010-11-17 04:32:08 +0000335 bool isDPRRegList() const { return Kind == DPRRegisterList; }
336 bool isSPRRegList() const { return Kind == SPRRegisterList; }
Chris Lattner14b93852010-10-29 00:27:31 +0000337 bool isToken() const { return Kind == Token; }
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +0000338 bool isMemBarrierOpt() const { return Kind == MemBarrierOpt; }
Chris Lattner14b93852010-10-29 00:27:31 +0000339 bool isMemory() const { return Kind == Memory; }
Owen Anderson00828302011-03-18 22:50:18 +0000340 bool isShifter() const { return Kind == Shifter; }
Bill Wendling87f4f9a2010-11-08 23:49:57 +0000341 bool isMemMode5() const {
Daniel Dunbar4b462672011-01-18 05:55:27 +0000342 if (!isMemory() || getMemOffsetIsReg() || getMemWriteback() ||
343 getMemNegative())
Bill Wendling87f4f9a2010-11-08 23:49:57 +0000344 return false;
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000345
Daniel Dunbar4b462672011-01-18 05:55:27 +0000346 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemOffset());
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000347 if (!CE) return false;
348
Bill Wendling87f4f9a2010-11-08 23:49:57 +0000349 // The offset must be a multiple of 4 in the range 0-1020.
350 int64_t Value = CE->getValue();
351 return ((Value & 0x3) == 0 && Value <= 1020 && Value >= -1020);
352 }
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +0000353 bool isMemMode7() const {
354 if (!isMemory() ||
355 getMemPreindexed() ||
356 getMemPostindexed() ||
357 getMemOffsetIsReg() ||
358 getMemNegative() ||
359 getMemWriteback())
360 return false;
361
362 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemOffset());
363 if (!CE) return false;
364
365 if (CE->getValue())
366 return false;
367
368 return true;
369 }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000370 bool isMemModeRegThumb() const {
Daniel Dunbar4b462672011-01-18 05:55:27 +0000371 if (!isMemory() || !getMemOffsetIsReg() || getMemWriteback())
Bill Wendlingf4caf692010-12-14 03:36:38 +0000372 return false;
Daniel Dunbard3df5f32011-01-18 05:34:11 +0000373 return true;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000374 }
375 bool isMemModeImmThumb() const {
Daniel Dunbar4b462672011-01-18 05:55:27 +0000376 if (!isMemory() || getMemOffsetIsReg() || getMemWriteback())
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000377 return false;
378
Daniel Dunbar4b462672011-01-18 05:55:27 +0000379 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemOffset());
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000380 if (!CE) return false;
381
382 // The offset must be a multiple of 4 in the range 0-124.
383 uint64_t Value = CE->getValue();
384 return ((Value & 0x3) == 0 && Value <= 124);
385 }
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000386 bool isMSRMask() const { return Kind == MSRMask; }
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000387 bool isProcIFlags() const { return Kind == ProcIFlags; }
Daniel Dunbar3483aca2010-08-11 05:24:50 +0000388
389 void addExpr(MCInst &Inst, const MCExpr *Expr) const {
Chris Lattner14b93852010-10-29 00:27:31 +0000390 // Add as immediates when possible. Null MCExpr = 0.
391 if (Expr == 0)
392 Inst.addOperand(MCOperand::CreateImm(0));
393 else if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr))
Daniel Dunbar3483aca2010-08-11 05:24:50 +0000394 Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
395 else
396 Inst.addOperand(MCOperand::CreateExpr(Expr));
397 }
398
Daniel Dunbar8462b302010-08-11 06:36:53 +0000399 void addCondCodeOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbar345a9a62010-08-11 06:37:20 +0000400 assert(N == 2 && "Invalid number of operands!");
Daniel Dunbar8462b302010-08-11 06:36:53 +0000401 Inst.addOperand(MCOperand::CreateImm(unsigned(getCondCode())));
Jim Grosbach04f74942010-12-06 18:30:57 +0000402 unsigned RegNum = getCondCode() == ARMCC::AL ? 0: ARM::CPSR;
403 Inst.addOperand(MCOperand::CreateReg(RegNum));
Daniel Dunbar8462b302010-08-11 06:36:53 +0000404 }
405
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000406 void addCoprocNumOperands(MCInst &Inst, unsigned N) const {
407 assert(N == 1 && "Invalid number of operands!");
408 Inst.addOperand(MCOperand::CreateImm(getCoproc()));
409 }
410
411 void addCoprocRegOperands(MCInst &Inst, unsigned N) const {
412 assert(N == 1 && "Invalid number of operands!");
413 Inst.addOperand(MCOperand::CreateImm(getCoproc()));
414 }
415
Jim Grosbachd67641b2010-12-06 18:21:12 +0000416 void addCCOutOperands(MCInst &Inst, unsigned N) const {
417 assert(N == 1 && "Invalid number of operands!");
418 Inst.addOperand(MCOperand::CreateReg(getReg()));
419 }
420
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000421 void addRegOperands(MCInst &Inst, unsigned N) const {
422 assert(N == 1 && "Invalid number of operands!");
423 Inst.addOperand(MCOperand::CreateReg(getReg()));
424 }
425
Owen Anderson00828302011-03-18 22:50:18 +0000426 void addShifterOperands(MCInst &Inst, unsigned N) const {
427 assert(N == 1 && "Invalid number of operands!");
428 Inst.addOperand(MCOperand::CreateImm(
429 ARM_AM::getSORegOpc(Shift.ShiftTy, 0)));
430 }
431
Bill Wendling87f4f9a2010-11-08 23:49:57 +0000432 void addRegListOperands(MCInst &Inst, unsigned N) const {
Bill Wendling7729e062010-11-09 22:44:22 +0000433 assert(N == 1 && "Invalid number of operands!");
Bill Wendling5fa22a12010-11-09 23:28:44 +0000434 const SmallVectorImpl<unsigned> &RegList = getRegList();
435 for (SmallVectorImpl<unsigned>::const_iterator
Bill Wendling7729e062010-11-09 22:44:22 +0000436 I = RegList.begin(), E = RegList.end(); I != E; ++I)
437 Inst.addOperand(MCOperand::CreateReg(*I));
Bill Wendling87f4f9a2010-11-08 23:49:57 +0000438 }
439
Bill Wendling0f630752010-11-17 04:32:08 +0000440 void addDPRRegListOperands(MCInst &Inst, unsigned N) const {
441 addRegListOperands(Inst, N);
442 }
443
444 void addSPRRegListOperands(MCInst &Inst, unsigned N) const {
445 addRegListOperands(Inst, N);
446 }
447
Daniel Dunbar3483aca2010-08-11 05:24:50 +0000448 void addImmOperands(MCInst &Inst, unsigned N) const {
449 assert(N == 1 && "Invalid number of operands!");
450 addExpr(Inst, getImm());
451 }
Jim Grosbach16c74252010-10-29 14:46:02 +0000452
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +0000453 void addMemBarrierOptOperands(MCInst &Inst, unsigned N) const {
454 assert(N == 1 && "Invalid number of operands!");
455 Inst.addOperand(MCOperand::CreateImm(unsigned(getMemBarrierOpt())));
456 }
457
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +0000458 void addMemMode7Operands(MCInst &Inst, unsigned N) const {
459 assert(N == 1 && isMemMode7() && "Invalid number of operands!");
460 Inst.addOperand(MCOperand::CreateReg(getMemBaseRegNum()));
461
462 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemOffset());
463 assert((CE || CE->getValue() == 0) &&
464 "No offset operand support in mode 7");
465 }
466
Chris Lattner14b93852010-10-29 00:27:31 +0000467 void addMemMode5Operands(MCInst &Inst, unsigned N) const {
468 assert(N == 2 && isMemMode5() && "Invalid number of operands!");
Jim Grosbach16c74252010-10-29 14:46:02 +0000469
Daniel Dunbar4b462672011-01-18 05:55:27 +0000470 Inst.addOperand(MCOperand::CreateReg(getMemBaseRegNum()));
471 assert(!getMemOffsetIsReg() && "Invalid mode 5 operand");
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000472
Jim Grosbach80eb2332010-10-29 17:41:25 +0000473 // FIXME: #-0 is encoded differently than #0. Does the parser preserve
474 // the difference?
Daniel Dunbar4b462672011-01-18 05:55:27 +0000475 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemOffset());
Daniel Dunbard3df5f32011-01-18 05:34:11 +0000476 assert(CE && "Non-constant mode 5 offset operand!");
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000477
Daniel Dunbard3df5f32011-01-18 05:34:11 +0000478 // The MCInst offset operand doesn't include the low two bits (like
479 // the instruction encoding).
480 int64_t Offset = CE->getValue() / 4;
481 if (Offset >= 0)
482 Inst.addOperand(MCOperand::CreateImm(ARM_AM::getAM5Opc(ARM_AM::add,
483 Offset)));
484 else
485 Inst.addOperand(MCOperand::CreateImm(ARM_AM::getAM5Opc(ARM_AM::sub,
486 -Offset)));
Chris Lattner14b93852010-10-29 00:27:31 +0000487 }
Daniel Dunbar3483aca2010-08-11 05:24:50 +0000488
Bill Wendlingf4caf692010-12-14 03:36:38 +0000489 void addMemModeRegThumbOperands(MCInst &Inst, unsigned N) const {
490 assert(N == 2 && isMemModeRegThumb() && "Invalid number of operands!");
Daniel Dunbar4b462672011-01-18 05:55:27 +0000491 Inst.addOperand(MCOperand::CreateReg(getMemBaseRegNum()));
492 Inst.addOperand(MCOperand::CreateReg(getMemOffsetRegNum()));
Bill Wendlingf4caf692010-12-14 03:36:38 +0000493 }
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000494
Bill Wendlingf4caf692010-12-14 03:36:38 +0000495 void addMemModeImmThumbOperands(MCInst &Inst, unsigned N) const {
496 assert(N == 2 && isMemModeImmThumb() && "Invalid number of operands!");
Daniel Dunbar4b462672011-01-18 05:55:27 +0000497 Inst.addOperand(MCOperand::CreateReg(getMemBaseRegNum()));
498 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemOffset());
Bill Wendlingf4caf692010-12-14 03:36:38 +0000499 assert(CE && "Non-constant mode offset operand!");
500 Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000501 }
502
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000503 void addMSRMaskOperands(MCInst &Inst, unsigned N) const {
504 assert(N == 1 && "Invalid number of operands!");
505 Inst.addOperand(MCOperand::CreateImm(unsigned(getMSRMask())));
506 }
507
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000508 void addProcIFlagsOperands(MCInst &Inst, unsigned N) const {
509 assert(N == 1 && "Invalid number of operands!");
510 Inst.addOperand(MCOperand::CreateImm(unsigned(getProcIFlags())));
511 }
512
Daniel Dunbarfa315de2010-08-11 06:37:12 +0000513 virtual void dump(raw_ostream &OS) const;
Daniel Dunbarb3cb6962010-08-11 06:37:04 +0000514
Chris Lattner3a697562010-10-28 17:20:03 +0000515 static ARMOperand *CreateCondCode(ARMCC::CondCodes CC, SMLoc S) {
516 ARMOperand *Op = new ARMOperand(CondCode);
Daniel Dunbar345a9a62010-08-11 06:37:20 +0000517 Op->CC.Val = CC;
518 Op->StartLoc = S;
519 Op->EndLoc = S;
Chris Lattner3a697562010-10-28 17:20:03 +0000520 return Op;
Daniel Dunbar345a9a62010-08-11 06:37:20 +0000521 }
522
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000523 static ARMOperand *CreateCoprocNum(unsigned CopVal, SMLoc S) {
524 ARMOperand *Op = new ARMOperand(CoprocNum);
525 Op->Cop.Val = CopVal;
526 Op->StartLoc = S;
527 Op->EndLoc = S;
528 return Op;
529 }
530
531 static ARMOperand *CreateCoprocReg(unsigned CopVal, SMLoc S) {
532 ARMOperand *Op = new ARMOperand(CoprocReg);
533 Op->Cop.Val = CopVal;
534 Op->StartLoc = S;
535 Op->EndLoc = S;
536 return Op;
537 }
538
Jim Grosbachd67641b2010-12-06 18:21:12 +0000539 static ARMOperand *CreateCCOut(unsigned RegNum, SMLoc S) {
540 ARMOperand *Op = new ARMOperand(CCOut);
541 Op->Reg.RegNum = RegNum;
542 Op->StartLoc = S;
543 Op->EndLoc = S;
544 return Op;
545 }
546
Chris Lattner3a697562010-10-28 17:20:03 +0000547 static ARMOperand *CreateToken(StringRef Str, SMLoc S) {
548 ARMOperand *Op = new ARMOperand(Token);
Sean Callanan76264762010-04-02 22:27:05 +0000549 Op->Tok.Data = Str.data();
550 Op->Tok.Length = Str.size();
551 Op->StartLoc = S;
552 Op->EndLoc = S;
Chris Lattner3a697562010-10-28 17:20:03 +0000553 return Op;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000554 }
555
Bill Wendling50d0f582010-11-18 23:43:05 +0000556 static ARMOperand *CreateReg(unsigned RegNum, SMLoc S, SMLoc E) {
Chris Lattner3a697562010-10-28 17:20:03 +0000557 ARMOperand *Op = new ARMOperand(Register);
Sean Callanan76264762010-04-02 22:27:05 +0000558 Op->Reg.RegNum = RegNum;
Sean Callanan76264762010-04-02 22:27:05 +0000559 Op->StartLoc = S;
560 Op->EndLoc = E;
Chris Lattner3a697562010-10-28 17:20:03 +0000561 return Op;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000562 }
563
Owen Anderson00828302011-03-18 22:50:18 +0000564 static ARMOperand *CreateShifter(ARM_AM::ShiftOpc ShTy,
565 SMLoc S, SMLoc E) {
566 ARMOperand *Op = new ARMOperand(Shifter);
567 Op->Shift.ShiftTy = ShTy;
568 Op->StartLoc = S;
569 Op->EndLoc = E;
570 return Op;
571 }
572
Bill Wendling7729e062010-11-09 22:44:22 +0000573 static ARMOperand *
Bill Wendling5fa22a12010-11-09 23:28:44 +0000574 CreateRegList(const SmallVectorImpl<std::pair<unsigned, SMLoc> > &Regs,
Matt Beaumont-Gaycc8d10e2010-11-10 00:08:58 +0000575 SMLoc StartLoc, SMLoc EndLoc) {
Bill Wendling0f630752010-11-17 04:32:08 +0000576 KindTy Kind = RegisterList;
577
578 if (ARM::DPRRegClass.contains(Regs.front().first))
579 Kind = DPRRegisterList;
580 else if (ARM::SPRRegClass.contains(Regs.front().first))
581 Kind = SPRRegisterList;
582
583 ARMOperand *Op = new ARMOperand(Kind);
Bill Wendling5fa22a12010-11-09 23:28:44 +0000584 for (SmallVectorImpl<std::pair<unsigned, SMLoc> >::const_iterator
Bill Wendling7729e062010-11-09 22:44:22 +0000585 I = Regs.begin(), E = Regs.end(); I != E; ++I)
Bill Wendling24d22d22010-11-18 21:50:54 +0000586 Op->Registers.push_back(I->first);
Bill Wendlingcb21d1c2010-11-19 00:38:19 +0000587 array_pod_sort(Op->Registers.begin(), Op->Registers.end());
Matt Beaumont-Gaycc8d10e2010-11-10 00:08:58 +0000588 Op->StartLoc = StartLoc;
589 Op->EndLoc = EndLoc;
Bill Wendling8d5acb72010-11-06 19:56:04 +0000590 return Op;
591 }
592
Chris Lattner3a697562010-10-28 17:20:03 +0000593 static ARMOperand *CreateImm(const MCExpr *Val, SMLoc S, SMLoc E) {
594 ARMOperand *Op = new ARMOperand(Immediate);
Sean Callanan76264762010-04-02 22:27:05 +0000595 Op->Imm.Val = Val;
Sean Callanan76264762010-04-02 22:27:05 +0000596 Op->StartLoc = S;
597 Op->EndLoc = E;
Chris Lattner3a697562010-10-28 17:20:03 +0000598 return Op;
Kevin Enderbycfe07242009-10-13 22:19:02 +0000599 }
600
Chris Lattner3a697562010-10-28 17:20:03 +0000601 static ARMOperand *CreateMem(unsigned BaseRegNum, bool OffsetIsReg,
Daniel Dunbar023835d2011-01-18 05:34:05 +0000602 const MCExpr *Offset, int OffsetRegNum,
Owen Anderson00828302011-03-18 22:50:18 +0000603 bool OffsetRegShifted,
604 enum ARM_AM::ShiftOpc ShiftType,
Chris Lattner3a697562010-10-28 17:20:03 +0000605 const MCExpr *ShiftAmount, bool Preindexed,
606 bool Postindexed, bool Negative, bool Writeback,
607 SMLoc S, SMLoc E) {
Daniel Dunbar023835d2011-01-18 05:34:05 +0000608 assert((OffsetRegNum == -1 || OffsetIsReg) &&
609 "OffsetRegNum must imply OffsetIsReg!");
610 assert((!OffsetRegShifted || OffsetIsReg) &&
611 "OffsetRegShifted must imply OffsetIsReg!");
Daniel Dunbard3df5f32011-01-18 05:34:11 +0000612 assert((Offset || OffsetIsReg) &&
613 "Offset must exists unless register offset is used!");
Daniel Dunbar023835d2011-01-18 05:34:05 +0000614 assert((!ShiftAmount || (OffsetIsReg && OffsetRegShifted)) &&
615 "Cannot have shift amount without shifted register offset!");
616 assert((!Offset || !OffsetIsReg) &&
617 "Cannot have expression offset and register offset!");
618
Chris Lattner3a697562010-10-28 17:20:03 +0000619 ARMOperand *Op = new ARMOperand(Memory);
Sean Callanan76264762010-04-02 22:27:05 +0000620 Op->Mem.BaseRegNum = BaseRegNum;
621 Op->Mem.OffsetIsReg = OffsetIsReg;
Daniel Dunbar2637dc92011-01-18 05:55:15 +0000622 if (OffsetIsReg)
623 Op->Mem.Offset.RegNum = OffsetRegNum;
624 else
625 Op->Mem.Offset.Value = Offset;
Sean Callanan76264762010-04-02 22:27:05 +0000626 Op->Mem.OffsetRegShifted = OffsetRegShifted;
627 Op->Mem.ShiftType = ShiftType;
628 Op->Mem.ShiftAmount = ShiftAmount;
629 Op->Mem.Preindexed = Preindexed;
630 Op->Mem.Postindexed = Postindexed;
631 Op->Mem.Negative = Negative;
632 Op->Mem.Writeback = Writeback;
Jim Grosbach16c74252010-10-29 14:46:02 +0000633
Sean Callanan76264762010-04-02 22:27:05 +0000634 Op->StartLoc = S;
635 Op->EndLoc = E;
Chris Lattner3a697562010-10-28 17:20:03 +0000636 return Op;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000637 }
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +0000638
639 static ARMOperand *CreateMemBarrierOpt(ARM_MB::MemBOpt Opt, SMLoc S) {
640 ARMOperand *Op = new ARMOperand(MemBarrierOpt);
641 Op->MBOpt.Val = Opt;
642 Op->StartLoc = S;
643 Op->EndLoc = S;
644 return Op;
645 }
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000646
647 static ARMOperand *CreateProcIFlags(ARM_PROC::IFlags IFlags, SMLoc S) {
648 ARMOperand *Op = new ARMOperand(ProcIFlags);
649 Op->IFlags.Val = IFlags;
650 Op->StartLoc = S;
651 Op->EndLoc = S;
652 return Op;
653 }
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000654
655 static ARMOperand *CreateMSRMask(unsigned MMask, SMLoc S) {
656 ARMOperand *Op = new ARMOperand(MSRMask);
657 Op->MMask.Val = MMask;
658 Op->StartLoc = S;
659 Op->EndLoc = S;
660 return Op;
661 }
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000662};
663
664} // end anonymous namespace.
665
Daniel Dunbarfa315de2010-08-11 06:37:12 +0000666void ARMOperand::dump(raw_ostream &OS) const {
667 switch (Kind) {
668 case CondCode:
Daniel Dunbar6a5c22e2011-01-10 15:26:21 +0000669 OS << "<ARMCC::" << ARMCondCodeToString(getCondCode()) << ">";
Daniel Dunbarfa315de2010-08-11 06:37:12 +0000670 break;
Jim Grosbachd67641b2010-12-06 18:21:12 +0000671 case CCOut:
672 OS << "<ccout " << getReg() << ">";
673 break;
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000674 case CoprocNum:
675 OS << "<coprocessor number: " << getCoproc() << ">";
676 break;
677 case CoprocReg:
678 OS << "<coprocessor register: " << getCoproc() << ">";
679 break;
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000680 case MSRMask:
681 OS << "<mask: " << getMSRMask() << ">";
682 break;
Daniel Dunbarfa315de2010-08-11 06:37:12 +0000683 case Immediate:
684 getImm()->print(OS);
685 break;
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +0000686 case MemBarrierOpt:
687 OS << "<ARM_MB::" << MemBOptToString(getMemBarrierOpt()) << ">";
688 break;
Daniel Dunbarfa315de2010-08-11 06:37:12 +0000689 case Memory:
Daniel Dunbar6ec56202011-01-18 05:55:21 +0000690 OS << "<memory "
691 << "base:" << getMemBaseRegNum();
692 if (getMemOffsetIsReg()) {
693 OS << " offset:<register " << getMemOffsetRegNum();
694 if (getMemOffsetRegShifted()) {
695 OS << " offset-shift-type:" << getMemShiftType();
696 OS << " offset-shift-amount:" << *getMemShiftAmount();
697 }
698 } else {
699 OS << " offset:" << *getMemOffset();
700 }
701 if (getMemOffsetIsReg())
702 OS << " (offset-is-reg)";
703 if (getMemPreindexed())
704 OS << " (pre-indexed)";
705 if (getMemPostindexed())
706 OS << " (post-indexed)";
707 if (getMemNegative())
708 OS << " (negative)";
709 if (getMemWriteback())
710 OS << " (writeback)";
711 OS << ">";
Daniel Dunbarfa315de2010-08-11 06:37:12 +0000712 break;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000713 case ProcIFlags: {
714 OS << "<ARM_PROC::";
715 unsigned IFlags = getProcIFlags();
716 for (int i=2; i >= 0; --i)
717 if (IFlags & (1 << i))
718 OS << ARM_PROC::IFlagsToString(1 << i);
719 OS << ">";
720 break;
721 }
Daniel Dunbarfa315de2010-08-11 06:37:12 +0000722 case Register:
Bill Wendling50d0f582010-11-18 23:43:05 +0000723 OS << "<register " << getReg() << ">";
Daniel Dunbarfa315de2010-08-11 06:37:12 +0000724 break;
Owen Anderson00828302011-03-18 22:50:18 +0000725 case Shifter:
726 OS << "<shifter " << getShiftOpcStr(Shift.ShiftTy) << ">";
727 break;
Bill Wendling0f630752010-11-17 04:32:08 +0000728 case RegisterList:
729 case DPRRegisterList:
730 case SPRRegisterList: {
Bill Wendling8d5acb72010-11-06 19:56:04 +0000731 OS << "<register_list ";
Bill Wendling8d5acb72010-11-06 19:56:04 +0000732
Bill Wendling5fa22a12010-11-09 23:28:44 +0000733 const SmallVectorImpl<unsigned> &RegList = getRegList();
734 for (SmallVectorImpl<unsigned>::const_iterator
Bill Wendling7729e062010-11-09 22:44:22 +0000735 I = RegList.begin(), E = RegList.end(); I != E; ) {
736 OS << *I;
737 if (++I < E) OS << ", ";
Bill Wendling8d5acb72010-11-06 19:56:04 +0000738 }
739
740 OS << ">";
741 break;
742 }
Daniel Dunbarfa315de2010-08-11 06:37:12 +0000743 case Token:
744 OS << "'" << getToken() << "'";
745 break;
746 }
747}
Daniel Dunbar3483aca2010-08-11 05:24:50 +0000748
749/// @name Auto-generated Match Functions
750/// {
751
752static unsigned MatchRegisterName(StringRef Name);
753
754/// }
755
Bob Wilson69df7232011-02-03 21:46:10 +0000756bool ARMAsmParser::ParseRegister(unsigned &RegNo,
757 SMLoc &StartLoc, SMLoc &EndLoc) {
Roman Divackybf755322011-01-27 17:14:22 +0000758 RegNo = TryParseRegister();
759
760 return (RegNo == (unsigned)-1);
761}
762
Kevin Enderby9c41fa82009-10-30 22:55:57 +0000763/// Try to parse a register name. The token must be an Identifier when called,
Chris Lattnere5658fa2010-10-30 04:09:10 +0000764/// and if it is a register name the token is eaten and the register number is
765/// returned. Otherwise return -1.
766///
767int ARMAsmParser::TryParseRegister() {
768 const AsmToken &Tok = Parser.getTok();
769 assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
Jim Grosbachd4462a52010-11-01 16:44:21 +0000770
Chris Lattnere5658fa2010-10-30 04:09:10 +0000771 // FIXME: Validate register for the current architecture; we have to do
772 // validation later, so maybe there is no need for this here.
Owen Anderson0c9f2502011-01-13 22:50:36 +0000773 std::string upperCase = Tok.getString().str();
774 std::string lowerCase = LowercaseString(upperCase);
775 unsigned RegNum = MatchRegisterName(lowerCase);
776 if (!RegNum) {
777 RegNum = StringSwitch<unsigned>(lowerCase)
778 .Case("r13", ARM::SP)
779 .Case("r14", ARM::LR)
780 .Case("r15", ARM::PC)
781 .Case("ip", ARM::R12)
782 .Default(0);
783 }
784 if (!RegNum) return -1;
Bob Wilson69df7232011-02-03 21:46:10 +0000785
Chris Lattnere5658fa2010-10-30 04:09:10 +0000786 Parser.Lex(); // Eat identifier token.
787 return RegNum;
788}
Jim Grosbachd4462a52010-11-01 16:44:21 +0000789
Owen Anderson00828302011-03-18 22:50:18 +0000790/// Try to parse a register name. The token must be an Identifier when called,
791/// and if it is a register name the token is eaten and the register number is
792/// returned. Otherwise return -1.
793///
794bool ARMAsmParser::TryParseShiftRegister(
795 SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
796 SMLoc S = Parser.getTok().getLoc();
797 const AsmToken &Tok = Parser.getTok();
798 assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
799
800 std::string upperCase = Tok.getString().str();
801 std::string lowerCase = LowercaseString(upperCase);
802 ARM_AM::ShiftOpc ShiftTy = StringSwitch<ARM_AM::ShiftOpc>(lowerCase)
803 .Case("lsl", ARM_AM::lsl)
804 .Case("lsr", ARM_AM::lsr)
805 .Case("asr", ARM_AM::asr)
806 .Case("ror", ARM_AM::ror)
807 .Case("rrx", ARM_AM::rrx)
808 .Default(ARM_AM::no_shift);
809
810 if (ShiftTy == ARM_AM::no_shift)
811 return true;
812
813 Parser.Lex(); // Eat shift-type operand;
814 int RegNum = TryParseRegister();
815 if (RegNum == -1)
816 return Error(Parser.getTok().getLoc(), "register expected");
817
818 Operands.push_back(ARMOperand::CreateReg(RegNum,S, Parser.getTok().getLoc()));
819 Operands.push_back(ARMOperand::CreateShifter(ShiftTy,
820 S, Parser.getTok().getLoc()));
821
822 return false;
823}
824
825
Bill Wendling50d0f582010-11-18 23:43:05 +0000826/// Try to parse a register name. The token must be an Identifier when called.
827/// If it's a register, an AsmOperand is created. Another AsmOperand is created
828/// if there is a "writeback". 'true' if it's not a register.
Chris Lattner3a697562010-10-28 17:20:03 +0000829///
Kevin Enderby9c41fa82009-10-30 22:55:57 +0000830/// TODO this is likely to change to allow different register types and or to
831/// parse for a specific register type.
Bill Wendling50d0f582010-11-18 23:43:05 +0000832bool ARMAsmParser::
833TryParseRegisterWithWriteBack(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Chris Lattnere5658fa2010-10-30 04:09:10 +0000834 SMLoc S = Parser.getTok().getLoc();
835 int RegNo = TryParseRegister();
Bill Wendlinge7176102010-11-06 22:36:58 +0000836 if (RegNo == -1)
Bill Wendling50d0f582010-11-18 23:43:05 +0000837 return true;
Jim Grosbachd4462a52010-11-01 16:44:21 +0000838
Bill Wendling50d0f582010-11-18 23:43:05 +0000839 Operands.push_back(ARMOperand::CreateReg(RegNo, S, Parser.getTok().getLoc()));
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000840
Chris Lattnere5658fa2010-10-30 04:09:10 +0000841 const AsmToken &ExclaimTok = Parser.getTok();
842 if (ExclaimTok.is(AsmToken::Exclaim)) {
Bill Wendling50d0f582010-11-18 23:43:05 +0000843 Operands.push_back(ARMOperand::CreateToken(ExclaimTok.getString(),
844 ExclaimTok.getLoc()));
Chris Lattnere5658fa2010-10-30 04:09:10 +0000845 Parser.Lex(); // Eat exclaim token
Kevin Enderby99e6d4e2009-10-07 18:01:35 +0000846 }
847
Bill Wendling50d0f582010-11-18 23:43:05 +0000848 return false;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +0000849}
850
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000851/// MatchCoprocessorOperandName - Try to parse an coprocessor related
852/// instruction with a symbolic operand name. Example: "p1", "p7", "c3",
853/// "c5", ...
854static int MatchCoprocessorOperandName(StringRef Name, char CoprocOp) {
Owen Andersone4e5e2a2011-01-13 21:46:02 +0000855 // Use the same layout as the tablegen'erated register name matcher. Ugly,
856 // but efficient.
857 switch (Name.size()) {
858 default: break;
859 case 2:
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000860 if (Name[0] != CoprocOp)
Owen Andersone4e5e2a2011-01-13 21:46:02 +0000861 return -1;
862 switch (Name[1]) {
863 default: return -1;
864 case '0': return 0;
865 case '1': return 1;
866 case '2': return 2;
867 case '3': return 3;
868 case '4': return 4;
869 case '5': return 5;
870 case '6': return 6;
871 case '7': return 7;
872 case '8': return 8;
873 case '9': return 9;
874 }
875 break;
876 case 3:
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000877 if (Name[0] != CoprocOp || Name[1] != '1')
Owen Andersone4e5e2a2011-01-13 21:46:02 +0000878 return -1;
879 switch (Name[2]) {
880 default: return -1;
881 case '0': return 10;
882 case '1': return 11;
883 case '2': return 12;
884 case '3': return 13;
885 case '4': return 14;
886 case '5': return 15;
887 }
888 break;
889 }
890
Owen Andersone4e5e2a2011-01-13 21:46:02 +0000891 return -1;
892}
893
Jim Grosbachf922c472011-02-12 01:34:40 +0000894/// tryParseCoprocNumOperand - Try to parse an coprocessor number operand. The
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000895/// token must be an Identifier when called, and if it is a coprocessor
896/// number, the token is eaten and the operand is added to the operand list.
Jim Grosbachf922c472011-02-12 01:34:40 +0000897ARMAsmParser::OperandMatchResultTy ARMAsmParser::
898tryParseCoprocNumOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Owen Andersone4e5e2a2011-01-13 21:46:02 +0000899 SMLoc S = Parser.getTok().getLoc();
900 const AsmToken &Tok = Parser.getTok();
901 assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
902
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000903 int Num = MatchCoprocessorOperandName(Tok.getString(), 'p');
Owen Andersone4e5e2a2011-01-13 21:46:02 +0000904 if (Num == -1)
Jim Grosbachf922c472011-02-12 01:34:40 +0000905 return MatchOperand_NoMatch;
Owen Andersone4e5e2a2011-01-13 21:46:02 +0000906
907 Parser.Lex(); // Eat identifier token.
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000908 Operands.push_back(ARMOperand::CreateCoprocNum(Num, S));
Jim Grosbachf922c472011-02-12 01:34:40 +0000909 return MatchOperand_Success;
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000910}
911
Jim Grosbachf922c472011-02-12 01:34:40 +0000912/// tryParseCoprocRegOperand - Try to parse an coprocessor register operand. The
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000913/// token must be an Identifier when called, and if it is a coprocessor
914/// number, the token is eaten and the operand is added to the operand list.
Jim Grosbachf922c472011-02-12 01:34:40 +0000915ARMAsmParser::OperandMatchResultTy ARMAsmParser::
916tryParseCoprocRegOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000917 SMLoc S = Parser.getTok().getLoc();
918 const AsmToken &Tok = Parser.getTok();
919 assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
920
921 int Reg = MatchCoprocessorOperandName(Tok.getString(), 'c');
922 if (Reg == -1)
Jim Grosbachf922c472011-02-12 01:34:40 +0000923 return MatchOperand_NoMatch;
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +0000924
925 Parser.Lex(); // Eat identifier token.
926 Operands.push_back(ARMOperand::CreateCoprocReg(Reg, S));
Jim Grosbachf922c472011-02-12 01:34:40 +0000927 return MatchOperand_Success;
Owen Andersone4e5e2a2011-01-13 21:46:02 +0000928}
929
Chris Lattnerc0ddfaa2010-10-28 17:23:41 +0000930/// Parse a register list, return it if successful else return null. The first
931/// token must be a '{' when called.
Bill Wendling50d0f582010-11-18 23:43:05 +0000932bool ARMAsmParser::
933ParseRegisterList(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Sean Callanan18b83232010-01-19 21:44:56 +0000934 assert(Parser.getTok().is(AsmToken::LCurly) &&
Bill Wendlinga60f1572010-11-06 10:48:18 +0000935 "Token is not a Left Curly Brace");
Bill Wendlinge7176102010-11-06 22:36:58 +0000936 SMLoc S = Parser.getTok().getLoc();
Kevin Enderbyd7894f12009-10-09 21:12:28 +0000937
Bill Wendling7729e062010-11-09 22:44:22 +0000938 // Read the rest of the registers in the list.
939 unsigned PrevRegNum = 0;
Bill Wendling5fa22a12010-11-09 23:28:44 +0000940 SmallVector<std::pair<unsigned, SMLoc>, 32> Registers;
Kevin Enderbyd7894f12009-10-09 21:12:28 +0000941
Bill Wendling7729e062010-11-09 22:44:22 +0000942 do {
Bill Wendlinge7176102010-11-06 22:36:58 +0000943 bool IsRange = Parser.getTok().is(AsmToken::Minus);
Bill Wendling7729e062010-11-09 22:44:22 +0000944 Parser.Lex(); // Eat non-identifier token.
Kevin Enderbyd7894f12009-10-09 21:12:28 +0000945
Sean Callanan18b83232010-01-19 21:44:56 +0000946 const AsmToken &RegTok = Parser.getTok();
Kevin Enderbyd7894f12009-10-09 21:12:28 +0000947 SMLoc RegLoc = RegTok.getLoc();
Chris Lattnerc0ddfaa2010-10-28 17:23:41 +0000948 if (RegTok.isNot(AsmToken::Identifier)) {
949 Error(RegLoc, "register expected");
Bill Wendling50d0f582010-11-18 23:43:05 +0000950 return true;
Chris Lattnerc0ddfaa2010-10-28 17:23:41 +0000951 }
Bill Wendlinge7176102010-11-06 22:36:58 +0000952
Bill Wendling1d6a2652010-11-06 10:40:24 +0000953 int RegNum = TryParseRegister();
Chris Lattnerc0ddfaa2010-10-28 17:23:41 +0000954 if (RegNum == -1) {
955 Error(RegLoc, "register expected");
Bill Wendling50d0f582010-11-18 23:43:05 +0000956 return true;
Chris Lattnerc0ddfaa2010-10-28 17:23:41 +0000957 }
Kevin Enderbyd7894f12009-10-09 21:12:28 +0000958
Bill Wendlinge7176102010-11-06 22:36:58 +0000959 if (IsRange) {
960 int Reg = PrevRegNum;
961 do {
962 ++Reg;
963 Registers.push_back(std::make_pair(Reg, RegLoc));
964 } while (Reg != RegNum);
965 } else {
966 Registers.push_back(std::make_pair(RegNum, RegLoc));
967 }
968
969 PrevRegNum = RegNum;
Bill Wendling7729e062010-11-09 22:44:22 +0000970 } while (Parser.getTok().is(AsmToken::Comma) ||
971 Parser.getTok().is(AsmToken::Minus));
Bill Wendlinge7176102010-11-06 22:36:58 +0000972
973 // Process the right curly brace of the list.
Sean Callanan18b83232010-01-19 21:44:56 +0000974 const AsmToken &RCurlyTok = Parser.getTok();
Chris Lattnerc0ddfaa2010-10-28 17:23:41 +0000975 if (RCurlyTok.isNot(AsmToken::RCurly)) {
976 Error(RCurlyTok.getLoc(), "'}' expected");
Bill Wendling50d0f582010-11-18 23:43:05 +0000977 return true;
Chris Lattnerc0ddfaa2010-10-28 17:23:41 +0000978 }
Kevin Enderbyd7894f12009-10-09 21:12:28 +0000979
Bill Wendlinge7176102010-11-06 22:36:58 +0000980 SMLoc E = RCurlyTok.getLoc();
981 Parser.Lex(); // Eat right curly brace token.
Jim Grosbach03f44a02010-11-29 23:18:01 +0000982
Bill Wendlinge7176102010-11-06 22:36:58 +0000983 // Verify the register list.
Bill Wendling5fa22a12010-11-09 23:28:44 +0000984 SmallVectorImpl<std::pair<unsigned, SMLoc> >::const_iterator
Bill Wendlinge7176102010-11-06 22:36:58 +0000985 RI = Registers.begin(), RE = Registers.end();
986
Bill Wendling7caebff2011-01-12 21:20:59 +0000987 unsigned HighRegNum = getARMRegisterNumbering(RI->first);
Bill Wendling8e8b18b2010-11-09 23:45:59 +0000988 bool EmittedWarning = false;
989
Bill Wendling7caebff2011-01-12 21:20:59 +0000990 DenseMap<unsigned, bool> RegMap;
991 RegMap[HighRegNum] = true;
992
Bill Wendlinge7176102010-11-06 22:36:58 +0000993 for (++RI; RI != RE; ++RI) {
Bill Wendling7729e062010-11-09 22:44:22 +0000994 const std::pair<unsigned, SMLoc> &RegInfo = *RI;
Bill Wendling7caebff2011-01-12 21:20:59 +0000995 unsigned Reg = getARMRegisterNumbering(RegInfo.first);
Bill Wendlinge7176102010-11-06 22:36:58 +0000996
Bill Wendling8e8b18b2010-11-09 23:45:59 +0000997 if (RegMap[Reg]) {
Bill Wendlinge7176102010-11-06 22:36:58 +0000998 Error(RegInfo.second, "register duplicated in register list");
Bill Wendling50d0f582010-11-18 23:43:05 +0000999 return true;
Bill Wendlinge7176102010-11-06 22:36:58 +00001000 }
1001
Bill Wendling8e8b18b2010-11-09 23:45:59 +00001002 if (!EmittedWarning && Reg < HighRegNum)
Bill Wendlinge7176102010-11-06 22:36:58 +00001003 Warning(RegInfo.second,
1004 "register not in ascending order in register list");
1005
Bill Wendling8e8b18b2010-11-09 23:45:59 +00001006 RegMap[Reg] = true;
1007 HighRegNum = std::max(Reg, HighRegNum);
Bill Wendlinge7176102010-11-06 22:36:58 +00001008 }
1009
Bill Wendling50d0f582010-11-18 23:43:05 +00001010 Operands.push_back(ARMOperand::CreateRegList(Registers, S, E));
1011 return false;
Kevin Enderbyd7894f12009-10-09 21:12:28 +00001012}
1013
Jim Grosbachf922c472011-02-12 01:34:40 +00001014/// tryParseMemBarrierOptOperand - Try to parse DSB/DMB data barrier options.
1015ARMAsmParser::OperandMatchResultTy ARMAsmParser::
1016tryParseMemBarrierOptOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +00001017 SMLoc S = Parser.getTok().getLoc();
1018 const AsmToken &Tok = Parser.getTok();
1019 assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
1020 StringRef OptStr = Tok.getString();
1021
1022 unsigned Opt = StringSwitch<unsigned>(OptStr.slice(0, OptStr.size()))
1023 .Case("sy", ARM_MB::SY)
1024 .Case("st", ARM_MB::ST)
1025 .Case("ish", ARM_MB::ISH)
1026 .Case("ishst", ARM_MB::ISHST)
1027 .Case("nsh", ARM_MB::NSH)
1028 .Case("nshst", ARM_MB::NSHST)
1029 .Case("osh", ARM_MB::OSH)
1030 .Case("oshst", ARM_MB::OSHST)
1031 .Default(~0U);
1032
1033 if (Opt == ~0U)
Jim Grosbachf922c472011-02-12 01:34:40 +00001034 return MatchOperand_NoMatch;
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +00001035
1036 Parser.Lex(); // Eat identifier token.
1037 Operands.push_back(ARMOperand::CreateMemBarrierOpt((ARM_MB::MemBOpt)Opt, S));
Jim Grosbachf922c472011-02-12 01:34:40 +00001038 return MatchOperand_Success;
Bruno Cardoso Lopes706d9462011-02-07 22:09:15 +00001039}
1040
Bruno Cardoso Lopes8bba1a52011-02-18 19:49:06 +00001041/// tryParseProcIFlagsOperand - Try to parse iflags from CPS instruction.
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00001042ARMAsmParser::OperandMatchResultTy ARMAsmParser::
1043tryParseProcIFlagsOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
1044 SMLoc S = Parser.getTok().getLoc();
1045 const AsmToken &Tok = Parser.getTok();
1046 assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
1047 StringRef IFlagsStr = Tok.getString();
1048
1049 unsigned IFlags = 0;
1050 for (int i = 0, e = IFlagsStr.size(); i != e; ++i) {
1051 unsigned Flag = StringSwitch<unsigned>(IFlagsStr.substr(i, 1))
1052 .Case("a", ARM_PROC::A)
1053 .Case("i", ARM_PROC::I)
1054 .Case("f", ARM_PROC::F)
1055 .Default(~0U);
1056
1057 // If some specific iflag is already set, it means that some letter is
1058 // present more than once, this is not acceptable.
1059 if (Flag == ~0U || (IFlags & Flag))
1060 return MatchOperand_NoMatch;
1061
1062 IFlags |= Flag;
1063 }
1064
1065 Parser.Lex(); // Eat identifier token.
1066 Operands.push_back(ARMOperand::CreateProcIFlags((ARM_PROC::IFlags)IFlags, S));
1067 return MatchOperand_Success;
1068}
1069
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00001070/// tryParseMSRMaskOperand - Try to parse mask flags from MSR instruction.
1071ARMAsmParser::OperandMatchResultTy ARMAsmParser::
1072tryParseMSRMaskOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
1073 SMLoc S = Parser.getTok().getLoc();
1074 const AsmToken &Tok = Parser.getTok();
1075 assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
1076 StringRef Mask = Tok.getString();
1077
1078 // Split spec_reg from flag, example: CPSR_sxf => "CPSR" and "sxf"
1079 size_t Start = 0, Next = Mask.find('_');
1080 StringRef Flags = "";
1081 StringRef SpecReg = Mask.slice(Start, Next);
1082 if (Next != StringRef::npos)
1083 Flags = Mask.slice(Next+1, Mask.size());
1084
1085 // FlagsVal contains the complete mask:
1086 // 3-0: Mask
1087 // 4: Special Reg (cpsr, apsr => 0; spsr => 1)
1088 unsigned FlagsVal = 0;
1089
1090 if (SpecReg == "apsr") {
1091 FlagsVal = StringSwitch<unsigned>(Flags)
1092 .Case("nzcvq", 0x8) // same as CPSR_c
1093 .Case("g", 0x4) // same as CPSR_s
1094 .Case("nzcvqg", 0xc) // same as CPSR_fs
1095 .Default(~0U);
1096
Joerg Sonnenberger4b19c982011-02-19 00:43:45 +00001097 if (FlagsVal == ~0U) {
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00001098 if (!Flags.empty())
1099 return MatchOperand_NoMatch;
1100 else
1101 FlagsVal = 0; // No flag
Joerg Sonnenberger4b19c982011-02-19 00:43:45 +00001102 }
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00001103 } else if (SpecReg == "cpsr" || SpecReg == "spsr") {
1104 for (int i = 0, e = Flags.size(); i != e; ++i) {
1105 unsigned Flag = StringSwitch<unsigned>(Flags.substr(i, 1))
1106 .Case("c", 1)
1107 .Case("x", 2)
1108 .Case("s", 4)
1109 .Case("f", 8)
1110 .Default(~0U);
1111
1112 // If some specific flag is already set, it means that some letter is
1113 // present more than once, this is not acceptable.
1114 if (FlagsVal == ~0U || (FlagsVal & Flag))
1115 return MatchOperand_NoMatch;
1116 FlagsVal |= Flag;
1117 }
1118 } else // No match for special register.
1119 return MatchOperand_NoMatch;
1120
1121 // Special register without flags are equivalent to "fc" flags.
1122 if (!FlagsVal)
1123 FlagsVal = 0x9;
1124
1125 // Bit 4: Special Reg (cpsr, apsr => 0; spsr => 1)
1126 if (SpecReg == "spsr")
1127 FlagsVal |= 16;
1128
1129 Parser.Lex(); // Eat identifier token.
1130 Operands.push_back(ARMOperand::CreateMSRMask(FlagsVal, S));
1131 return MatchOperand_Success;
1132}
1133
Bill Wendlinge7176102010-11-06 22:36:58 +00001134/// Parse an ARM memory expression, return false if successful else return true
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001135/// or an error. The first token must be a '[' when called.
Bill Wendling50d0f582010-11-18 23:43:05 +00001136///
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001137/// TODO Only preindexing and postindexing addressing are started, unindexed
1138/// with option, etc are still to do.
Bill Wendling50d0f582010-11-18 23:43:05 +00001139bool ARMAsmParser::
1140ParseMemory(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Sean Callanan76264762010-04-02 22:27:05 +00001141 SMLoc S, E;
Sean Callanan18b83232010-01-19 21:44:56 +00001142 assert(Parser.getTok().is(AsmToken::LBrac) &&
Bill Wendlinga60f1572010-11-06 10:48:18 +00001143 "Token is not a Left Bracket");
Sean Callanan76264762010-04-02 22:27:05 +00001144 S = Parser.getTok().getLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +00001145 Parser.Lex(); // Eat left bracket token.
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001146
Sean Callanan18b83232010-01-19 21:44:56 +00001147 const AsmToken &BaseRegTok = Parser.getTok();
Chris Lattner550276e2010-10-28 20:52:15 +00001148 if (BaseRegTok.isNot(AsmToken::Identifier)) {
1149 Error(BaseRegTok.getLoc(), "register expected");
Bill Wendling50d0f582010-11-18 23:43:05 +00001150 return true;
Chris Lattner550276e2010-10-28 20:52:15 +00001151 }
Chris Lattnere5658fa2010-10-30 04:09:10 +00001152 int BaseRegNum = TryParseRegister();
1153 if (BaseRegNum == -1) {
Chris Lattner550276e2010-10-28 20:52:15 +00001154 Error(BaseRegTok.getLoc(), "register expected");
Bill Wendling50d0f582010-11-18 23:43:05 +00001155 return true;
Chris Lattner550276e2010-10-28 20:52:15 +00001156 }
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001157
Daniel Dunbar05710932011-01-18 05:34:17 +00001158 // The next token must either be a comma or a closing bracket.
1159 const AsmToken &Tok = Parser.getTok();
1160 if (!Tok.is(AsmToken::Comma) && !Tok.is(AsmToken::RBrac))
1161 return true;
1162
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001163 bool Preindexed = false;
1164 bool Postindexed = false;
1165 bool OffsetIsReg = false;
1166 bool Negative = false;
1167 bool Writeback = false;
Daniel Dunbar05d8b712011-01-18 05:34:24 +00001168 ARMOperand *WBOp = 0;
1169 int OffsetRegNum = -1;
1170 bool OffsetRegShifted = false;
Owen Anderson00828302011-03-18 22:50:18 +00001171 enum ARM_AM::ShiftOpc ShiftType = ARM_AM::lsl;
Daniel Dunbar05d8b712011-01-18 05:34:24 +00001172 const MCExpr *ShiftAmount = 0;
1173 const MCExpr *Offset = 0;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001174
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001175 // First look for preindexed address forms, that is after the "[Rn" we now
1176 // have to see if the next token is a comma.
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001177 if (Tok.is(AsmToken::Comma)) {
1178 Preindexed = true;
Sean Callananb9a25b72010-01-19 20:27:46 +00001179 Parser.Lex(); // Eat comma token.
Daniel Dunbar05d8b712011-01-18 05:34:24 +00001180
Chris Lattner550276e2010-10-28 20:52:15 +00001181 if (ParseMemoryOffsetReg(Negative, OffsetRegShifted, ShiftType, ShiftAmount,
1182 Offset, OffsetIsReg, OffsetRegNum, E))
Bill Wendling50d0f582010-11-18 23:43:05 +00001183 return true;
Sean Callanan18b83232010-01-19 21:44:56 +00001184 const AsmToken &RBracTok = Parser.getTok();
Chris Lattner550276e2010-10-28 20:52:15 +00001185 if (RBracTok.isNot(AsmToken::RBrac)) {
1186 Error(RBracTok.getLoc(), "']' expected");
Bill Wendling50d0f582010-11-18 23:43:05 +00001187 return true;
Chris Lattner550276e2010-10-28 20:52:15 +00001188 }
Sean Callanan76264762010-04-02 22:27:05 +00001189 E = RBracTok.getLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +00001190 Parser.Lex(); // Eat right bracket token.
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001191
Sean Callanan18b83232010-01-19 21:44:56 +00001192 const AsmToken &ExclaimTok = Parser.getTok();
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001193 if (ExclaimTok.is(AsmToken::Exclaim)) {
Bill Wendling50d0f582010-11-18 23:43:05 +00001194 WBOp = ARMOperand::CreateToken(ExclaimTok.getString(),
1195 ExclaimTok.getLoc());
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001196 Writeback = true;
Sean Callananb9a25b72010-01-19 20:27:46 +00001197 Parser.Lex(); // Eat exclaim token
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001198 }
Daniel Dunbar05710932011-01-18 05:34:17 +00001199 } else {
1200 // The "[Rn" we have so far was not followed by a comma.
1201
Jim Grosbach80eb2332010-10-29 17:41:25 +00001202 // If there's anything other than the right brace, this is a post indexing
1203 // addressing form.
Sean Callanan76264762010-04-02 22:27:05 +00001204 E = Tok.getLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +00001205 Parser.Lex(); // Eat right bracket token.
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001206
Sean Callanan18b83232010-01-19 21:44:56 +00001207 const AsmToken &NextTok = Parser.getTok();
Jim Grosbach03f44a02010-11-29 23:18:01 +00001208
Kevin Enderbye2a98dd2009-10-15 21:42:45 +00001209 if (NextTok.isNot(AsmToken::EndOfStatement)) {
Jim Grosbach80eb2332010-10-29 17:41:25 +00001210 Postindexed = true;
1211 Writeback = true;
Bill Wendling50d0f582010-11-18 23:43:05 +00001212
Chris Lattner550276e2010-10-28 20:52:15 +00001213 if (NextTok.isNot(AsmToken::Comma)) {
1214 Error(NextTok.getLoc(), "',' expected");
Bill Wendling50d0f582010-11-18 23:43:05 +00001215 return true;
Chris Lattner550276e2010-10-28 20:52:15 +00001216 }
Bill Wendling50d0f582010-11-18 23:43:05 +00001217
Sean Callananb9a25b72010-01-19 20:27:46 +00001218 Parser.Lex(); // Eat comma token.
Bill Wendling50d0f582010-11-18 23:43:05 +00001219
Chris Lattner550276e2010-10-28 20:52:15 +00001220 if (ParseMemoryOffsetReg(Negative, OffsetRegShifted, ShiftType,
Jim Grosbach16c74252010-10-29 14:46:02 +00001221 ShiftAmount, Offset, OffsetIsReg, OffsetRegNum,
Chris Lattner550276e2010-10-28 20:52:15 +00001222 E))
Bill Wendling50d0f582010-11-18 23:43:05 +00001223 return true;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001224 }
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001225 }
Daniel Dunbar05d8b712011-01-18 05:34:24 +00001226
1227 // Force Offset to exist if used.
1228 if (!OffsetIsReg) {
1229 if (!Offset)
1230 Offset = MCConstantExpr::Create(0, getContext());
1231 }
1232
1233 Operands.push_back(ARMOperand::CreateMem(BaseRegNum, OffsetIsReg, Offset,
1234 OffsetRegNum, OffsetRegShifted,
1235 ShiftType, ShiftAmount, Preindexed,
1236 Postindexed, Negative, Writeback,
1237 S, E));
1238 if (WBOp)
1239 Operands.push_back(WBOp);
1240
1241 return false;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001242}
1243
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001244/// Parse the offset of a memory operand after we have seen "[Rn," or "[Rn],"
1245/// we will parse the following (were +/- means that a plus or minus is
1246/// optional):
1247/// +/-Rm
1248/// +/-Rm, shift
1249/// #offset
1250/// we return false on success or an error otherwise.
1251bool ARMAsmParser::ParseMemoryOffsetReg(bool &Negative,
Sean Callanan76264762010-04-02 22:27:05 +00001252 bool &OffsetRegShifted,
Owen Anderson00828302011-03-18 22:50:18 +00001253 enum ARM_AM::ShiftOpc &ShiftType,
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001254 const MCExpr *&ShiftAmount,
1255 const MCExpr *&Offset,
1256 bool &OffsetIsReg,
Sean Callanan76264762010-04-02 22:27:05 +00001257 int &OffsetRegNum,
1258 SMLoc &E) {
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001259 Negative = false;
1260 OffsetRegShifted = false;
1261 OffsetIsReg = false;
1262 OffsetRegNum = -1;
Sean Callanan18b83232010-01-19 21:44:56 +00001263 const AsmToken &NextTok = Parser.getTok();
Sean Callanan76264762010-04-02 22:27:05 +00001264 E = NextTok.getLoc();
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001265 if (NextTok.is(AsmToken::Plus))
Sean Callananb9a25b72010-01-19 20:27:46 +00001266 Parser.Lex(); // Eat plus token.
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001267 else if (NextTok.is(AsmToken::Minus)) {
1268 Negative = true;
Sean Callananb9a25b72010-01-19 20:27:46 +00001269 Parser.Lex(); // Eat minus token
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001270 }
1271 // See if there is a register following the "[Rn," or "[Rn]," we have so far.
Sean Callanan18b83232010-01-19 21:44:56 +00001272 const AsmToken &OffsetRegTok = Parser.getTok();
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001273 if (OffsetRegTok.is(AsmToken::Identifier)) {
Chris Lattnere5658fa2010-10-30 04:09:10 +00001274 SMLoc CurLoc = OffsetRegTok.getLoc();
1275 OffsetRegNum = TryParseRegister();
1276 if (OffsetRegNum != -1) {
Chris Lattner550276e2010-10-28 20:52:15 +00001277 OffsetIsReg = true;
Chris Lattnere5658fa2010-10-30 04:09:10 +00001278 E = CurLoc;
Sean Callanan76264762010-04-02 22:27:05 +00001279 }
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001280 }
Jim Grosbachd4462a52010-11-01 16:44:21 +00001281
Bill Wendling12f40e92010-11-06 10:51:53 +00001282 // If we parsed a register as the offset then there can be a shift after that.
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001283 if (OffsetRegNum != -1) {
1284 // Look for a comma then a shift
Sean Callanan18b83232010-01-19 21:44:56 +00001285 const AsmToken &Tok = Parser.getTok();
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001286 if (Tok.is(AsmToken::Comma)) {
Sean Callananb9a25b72010-01-19 20:27:46 +00001287 Parser.Lex(); // Eat comma token.
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001288
Sean Callanan18b83232010-01-19 21:44:56 +00001289 const AsmToken &Tok = Parser.getTok();
Sean Callanan76264762010-04-02 22:27:05 +00001290 if (ParseShift(ShiftType, ShiftAmount, E))
Duncan Sands34727662010-07-12 08:16:59 +00001291 return Error(Tok.getLoc(), "shift expected");
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001292 OffsetRegShifted = true;
1293 }
1294 }
1295 else { // the "[Rn," or "[Rn,]" we have so far was not followed by "Rm"
1296 // Look for #offset following the "[Rn," or "[Rn],"
Sean Callanan18b83232010-01-19 21:44:56 +00001297 const AsmToken &HashTok = Parser.getTok();
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001298 if (HashTok.isNot(AsmToken::Hash))
1299 return Error(HashTok.getLoc(), "'#' expected");
Jim Grosbach16c74252010-10-29 14:46:02 +00001300
Sean Callananb9a25b72010-01-19 20:27:46 +00001301 Parser.Lex(); // Eat hash token.
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001302
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001303 if (getParser().ParseExpression(Offset))
1304 return true;
Sean Callanan76264762010-04-02 22:27:05 +00001305 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001306 }
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001307 return false;
1308}
1309
1310/// ParseShift as one of these two:
1311/// ( lsl | lsr | asr | ror ) , # shift_amount
1312/// rrx
1313/// and returns true if it parses a shift otherwise it returns false.
Owen Anderson00828302011-03-18 22:50:18 +00001314bool ARMAsmParser::ParseShift(ARM_AM::ShiftOpc &St,
1315 const MCExpr *&ShiftAmount, SMLoc &E) {
Sean Callanan18b83232010-01-19 21:44:56 +00001316 const AsmToken &Tok = Parser.getTok();
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001317 if (Tok.isNot(AsmToken::Identifier))
1318 return true;
Benjamin Kramer38e59892010-07-14 22:38:02 +00001319 StringRef ShiftName = Tok.getString();
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001320 if (ShiftName == "lsl" || ShiftName == "LSL")
Owen Anderson00828302011-03-18 22:50:18 +00001321 St = ARM_AM::lsl;
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001322 else if (ShiftName == "lsr" || ShiftName == "LSR")
Owen Anderson00828302011-03-18 22:50:18 +00001323 St = ARM_AM::lsr;
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001324 else if (ShiftName == "asr" || ShiftName == "ASR")
Owen Anderson00828302011-03-18 22:50:18 +00001325 St = ARM_AM::asr;
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001326 else if (ShiftName == "ror" || ShiftName == "ROR")
Owen Anderson00828302011-03-18 22:50:18 +00001327 St = ARM_AM::ror;
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001328 else if (ShiftName == "rrx" || ShiftName == "RRX")
Owen Anderson00828302011-03-18 22:50:18 +00001329 St = ARM_AM::rrx;
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001330 else
1331 return true;
Sean Callananb9a25b72010-01-19 20:27:46 +00001332 Parser.Lex(); // Eat shift type token.
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001333
1334 // Rrx stands alone.
Owen Anderson00828302011-03-18 22:50:18 +00001335 if (St == ARM_AM::rrx)
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001336 return false;
1337
1338 // Otherwise, there must be a '#' and a shift amount.
Sean Callanan18b83232010-01-19 21:44:56 +00001339 const AsmToken &HashTok = Parser.getTok();
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001340 if (HashTok.isNot(AsmToken::Hash))
1341 return Error(HashTok.getLoc(), "'#' expected");
Sean Callananb9a25b72010-01-19 20:27:46 +00001342 Parser.Lex(); // Eat hash token.
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001343
1344 if (getParser().ParseExpression(ShiftAmount))
1345 return true;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001346
1347 return false;
1348}
1349
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001350/// Parse a arm instruction operand. For now this parses the operand regardless
1351/// of the mnemonic.
Owen Andersone4e5e2a2011-01-13 21:46:02 +00001352bool ARMAsmParser::ParseOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00001353 StringRef Mnemonic) {
Sean Callanan76264762010-04-02 22:27:05 +00001354 SMLoc S, E;
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00001355
1356 // Check if the current operand has a custom associated parser, if so, try to
1357 // custom parse the operand, or fallback to the general approach.
Jim Grosbachf922c472011-02-12 01:34:40 +00001358 OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic);
1359 if (ResTy == MatchOperand_Success)
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00001360 return false;
Jim Grosbachf922c472011-02-12 01:34:40 +00001361 // If there wasn't a custom match, try the generic matcher below. Otherwise,
1362 // there was a match, but an error occurred, in which case, just return that
1363 // the operand parsing failed.
1364 if (ResTy == MatchOperand_ParseFail)
1365 return true;
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00001366
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001367 switch (getLexer().getKind()) {
Bill Wendling146018f2010-11-06 21:42:12 +00001368 default:
1369 Error(Parser.getTok().getLoc(), "unexpected token in operand");
Bill Wendling50d0f582010-11-18 23:43:05 +00001370 return true;
Kevin Enderby67b212e2011-01-13 20:32:36 +00001371 case AsmToken::Identifier:
Bill Wendling50d0f582010-11-18 23:43:05 +00001372 if (!TryParseRegisterWithWriteBack(Operands))
1373 return false;
Owen Anderson00828302011-03-18 22:50:18 +00001374 if (!TryParseShiftRegister(Operands))
1375 return false;
1376
Owen Andersone4e5e2a2011-01-13 21:46:02 +00001377
1378 // Fall though for the Identifier case that is not a register or a
1379 // special name.
Kevin Enderby67b212e2011-01-13 20:32:36 +00001380 case AsmToken::Integer: // things like 1f and 2b as a branch targets
1381 case AsmToken::Dot: { // . as a branch target
Kevin Enderby515d5092009-10-15 20:48:48 +00001382 // This was not a register so parse other operands that start with an
1383 // identifier (like labels) as expressions and create them as immediates.
1384 const MCExpr *IdVal;
Sean Callanan76264762010-04-02 22:27:05 +00001385 S = Parser.getTok().getLoc();
Kevin Enderby515d5092009-10-15 20:48:48 +00001386 if (getParser().ParseExpression(IdVal))
Bill Wendling50d0f582010-11-18 23:43:05 +00001387 return true;
Sean Callanan76264762010-04-02 22:27:05 +00001388 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
Bill Wendling50d0f582010-11-18 23:43:05 +00001389 Operands.push_back(ARMOperand::CreateImm(IdVal, S, E));
1390 return false;
1391 }
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001392 case AsmToken::LBrac:
Bill Wendling50d0f582010-11-18 23:43:05 +00001393 return ParseMemory(Operands);
Kevin Enderbyd7894f12009-10-09 21:12:28 +00001394 case AsmToken::LCurly:
Bill Wendling50d0f582010-11-18 23:43:05 +00001395 return ParseRegisterList(Operands);
Kevin Enderbyd7894f12009-10-09 21:12:28 +00001396 case AsmToken::Hash:
Kevin Enderby079469f2009-10-13 23:33:38 +00001397 // #42 -> immediate.
1398 // TODO: ":lower16:" and ":upper16:" modifiers after # before immediate
Sean Callanan76264762010-04-02 22:27:05 +00001399 S = Parser.getTok().getLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +00001400 Parser.Lex();
Kevin Enderby515d5092009-10-15 20:48:48 +00001401 const MCExpr *ImmVal;
1402 if (getParser().ParseExpression(ImmVal))
Bill Wendling50d0f582010-11-18 23:43:05 +00001403 return true;
Sean Callanan76264762010-04-02 22:27:05 +00001404 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
Bill Wendling50d0f582010-11-18 23:43:05 +00001405 Operands.push_back(ARMOperand::CreateImm(ImmVal, S, E));
1406 return false;
Jason W Kim9081b4b2011-01-11 23:53:41 +00001407 case AsmToken::Colon: {
1408 // ":lower16:" and ":upper16:" expression prefixes
Evan Cheng75972122011-01-13 07:58:56 +00001409 // FIXME: Check it's an expression prefix,
1410 // e.g. (FOO - :lower16:BAR) isn't legal.
1411 ARMMCExpr::VariantKind RefKind;
Jason W Kim9081b4b2011-01-11 23:53:41 +00001412 if (ParsePrefix(RefKind))
1413 return true;
1414
Evan Cheng75972122011-01-13 07:58:56 +00001415 const MCExpr *SubExprVal;
1416 if (getParser().ParseExpression(SubExprVal))
Jason W Kim9081b4b2011-01-11 23:53:41 +00001417 return true;
1418
Evan Cheng75972122011-01-13 07:58:56 +00001419 const MCExpr *ExprVal = ARMMCExpr::Create(RefKind, SubExprVal,
1420 getContext());
Jason W Kim9081b4b2011-01-11 23:53:41 +00001421 E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
Evan Cheng75972122011-01-13 07:58:56 +00001422 Operands.push_back(ARMOperand::CreateImm(ExprVal, S, E));
Jason W Kim9081b4b2011-01-11 23:53:41 +00001423 return false;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001424 }
Jason W Kim9081b4b2011-01-11 23:53:41 +00001425 }
1426}
1427
Evan Cheng75972122011-01-13 07:58:56 +00001428// ParsePrefix - Parse ARM 16-bit relocations expression prefix, i.e.
1429// :lower16: and :upper16:.
1430bool ARMAsmParser::ParsePrefix(ARMMCExpr::VariantKind &RefKind) {
1431 RefKind = ARMMCExpr::VK_ARM_None;
Jason W Kim9081b4b2011-01-11 23:53:41 +00001432
1433 // :lower16: and :upper16: modifiers
Jason W Kim8a8696d2011-01-13 00:27:00 +00001434 assert(getLexer().is(AsmToken::Colon) && "expected a :");
Jason W Kim9081b4b2011-01-11 23:53:41 +00001435 Parser.Lex(); // Eat ':'
1436
1437 if (getLexer().isNot(AsmToken::Identifier)) {
1438 Error(Parser.getTok().getLoc(), "expected prefix identifier in operand");
1439 return true;
1440 }
1441
1442 StringRef IDVal = Parser.getTok().getIdentifier();
1443 if (IDVal == "lower16") {
Evan Cheng75972122011-01-13 07:58:56 +00001444 RefKind = ARMMCExpr::VK_ARM_LO16;
Jason W Kim9081b4b2011-01-11 23:53:41 +00001445 } else if (IDVal == "upper16") {
Evan Cheng75972122011-01-13 07:58:56 +00001446 RefKind = ARMMCExpr::VK_ARM_HI16;
Jason W Kim9081b4b2011-01-11 23:53:41 +00001447 } else {
1448 Error(Parser.getTok().getLoc(), "unexpected prefix in operand");
1449 return true;
1450 }
1451 Parser.Lex();
1452
1453 if (getLexer().isNot(AsmToken::Colon)) {
1454 Error(Parser.getTok().getLoc(), "unexpected token after prefix");
1455 return true;
1456 }
1457 Parser.Lex(); // Eat the last ':'
1458 return false;
1459}
1460
1461const MCExpr *
1462ARMAsmParser::ApplyPrefixToExpr(const MCExpr *E,
1463 MCSymbolRefExpr::VariantKind Variant) {
1464 // Recurse over the given expression, rebuilding it to apply the given variant
1465 // to the leftmost symbol.
1466 if (Variant == MCSymbolRefExpr::VK_None)
1467 return E;
1468
1469 switch (E->getKind()) {
1470 case MCExpr::Target:
1471 llvm_unreachable("Can't handle target expr yet");
1472 case MCExpr::Constant:
1473 llvm_unreachable("Can't handle lower16/upper16 of constant yet");
1474
1475 case MCExpr::SymbolRef: {
1476 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E);
1477
1478 if (SRE->getKind() != MCSymbolRefExpr::VK_None)
1479 return 0;
1480
1481 return MCSymbolRefExpr::Create(&SRE->getSymbol(), Variant, getContext());
1482 }
1483
1484 case MCExpr::Unary:
1485 llvm_unreachable("Can't handle unary expressions yet");
1486
1487 case MCExpr::Binary: {
1488 const MCBinaryExpr *BE = cast<MCBinaryExpr>(E);
1489 const MCExpr *LHS = ApplyPrefixToExpr(BE->getLHS(), Variant);
1490 const MCExpr *RHS = BE->getRHS();
1491 if (!LHS)
1492 return 0;
1493
1494 return MCBinaryExpr::Create(BE->getOpcode(), LHS, RHS, getContext());
1495 }
1496 }
1497
1498 assert(0 && "Invalid expression kind!");
1499 return 0;
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001500}
1501
Daniel Dunbar352e1482011-01-11 15:59:50 +00001502/// \brief Given a mnemonic, split out possible predication code and carry
1503/// setting letters to form a canonical mnemonic and flags.
1504//
Daniel Dunbarbadbd2f2011-01-10 12:24:52 +00001505// FIXME: Would be nice to autogen this.
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00001506static StringRef SplitMnemonic(StringRef Mnemonic,
1507 unsigned &PredicationCode,
1508 bool &CarrySetting,
1509 unsigned &ProcessorIMod) {
Daniel Dunbar352e1482011-01-11 15:59:50 +00001510 PredicationCode = ARMCC::AL;
1511 CarrySetting = false;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00001512 ProcessorIMod = 0;
Daniel Dunbar352e1482011-01-11 15:59:50 +00001513
Daniel Dunbarbadbd2f2011-01-10 12:24:52 +00001514 // Ignore some mnemonics we know aren't predicated forms.
Daniel Dunbar352e1482011-01-11 15:59:50 +00001515 //
1516 // FIXME: Would be nice to autogen this.
Daniel Dunbar8ab11122011-01-10 21:01:03 +00001517 if (Mnemonic == "teq" || Mnemonic == "vceq" ||
1518 Mnemonic == "movs" ||
1519 Mnemonic == "svc" ||
1520 (Mnemonic == "mls" || Mnemonic == "smmls" || Mnemonic == "vcls" ||
1521 Mnemonic == "vmls" || Mnemonic == "vnmls") ||
1522 Mnemonic == "vacge" || Mnemonic == "vcge" ||
1523 Mnemonic == "vclt" ||
1524 Mnemonic == "vacgt" || Mnemonic == "vcgt" ||
1525 Mnemonic == "vcle" ||
1526 (Mnemonic == "smlal" || Mnemonic == "umaal" || Mnemonic == "umlal" ||
1527 Mnemonic == "vabal" || Mnemonic == "vmlal" || Mnemonic == "vpadal" ||
1528 Mnemonic == "vqdmlal"))
Daniel Dunbar352e1482011-01-11 15:59:50 +00001529 return Mnemonic;
Daniel Dunbar5747b132010-08-11 06:37:16 +00001530
Daniel Dunbar352e1482011-01-11 15:59:50 +00001531 // First, split out any predication code.
Daniel Dunbarbadbd2f2011-01-10 12:24:52 +00001532 unsigned CC = StringSwitch<unsigned>(Mnemonic.substr(Mnemonic.size()-2))
Daniel Dunbar345a9a62010-08-11 06:37:20 +00001533 .Case("eq", ARMCC::EQ)
1534 .Case("ne", ARMCC::NE)
1535 .Case("hs", ARMCC::HS)
1536 .Case("lo", ARMCC::LO)
1537 .Case("mi", ARMCC::MI)
1538 .Case("pl", ARMCC::PL)
1539 .Case("vs", ARMCC::VS)
1540 .Case("vc", ARMCC::VC)
1541 .Case("hi", ARMCC::HI)
1542 .Case("ls", ARMCC::LS)
1543 .Case("ge", ARMCC::GE)
1544 .Case("lt", ARMCC::LT)
1545 .Case("gt", ARMCC::GT)
1546 .Case("le", ARMCC::LE)
1547 .Case("al", ARMCC::AL)
1548 .Default(~0U);
Daniel Dunbarbadbd2f2011-01-10 12:24:52 +00001549 if (CC != ~0U) {
1550 Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 2);
Daniel Dunbar352e1482011-01-11 15:59:50 +00001551 PredicationCode = CC;
Bill Wendling52925b62010-10-29 23:50:21 +00001552 }
Daniel Dunbar345a9a62010-08-11 06:37:20 +00001553
Daniel Dunbar352e1482011-01-11 15:59:50 +00001554 // Next, determine if we have a carry setting bit. We explicitly ignore all
1555 // the instructions we know end in 's'.
1556 if (Mnemonic.endswith("s") &&
1557 !(Mnemonic == "asrs" || Mnemonic == "cps" || Mnemonic == "mls" ||
1558 Mnemonic == "movs" || Mnemonic == "mrs" || Mnemonic == "smmls" ||
1559 Mnemonic == "vabs" || Mnemonic == "vcls" || Mnemonic == "vmls" ||
1560 Mnemonic == "vmrs" || Mnemonic == "vnmls" || Mnemonic == "vqabs" ||
1561 Mnemonic == "vrecps" || Mnemonic == "vrsqrts")) {
1562 Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 1);
1563 CarrySetting = true;
1564 }
1565
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00001566 // The "cps" instruction can have a interrupt mode operand which is glued into
1567 // the mnemonic. Check if this is the case, split it and parse the imod op
1568 if (Mnemonic.startswith("cps")) {
1569 // Split out any imod code.
1570 unsigned IMod =
1571 StringSwitch<unsigned>(Mnemonic.substr(Mnemonic.size()-2, 2))
1572 .Case("ie", ARM_PROC::IE)
1573 .Case("id", ARM_PROC::ID)
1574 .Default(~0U);
1575 if (IMod != ~0U) {
1576 Mnemonic = Mnemonic.slice(0, Mnemonic.size()-2);
1577 ProcessorIMod = IMod;
1578 }
1579 }
1580
Daniel Dunbar352e1482011-01-11 15:59:50 +00001581 return Mnemonic;
1582}
Daniel Dunbar3771dd02011-01-11 15:59:53 +00001583
1584/// \brief Given a canonical mnemonic, determine if the instruction ever allows
1585/// inclusion of carry set or predication code operands.
1586//
1587// FIXME: It would be nice to autogen this.
Bruno Cardoso Lopesfdcee772011-01-18 20:55:11 +00001588void ARMAsmParser::
1589GetMnemonicAcceptInfo(StringRef Mnemonic, bool &CanAcceptCarrySet,
1590 bool &CanAcceptPredicationCode) {
1591 bool isThumb = TM.getSubtarget<ARMSubtarget>().isThumb();
1592
Daniel Dunbareb9f3f92011-01-11 19:06:29 +00001593 if (Mnemonic == "and" || Mnemonic == "lsl" || Mnemonic == "lsr" ||
1594 Mnemonic == "rrx" || Mnemonic == "ror" || Mnemonic == "sub" ||
1595 Mnemonic == "smull" || Mnemonic == "add" || Mnemonic == "adc" ||
1596 Mnemonic == "mul" || Mnemonic == "bic" || Mnemonic == "asr" ||
1597 Mnemonic == "umlal" || Mnemonic == "orr" || Mnemonic == "mov" ||
1598 Mnemonic == "rsb" || Mnemonic == "rsc" || Mnemonic == "orn" ||
1599 Mnemonic == "sbc" || Mnemonic == "mla" || Mnemonic == "umull" ||
1600 Mnemonic == "eor" || Mnemonic == "smlal" || Mnemonic == "mvn") {
1601 CanAcceptCarrySet = true;
1602 } else {
1603 CanAcceptCarrySet = false;
1604 }
Daniel Dunbar3771dd02011-01-11 15:59:53 +00001605
Daniel Dunbareb9f3f92011-01-11 19:06:29 +00001606 if (Mnemonic == "cbnz" || Mnemonic == "setend" || Mnemonic == "dmb" ||
1607 Mnemonic == "cps" || Mnemonic == "mcr2" || Mnemonic == "it" ||
1608 Mnemonic == "mcrr2" || Mnemonic == "cbz" || Mnemonic == "cdp2" ||
1609 Mnemonic == "trap" || Mnemonic == "mrc2" || Mnemonic == "mrrc2" ||
Bruno Cardoso Lopese47f3752011-01-20 19:18:32 +00001610 Mnemonic == "dsb" || Mnemonic == "movs" || Mnemonic == "isb" ||
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00001611 Mnemonic == "clrex" || Mnemonic.startswith("cps")) {
Daniel Dunbar3771dd02011-01-11 15:59:53 +00001612 CanAcceptPredicationCode = false;
1613 } else {
1614 CanAcceptPredicationCode = true;
1615 }
Bruno Cardoso Lopesfa5bd272011-01-20 16:35:57 +00001616
1617 if (isThumb)
1618 if (Mnemonic == "bkpt" || Mnemonic == "mcr" || Mnemonic == "mcrr" ||
Bruno Cardoso Lopes8dd37f72011-01-20 18:32:09 +00001619 Mnemonic == "mrc" || Mnemonic == "mrrc" || Mnemonic == "cdp")
Bruno Cardoso Lopesfa5bd272011-01-20 16:35:57 +00001620 CanAcceptPredicationCode = false;
Daniel Dunbarbadbd2f2011-01-10 12:24:52 +00001621}
1622
1623/// Parse an arm instruction mnemonic followed by its operands.
1624bool ARMAsmParser::ParseInstruction(StringRef Name, SMLoc NameLoc,
1625 SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
1626 // Create the leading tokens for the mnemonic, split by '.' characters.
1627 size_t Start = 0, Next = Name.find('.');
1628 StringRef Head = Name.slice(Start, Next);
1629
Daniel Dunbar352e1482011-01-11 15:59:50 +00001630 // Split out the predication code and carry setting flag from the mnemonic.
1631 unsigned PredicationCode;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00001632 unsigned ProcessorIMod;
Daniel Dunbar352e1482011-01-11 15:59:50 +00001633 bool CarrySetting;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00001634 Head = SplitMnemonic(Head, PredicationCode, CarrySetting,
1635 ProcessorIMod);
Daniel Dunbarbadbd2f2011-01-10 12:24:52 +00001636
Chris Lattner3a697562010-10-28 17:20:03 +00001637 Operands.push_back(ARMOperand::CreateToken(Head, NameLoc));
Bill Wendling9717fa92010-11-21 10:56:05 +00001638
Daniel Dunbar3771dd02011-01-11 15:59:53 +00001639 // Next, add the CCOut and ConditionCode operands, if needed.
1640 //
1641 // For mnemonics which can ever incorporate a carry setting bit or predication
1642 // code, our matching model involves us always generating CCOut and
1643 // ConditionCode operands to match the mnemonic "as written" and then we let
1644 // the matcher deal with finding the right instruction or generating an
1645 // appropriate error.
1646 bool CanAcceptCarrySet, CanAcceptPredicationCode;
1647 GetMnemonicAcceptInfo(Head, CanAcceptCarrySet, CanAcceptPredicationCode);
1648
1649 // Add the carry setting operand, if necessary.
1650 //
1651 // FIXME: It would be awesome if we could somehow invent a location such that
1652 // match errors on this operand would print a nice diagnostic about how the
1653 // 's' character in the mnemonic resulted in a CCOut operand.
1654 if (CanAcceptCarrySet) {
1655 Operands.push_back(ARMOperand::CreateCCOut(CarrySetting ? ARM::CPSR : 0,
1656 NameLoc));
1657 } else {
1658 // This mnemonic can't ever accept a carry set, but the user wrote one (or
1659 // misspelled another mnemonic).
1660
1661 // FIXME: Issue a nice error.
1662 }
1663
1664 // Add the predication code operand, if necessary.
1665 if (CanAcceptPredicationCode) {
1666 Operands.push_back(ARMOperand::CreateCondCode(
1667 ARMCC::CondCodes(PredicationCode), NameLoc));
1668 } else {
1669 // This mnemonic can't ever accept a predication code, but the user wrote
1670 // one (or misspelled another mnemonic).
1671
1672 // FIXME: Issue a nice error.
Daniel Dunbarbadbd2f2011-01-10 12:24:52 +00001673 }
Daniel Dunbar345a9a62010-08-11 06:37:20 +00001674
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00001675 // Add the processor imod operand, if necessary.
1676 if (ProcessorIMod) {
1677 Operands.push_back(ARMOperand::CreateImm(
1678 MCConstantExpr::Create(ProcessorIMod, getContext()),
1679 NameLoc, NameLoc));
1680 } else {
1681 // This mnemonic can't ever accept a imod, but the user wrote
1682 // one (or misspelled another mnemonic).
1683
1684 // FIXME: Issue a nice error.
1685 }
1686
Daniel Dunbar345a9a62010-08-11 06:37:20 +00001687 // Add the remaining tokens in the mnemonic.
Daniel Dunbar5747b132010-08-11 06:37:16 +00001688 while (Next != StringRef::npos) {
1689 Start = Next;
1690 Next = Name.find('.', Start + 1);
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00001691 StringRef ExtraToken = Name.slice(Start, Next);
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001692
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00001693 Operands.push_back(ARMOperand::CreateToken(ExtraToken, NameLoc));
Daniel Dunbar5747b132010-08-11 06:37:16 +00001694 }
1695
1696 // Read the remaining operands.
1697 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001698 // Read the first operand.
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00001699 if (ParseOperand(Operands, Head)) {
Chris Lattnercbf8a982010-09-11 16:18:25 +00001700 Parser.EatToEndOfStatement();
1701 return true;
1702 }
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001703
1704 while (getLexer().is(AsmToken::Comma)) {
Sean Callananb9a25b72010-01-19 20:27:46 +00001705 Parser.Lex(); // Eat the comma.
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001706
1707 // Parse and remember the operand.
Bruno Cardoso Lopesfafde7f2011-02-07 21:41:25 +00001708 if (ParseOperand(Operands, Head)) {
Chris Lattnercbf8a982010-09-11 16:18:25 +00001709 Parser.EatToEndOfStatement();
1710 return true;
1711 }
Kevin Enderbya7ba3a82009-10-06 22:26:42 +00001712 }
1713 }
Jim Grosbach16c74252010-10-29 14:46:02 +00001714
Chris Lattnercbf8a982010-09-11 16:18:25 +00001715 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1716 Parser.EatToEndOfStatement();
Chris Lattner34e53142010-09-08 05:10:46 +00001717 return TokError("unexpected token in argument list");
Chris Lattnercbf8a982010-09-11 16:18:25 +00001718 }
Bill Wendling146018f2010-11-06 21:42:12 +00001719
Chris Lattner34e53142010-09-08 05:10:46 +00001720 Parser.Lex(); // Consume the EndOfStatement
Chris Lattner98986712010-01-14 22:21:20 +00001721 return false;
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00001722}
1723
Chris Lattnerfa42fad2010-10-28 21:28:01 +00001724bool ARMAsmParser::
1725MatchAndEmitInstruction(SMLoc IDLoc,
1726 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
1727 MCStreamer &Out) {
1728 MCInst Inst;
1729 unsigned ErrorInfo;
Kevin Enderby193c3ac2010-12-09 19:19:43 +00001730 MatchResultTy MatchResult, MatchResult2;
1731 MatchResult = MatchInstructionImpl(Operands, Inst, ErrorInfo);
1732 if (MatchResult != Match_Success) {
1733 // If we get a Match_InvalidOperand it might be some arithmetic instruction
1734 // that does not update the condition codes. So try adding a CCOut operand
1735 // with a value of reg0.
1736 if (MatchResult == Match_InvalidOperand) {
1737 Operands.insert(Operands.begin() + 1,
1738 ARMOperand::CreateCCOut(0,
1739 ((ARMOperand*)Operands[0])->getStartLoc()));
1740 MatchResult2 = MatchInstructionImpl(Operands, Inst, ErrorInfo);
1741 if (MatchResult2 == Match_Success)
1742 MatchResult = Match_Success;
Kevin Enderby44a9e8f2010-12-10 01:41:56 +00001743 else {
1744 ARMOperand *CCOut = ((ARMOperand*)Operands[1]);
Kevin Enderby193c3ac2010-12-09 19:19:43 +00001745 Operands.erase(Operands.begin() + 1);
Kevin Enderby44a9e8f2010-12-10 01:41:56 +00001746 delete CCOut;
1747 }
Kevin Enderby193c3ac2010-12-09 19:19:43 +00001748 }
1749 // If we get a Match_MnemonicFail it might be some arithmetic instruction
1750 // that updates the condition codes if it ends in 's'. So see if the
1751 // mnemonic ends in 's' and if so try removing the 's' and adding a CCOut
1752 // operand with a value of CPSR.
1753 else if(MatchResult == Match_MnemonicFail) {
1754 // Get the instruction mnemonic, which is the first token.
1755 StringRef Mnemonic = ((ARMOperand*)Operands[0])->getToken();
1756 if (Mnemonic.substr(Mnemonic.size()-1) == "s") {
1757 // removed the 's' from the mnemonic for matching.
1758 StringRef MnemonicNoS = Mnemonic.slice(0, Mnemonic.size() - 1);
1759 SMLoc NameLoc = ((ARMOperand*)Operands[0])->getStartLoc();
Kevin Enderby44a9e8f2010-12-10 01:41:56 +00001760 ARMOperand *OldMnemonic = ((ARMOperand*)Operands[0]);
1761 Operands.erase(Operands.begin());
1762 delete OldMnemonic;
1763 Operands.insert(Operands.begin(),
Kevin Enderby193c3ac2010-12-09 19:19:43 +00001764 ARMOperand::CreateToken(MnemonicNoS, NameLoc));
1765 Operands.insert(Operands.begin() + 1,
1766 ARMOperand::CreateCCOut(ARM::CPSR, NameLoc));
1767 MatchResult2 = MatchInstructionImpl(Operands, Inst, ErrorInfo);
1768 if (MatchResult2 == Match_Success)
1769 MatchResult = Match_Success;
1770 else {
Kevin Enderby44a9e8f2010-12-10 01:41:56 +00001771 ARMOperand *OldMnemonic = ((ARMOperand*)Operands[0]);
1772 Operands.erase(Operands.begin());
1773 delete OldMnemonic;
1774 Operands.insert(Operands.begin(),
Kevin Enderby193c3ac2010-12-09 19:19:43 +00001775 ARMOperand::CreateToken(Mnemonic, NameLoc));
Kevin Enderby44a9e8f2010-12-10 01:41:56 +00001776 ARMOperand *CCOut = ((ARMOperand*)Operands[1]);
1777 Operands.erase(Operands.begin() + 1);
1778 delete CCOut;
Kevin Enderby193c3ac2010-12-09 19:19:43 +00001779 }
1780 }
1781 }
1782 }
1783 switch (MatchResult) {
Chris Lattnere73d4f82010-10-28 21:41:58 +00001784 case Match_Success:
Chris Lattnerfa42fad2010-10-28 21:28:01 +00001785 Out.EmitInstruction(Inst);
1786 return false;
Chris Lattnere73d4f82010-10-28 21:41:58 +00001787 case Match_MissingFeature:
1788 Error(IDLoc, "instruction requires a CPU feature not currently enabled");
1789 return true;
1790 case Match_InvalidOperand: {
1791 SMLoc ErrorLoc = IDLoc;
1792 if (ErrorInfo != ~0U) {
1793 if (ErrorInfo >= Operands.size())
1794 return Error(IDLoc, "too few operands for instruction");
Jim Grosbach16c74252010-10-29 14:46:02 +00001795
Chris Lattnere73d4f82010-10-28 21:41:58 +00001796 ErrorLoc = ((ARMOperand*)Operands[ErrorInfo])->getStartLoc();
1797 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
1798 }
Jim Grosbach16c74252010-10-29 14:46:02 +00001799
Chris Lattnere73d4f82010-10-28 21:41:58 +00001800 return Error(ErrorLoc, "invalid operand for instruction");
Chris Lattnerfa42fad2010-10-28 21:28:01 +00001801 }
Chris Lattnere73d4f82010-10-28 21:41:58 +00001802 case Match_MnemonicFail:
1803 return Error(IDLoc, "unrecognized instruction mnemonic");
Daniel Dunbarb4129152011-02-04 17:12:23 +00001804 case Match_ConversionFail:
1805 return Error(IDLoc, "unable to convert operands to instruction");
Chris Lattnere73d4f82010-10-28 21:41:58 +00001806 }
Jim Grosbach16c74252010-10-29 14:46:02 +00001807
Eric Christopherc223e2b2010-10-29 09:26:59 +00001808 llvm_unreachable("Implement any new match types added!");
Bill Wendling146018f2010-11-06 21:42:12 +00001809 return true;
Chris Lattnerfa42fad2010-10-28 21:28:01 +00001810}
1811
Kevin Enderby515d5092009-10-15 20:48:48 +00001812/// ParseDirective parses the arm specific directives
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00001813bool ARMAsmParser::ParseDirective(AsmToken DirectiveID) {
1814 StringRef IDVal = DirectiveID.getIdentifier();
1815 if (IDVal == ".word")
1816 return ParseDirectiveWord(4, DirectiveID.getLoc());
Kevin Enderby515d5092009-10-15 20:48:48 +00001817 else if (IDVal == ".thumb")
1818 return ParseDirectiveThumb(DirectiveID.getLoc());
1819 else if (IDVal == ".thumb_func")
1820 return ParseDirectiveThumbFunc(DirectiveID.getLoc());
1821 else if (IDVal == ".code")
1822 return ParseDirectiveCode(DirectiveID.getLoc());
1823 else if (IDVal == ".syntax")
1824 return ParseDirectiveSyntax(DirectiveID.getLoc());
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00001825 return true;
1826}
1827
1828/// ParseDirectiveWord
1829/// ::= .word [ expression (, expression)* ]
1830bool ARMAsmParser::ParseDirectiveWord(unsigned Size, SMLoc L) {
1831 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1832 for (;;) {
1833 const MCExpr *Value;
1834 if (getParser().ParseExpression(Value))
1835 return true;
1836
Chris Lattneraaec2052010-01-19 19:46:13 +00001837 getParser().getStreamer().EmitValue(Value, Size, 0/*addrspace*/);
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00001838
1839 if (getLexer().is(AsmToken::EndOfStatement))
1840 break;
Jim Grosbach16c74252010-10-29 14:46:02 +00001841
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00001842 // FIXME: Improve diagnostic.
1843 if (getLexer().isNot(AsmToken::Comma))
1844 return Error(L, "unexpected token in directive");
Sean Callananb9a25b72010-01-19 20:27:46 +00001845 Parser.Lex();
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00001846 }
1847 }
1848
Sean Callananb9a25b72010-01-19 20:27:46 +00001849 Parser.Lex();
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00001850 return false;
1851}
1852
Kevin Enderby515d5092009-10-15 20:48:48 +00001853/// ParseDirectiveThumb
1854/// ::= .thumb
1855bool ARMAsmParser::ParseDirectiveThumb(SMLoc L) {
1856 if (getLexer().isNot(AsmToken::EndOfStatement))
1857 return Error(L, "unexpected token in directive");
Sean Callananb9a25b72010-01-19 20:27:46 +00001858 Parser.Lex();
Kevin Enderby515d5092009-10-15 20:48:48 +00001859
1860 // TODO: set thumb mode
1861 // TODO: tell the MC streamer the mode
1862 // getParser().getStreamer().Emit???();
1863 return false;
1864}
1865
1866/// ParseDirectiveThumbFunc
1867/// ::= .thumbfunc symbol_name
1868bool ARMAsmParser::ParseDirectiveThumbFunc(SMLoc L) {
Sean Callanan18b83232010-01-19 21:44:56 +00001869 const AsmToken &Tok = Parser.getTok();
Kevin Enderby515d5092009-10-15 20:48:48 +00001870 if (Tok.isNot(AsmToken::Identifier) && Tok.isNot(AsmToken::String))
Jim Grosbach83c40182010-11-05 22:11:33 +00001871 return Error(L, "unexpected token in .thumb_func directive");
Jim Grosbach642fc9c2010-11-05 22:33:53 +00001872 StringRef Name = Tok.getString();
Sean Callananb9a25b72010-01-19 20:27:46 +00001873 Parser.Lex(); // Consume the identifier token.
Kevin Enderby515d5092009-10-15 20:48:48 +00001874 if (getLexer().isNot(AsmToken::EndOfStatement))
1875 return Error(L, "unexpected token in directive");
Sean Callananb9a25b72010-01-19 20:27:46 +00001876 Parser.Lex();
Kevin Enderby515d5092009-10-15 20:48:48 +00001877
Jim Grosbach642fc9c2010-11-05 22:33:53 +00001878 // Mark symbol as a thumb symbol.
1879 MCSymbol *Func = getParser().getContext().GetOrCreateSymbol(Name);
1880 getParser().getStreamer().EmitThumbFunc(Func);
Kevin Enderby515d5092009-10-15 20:48:48 +00001881 return false;
1882}
1883
1884/// ParseDirectiveSyntax
1885/// ::= .syntax unified | divided
1886bool ARMAsmParser::ParseDirectiveSyntax(SMLoc L) {
Sean Callanan18b83232010-01-19 21:44:56 +00001887 const AsmToken &Tok = Parser.getTok();
Kevin Enderby515d5092009-10-15 20:48:48 +00001888 if (Tok.isNot(AsmToken::Identifier))
1889 return Error(L, "unexpected token in .syntax directive");
Benjamin Kramer38e59892010-07-14 22:38:02 +00001890 StringRef Mode = Tok.getString();
Duncan Sands58c86912010-06-29 13:04:35 +00001891 if (Mode == "unified" || Mode == "UNIFIED")
Sean Callananb9a25b72010-01-19 20:27:46 +00001892 Parser.Lex();
Duncan Sands58c86912010-06-29 13:04:35 +00001893 else if (Mode == "divided" || Mode == "DIVIDED")
Kevin Enderby9e56fb12011-01-27 23:22:36 +00001894 return Error(L, "'.syntax divided' arm asssembly not supported");
Kevin Enderby515d5092009-10-15 20:48:48 +00001895 else
1896 return Error(L, "unrecognized syntax mode in .syntax directive");
1897
1898 if (getLexer().isNot(AsmToken::EndOfStatement))
Sean Callanan18b83232010-01-19 21:44:56 +00001899 return Error(Parser.getTok().getLoc(), "unexpected token in directive");
Sean Callananb9a25b72010-01-19 20:27:46 +00001900 Parser.Lex();
Kevin Enderby515d5092009-10-15 20:48:48 +00001901
1902 // TODO tell the MC streamer the mode
1903 // getParser().getStreamer().Emit???();
1904 return false;
1905}
1906
1907/// ParseDirectiveCode
1908/// ::= .code 16 | 32
1909bool ARMAsmParser::ParseDirectiveCode(SMLoc L) {
Sean Callanan18b83232010-01-19 21:44:56 +00001910 const AsmToken &Tok = Parser.getTok();
Kevin Enderby515d5092009-10-15 20:48:48 +00001911 if (Tok.isNot(AsmToken::Integer))
1912 return Error(L, "unexpected token in .code directive");
Sean Callanan18b83232010-01-19 21:44:56 +00001913 int64_t Val = Parser.getTok().getIntVal();
Duncan Sands58c86912010-06-29 13:04:35 +00001914 if (Val == 16)
Sean Callananb9a25b72010-01-19 20:27:46 +00001915 Parser.Lex();
Duncan Sands58c86912010-06-29 13:04:35 +00001916 else if (Val == 32)
Sean Callananb9a25b72010-01-19 20:27:46 +00001917 Parser.Lex();
Kevin Enderby515d5092009-10-15 20:48:48 +00001918 else
1919 return Error(L, "invalid operand to .code directive");
1920
1921 if (getLexer().isNot(AsmToken::EndOfStatement))
Sean Callanan18b83232010-01-19 21:44:56 +00001922 return Error(Parser.getTok().getLoc(), "unexpected token in directive");
Sean Callananb9a25b72010-01-19 20:27:46 +00001923 Parser.Lex();
Kevin Enderby515d5092009-10-15 20:48:48 +00001924
Kevin Enderbyfef9ff42011-01-13 01:07:01 +00001925 // FIXME: We need to be able switch subtargets at this point so that
1926 // MatchInstructionImpl() will work when it gets the AvailableFeatures which
1927 // includes Feature_IsThumb or not to match the right instructions. This is
1928 // blocked on the FIXME in llvm-mc.cpp when creating the TargetMachine.
1929 if (Val == 16){
1930 assert(TM.getSubtarget<ARMSubtarget>().isThumb() &&
1931 "switching between arm/thumb not yet suppported via .code 16)");
Jim Grosbach2a301702010-11-05 22:40:53 +00001932 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code16);
Kevin Enderbyfef9ff42011-01-13 01:07:01 +00001933 }
1934 else{
1935 assert(!TM.getSubtarget<ARMSubtarget>().isThumb() &&
1936 "switching between thumb/arm not yet suppported via .code 32)");
Jim Grosbach2a301702010-11-05 22:40:53 +00001937 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
Kevin Enderbyfef9ff42011-01-13 01:07:01 +00001938 }
Jim Grosbach2a301702010-11-05 22:40:53 +00001939
Kevin Enderby515d5092009-10-15 20:48:48 +00001940 return false;
1941}
1942
Sean Callanan90b70972010-04-07 20:29:34 +00001943extern "C" void LLVMInitializeARMAsmLexer();
1944
Kevin Enderby9c41fa82009-10-30 22:55:57 +00001945/// Force static initialization.
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00001946extern "C" void LLVMInitializeARMAsmParser() {
1947 RegisterAsmParser<ARMAsmParser> X(TheARMTarget);
1948 RegisterAsmParser<ARMAsmParser> Y(TheThumbTarget);
Sean Callanan90b70972010-04-07 20:29:34 +00001949 LLVMInitializeARMAsmLexer();
Kevin Enderbyca9c42c2009-09-15 00:27:25 +00001950}
Daniel Dunbar3483aca2010-08-11 05:24:50 +00001951
Chris Lattner0692ee62010-09-06 19:11:01 +00001952#define GET_REGISTER_MATCHER
1953#define GET_MATCHER_IMPLEMENTATION
Daniel Dunbar3483aca2010-08-11 05:24:50 +00001954#include "ARMGenAsmMatcher.inc"