MIR Parser: wrap 'MBBSlots' from the MI parsing functions in a struct. NFC.
[oota-llvm.git] / lib / CodeGen / MIRParser / MIParser.cpp
1 //===- MIParser.cpp - Machine instructions parser implementation ----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the parsing of machine instructions.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "MIParser.h"
15 #include "MILexer.h"
16 #include "llvm/ADT/StringMap.h"
17 #include "llvm/AsmParser/SlotMapping.h"
18 #include "llvm/CodeGen/MachineBasicBlock.h"
19 #include "llvm/CodeGen/MachineFunction.h"
20 #include "llvm/CodeGen/MachineInstr.h"
21 #include "llvm/CodeGen/MachineInstrBuilder.h"
22 #include "llvm/IR/Module.h"
23 #include "llvm/Support/raw_ostream.h"
24 #include "llvm/Support/SourceMgr.h"
25 #include "llvm/Target/TargetSubtargetInfo.h"
26 #include "llvm/Target/TargetInstrInfo.h"
27
28 using namespace llvm;
29
30 namespace {
31
32 /// A wrapper struct around the 'MachineOperand' struct that includes a source
33 /// range.
34 struct MachineOperandWithLocation {
35   MachineOperand Operand;
36   StringRef::iterator Begin;
37   StringRef::iterator End;
38
39   MachineOperandWithLocation(const MachineOperand &Operand,
40                              StringRef::iterator Begin, StringRef::iterator End)
41       : Operand(Operand), Begin(Begin), End(End) {}
42 };
43
44 class MIParser {
45   SourceMgr &SM;
46   MachineFunction &MF;
47   SMDiagnostic &Error;
48   StringRef Source, CurrentSource;
49   MIToken Token;
50   const PerFunctionMIParsingState &PFS;
51   /// Maps from indices to unnamed global values and metadata nodes.
52   const SlotMapping &IRSlots;
53   /// Maps from instruction names to op codes.
54   StringMap<unsigned> Names2InstrOpCodes;
55   /// Maps from register names to registers.
56   StringMap<unsigned> Names2Regs;
57   /// Maps from register mask names to register masks.
58   StringMap<const uint32_t *> Names2RegMasks;
59
60 public:
61   MIParser(SourceMgr &SM, MachineFunction &MF, SMDiagnostic &Error,
62            StringRef Source, const PerFunctionMIParsingState &PFS,
63            const SlotMapping &IRSlots);
64
65   void lex();
66
67   /// Report an error at the current location with the given message.
68   ///
69   /// This function always return true.
70   bool error(const Twine &Msg);
71
72   /// Report an error at the given location with the given message.
73   ///
74   /// This function always return true.
75   bool error(StringRef::iterator Loc, const Twine &Msg);
76
77   bool parse(MachineInstr *&MI);
78   bool parseMBB(MachineBasicBlock *&MBB);
79
80   bool parseRegister(unsigned &Reg);
81   bool parseRegisterFlag(unsigned &Flags);
82   bool parseRegisterOperand(MachineOperand &Dest, bool IsDef = false);
83   bool parseImmediateOperand(MachineOperand &Dest);
84   bool parseMBBReference(MachineBasicBlock *&MBB);
85   bool parseMBBOperand(MachineOperand &Dest);
86   bool parseGlobalAddressOperand(MachineOperand &Dest);
87   bool parseMachineOperand(MachineOperand &Dest);
88
89 private:
90   /// Convert the integer literal in the current token into an unsigned integer.
91   ///
92   /// Return true if an error occurred.
93   bool getUnsigned(unsigned &Result);
94
95   void initNames2InstrOpCodes();
96
97   /// Try to convert an instruction name to an opcode. Return true if the
98   /// instruction name is invalid.
99   bool parseInstrName(StringRef InstrName, unsigned &OpCode);
100
101   bool parseInstruction(unsigned &OpCode);
102
103   bool verifyImplicitOperands(ArrayRef<MachineOperandWithLocation> Operands,
104                               const MCInstrDesc &MCID);
105
106   void initNames2Regs();
107
108   /// Try to convert a register name to a register number. Return true if the
109   /// register name is invalid.
110   bool getRegisterByName(StringRef RegName, unsigned &Reg);
111
112   void initNames2RegMasks();
113
114   /// Check if the given identifier is a name of a register mask.
115   ///
116   /// Return null if the identifier isn't a register mask.
117   const uint32_t *getRegMask(StringRef Identifier);
118 };
119
120 } // end anonymous namespace
121
122 MIParser::MIParser(SourceMgr &SM, MachineFunction &MF, SMDiagnostic &Error,
123                    StringRef Source, const PerFunctionMIParsingState &PFS,
124                    const SlotMapping &IRSlots)
125     : SM(SM), MF(MF), Error(Error), Source(Source), CurrentSource(Source),
126       Token(MIToken::Error, StringRef()), PFS(PFS), IRSlots(IRSlots) {}
127
128 void MIParser::lex() {
129   CurrentSource = lexMIToken(
130       CurrentSource, Token,
131       [this](StringRef::iterator Loc, const Twine &Msg) { error(Loc, Msg); });
132 }
133
134 bool MIParser::error(const Twine &Msg) { return error(Token.location(), Msg); }
135
136 bool MIParser::error(StringRef::iterator Loc, const Twine &Msg) {
137   // TODO: Get the proper location in the MIR file, not just a location inside
138   // the string.
139   assert(Loc >= Source.data() && Loc <= (Source.data() + Source.size()));
140   Error = SMDiagnostic(
141       SM, SMLoc(),
142       SM.getMemoryBuffer(SM.getMainFileID())->getBufferIdentifier(), 1,
143       Loc - Source.data(), SourceMgr::DK_Error, Msg.str(), Source, None, None);
144   return true;
145 }
146
147 bool MIParser::parse(MachineInstr *&MI) {
148   lex();
149
150   // Parse any register operands before '='
151   // TODO: Allow parsing of multiple operands before '='
152   MachineOperand MO = MachineOperand::CreateImm(0);
153   SmallVector<MachineOperandWithLocation, 8> Operands;
154   if (Token.isRegister() || Token.isRegisterFlag()) {
155     auto Loc = Token.location();
156     if (parseRegisterOperand(MO, /*IsDef=*/true))
157       return true;
158     Operands.push_back(MachineOperandWithLocation(MO, Loc, Token.location()));
159     if (Token.isNot(MIToken::equal))
160       return error("expected '='");
161     lex();
162   }
163
164   unsigned OpCode;
165   if (Token.isError() || parseInstruction(OpCode))
166     return true;
167
168   // TODO: Parse the instruction flags and memory operands.
169
170   // Parse the remaining machine operands.
171   while (Token.isNot(MIToken::Eof)) {
172     auto Loc = Token.location();
173     if (parseMachineOperand(MO))
174       return true;
175     Operands.push_back(MachineOperandWithLocation(MO, Loc, Token.location()));
176     if (Token.is(MIToken::Eof))
177       break;
178     if (Token.isNot(MIToken::comma))
179       return error("expected ',' before the next machine operand");
180     lex();
181   }
182
183   const auto &MCID = MF.getSubtarget().getInstrInfo()->get(OpCode);
184   if (!MCID.isVariadic()) {
185     // FIXME: Move the implicit operand verification to the machine verifier.
186     if (verifyImplicitOperands(Operands, MCID))
187       return true;
188   }
189
190   // TODO: Check for extraneous machine operands.
191   MI = MF.CreateMachineInstr(MCID, DebugLoc(), /*NoImplicit=*/true);
192   for (const auto &Operand : Operands)
193     MI->addOperand(MF, Operand.Operand);
194   return false;
195 }
196
197 bool MIParser::parseMBB(MachineBasicBlock *&MBB) {
198   lex();
199   if (Token.isNot(MIToken::MachineBasicBlock))
200     return error("expected a machine basic block reference");
201   if (parseMBBReference(MBB))
202     return true;
203   lex();
204   if (Token.isNot(MIToken::Eof))
205     return error(
206         "expected end of string after the machine basic block reference");
207   return false;
208 }
209
210 static const char *printImplicitRegisterFlag(const MachineOperand &MO) {
211   assert(MO.isImplicit());
212   return MO.isDef() ? "implicit-def" : "implicit";
213 }
214
215 static std::string getRegisterName(const TargetRegisterInfo *TRI,
216                                    unsigned Reg) {
217   assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "expected phys reg");
218   return StringRef(TRI->getName(Reg)).lower();
219 }
220
221 bool MIParser::verifyImplicitOperands(
222     ArrayRef<MachineOperandWithLocation> Operands, const MCInstrDesc &MCID) {
223   if (MCID.isCall())
224     // We can't verify call instructions as they can contain arbitrary implicit
225     // register and register mask operands.
226     return false;
227
228   // Gather all the expected implicit operands.
229   SmallVector<MachineOperand, 4> ImplicitOperands;
230   if (MCID.ImplicitDefs)
231     for (const uint16_t *ImpDefs = MCID.getImplicitDefs(); *ImpDefs; ++ImpDefs)
232       ImplicitOperands.push_back(
233           MachineOperand::CreateReg(*ImpDefs, true, true));
234   if (MCID.ImplicitUses)
235     for (const uint16_t *ImpUses = MCID.getImplicitUses(); *ImpUses; ++ImpUses)
236       ImplicitOperands.push_back(
237           MachineOperand::CreateReg(*ImpUses, false, true));
238
239   const auto *TRI = MF.getSubtarget().getRegisterInfo();
240   assert(TRI && "Expected target register info");
241   size_t I = ImplicitOperands.size(), J = Operands.size();
242   while (I) {
243     --I;
244     if (J) {
245       --J;
246       const auto &ImplicitOperand = ImplicitOperands[I];
247       const auto &Operand = Operands[J].Operand;
248       if (ImplicitOperand.isIdenticalTo(Operand))
249         continue;
250       if (Operand.isReg() && Operand.isImplicit()) {
251         return error(Operands[J].Begin,
252                      Twine("expected an implicit register operand '") +
253                          printImplicitRegisterFlag(ImplicitOperand) + " %" +
254                          getRegisterName(TRI, ImplicitOperand.getReg()) + "'");
255       }
256     }
257     // TODO: Fix source location when Operands[J].end is right before '=', i.e:
258     // insead of reporting an error at this location:
259     //            %eax = MOV32r0
260     //                 ^
261     // report the error at the following location:
262     //            %eax = MOV32r0
263     //                          ^
264     return error(J < Operands.size() ? Operands[J].End : Token.location(),
265                  Twine("missing implicit register operand '") +
266                      printImplicitRegisterFlag(ImplicitOperands[I]) + " %" +
267                      getRegisterName(TRI, ImplicitOperands[I].getReg()) + "'");
268   }
269   return false;
270 }
271
272 bool MIParser::parseInstruction(unsigned &OpCode) {
273   if (Token.isNot(MIToken::Identifier))
274     return error("expected a machine instruction");
275   StringRef InstrName = Token.stringValue();
276   if (parseInstrName(InstrName, OpCode))
277     return error(Twine("unknown machine instruction name '") + InstrName + "'");
278   lex();
279   return false;
280 }
281
282 bool MIParser::parseRegister(unsigned &Reg) {
283   switch (Token.kind()) {
284   case MIToken::underscore:
285     Reg = 0;
286     break;
287   case MIToken::NamedRegister: {
288     StringRef Name = Token.stringValue();
289     if (getRegisterByName(Name, Reg))
290       return error(Twine("unknown register name '") + Name + "'");
291     break;
292   }
293   // TODO: Parse other register kinds.
294   default:
295     llvm_unreachable("The current token should be a register");
296   }
297   return false;
298 }
299
300 bool MIParser::parseRegisterFlag(unsigned &Flags) {
301   switch (Token.kind()) {
302   case MIToken::kw_implicit:
303     Flags |= RegState::Implicit;
304     break;
305   case MIToken::kw_implicit_define:
306     Flags |= RegState::ImplicitDefine;
307     break;
308   // TODO: report an error when we specify the same flag more than once.
309   // TODO: parse the other register flags.
310   default:
311     llvm_unreachable("The current token should be a register flag");
312   }
313   lex();
314   return false;
315 }
316
317 bool MIParser::parseRegisterOperand(MachineOperand &Dest, bool IsDef) {
318   unsigned Reg;
319   unsigned Flags = IsDef ? RegState::Define : 0;
320   while (Token.isRegisterFlag()) {
321     if (parseRegisterFlag(Flags))
322       return true;
323   }
324   if (!Token.isRegister())
325     return error("expected a register after register flags");
326   if (parseRegister(Reg))
327     return true;
328   lex();
329   // TODO: Parse subregister.
330   Dest = MachineOperand::CreateReg(Reg, Flags & RegState::Define,
331                                    Flags & RegState::Implicit);
332   return false;
333 }
334
335 bool MIParser::parseImmediateOperand(MachineOperand &Dest) {
336   assert(Token.is(MIToken::IntegerLiteral));
337   const APSInt &Int = Token.integerValue();
338   if (Int.getMinSignedBits() > 64)
339     // TODO: Replace this with an error when we can parse CIMM Machine Operands.
340     llvm_unreachable("Can't parse large integer literals yet!");
341   Dest = MachineOperand::CreateImm(Int.getExtValue());
342   lex();
343   return false;
344 }
345
346 bool MIParser::getUnsigned(unsigned &Result) {
347   assert(Token.hasIntegerValue() && "Expected a token with an integer value");
348   const uint64_t Limit = uint64_t(std::numeric_limits<unsigned>::max()) + 1;
349   uint64_t Val64 = Token.integerValue().getLimitedValue(Limit);
350   if (Val64 == Limit)
351     return error("expected 32-bit integer (too large)");
352   Result = Val64;
353   return false;
354 }
355
356 bool MIParser::parseMBBReference(MachineBasicBlock *&MBB) {
357   assert(Token.is(MIToken::MachineBasicBlock));
358   unsigned Number;
359   if (getUnsigned(Number))
360     return true;
361   auto MBBInfo = PFS.MBBSlots.find(Number);
362   if (MBBInfo == PFS.MBBSlots.end())
363     return error(Twine("use of undefined machine basic block #") +
364                  Twine(Number));
365   MBB = MBBInfo->second;
366   if (!Token.stringValue().empty() && Token.stringValue() != MBB->getName())
367     return error(Twine("the name of machine basic block #") + Twine(Number) +
368                  " isn't '" + Token.stringValue() + "'");
369   return false;
370 }
371
372 bool MIParser::parseMBBOperand(MachineOperand &Dest) {
373   MachineBasicBlock *MBB;
374   if (parseMBBReference(MBB))
375     return true;
376   Dest = MachineOperand::CreateMBB(MBB);
377   lex();
378   return false;
379 }
380
381 bool MIParser::parseGlobalAddressOperand(MachineOperand &Dest) {
382   switch (Token.kind()) {
383   case MIToken::NamedGlobalValue: {
384     auto Name = Token.stringValue();
385     const Module *M = MF.getFunction()->getParent();
386     if (const auto *GV = M->getNamedValue(Name)) {
387       Dest = MachineOperand::CreateGA(GV, /*Offset=*/0);
388       break;
389     }
390     return error(Twine("use of undefined global value '@") + Name + "'");
391   }
392   case MIToken::GlobalValue: {
393     unsigned GVIdx;
394     if (getUnsigned(GVIdx))
395       return true;
396     if (GVIdx >= IRSlots.GlobalValues.size())
397       return error(Twine("use of undefined global value '@") + Twine(GVIdx) +
398                    "'");
399     Dest = MachineOperand::CreateGA(IRSlots.GlobalValues[GVIdx],
400                                     /*Offset=*/0);
401     break;
402   }
403   default:
404     llvm_unreachable("The current token should be a global value");
405   }
406   // TODO: Parse offset and target flags.
407   lex();
408   return false;
409 }
410
411 bool MIParser::parseMachineOperand(MachineOperand &Dest) {
412   switch (Token.kind()) {
413   case MIToken::kw_implicit:
414   case MIToken::kw_implicit_define:
415   case MIToken::underscore:
416   case MIToken::NamedRegister:
417     return parseRegisterOperand(Dest);
418   case MIToken::IntegerLiteral:
419     return parseImmediateOperand(Dest);
420   case MIToken::MachineBasicBlock:
421     return parseMBBOperand(Dest);
422   case MIToken::GlobalValue:
423   case MIToken::NamedGlobalValue:
424     return parseGlobalAddressOperand(Dest);
425   case MIToken::Error:
426     return true;
427   case MIToken::Identifier:
428     if (const auto *RegMask = getRegMask(Token.stringValue())) {
429       Dest = MachineOperand::CreateRegMask(RegMask);
430       lex();
431       break;
432     }
433   // fallthrough
434   default:
435     // TODO: parse the other machine operands.
436     return error("expected a machine operand");
437   }
438   return false;
439 }
440
441 void MIParser::initNames2InstrOpCodes() {
442   if (!Names2InstrOpCodes.empty())
443     return;
444   const auto *TII = MF.getSubtarget().getInstrInfo();
445   assert(TII && "Expected target instruction info");
446   for (unsigned I = 0, E = TII->getNumOpcodes(); I < E; ++I)
447     Names2InstrOpCodes.insert(std::make_pair(StringRef(TII->getName(I)), I));
448 }
449
450 bool MIParser::parseInstrName(StringRef InstrName, unsigned &OpCode) {
451   initNames2InstrOpCodes();
452   auto InstrInfo = Names2InstrOpCodes.find(InstrName);
453   if (InstrInfo == Names2InstrOpCodes.end())
454     return true;
455   OpCode = InstrInfo->getValue();
456   return false;
457 }
458
459 void MIParser::initNames2Regs() {
460   if (!Names2Regs.empty())
461     return;
462   // The '%noreg' register is the register 0.
463   Names2Regs.insert(std::make_pair("noreg", 0));
464   const auto *TRI = MF.getSubtarget().getRegisterInfo();
465   assert(TRI && "Expected target register info");
466   for (unsigned I = 0, E = TRI->getNumRegs(); I < E; ++I) {
467     bool WasInserted =
468         Names2Regs.insert(std::make_pair(StringRef(TRI->getName(I)).lower(), I))
469             .second;
470     (void)WasInserted;
471     assert(WasInserted && "Expected registers to be unique case-insensitively");
472   }
473 }
474
475 bool MIParser::getRegisterByName(StringRef RegName, unsigned &Reg) {
476   initNames2Regs();
477   auto RegInfo = Names2Regs.find(RegName);
478   if (RegInfo == Names2Regs.end())
479     return true;
480   Reg = RegInfo->getValue();
481   return false;
482 }
483
484 void MIParser::initNames2RegMasks() {
485   if (!Names2RegMasks.empty())
486     return;
487   const auto *TRI = MF.getSubtarget().getRegisterInfo();
488   assert(TRI && "Expected target register info");
489   ArrayRef<const uint32_t *> RegMasks = TRI->getRegMasks();
490   ArrayRef<const char *> RegMaskNames = TRI->getRegMaskNames();
491   assert(RegMasks.size() == RegMaskNames.size());
492   for (size_t I = 0, E = RegMasks.size(); I < E; ++I)
493     Names2RegMasks.insert(
494         std::make_pair(StringRef(RegMaskNames[I]).lower(), RegMasks[I]));
495 }
496
497 const uint32_t *MIParser::getRegMask(StringRef Identifier) {
498   initNames2RegMasks();
499   auto RegMaskInfo = Names2RegMasks.find(Identifier);
500   if (RegMaskInfo == Names2RegMasks.end())
501     return nullptr;
502   return RegMaskInfo->getValue();
503 }
504
505 bool llvm::parseMachineInstr(MachineInstr *&MI, SourceMgr &SM,
506                              MachineFunction &MF, StringRef Src,
507                              const PerFunctionMIParsingState &PFS,
508                              const SlotMapping &IRSlots, SMDiagnostic &Error) {
509   return MIParser(SM, MF, Error, Src, PFS, IRSlots).parse(MI);
510 }
511
512 bool llvm::parseMBBReference(MachineBasicBlock *&MBB, SourceMgr &SM,
513                              MachineFunction &MF, StringRef Src,
514                              const PerFunctionMIParsingState &PFS,
515                              const SlotMapping &IRSlots, SMDiagnostic &Error) {
516   return MIParser(SM, MF, Error, Src, PFS, IRSlots).parseMBB(MBB);
517 }