blob: 5756853d4aaf58d9c2ad5251892025e278b2fbee [file] [log] [blame]
Alex Lorenz2bdb4e12015-05-27 18:02:19 +00001//===- MIRParser.cpp - MIR serialization format 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 class that parses the optional LLVM IR and machine
11// functions that are stored in MIR files.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/CodeGen/MIRParser/MIRParser.h"
Alex Lorenz8e0a1b42015-06-22 17:02:30 +000016#include "MIParser.h"
Alex Lorenz33f0aef2015-06-26 16:46:11 +000017#include "llvm/ADT/DenseMap.h"
Alex Lorenz2bdb4e12015-05-27 18:02:19 +000018#include "llvm/ADT/StringRef.h"
Alex Lorenz735c47e2015-06-15 20:30:22 +000019#include "llvm/ADT/StringMap.h"
Alex Lorenz2bdb4e12015-05-27 18:02:19 +000020#include "llvm/ADT/STLExtras.h"
21#include "llvm/AsmParser/Parser.h"
Alex Lorenz5d6108e2015-06-26 22:56:48 +000022#include "llvm/AsmParser/SlotMapping.h"
Alex Lorenz735c47e2015-06-15 20:30:22 +000023#include "llvm/CodeGen/MachineFunction.h"
Alex Lorenz54565cf2015-06-24 19:56:10 +000024#include "llvm/CodeGen/MachineRegisterInfo.h"
Alex Lorenz78d78312015-05-28 22:41:12 +000025#include "llvm/CodeGen/MIRYamlMapping.h"
Alex Lorenz4f093bf2015-06-19 17:43:07 +000026#include "llvm/IR/BasicBlock.h"
Alex Lorenz735c47e2015-06-15 20:30:22 +000027#include "llvm/IR/DiagnosticInfo.h"
Alex Lorenz8e7a58d72015-06-15 23:07:38 +000028#include "llvm/IR/Instructions.h"
Alex Lorenz735c47e2015-06-15 20:30:22 +000029#include "llvm/IR/LLVMContext.h"
Alex Lorenz2bdb4e12015-05-27 18:02:19 +000030#include "llvm/IR/Module.h"
Alex Lorenz4f093bf2015-06-19 17:43:07 +000031#include "llvm/IR/ValueSymbolTable.h"
Alex Lorenz09b832c2015-05-29 17:05:41 +000032#include "llvm/Support/LineIterator.h"
Alex Lorenz2bdb4e12015-05-27 18:02:19 +000033#include "llvm/Support/SMLoc.h"
34#include "llvm/Support/SourceMgr.h"
35#include "llvm/Support/MemoryBuffer.h"
36#include "llvm/Support/YAMLTraits.h"
37#include <memory>
38
39using namespace llvm;
40
Alex Lorenz735c47e2015-06-15 20:30:22 +000041namespace llvm {
Alex Lorenz2bdb4e12015-05-27 18:02:19 +000042
43/// This class implements the parsing of LLVM IR that's embedded inside a MIR
44/// file.
45class MIRParserImpl {
46 SourceMgr SM;
47 StringRef Filename;
48 LLVMContext &Context;
Alex Lorenz735c47e2015-06-15 20:30:22 +000049 StringMap<std::unique_ptr<yaml::MachineFunction>> Functions;
Alex Lorenz5d6108e2015-06-26 22:56:48 +000050 SlotMapping IRSlots;
Alex Lorenz2bdb4e12015-05-27 18:02:19 +000051
52public:
53 MIRParserImpl(std::unique_ptr<MemoryBuffer> Contents, StringRef Filename,
54 LLVMContext &Context);
55
Alex Lorenz735c47e2015-06-15 20:30:22 +000056 void reportDiagnostic(const SMDiagnostic &Diag);
57
58 /// Report an error with the given message at unknown location.
59 ///
60 /// Always returns true.
61 bool error(const Twine &Message);
62
Alex Lorenz0fd7c622015-06-30 17:55:00 +000063 /// Report a given error with the location translated from the location in an
64 /// embedded string literal to a location in the MIR file.
65 ///
66 /// Always returns true.
67 bool error(const SMDiagnostic &Error, SMRange SourceRange);
68
Alex Lorenz78d78312015-05-28 22:41:12 +000069 /// Try to parse the optional LLVM module and the machine functions in the MIR
70 /// file.
Alex Lorenz2bdb4e12015-05-27 18:02:19 +000071 ///
Alex Lorenz78d78312015-05-28 22:41:12 +000072 /// Return null if an error occurred.
Alex Lorenz735c47e2015-06-15 20:30:22 +000073 std::unique_ptr<Module> parse();
Alex Lorenz78d78312015-05-28 22:41:12 +000074
75 /// Parse the machine function in the current YAML document.
76 ///
Alex Lorenz8e7a58d72015-06-15 23:07:38 +000077 /// \param NoLLVMIR - set to true when the MIR file doesn't have LLVM IR.
78 /// A dummy IR function is created and inserted into the given module when
79 /// this parameter is true.
80 ///
Alex Lorenz78d78312015-05-28 22:41:12 +000081 /// Return true if an error occurred.
Alex Lorenz8e7a58d72015-06-15 23:07:38 +000082 bool parseMachineFunction(yaml::Input &In, Module &M, bool NoLLVMIR);
Alex Lorenz09b832c2015-05-29 17:05:41 +000083
Alex Lorenz735c47e2015-06-15 20:30:22 +000084 /// Initialize the machine function to the state that's described in the MIR
85 /// file.
86 ///
87 /// Return true if error occurred.
88 bool initializeMachineFunction(MachineFunction &MF);
89
Alex Lorenz4f093bf2015-06-19 17:43:07 +000090 /// Initialize the machine basic block using it's YAML representation.
91 ///
92 /// Return true if an error occurred.
Alex Lorenz7a503fa2015-07-07 17:46:43 +000093 bool initializeMachineBasicBlock(MachineFunction &MF, MachineBasicBlock &MBB,
94 const yaml::MachineBasicBlock &YamlMBB,
95 const PerFunctionMIParsingState &PFS);
Alex Lorenz4f093bf2015-06-19 17:43:07 +000096
Alex Lorenz54565cf2015-06-24 19:56:10 +000097 bool initializeRegisterInfo(MachineRegisterInfo &RegInfo,
98 const yaml::MachineFunction &YamlMF);
99
Alex Lorenz09b832c2015-05-29 17:05:41 +0000100private:
Alex Lorenz51af1602015-06-23 22:39:23 +0000101 /// Return a MIR diagnostic converted from an MI string diagnostic.
102 SMDiagnostic diagFromMIStringDiag(const SMDiagnostic &Error,
103 SMRange SourceRange);
104
Alex Lorenz09b832c2015-05-29 17:05:41 +0000105 /// Return a MIR diagnostic converted from an LLVM assembly diagnostic.
106 SMDiagnostic diagFromLLVMAssemblyDiag(const SMDiagnostic &Error,
107 SMRange SourceRange);
Alex Lorenz8e7a58d72015-06-15 23:07:38 +0000108
109 /// Create an empty function with the given name.
110 void createDummyFunction(StringRef Name, Module &M);
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000111};
112
Alex Lorenz735c47e2015-06-15 20:30:22 +0000113} // end namespace llvm
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000114
115MIRParserImpl::MIRParserImpl(std::unique_ptr<MemoryBuffer> Contents,
116 StringRef Filename, LLVMContext &Context)
117 : SM(), Filename(Filename), Context(Context) {
118 SM.AddNewSourceBuffer(std::move(Contents), SMLoc());
119}
120
Alex Lorenz735c47e2015-06-15 20:30:22 +0000121bool MIRParserImpl::error(const Twine &Message) {
122 Context.diagnose(DiagnosticInfoMIRParser(
123 DS_Error, SMDiagnostic(Filename, SourceMgr::DK_Error, Message.str())));
124 return true;
Alex Lorenz78d78312015-05-28 22:41:12 +0000125}
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000126
Alex Lorenz0fd7c622015-06-30 17:55:00 +0000127bool MIRParserImpl::error(const SMDiagnostic &Error, SMRange SourceRange) {
128 assert(Error.getKind() == SourceMgr::DK_Error && "Expected an error");
129 reportDiagnostic(diagFromMIStringDiag(Error, SourceRange));
130 return true;
131}
132
Alex Lorenz735c47e2015-06-15 20:30:22 +0000133void MIRParserImpl::reportDiagnostic(const SMDiagnostic &Diag) {
134 DiagnosticSeverity Kind;
135 switch (Diag.getKind()) {
136 case SourceMgr::DK_Error:
137 Kind = DS_Error;
138 break;
139 case SourceMgr::DK_Warning:
140 Kind = DS_Warning;
141 break;
142 case SourceMgr::DK_Note:
143 Kind = DS_Note;
144 break;
145 }
146 Context.diagnose(DiagnosticInfoMIRParser(Kind, Diag));
147}
148
149static void handleYAMLDiag(const SMDiagnostic &Diag, void *Context) {
150 reinterpret_cast<MIRParserImpl *>(Context)->reportDiagnostic(Diag);
151}
152
153std::unique_ptr<Module> MIRParserImpl::parse() {
Alex Lorenz78d78312015-05-28 22:41:12 +0000154 yaml::Input In(SM.getMemoryBuffer(SM.getMainFileID())->getBuffer(),
Alex Lorenz735c47e2015-06-15 20:30:22 +0000155 /*Ctxt=*/nullptr, handleYAMLDiag, this);
Alex Lorenz51af1602015-06-23 22:39:23 +0000156 In.setContext(&In);
Alex Lorenz78d78312015-05-28 22:41:12 +0000157
158 if (!In.setCurrentDocument()) {
Alex Lorenz735c47e2015-06-15 20:30:22 +0000159 if (In.error())
Alex Lorenz78d78312015-05-28 22:41:12 +0000160 return nullptr;
161 // Create an empty module when the MIR file is empty.
162 return llvm::make_unique<Module>(Filename, Context);
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000163 }
164
Alex Lorenz78d78312015-05-28 22:41:12 +0000165 std::unique_ptr<Module> M;
Alex Lorenz8e7a58d72015-06-15 23:07:38 +0000166 bool NoLLVMIR = false;
Alex Lorenz78d78312015-05-28 22:41:12 +0000167 // Parse the block scalar manually so that we can return unique pointer
168 // without having to go trough YAML traits.
169 if (const auto *BSN =
170 dyn_cast_or_null<yaml::BlockScalarNode>(In.getCurrentNode())) {
Alex Lorenz735c47e2015-06-15 20:30:22 +0000171 SMDiagnostic Error;
Alex Lorenz78d78312015-05-28 22:41:12 +0000172 M = parseAssembly(MemoryBufferRef(BSN->getValue(), Filename), Error,
Alex Lorenz5d6108e2015-06-26 22:56:48 +0000173 Context, &IRSlots);
Alex Lorenz09b832c2015-05-29 17:05:41 +0000174 if (!M) {
Alex Lorenz735c47e2015-06-15 20:30:22 +0000175 reportDiagnostic(diagFromLLVMAssemblyDiag(Error, BSN->getSourceRange()));
Alex Lorenz78d78312015-05-28 22:41:12 +0000176 return M;
Alex Lorenz09b832c2015-05-29 17:05:41 +0000177 }
Alex Lorenz78d78312015-05-28 22:41:12 +0000178 In.nextDocument();
179 if (!In.setCurrentDocument())
180 return M;
181 } else {
182 // Create an new, empty module.
183 M = llvm::make_unique<Module>(Filename, Context);
Alex Lorenz8e7a58d72015-06-15 23:07:38 +0000184 NoLLVMIR = true;
Alex Lorenz78d78312015-05-28 22:41:12 +0000185 }
186
187 // Parse the machine functions.
188 do {
Alex Lorenz8e7a58d72015-06-15 23:07:38 +0000189 if (parseMachineFunction(In, *M, NoLLVMIR))
Alex Lorenz78d78312015-05-28 22:41:12 +0000190 return nullptr;
191 In.nextDocument();
192 } while (In.setCurrentDocument());
193
194 return M;
195}
196
Alex Lorenz8e7a58d72015-06-15 23:07:38 +0000197bool MIRParserImpl::parseMachineFunction(yaml::Input &In, Module &M,
198 bool NoLLVMIR) {
Alex Lorenz735c47e2015-06-15 20:30:22 +0000199 auto MF = llvm::make_unique<yaml::MachineFunction>();
200 yaml::yamlize(In, *MF, false);
Alex Lorenz78d78312015-05-28 22:41:12 +0000201 if (In.error())
202 return true;
Alex Lorenz735c47e2015-06-15 20:30:22 +0000203 auto FunctionName = MF->Name;
Alex Lorenzfe2aa972015-06-15 22:23:23 +0000204 if (Functions.find(FunctionName) != Functions.end())
205 return error(Twine("redefinition of machine function '") + FunctionName +
206 "'");
Alex Lorenz735c47e2015-06-15 20:30:22 +0000207 Functions.insert(std::make_pair(FunctionName, std::move(MF)));
Alex Lorenz8e7a58d72015-06-15 23:07:38 +0000208 if (NoLLVMIR)
209 createDummyFunction(FunctionName, M);
Alex Lorenz5ef16b82015-06-16 17:06:29 +0000210 else if (!M.getFunction(FunctionName))
211 return error(Twine("function '") + FunctionName +
212 "' isn't defined in the provided LLVM IR");
Alex Lorenz735c47e2015-06-15 20:30:22 +0000213 return false;
214}
215
Alex Lorenz8e7a58d72015-06-15 23:07:38 +0000216void MIRParserImpl::createDummyFunction(StringRef Name, Module &M) {
217 auto &Context = M.getContext();
218 Function *F = cast<Function>(M.getOrInsertFunction(
219 Name, FunctionType::get(Type::getVoidTy(Context), false)));
220 BasicBlock *BB = BasicBlock::Create(Context, "entry", F);
221 new UnreachableInst(Context, BB);
222}
223
Alex Lorenz735c47e2015-06-15 20:30:22 +0000224bool MIRParserImpl::initializeMachineFunction(MachineFunction &MF) {
225 auto It = Functions.find(MF.getName());
226 if (It == Functions.end())
227 return error(Twine("no machine function information for function '") +
228 MF.getName() + "' in the MIR file");
229 // TODO: Recreate the machine function.
Alex Lorenz5b5f9752015-06-16 00:10:47 +0000230 const yaml::MachineFunction &YamlMF = *It->getValue();
231 if (YamlMF.Alignment)
232 MF.setAlignment(YamlMF.Alignment);
233 MF.setExposesReturnsTwice(YamlMF.ExposesReturnsTwice);
234 MF.setHasInlineAsm(YamlMF.HasInlineAsm);
Alex Lorenz54565cf2015-06-24 19:56:10 +0000235 if (initializeRegisterInfo(MF.getRegInfo(), YamlMF))
236 return true;
237
Alex Lorenz7a503fa2015-07-07 17:46:43 +0000238 PerFunctionMIParsingState PFS;
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000239 const auto &F = *MF.getFunction();
240 for (const auto &YamlMBB : YamlMF.BasicBlocks) {
241 const BasicBlock *BB = nullptr;
242 if (!YamlMBB.Name.empty()) {
243 BB = dyn_cast_or_null<BasicBlock>(
244 F.getValueSymbolTable().lookup(YamlMBB.Name));
Alex Lorenz00302df2015-06-19 20:12:03 +0000245 if (!BB)
246 return error(Twine("basic block '") + YamlMBB.Name +
247 "' is not defined in the function '" + MF.getName() + "'");
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000248 }
249 auto *MBB = MF.CreateMachineBasicBlock(BB);
250 MF.insert(MF.end(), MBB);
Alex Lorenz7a503fa2015-07-07 17:46:43 +0000251 bool WasInserted =
252 PFS.MBBSlots.insert(std::make_pair(YamlMBB.ID, MBB)).second;
Alex Lorenz33f0aef2015-06-26 16:46:11 +0000253 if (!WasInserted)
254 return error(Twine("redefinition of machine basic block with id #") +
255 Twine(YamlMBB.ID));
256 }
257
258 // Initialize the machine basic blocks after creating them all so that the
259 // machine instructions parser can resolve the MBB references.
260 unsigned I = 0;
261 for (const auto &YamlMBB : YamlMF.BasicBlocks) {
262 if (initializeMachineBasicBlock(MF, *MF.getBlockNumbered(I++), YamlMBB,
Alex Lorenz7a503fa2015-07-07 17:46:43 +0000263 PFS))
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000264 return true;
265 }
266 return false;
267}
268
269bool MIRParserImpl::initializeMachineBasicBlock(
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000270 MachineFunction &MF, MachineBasicBlock &MBB,
Alex Lorenz33f0aef2015-06-26 16:46:11 +0000271 const yaml::MachineBasicBlock &YamlMBB,
Alex Lorenz7a503fa2015-07-07 17:46:43 +0000272 const PerFunctionMIParsingState &PFS) {
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000273 MBB.setAlignment(YamlMBB.Alignment);
274 if (YamlMBB.AddressTaken)
275 MBB.setHasAddressTaken();
276 MBB.setIsLandingPad(YamlMBB.IsLandingPad);
Alex Lorenzf09df002015-06-30 18:16:42 +0000277 SMDiagnostic Error;
278 // Parse the successors.
279 for (const auto &MBBSource : YamlMBB.Successors) {
280 MachineBasicBlock *SuccMBB = nullptr;
Alex Lorenz7a503fa2015-07-07 17:46:43 +0000281 if (parseMBBReference(SuccMBB, SM, MF, MBBSource.Value, PFS, IRSlots,
Alex Lorenzf09df002015-06-30 18:16:42 +0000282 Error))
283 return error(Error, MBBSource.SourceRange);
284 // TODO: Report an error when adding the same successor more than once.
285 MBB.addSuccessor(SuccMBB);
286 }
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000287 // Parse the instructions.
288 for (const auto &MISource : YamlMBB.Instructions) {
Alex Lorenz3708a642015-06-30 17:47:50 +0000289 MachineInstr *MI = nullptr;
Alex Lorenz7a503fa2015-07-07 17:46:43 +0000290 if (parseMachineInstr(MI, SM, MF, MISource.Value, PFS, IRSlots, Error))
Alex Lorenz0fd7c622015-06-30 17:55:00 +0000291 return error(Error, MISource.SourceRange);
Alex Lorenz3708a642015-06-30 17:47:50 +0000292 MBB.insert(MBB.end(), MI);
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000293 }
Alex Lorenz78d78312015-05-28 22:41:12 +0000294 return false;
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000295}
296
Alex Lorenz54565cf2015-06-24 19:56:10 +0000297bool MIRParserImpl::initializeRegisterInfo(
298 MachineRegisterInfo &RegInfo, const yaml::MachineFunction &YamlMF) {
299 assert(RegInfo.isSSA());
300 if (!YamlMF.IsSSA)
301 RegInfo.leaveSSA();
302 assert(RegInfo.tracksLiveness());
303 if (!YamlMF.TracksRegLiveness)
304 RegInfo.invalidateLiveness();
305 RegInfo.enableSubRegLiveness(YamlMF.TracksSubRegLiveness);
306 return false;
307}
308
Alex Lorenz51af1602015-06-23 22:39:23 +0000309SMDiagnostic MIRParserImpl::diagFromMIStringDiag(const SMDiagnostic &Error,
310 SMRange SourceRange) {
311 assert(SourceRange.isValid() && "Invalid source range");
312 SMLoc Loc = SourceRange.Start;
313 bool HasQuote = Loc.getPointer() < SourceRange.End.getPointer() &&
314 *Loc.getPointer() == '\'';
315 // Translate the location of the error from the location in the MI string to
316 // the corresponding location in the MIR file.
317 Loc = Loc.getFromPointer(Loc.getPointer() + Error.getColumnNo() +
318 (HasQuote ? 1 : 0));
319
320 // TODO: Translate any source ranges as well.
321 return SM.GetMessage(Loc, Error.getKind(), Error.getMessage(), None,
322 Error.getFixIts());
323}
324
Alex Lorenz09b832c2015-05-29 17:05:41 +0000325SMDiagnostic MIRParserImpl::diagFromLLVMAssemblyDiag(const SMDiagnostic &Error,
326 SMRange SourceRange) {
327 assert(SourceRange.isValid());
328
329 // Translate the location of the error from the location in the llvm IR string
330 // to the corresponding location in the MIR file.
331 auto LineAndColumn = SM.getLineAndColumn(SourceRange.Start);
332 unsigned Line = LineAndColumn.first + Error.getLineNo() - 1;
333 unsigned Column = Error.getColumnNo();
334 StringRef LineStr = Error.getLineContents();
335 SMLoc Loc = Error.getLoc();
336
337 // Get the full line and adjust the column number by taking the indentation of
338 // LLVM IR into account.
339 for (line_iterator L(*SM.getMemoryBuffer(SM.getMainFileID()), false), E;
340 L != E; ++L) {
341 if (L.line_number() == Line) {
342 LineStr = *L;
343 Loc = SMLoc::getFromPointer(LineStr.data());
344 auto Indent = LineStr.find(Error.getLineContents());
345 if (Indent != StringRef::npos)
346 Column += Indent;
347 break;
348 }
349 }
350
351 return SMDiagnostic(SM, Loc, Filename, Line, Column, Error.getKind(),
352 Error.getMessage(), LineStr, Error.getRanges(),
353 Error.getFixIts());
354}
355
Alex Lorenz735c47e2015-06-15 20:30:22 +0000356MIRParser::MIRParser(std::unique_ptr<MIRParserImpl> Impl)
357 : Impl(std::move(Impl)) {}
358
359MIRParser::~MIRParser() {}
360
361std::unique_ptr<Module> MIRParser::parseLLVMModule() { return Impl->parse(); }
362
363bool MIRParser::initializeMachineFunction(MachineFunction &MF) {
364 return Impl->initializeMachineFunction(MF);
365}
366
367std::unique_ptr<MIRParser> llvm::createMIRParserFromFile(StringRef Filename,
368 SMDiagnostic &Error,
369 LLVMContext &Context) {
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000370 auto FileOrErr = MemoryBuffer::getFile(Filename);
371 if (std::error_code EC = FileOrErr.getError()) {
372 Error = SMDiagnostic(Filename, SourceMgr::DK_Error,
373 "Could not open input file: " + EC.message());
Alex Lorenz735c47e2015-06-15 20:30:22 +0000374 return nullptr;
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000375 }
Alex Lorenz735c47e2015-06-15 20:30:22 +0000376 return createMIRParser(std::move(FileOrErr.get()), Context);
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000377}
378
Alex Lorenz735c47e2015-06-15 20:30:22 +0000379std::unique_ptr<MIRParser>
380llvm::createMIRParser(std::unique_ptr<MemoryBuffer> Contents,
381 LLVMContext &Context) {
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000382 auto Filename = Contents->getBufferIdentifier();
Alex Lorenz735c47e2015-06-15 20:30:22 +0000383 return llvm::make_unique<MIRParser>(
384 llvm::make_unique<MIRParserImpl>(std::move(Contents), Filename, Context));
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000385}