blob: 71de64fff87e963b83e58c807c18d74575709bea [file] [log] [blame]
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001//===-- SystemZAsmParser.cpp - Parse SystemZ assembly instructions --------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "MCTargetDesc/SystemZMCTargetDesc.h"
Craig Topper690d8ea2013-07-24 07:33:14 +000011#include "llvm/ADT/STLExtras.h"
Richard Sandiford1fb58832013-05-14 09:47:26 +000012#include "llvm/MC/MCContext.h"
Ulrich Weigand5f613df2013-05-06 16:15:19 +000013#include "llvm/MC/MCExpr.h"
14#include "llvm/MC/MCInst.h"
15#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
16#include "llvm/MC/MCStreamer.h"
17#include "llvm/MC/MCSubtargetInfo.h"
18#include "llvm/MC/MCTargetAsmParser.h"
19#include "llvm/Support/TargetRegistry.h"
20
21using namespace llvm;
22
23// Return true if Expr is in the range [MinValue, MaxValue].
24static bool inRange(const MCExpr *Expr, int64_t MinValue, int64_t MaxValue) {
Richard Sandiford21f5d682014-03-06 11:22:58 +000025 if (auto *CE = dyn_cast<MCConstantExpr>(Expr)) {
Ulrich Weigand5f613df2013-05-06 16:15:19 +000026 int64_t Value = CE->getValue();
27 return Value >= MinValue && Value <= MaxValue;
28 }
29 return false;
30}
31
32namespace {
Richard Sandiford1d959002013-07-02 14:56:45 +000033enum RegisterKind {
34 GR32Reg,
Richard Sandifordf9496062013-09-30 10:45:16 +000035 GRH32Reg,
Richard Sandiford1d959002013-07-02 14:56:45 +000036 GR64Reg,
37 GR128Reg,
38 ADDR32Reg,
39 ADDR64Reg,
40 FP32Reg,
41 FP64Reg,
42 FP128Reg
43};
44
45enum MemoryKind {
46 BDMem,
47 BDXMem,
48 BDLMem
49};
50
Ulrich Weigand5f613df2013-05-06 16:15:19 +000051class SystemZOperand : public MCParsedAsmOperand {
52public:
Ulrich Weigand5f613df2013-05-06 16:15:19 +000053private:
54 enum OperandKind {
Richard Sandiforddc5ed712013-05-24 14:26:46 +000055 KindInvalid,
Ulrich Weigand5f613df2013-05-06 16:15:19 +000056 KindToken,
57 KindReg,
58 KindAccessReg,
59 KindImm,
60 KindMem
61 };
62
63 OperandKind Kind;
64 SMLoc StartLoc, EndLoc;
65
66 // A string of length Length, starting at Data.
67 struct TokenOp {
68 const char *Data;
69 unsigned Length;
70 };
71
Richard Sandiford675f8692013-05-24 14:14:38 +000072 // LLVM register Num, which has kind Kind. In some ways it might be
73 // easier for this class to have a register bank (general, floating-point
74 // or access) and a raw register number (0-15). This would postpone the
75 // interpretation of the operand to the add*() methods and avoid the need
76 // for context-dependent parsing. However, we do things the current way
77 // because of the virtual getReg() method, which needs to distinguish
78 // between (say) %r0 used as a single register and %r0 used as a pair.
79 // Context-dependent parsing can also give us slightly better error
80 // messages when invalid pairs like %r1 are used.
Ulrich Weigand5f613df2013-05-06 16:15:19 +000081 struct RegOp {
82 RegisterKind Kind;
83 unsigned Num;
84 };
85
86 // Base + Disp + Index, where Base and Index are LLVM registers or 0.
87 // RegKind says what type the registers have (ADDR32Reg or ADDR64Reg).
Richard Sandiford1d959002013-07-02 14:56:45 +000088 // Length is the operand length for D(L,B)-style operands, otherwise
89 // it is null.
Ulrich Weigand5f613df2013-05-06 16:15:19 +000090 struct MemOp {
91 unsigned Base : 8;
92 unsigned Index : 8;
93 unsigned RegKind : 8;
94 unsigned Unused : 8;
95 const MCExpr *Disp;
Richard Sandiford1d959002013-07-02 14:56:45 +000096 const MCExpr *Length;
Ulrich Weigand5f613df2013-05-06 16:15:19 +000097 };
98
99 union {
100 TokenOp Token;
101 RegOp Reg;
102 unsigned AccessReg;
103 const MCExpr *Imm;
104 MemOp Mem;
105 };
106
107 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc)
108 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc)
109 {}
110
111 void addExpr(MCInst &Inst, const MCExpr *Expr) const {
112 // Add as immediates when possible. Null MCExpr = 0.
Craig Topper062a2ba2014-04-25 05:30:21 +0000113 if (!Expr)
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000114 Inst.addOperand(MCOperand::CreateImm(0));
Richard Sandiford21f5d682014-03-06 11:22:58 +0000115 else if (auto *CE = dyn_cast<MCConstantExpr>(Expr))
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000116 Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
117 else
118 Inst.addOperand(MCOperand::CreateExpr(Expr));
119 }
120
121public:
122 // Create particular kinds of operand.
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000123 static SystemZOperand *createInvalid(SMLoc StartLoc, SMLoc EndLoc) {
124 return new SystemZOperand(KindInvalid, StartLoc, EndLoc);
125 }
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000126 static SystemZOperand *createToken(StringRef Str, SMLoc Loc) {
127 SystemZOperand *Op = new SystemZOperand(KindToken, Loc, Loc);
128 Op->Token.Data = Str.data();
129 Op->Token.Length = Str.size();
130 return Op;
131 }
132 static SystemZOperand *createReg(RegisterKind Kind, unsigned Num,
133 SMLoc StartLoc, SMLoc EndLoc) {
134 SystemZOperand *Op = new SystemZOperand(KindReg, StartLoc, EndLoc);
135 Op->Reg.Kind = Kind;
136 Op->Reg.Num = Num;
137 return Op;
138 }
139 static SystemZOperand *createAccessReg(unsigned Num, SMLoc StartLoc,
140 SMLoc EndLoc) {
141 SystemZOperand *Op = new SystemZOperand(KindAccessReg, StartLoc, EndLoc);
142 Op->AccessReg = Num;
143 return Op;
144 }
145 static SystemZOperand *createImm(const MCExpr *Expr, SMLoc StartLoc,
146 SMLoc EndLoc) {
147 SystemZOperand *Op = new SystemZOperand(KindImm, StartLoc, EndLoc);
148 Op->Imm = Expr;
149 return Op;
150 }
151 static SystemZOperand *createMem(RegisterKind RegKind, unsigned Base,
152 const MCExpr *Disp, unsigned Index,
Richard Sandiford1d959002013-07-02 14:56:45 +0000153 const MCExpr *Length, SMLoc StartLoc,
154 SMLoc EndLoc) {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000155 SystemZOperand *Op = new SystemZOperand(KindMem, StartLoc, EndLoc);
156 Op->Mem.RegKind = RegKind;
157 Op->Mem.Base = Base;
158 Op->Mem.Index = Index;
159 Op->Mem.Disp = Disp;
Richard Sandiford1d959002013-07-02 14:56:45 +0000160 Op->Mem.Length = Length;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000161 return Op;
162 }
163
164 // Token operands
Richard Sandifordb4d67b52014-03-06 12:03:36 +0000165 bool isToken() const override {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000166 return Kind == KindToken;
167 }
168 StringRef getToken() const {
169 assert(Kind == KindToken && "Not a token");
170 return StringRef(Token.Data, Token.Length);
171 }
172
173 // Register operands.
Richard Sandifordb4d67b52014-03-06 12:03:36 +0000174 bool isReg() const override {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000175 return Kind == KindReg;
176 }
177 bool isReg(RegisterKind RegKind) const {
178 return Kind == KindReg && Reg.Kind == RegKind;
179 }
Richard Sandifordb4d67b52014-03-06 12:03:36 +0000180 unsigned getReg() const override {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000181 assert(Kind == KindReg && "Not a register");
182 return Reg.Num;
183 }
184
185 // Access register operands. Access registers aren't exposed to LLVM
186 // as registers.
187 bool isAccessReg() const {
188 return Kind == KindAccessReg;
189 }
190
191 // Immediate operands.
Richard Sandifordb4d67b52014-03-06 12:03:36 +0000192 bool isImm() const override {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000193 return Kind == KindImm;
194 }
195 bool isImm(int64_t MinValue, int64_t MaxValue) const {
196 return Kind == KindImm && inRange(Imm, MinValue, MaxValue);
197 }
198 const MCExpr *getImm() const {
199 assert(Kind == KindImm && "Not an immediate");
200 return Imm;
201 }
202
203 // Memory operands.
Richard Sandifordb4d67b52014-03-06 12:03:36 +0000204 bool isMem() const override {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000205 return Kind == KindMem;
206 }
Richard Sandiford1d959002013-07-02 14:56:45 +0000207 bool isMem(RegisterKind RegKind, MemoryKind MemKind) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000208 return (Kind == KindMem &&
209 Mem.RegKind == RegKind &&
Richard Sandiford1d959002013-07-02 14:56:45 +0000210 (MemKind == BDXMem || !Mem.Index) &&
Craig Topper062a2ba2014-04-25 05:30:21 +0000211 (MemKind == BDLMem) == (Mem.Length != nullptr));
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000212 }
Richard Sandiford1d959002013-07-02 14:56:45 +0000213 bool isMemDisp12(RegisterKind RegKind, MemoryKind MemKind) const {
214 return isMem(RegKind, MemKind) && inRange(Mem.Disp, 0, 0xfff);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000215 }
Richard Sandiford1d959002013-07-02 14:56:45 +0000216 bool isMemDisp20(RegisterKind RegKind, MemoryKind MemKind) const {
217 return isMem(RegKind, MemKind) && inRange(Mem.Disp, -524288, 524287);
218 }
219 bool isMemDisp12Len8(RegisterKind RegKind) const {
220 return isMemDisp12(RegKind, BDLMem) && inRange(Mem.Length, 1, 0x100);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000221 }
222
223 // Override MCParsedAsmOperand.
Richard Sandifordb4d67b52014-03-06 12:03:36 +0000224 SMLoc getStartLoc() const override { return StartLoc; }
225 SMLoc getEndLoc() const override { return EndLoc; }
226 void print(raw_ostream &OS) const override;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000227
228 // Used by the TableGen code to add particular types of operand
229 // to an instruction.
230 void addRegOperands(MCInst &Inst, unsigned N) const {
231 assert(N == 1 && "Invalid number of operands");
232 Inst.addOperand(MCOperand::CreateReg(getReg()));
233 }
234 void addAccessRegOperands(MCInst &Inst, unsigned N) const {
235 assert(N == 1 && "Invalid number of operands");
236 assert(Kind == KindAccessReg && "Invalid operand type");
237 Inst.addOperand(MCOperand::CreateImm(AccessReg));
238 }
239 void addImmOperands(MCInst &Inst, unsigned N) const {
240 assert(N == 1 && "Invalid number of operands");
241 addExpr(Inst, getImm());
242 }
243 void addBDAddrOperands(MCInst &Inst, unsigned N) const {
244 assert(N == 2 && "Invalid number of operands");
245 assert(Kind == KindMem && Mem.Index == 0 && "Invalid operand type");
246 Inst.addOperand(MCOperand::CreateReg(Mem.Base));
247 addExpr(Inst, Mem.Disp);
248 }
249 void addBDXAddrOperands(MCInst &Inst, unsigned N) const {
250 assert(N == 3 && "Invalid number of operands");
251 assert(Kind == KindMem && "Invalid operand type");
252 Inst.addOperand(MCOperand::CreateReg(Mem.Base));
253 addExpr(Inst, Mem.Disp);
254 Inst.addOperand(MCOperand::CreateReg(Mem.Index));
255 }
Richard Sandiford1d959002013-07-02 14:56:45 +0000256 void addBDLAddrOperands(MCInst &Inst, unsigned N) const {
257 assert(N == 3 && "Invalid number of operands");
258 assert(Kind == KindMem && "Invalid operand type");
259 Inst.addOperand(MCOperand::CreateReg(Mem.Base));
260 addExpr(Inst, Mem.Disp);
261 addExpr(Inst, Mem.Length);
262 }
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000263
264 // Used by the TableGen code to check for particular operand types.
265 bool isGR32() const { return isReg(GR32Reg); }
Richard Sandifordf9496062013-09-30 10:45:16 +0000266 bool isGRH32() const { return isReg(GRH32Reg); }
Richard Sandiford0755c932013-10-01 11:26:28 +0000267 bool isGRX32() const { return false; }
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000268 bool isGR64() const { return isReg(GR64Reg); }
269 bool isGR128() const { return isReg(GR128Reg); }
270 bool isADDR32() const { return isReg(ADDR32Reg); }
271 bool isADDR64() const { return isReg(ADDR64Reg); }
272 bool isADDR128() const { return false; }
273 bool isFP32() const { return isReg(FP32Reg); }
274 bool isFP64() const { return isReg(FP64Reg); }
275 bool isFP128() const { return isReg(FP128Reg); }
Richard Sandiford1d959002013-07-02 14:56:45 +0000276 bool isBDAddr32Disp12() const { return isMemDisp12(ADDR32Reg, BDMem); }
277 bool isBDAddr32Disp20() const { return isMemDisp20(ADDR32Reg, BDMem); }
278 bool isBDAddr64Disp12() const { return isMemDisp12(ADDR64Reg, BDMem); }
279 bool isBDAddr64Disp20() const { return isMemDisp20(ADDR64Reg, BDMem); }
280 bool isBDXAddr64Disp12() const { return isMemDisp12(ADDR64Reg, BDXMem); }
281 bool isBDXAddr64Disp20() const { return isMemDisp20(ADDR64Reg, BDXMem); }
282 bool isBDLAddr64Disp12Len8() const { return isMemDisp12Len8(ADDR64Reg); }
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000283 bool isU4Imm() const { return isImm(0, 15); }
284 bool isU6Imm() const { return isImm(0, 63); }
285 bool isU8Imm() const { return isImm(0, 255); }
286 bool isS8Imm() const { return isImm(-128, 127); }
287 bool isU16Imm() const { return isImm(0, 65535); }
288 bool isS16Imm() const { return isImm(-32768, 32767); }
289 bool isU32Imm() const { return isImm(0, (1LL << 32) - 1); }
290 bool isS32Imm() const { return isImm(-(1LL << 31), (1LL << 31) - 1); }
291};
292
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000293class SystemZAsmParser : public MCTargetAsmParser {
294#define GET_ASSEMBLER_HEADER
295#include "SystemZGenAsmMatcher.inc"
296
297private:
298 MCSubtargetInfo &STI;
299 MCAsmParser &Parser;
Richard Sandiford675f8692013-05-24 14:14:38 +0000300 enum RegisterGroup {
301 RegGR,
302 RegFP,
303 RegAccess
304 };
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000305 struct Register {
Richard Sandiford675f8692013-05-24 14:14:38 +0000306 RegisterGroup Group;
307 unsigned Num;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000308 SMLoc StartLoc, EndLoc;
309 };
310
311 bool parseRegister(Register &Reg);
312
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000313 bool parseRegister(Register &Reg, RegisterGroup Group, const unsigned *Regs,
314 bool IsAddress = false);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000315
316 OperandMatchResultTy
317 parseRegister(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Richard Sandiford1d959002013-07-02 14:56:45 +0000318 RegisterGroup Group, const unsigned *Regs, RegisterKind Kind);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000319
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000320 bool parseAddress(unsigned &Base, const MCExpr *&Disp,
Richard Sandiford1d959002013-07-02 14:56:45 +0000321 unsigned &Index, const MCExpr *&Length,
322 const unsigned *Regs, RegisterKind RegKind);
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000323
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000324 OperandMatchResultTy
325 parseAddress(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Richard Sandiford1d959002013-07-02 14:56:45 +0000326 const unsigned *Regs, RegisterKind RegKind,
327 MemoryKind MemKind);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000328
329 bool parseOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
330 StringRef Mnemonic);
331
332public:
Joey Gouly0e76fa72013-09-12 10:28:05 +0000333 SystemZAsmParser(MCSubtargetInfo &sti, MCAsmParser &parser,
Evgeniy Stepanov0a951b72014-04-23 11:16:03 +0000334 const MCInstrInfo &MII,
335 const MCTargetOptions &Options)
Joey Gouly0e76fa72013-09-12 10:28:05 +0000336 : MCTargetAsmParser(), STI(sti), Parser(parser) {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000337 MCAsmParserExtension::Initialize(Parser);
338
339 // Initialize the set of available features.
340 setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
341 }
342
343 // Override MCTargetAsmParser.
Richard Sandifordb4d67b52014-03-06 12:03:36 +0000344 bool ParseDirective(AsmToken DirectiveID) override;
345 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
346 bool ParseInstruction(ParseInstructionInfo &Info,
347 StringRef Name, SMLoc NameLoc,
348 SmallVectorImpl<MCParsedAsmOperand*> &Operands)
349 override;
350 bool MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
351 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
352 MCStreamer &Out, unsigned &ErrorInfo,
353 bool MatchingInlineAsm) override;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000354
355 // Used by the TableGen code to parse particular operand types.
356 OperandMatchResultTy
357 parseGR32(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Richard Sandiford1d959002013-07-02 14:56:45 +0000358 return parseRegister(Operands, RegGR, SystemZMC::GR32Regs, GR32Reg);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000359 }
360 OperandMatchResultTy
Richard Sandifordf9496062013-09-30 10:45:16 +0000361 parseGRH32(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
362 return parseRegister(Operands, RegGR, SystemZMC::GRH32Regs, GRH32Reg);
363 }
364 OperandMatchResultTy
Richard Sandiford0755c932013-10-01 11:26:28 +0000365 parseGRX32(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
366 llvm_unreachable("GRX32 should only be used for pseudo instructions");
367 }
368 OperandMatchResultTy
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000369 parseGR64(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Richard Sandiford1d959002013-07-02 14:56:45 +0000370 return parseRegister(Operands, RegGR, SystemZMC::GR64Regs, GR64Reg);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000371 }
372 OperandMatchResultTy
373 parseGR128(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Richard Sandiford1d959002013-07-02 14:56:45 +0000374 return parseRegister(Operands, RegGR, SystemZMC::GR128Regs, GR128Reg);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000375 }
376 OperandMatchResultTy
377 parseADDR32(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Richard Sandiford1d959002013-07-02 14:56:45 +0000378 return parseRegister(Operands, RegGR, SystemZMC::GR32Regs, ADDR32Reg);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000379 }
380 OperandMatchResultTy
381 parseADDR64(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Richard Sandiford1d959002013-07-02 14:56:45 +0000382 return parseRegister(Operands, RegGR, SystemZMC::GR64Regs, ADDR64Reg);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000383 }
384 OperandMatchResultTy
385 parseADDR128(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
386 llvm_unreachable("Shouldn't be used as an operand");
387 }
388 OperandMatchResultTy
389 parseFP32(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Richard Sandiford1d959002013-07-02 14:56:45 +0000390 return parseRegister(Operands, RegFP, SystemZMC::FP32Regs, FP32Reg);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000391 }
392 OperandMatchResultTy
393 parseFP64(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Richard Sandiford1d959002013-07-02 14:56:45 +0000394 return parseRegister(Operands, RegFP, SystemZMC::FP64Regs, FP64Reg);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000395 }
396 OperandMatchResultTy
397 parseFP128(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Richard Sandiford1d959002013-07-02 14:56:45 +0000398 return parseRegister(Operands, RegFP, SystemZMC::FP128Regs, FP128Reg);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000399 }
400 OperandMatchResultTy
401 parseBDAddr32(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Richard Sandiford1d959002013-07-02 14:56:45 +0000402 return parseAddress(Operands, SystemZMC::GR32Regs, ADDR32Reg, BDMem);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000403 }
404 OperandMatchResultTy
405 parseBDAddr64(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Richard Sandiford1d959002013-07-02 14:56:45 +0000406 return parseAddress(Operands, SystemZMC::GR64Regs, ADDR64Reg, BDMem);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000407 }
408 OperandMatchResultTy
409 parseBDXAddr64(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Richard Sandiford1d959002013-07-02 14:56:45 +0000410 return parseAddress(Operands, SystemZMC::GR64Regs, ADDR64Reg, BDXMem);
411 }
412 OperandMatchResultTy
413 parseBDLAddr64(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
414 return parseAddress(Operands, SystemZMC::GR64Regs, ADDR64Reg, BDLMem);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000415 }
416 OperandMatchResultTy
417 parseAccessReg(SmallVectorImpl<MCParsedAsmOperand*> &Operands);
Richard Sandiford1fb58832013-05-14 09:47:26 +0000418 OperandMatchResultTy
419 parsePCRel(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
420 int64_t MinVal, int64_t MaxVal);
421 OperandMatchResultTy
422 parsePCRel16(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
423 return parsePCRel(Operands, -(1LL << 16), (1LL << 16) - 1);
424 }
425 OperandMatchResultTy
426 parsePCRel32(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
427 return parsePCRel(Operands, -(1LL << 32), (1LL << 32) - 1);
428 }
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000429};
Richard Sandifordc2312692014-03-06 10:38:30 +0000430} // end anonymous namespace
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000431
432#define GET_REGISTER_MATCHER
433#define GET_SUBTARGET_FEATURE_NAME
434#define GET_MATCHER_IMPLEMENTATION
435#include "SystemZGenAsmMatcher.inc"
436
437void SystemZOperand::print(raw_ostream &OS) const {
438 llvm_unreachable("Not implemented");
439}
440
441// Parse one register of the form %<prefix><number>.
442bool SystemZAsmParser::parseRegister(Register &Reg) {
443 Reg.StartLoc = Parser.getTok().getLoc();
444
445 // Eat the % prefix.
446 if (Parser.getTok().isNot(AsmToken::Percent))
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000447 return Error(Parser.getTok().getLoc(), "register expected");
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000448 Parser.Lex();
449
450 // Expect a register name.
451 if (Parser.getTok().isNot(AsmToken::Identifier))
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000452 return Error(Reg.StartLoc, "invalid register");
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000453
Richard Sandiford675f8692013-05-24 14:14:38 +0000454 // Check that there's a prefix.
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000455 StringRef Name = Parser.getTok().getString();
456 if (Name.size() < 2)
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000457 return Error(Reg.StartLoc, "invalid register");
Richard Sandiford675f8692013-05-24 14:14:38 +0000458 char Prefix = Name[0];
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000459
460 // Treat the rest of the register name as a register number.
Richard Sandiford675f8692013-05-24 14:14:38 +0000461 if (Name.substr(1).getAsInteger(10, Reg.Num))
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000462 return Error(Reg.StartLoc, "invalid register");
Richard Sandiford675f8692013-05-24 14:14:38 +0000463
464 // Look for valid combinations of prefix and number.
465 if (Prefix == 'r' && Reg.Num < 16)
466 Reg.Group = RegGR;
467 else if (Prefix == 'f' && Reg.Num < 16)
468 Reg.Group = RegFP;
469 else if (Prefix == 'a' && Reg.Num < 16)
470 Reg.Group = RegAccess;
471 else
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000472 return Error(Reg.StartLoc, "invalid register");
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000473
474 Reg.EndLoc = Parser.getTok().getLoc();
475 Parser.Lex();
476 return false;
477}
478
Richard Sandiford675f8692013-05-24 14:14:38 +0000479// Parse a register of group Group. If Regs is nonnull, use it to map
480// the raw register number to LLVM numbering, with zero entries indicating
481// an invalid register. IsAddress says whether the register appears in an
482// address context.
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000483bool SystemZAsmParser::parseRegister(Register &Reg, RegisterGroup Group,
484 const unsigned *Regs, bool IsAddress) {
485 if (parseRegister(Reg))
486 return true;
487 if (Reg.Group != Group)
488 return Error(Reg.StartLoc, "invalid operand for instruction");
489 if (Regs && Regs[Reg.Num] == 0)
490 return Error(Reg.StartLoc, "invalid register pair");
491 if (Reg.Num == 0 && IsAddress)
492 return Error(Reg.StartLoc, "%r0 used in an address");
Richard Sandiford675f8692013-05-24 14:14:38 +0000493 if (Regs)
494 Reg.Num = Regs[Reg.Num];
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000495 return false;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000496}
497
Richard Sandiford675f8692013-05-24 14:14:38 +0000498// Parse a register and add it to Operands. The other arguments are as above.
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000499SystemZAsmParser::OperandMatchResultTy
500SystemZAsmParser::parseRegister(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Richard Sandiford675f8692013-05-24 14:14:38 +0000501 RegisterGroup Group, const unsigned *Regs,
Richard Sandiford1d959002013-07-02 14:56:45 +0000502 RegisterKind Kind) {
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000503 if (Parser.getTok().isNot(AsmToken::Percent))
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000504 return MatchOperand_NoMatch;
505
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000506 Register Reg;
Richard Sandiford1d959002013-07-02 14:56:45 +0000507 bool IsAddress = (Kind == ADDR32Reg || Kind == ADDR64Reg);
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000508 if (parseRegister(Reg, Group, Regs, IsAddress))
509 return MatchOperand_ParseFail;
510
511 Operands.push_back(SystemZOperand::createReg(Kind, Reg.Num,
512 Reg.StartLoc, Reg.EndLoc));
513 return MatchOperand_Success;
514}
515
Richard Sandiford1d959002013-07-02 14:56:45 +0000516// Parse a memory operand into Base, Disp, Index and Length.
517// Regs maps asm register numbers to LLVM register numbers and RegKind
518// says what kind of address register we're using (ADDR32Reg or ADDR64Reg).
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000519bool SystemZAsmParser::parseAddress(unsigned &Base, const MCExpr *&Disp,
Richard Sandiford1d959002013-07-02 14:56:45 +0000520 unsigned &Index, const MCExpr *&Length,
521 const unsigned *Regs,
522 RegisterKind RegKind) {
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000523 // Parse the displacement, which must always be present.
524 if (getParser().parseExpression(Disp))
525 return true;
526
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000527 // Parse the optional base and index.
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000528 Index = 0;
529 Base = 0;
Craig Topper062a2ba2014-04-25 05:30:21 +0000530 Length = nullptr;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000531 if (getLexer().is(AsmToken::LParen)) {
532 Parser.Lex();
533
Richard Sandiford1d959002013-07-02 14:56:45 +0000534 if (getLexer().is(AsmToken::Percent)) {
535 // Parse the first register and decide whether it's a base or an index.
536 Register Reg;
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000537 if (parseRegister(Reg, RegGR, Regs, RegKind))
538 return true;
Richard Sandiford1d959002013-07-02 14:56:45 +0000539 if (getLexer().is(AsmToken::Comma))
540 Index = Reg.Num;
541 else
542 Base = Reg.Num;
543 } else {
544 // Parse the length.
545 if (getParser().parseExpression(Length))
546 return true;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000547 }
Richard Sandiford1d959002013-07-02 14:56:45 +0000548
549 // Check whether there's a second register. It's the base if so.
550 if (getLexer().is(AsmToken::Comma)) {
551 Parser.Lex();
552 Register Reg;
553 if (parseRegister(Reg, RegGR, Regs, RegKind))
554 return true;
555 Base = Reg.Num;
556 }
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000557
558 // Consume the closing bracket.
559 if (getLexer().isNot(AsmToken::RParen))
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000560 return Error(Parser.getTok().getLoc(), "unexpected token in address");
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000561 Parser.Lex();
562 }
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000563 return false;
564}
565
566// Parse a memory operand and add it to Operands. The other arguments
567// are as above.
568SystemZAsmParser::OperandMatchResultTy
569SystemZAsmParser::parseAddress(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Richard Sandiford1d959002013-07-02 14:56:45 +0000570 const unsigned *Regs, RegisterKind RegKind,
571 MemoryKind MemKind) {
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000572 SMLoc StartLoc = Parser.getTok().getLoc();
573 unsigned Base, Index;
574 const MCExpr *Disp;
Richard Sandiford1d959002013-07-02 14:56:45 +0000575 const MCExpr *Length;
576 if (parseAddress(Base, Disp, Index, Length, Regs, RegKind))
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000577 return MatchOperand_ParseFail;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000578
Richard Sandiford1d959002013-07-02 14:56:45 +0000579 if (Index && MemKind != BDXMem)
580 {
581 Error(StartLoc, "invalid use of indexed addressing");
582 return MatchOperand_ParseFail;
583 }
584
585 if (Length && MemKind != BDLMem)
586 {
587 Error(StartLoc, "invalid use of length addressing");
588 return MatchOperand_ParseFail;
589 }
590
591 if (!Length && MemKind == BDLMem)
592 {
593 Error(StartLoc, "missing length in address");
594 return MatchOperand_ParseFail;
595 }
596
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000597 SMLoc EndLoc =
598 SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
599 Operands.push_back(SystemZOperand::createMem(RegKind, Base, Disp, Index,
Richard Sandiford1d959002013-07-02 14:56:45 +0000600 Length, StartLoc, EndLoc));
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000601 return MatchOperand_Success;
602}
603
604bool SystemZAsmParser::ParseDirective(AsmToken DirectiveID) {
605 return true;
606}
607
608bool SystemZAsmParser::ParseRegister(unsigned &RegNo, SMLoc &StartLoc,
609 SMLoc &EndLoc) {
610 Register Reg;
611 if (parseRegister(Reg))
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000612 return true;
Richard Sandiford675f8692013-05-24 14:14:38 +0000613 if (Reg.Group == RegGR)
614 RegNo = SystemZMC::GR64Regs[Reg.Num];
615 else if (Reg.Group == RegFP)
616 RegNo = SystemZMC::FP64Regs[Reg.Num];
617 else
618 // FIXME: Access registers aren't modelled as LLVM registers yet.
619 return Error(Reg.StartLoc, "invalid operand for instruction");
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000620 StartLoc = Reg.StartLoc;
621 EndLoc = Reg.EndLoc;
622 return false;
623}
624
625bool SystemZAsmParser::
626ParseInstruction(ParseInstructionInfo &Info, StringRef Name, SMLoc NameLoc,
627 SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
628 Operands.push_back(SystemZOperand::createToken(Name, NameLoc));
629
630 // Read the remaining operands.
631 if (getLexer().isNot(AsmToken::EndOfStatement)) {
632 // Read the first operand.
633 if (parseOperand(Operands, Name)) {
634 Parser.eatToEndOfStatement();
635 return true;
636 }
637
638 // Read any subsequent operands.
639 while (getLexer().is(AsmToken::Comma)) {
640 Parser.Lex();
641 if (parseOperand(Operands, Name)) {
642 Parser.eatToEndOfStatement();
643 return true;
644 }
645 }
646 if (getLexer().isNot(AsmToken::EndOfStatement)) {
647 SMLoc Loc = getLexer().getLoc();
648 Parser.eatToEndOfStatement();
649 return Error(Loc, "unexpected token in argument list");
650 }
651 }
652
653 // Consume the EndOfStatement.
654 Parser.Lex();
655 return false;
656}
657
658bool SystemZAsmParser::
659parseOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
660 StringRef Mnemonic) {
661 // Check if the current operand has a custom associated parser, if so, try to
662 // custom parse the operand, or fallback to the general approach.
663 OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic);
664 if (ResTy == MatchOperand_Success)
665 return false;
666
667 // If there wasn't a custom match, try the generic matcher below. Otherwise,
668 // there was a match, but an error occurred, in which case, just return that
669 // the operand parsing failed.
670 if (ResTy == MatchOperand_ParseFail)
671 return true;
672
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000673 // Check for a register. All real register operands should have used
674 // a context-dependent parse routine, which gives the required register
675 // class. The code is here to mop up other cases, like those where
676 // the instruction isn't recognized.
677 if (Parser.getTok().is(AsmToken::Percent)) {
678 Register Reg;
679 if (parseRegister(Reg))
680 return true;
681 Operands.push_back(SystemZOperand::createInvalid(Reg.StartLoc, Reg.EndLoc));
682 return false;
683 }
684
685 // The only other type of operand is an immediate or address. As above,
686 // real address operands should have used a context-dependent parse routine,
687 // so we treat any plain expression as an immediate.
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000688 SMLoc StartLoc = Parser.getTok().getLoc();
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000689 unsigned Base, Index;
Richard Sandiford1d959002013-07-02 14:56:45 +0000690 const MCExpr *Expr, *Length;
691 if (parseAddress(Base, Expr, Index, Length, SystemZMC::GR64Regs, ADDR64Reg))
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000692 return true;
693
694 SMLoc EndLoc =
695 SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
Richard Sandiford1d959002013-07-02 14:56:45 +0000696 if (Base || Index || Length)
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000697 Operands.push_back(SystemZOperand::createInvalid(StartLoc, EndLoc));
698 else
699 Operands.push_back(SystemZOperand::createImm(Expr, StartLoc, EndLoc));
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000700 return false;
701}
702
703bool SystemZAsmParser::
704MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
705 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
706 MCStreamer &Out, unsigned &ErrorInfo,
707 bool MatchingInlineAsm) {
708 MCInst Inst;
709 unsigned MatchResult;
710
711 MatchResult = MatchInstructionImpl(Operands, Inst, ErrorInfo,
712 MatchingInlineAsm);
713 switch (MatchResult) {
714 default: break;
715 case Match_Success:
716 Inst.setLoc(IDLoc);
David Woodhousee6c13e42014-01-28 23:12:42 +0000717 Out.EmitInstruction(Inst, STI);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000718 return false;
719
720 case Match_MissingFeature: {
721 assert(ErrorInfo && "Unknown missing feature!");
722 // Special case the error message for the very common case where only
723 // a single subtarget feature is missing
724 std::string Msg = "instruction requires:";
725 unsigned Mask = 1;
726 for (unsigned I = 0; I < sizeof(ErrorInfo) * 8 - 1; ++I) {
727 if (ErrorInfo & Mask) {
728 Msg += " ";
729 Msg += getSubtargetFeatureName(ErrorInfo & Mask);
730 }
731 Mask <<= 1;
732 }
733 return Error(IDLoc, Msg);
734 }
735
736 case Match_InvalidOperand: {
737 SMLoc ErrorLoc = IDLoc;
738 if (ErrorInfo != ~0U) {
739 if (ErrorInfo >= Operands.size())
740 return Error(IDLoc, "too few operands for instruction");
741
742 ErrorLoc = ((SystemZOperand*)Operands[ErrorInfo])->getStartLoc();
743 if (ErrorLoc == SMLoc())
744 ErrorLoc = IDLoc;
745 }
746 return Error(ErrorLoc, "invalid operand for instruction");
747 }
748
749 case Match_MnemonicFail:
750 return Error(IDLoc, "invalid instruction");
751 }
752
753 llvm_unreachable("Unexpected match type");
754}
755
756SystemZAsmParser::OperandMatchResultTy SystemZAsmParser::
757parseAccessReg(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000758 if (Parser.getTok().isNot(AsmToken::Percent))
759 return MatchOperand_NoMatch;
760
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000761 Register Reg;
Craig Topper062a2ba2014-04-25 05:30:21 +0000762 if (parseRegister(Reg, RegAccess, nullptr))
Richard Sandiforddc5ed712013-05-24 14:26:46 +0000763 return MatchOperand_ParseFail;
764
765 Operands.push_back(SystemZOperand::createAccessReg(Reg.Num,
766 Reg.StartLoc,
767 Reg.EndLoc));
768 return MatchOperand_Success;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000769}
770
Richard Sandiford1fb58832013-05-14 09:47:26 +0000771SystemZAsmParser::OperandMatchResultTy SystemZAsmParser::
772parsePCRel(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
773 int64_t MinVal, int64_t MaxVal) {
774 MCContext &Ctx = getContext();
775 MCStreamer &Out = getStreamer();
776 const MCExpr *Expr;
777 SMLoc StartLoc = Parser.getTok().getLoc();
778 if (getParser().parseExpression(Expr))
779 return MatchOperand_NoMatch;
780
781 // For consistency with the GNU assembler, treat immediates as offsets
782 // from ".".
Richard Sandiford21f5d682014-03-06 11:22:58 +0000783 if (auto *CE = dyn_cast<MCConstantExpr>(Expr)) {
Richard Sandiford1fb58832013-05-14 09:47:26 +0000784 int64_t Value = CE->getValue();
785 if ((Value & 1) || Value < MinVal || Value > MaxVal) {
786 Error(StartLoc, "offset out of range");
787 return MatchOperand_ParseFail;
788 }
789 MCSymbol *Sym = Ctx.CreateTempSymbol();
790 Out.EmitLabel(Sym);
791 const MCExpr *Base = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None,
792 Ctx);
793 Expr = Value == 0 ? Base : MCBinaryExpr::CreateAdd(Base, Expr, Ctx);
794 }
795
796 SMLoc EndLoc =
797 SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
798 Operands.push_back(SystemZOperand::createImm(Expr, StartLoc, EndLoc));
799 return MatchOperand_Success;
800}
801
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000802// Force static initialization.
803extern "C" void LLVMInitializeSystemZAsmParser() {
804 RegisterMCAsmParser<SystemZAsmParser> X(TheSystemZTarget);
805}