blob: 52ac08cd2d3d7801361c06086196180e4474ae5f [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/STLExtras.h"
Quentin Colombet876ddf82016-04-08 16:40:43 +000019#include "llvm/ADT/StringMap.h"
20#include "llvm/ADT/StringRef.h"
Alex Lorenz2bdb4e12015-05-27 18:02:19 +000021#include "llvm/AsmParser/Parser.h"
Alex Lorenz5d6108e2015-06-26 22:56:48 +000022#include "llvm/AsmParser/SlotMapping.h"
Quentin Colombet876ddf82016-04-08 16:40:43 +000023#include "llvm/CodeGen/GlobalISel/RegisterBank.h"
24#include "llvm/CodeGen/GlobalISel/RegisterBankInfo.h"
25#include "llvm/CodeGen/MIRYamlMapping.h"
Alex Lorenzab980492015-07-20 20:51:18 +000026#include "llvm/CodeGen/MachineConstantPool.h"
Alex Lorenz60541c12015-07-09 19:55:27 +000027#include "llvm/CodeGen/MachineFrameInfo.h"
Quentin Colombet876ddf82016-04-08 16:40:43 +000028#include "llvm/CodeGen/MachineFunction.h"
Alex Lorenzdf9e3c62015-08-19 00:13:25 +000029#include "llvm/CodeGen/MachineModuleInfo.h"
Alex Lorenz54565cf2015-06-24 19:56:10 +000030#include "llvm/CodeGen/MachineRegisterInfo.h"
Alex Lorenz4f093bf2015-06-19 17:43:07 +000031#include "llvm/IR/BasicBlock.h"
Reid Kleckner28865802016-04-14 18:29:59 +000032#include "llvm/IR/DebugInfo.h"
Alex Lorenz735c47e2015-06-15 20:30:22 +000033#include "llvm/IR/DiagnosticInfo.h"
Alex Lorenz8e7a58d72015-06-15 23:07:38 +000034#include "llvm/IR/Instructions.h"
Alex Lorenz735c47e2015-06-15 20:30:22 +000035#include "llvm/IR/LLVMContext.h"
Alex Lorenz2bdb4e12015-05-27 18:02:19 +000036#include "llvm/IR/Module.h"
Alex Lorenz4f093bf2015-06-19 17:43:07 +000037#include "llvm/IR/ValueSymbolTable.h"
Alex Lorenz09b832c2015-05-29 17:05:41 +000038#include "llvm/Support/LineIterator.h"
Quentin Colombet876ddf82016-04-08 16:40:43 +000039#include "llvm/Support/MemoryBuffer.h"
Alex Lorenz2bdb4e12015-05-27 18:02:19 +000040#include "llvm/Support/SMLoc.h"
41#include "llvm/Support/SourceMgr.h"
Alex Lorenz2bdb4e12015-05-27 18:02:19 +000042#include "llvm/Support/YAMLTraits.h"
43#include <memory>
44
45using namespace llvm;
46
Alex Lorenz735c47e2015-06-15 20:30:22 +000047namespace llvm {
Alex Lorenz2bdb4e12015-05-27 18:02:19 +000048
49/// This class implements the parsing of LLVM IR that's embedded inside a MIR
50/// file.
51class MIRParserImpl {
52 SourceMgr SM;
Matthias Braun7bda1952017-06-06 00:44:35 +000053 yaml::Input In;
Alex Lorenz2bdb4e12015-05-27 18:02:19 +000054 StringRef Filename;
55 LLVMContext &Context;
Alex Lorenz5d6108e2015-06-26 22:56:48 +000056 SlotMapping IRSlots;
Alex Lorenz28148ba2015-07-09 22:23:13 +000057 /// Maps from register class names to register classes.
Matthias Braunde5fea22017-01-18 00:59:19 +000058 Name2RegClassMap Names2RegClasses;
Quentin Colombet876ddf82016-04-08 16:40:43 +000059 /// Maps from register bank names to register banks.
Matthias Braunde5fea22017-01-18 00:59:19 +000060 Name2RegBankMap Names2RegBanks;
Matthias Braun7bda1952017-06-06 00:44:35 +000061 /// True when the MIR file doesn't have LLVM IR. Dummy IR functions are
62 /// created and inserted into the given module when this is true.
63 bool NoLLVMIR = false;
64 /// True when a well formed MIR file does not contain any MIR/machine function
65 /// parts.
66 bool NoMIRDocuments = false;
Alex Lorenz2bdb4e12015-05-27 18:02:19 +000067
68public:
Matthias Braun7bda1952017-06-06 00:44:35 +000069 MIRParserImpl(std::unique_ptr<MemoryBuffer> Contents,
70 StringRef Filename, LLVMContext &Context);
Alex Lorenz2bdb4e12015-05-27 18:02:19 +000071
Alex Lorenz735c47e2015-06-15 20:30:22 +000072 void reportDiagnostic(const SMDiagnostic &Diag);
73
74 /// Report an error with the given message at unknown location.
75 ///
76 /// Always returns true.
77 bool error(const Twine &Message);
78
Alex Lorenzb1f9ce82015-07-08 20:22:20 +000079 /// Report an error with the given message at the given location.
80 ///
81 /// Always returns true.
82 bool error(SMLoc Loc, const Twine &Message);
83
Alex Lorenz0fd7c622015-06-30 17:55:00 +000084 /// Report a given error with the location translated from the location in an
85 /// embedded string literal to a location in the MIR file.
86 ///
87 /// Always returns true.
88 bool error(const SMDiagnostic &Error, SMRange SourceRange);
89
Alex Lorenz78d78312015-05-28 22:41:12 +000090 /// Try to parse the optional LLVM module and the machine functions in the MIR
91 /// file.
Alex Lorenz2bdb4e12015-05-27 18:02:19 +000092 ///
Alex Lorenz78d78312015-05-28 22:41:12 +000093 /// Return null if an error occurred.
Matthias Braun7bda1952017-06-06 00:44:35 +000094 std::unique_ptr<Module> parseIRModule();
95
96 bool parseMachineFunctions(Module &M, MachineModuleInfo &MMI);
Alex Lorenz78d78312015-05-28 22:41:12 +000097
98 /// Parse the machine function in the current YAML document.
99 ///
Alex Lorenz8e7a58d72015-06-15 23:07:38 +0000100 ///
Alex Lorenz78d78312015-05-28 22:41:12 +0000101 /// Return true if an error occurred.
Matthias Braun7bda1952017-06-06 00:44:35 +0000102 bool parseMachineFunction(Module &M, MachineModuleInfo &MMI);
Alex Lorenz09b832c2015-05-29 17:05:41 +0000103
Alex Lorenz735c47e2015-06-15 20:30:22 +0000104 /// Initialize the machine function to the state that's described in the MIR
105 /// file.
106 ///
107 /// Return true if error occurred.
Matthias Braun7bda1952017-06-06 00:44:35 +0000108 bool initializeMachineFunction(const yaml::MachineFunction &YamlMF,
109 MachineFunction &MF);
Alex Lorenz735c47e2015-06-15 20:30:22 +0000110
Matthias Braun74ad41c2016-10-11 03:13:01 +0000111 bool parseRegisterInfo(PerFunctionMIParsingState &PFS,
112 const yaml::MachineFunction &YamlMF);
Alex Lorenz54565cf2015-06-24 19:56:10 +0000113
Matthias Braun74ad41c2016-10-11 03:13:01 +0000114 bool setupRegisterInfo(const PerFunctionMIParsingState &PFS,
Alex Lorenzc4838082015-08-11 00:32:49 +0000115 const yaml::MachineFunction &YamlMF);
116
Matthias Braun83947862016-07-13 22:23:23 +0000117 bool initializeFrameInfo(PerFunctionMIParsingState &PFS,
118 const yaml::MachineFunction &YamlMF);
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000119
Matthias Braun83947862016-07-13 22:23:23 +0000120 bool parseCalleeSavedRegister(PerFunctionMIParsingState &PFS,
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000121 std::vector<CalleeSavedInfo> &CSIInfo,
122 const yaml::StringValue &RegisterSource,
Matthias Braun5c3e8a42017-09-28 18:52:14 +0000123 bool IsRestored, int FrameIdx);
Alex Lorenz60541c12015-07-09 19:55:27 +0000124
Matthias Braun83947862016-07-13 22:23:23 +0000125 bool parseStackObjectsDebugInfo(PerFunctionMIParsingState &PFS,
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000126 const yaml::MachineStackObject &Object,
127 int FrameIdx);
128
Matthias Braun83947862016-07-13 22:23:23 +0000129 bool initializeConstantPool(PerFunctionMIParsingState &PFS,
130 MachineConstantPool &ConstantPool,
131 const yaml::MachineFunction &YamlMF);
Alex Lorenzab980492015-07-20 20:51:18 +0000132
Matthias Braun83947862016-07-13 22:23:23 +0000133 bool initializeJumpTableInfo(PerFunctionMIParsingState &PFS,
134 const yaml::MachineJumpTable &YamlJTI);
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000135
Alex Lorenz09b832c2015-05-29 17:05:41 +0000136private:
Matthias Braun74ad41c2016-10-11 03:13:01 +0000137 bool parseMDNode(PerFunctionMIParsingState &PFS, MDNode *&Node,
Matthias Braun83947862016-07-13 22:23:23 +0000138 const yaml::StringValue &Source);
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000139
Matthias Braun74ad41c2016-10-11 03:13:01 +0000140 bool parseMBBReference(PerFunctionMIParsingState &PFS,
Matthias Braun83947862016-07-13 22:23:23 +0000141 MachineBasicBlock *&MBB,
142 const yaml::StringValue &Source);
Alex Lorenz05fa73b2015-07-29 20:57:11 +0000143
Alex Lorenz51af1602015-06-23 22:39:23 +0000144 /// Return a MIR diagnostic converted from an MI string diagnostic.
145 SMDiagnostic diagFromMIStringDiag(const SMDiagnostic &Error,
146 SMRange SourceRange);
147
Alex Lorenz9b62cf62015-08-13 20:30:11 +0000148 /// Return a MIR diagnostic converted from a diagnostic located in a YAML
149 /// block scalar string.
150 SMDiagnostic diagFromBlockStringDiag(const SMDiagnostic &Error,
151 SMRange SourceRange);
Alex Lorenz8e7a58d72015-06-15 23:07:38 +0000152
Alex Lorenz28148ba2015-07-09 22:23:13 +0000153 void initNames2RegClasses(const MachineFunction &MF);
Quentin Colombet876ddf82016-04-08 16:40:43 +0000154 void initNames2RegBanks(const MachineFunction &MF);
Alex Lorenz28148ba2015-07-09 22:23:13 +0000155
156 /// Check if the given identifier is a name of a register class.
157 ///
158 /// Return null if the name isn't a register class.
159 const TargetRegisterClass *getRegClass(const MachineFunction &MF,
160 StringRef Name);
Quentin Colombet876ddf82016-04-08 16:40:43 +0000161
162 /// Check if the given identifier is a name of a register bank.
163 ///
164 /// Return null if the name isn't a register bank.
165 const RegisterBank *getRegBank(const MachineFunction &MF, StringRef Name);
Matthias Braun90799ce2016-08-23 21:19:49 +0000166
167 void computeFunctionProperties(MachineFunction &MF);
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000168};
169
Alex Lorenz735c47e2015-06-15 20:30:22 +0000170} // end namespace llvm
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000171
Matthias Braun7bda1952017-06-06 00:44:35 +0000172static void handleYAMLDiag(const SMDiagnostic &Diag, void *Context) {
173 reinterpret_cast<MIRParserImpl *>(Context)->reportDiagnostic(Diag);
174}
175
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000176MIRParserImpl::MIRParserImpl(std::unique_ptr<MemoryBuffer> Contents,
177 StringRef Filename, LLVMContext &Context)
Matthias Braun7bda1952017-06-06 00:44:35 +0000178 : SM(),
179 In(SM.getMemoryBuffer(
180 SM.AddNewSourceBuffer(std::move(Contents), SMLoc()))->getBuffer(),
181 nullptr, handleYAMLDiag, this),
182 Filename(Filename),
183 Context(Context) {
184 In.setContext(&In);
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000185}
186
Alex Lorenz735c47e2015-06-15 20:30:22 +0000187bool MIRParserImpl::error(const Twine &Message) {
188 Context.diagnose(DiagnosticInfoMIRParser(
189 DS_Error, SMDiagnostic(Filename, SourceMgr::DK_Error, Message.str())));
190 return true;
Alex Lorenz78d78312015-05-28 22:41:12 +0000191}
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000192
Alex Lorenzb1f9ce82015-07-08 20:22:20 +0000193bool MIRParserImpl::error(SMLoc Loc, const Twine &Message) {
194 Context.diagnose(DiagnosticInfoMIRParser(
195 DS_Error, SM.GetMessage(Loc, SourceMgr::DK_Error, Message)));
196 return true;
197}
198
Alex Lorenz0fd7c622015-06-30 17:55:00 +0000199bool MIRParserImpl::error(const SMDiagnostic &Error, SMRange SourceRange) {
200 assert(Error.getKind() == SourceMgr::DK_Error && "Expected an error");
201 reportDiagnostic(diagFromMIStringDiag(Error, SourceRange));
202 return true;
203}
204
Alex Lorenz735c47e2015-06-15 20:30:22 +0000205void MIRParserImpl::reportDiagnostic(const SMDiagnostic &Diag) {
206 DiagnosticSeverity Kind;
207 switch (Diag.getKind()) {
208 case SourceMgr::DK_Error:
209 Kind = DS_Error;
210 break;
211 case SourceMgr::DK_Warning:
212 Kind = DS_Warning;
213 break;
214 case SourceMgr::DK_Note:
215 Kind = DS_Note;
216 break;
Adam Nemet01104ae2017-10-12 23:56:02 +0000217 case SourceMgr::DK_Remark:
218 llvm_unreachable("remark unexpected");
219 break;
Alex Lorenz735c47e2015-06-15 20:30:22 +0000220 }
221 Context.diagnose(DiagnosticInfoMIRParser(Kind, Diag));
222}
223
Matthias Braun7bda1952017-06-06 00:44:35 +0000224std::unique_ptr<Module> MIRParserImpl::parseIRModule() {
Alex Lorenz78d78312015-05-28 22:41:12 +0000225 if (!In.setCurrentDocument()) {
Alex Lorenz735c47e2015-06-15 20:30:22 +0000226 if (In.error())
Alex Lorenz78d78312015-05-28 22:41:12 +0000227 return nullptr;
228 // Create an empty module when the MIR file is empty.
Matthias Braun7bda1952017-06-06 00:44:35 +0000229 NoMIRDocuments = true;
Alex Lorenz78d78312015-05-28 22:41:12 +0000230 return llvm::make_unique<Module>(Filename, Context);
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000231 }
232
Alex Lorenz78d78312015-05-28 22:41:12 +0000233 std::unique_ptr<Module> M;
234 // Parse the block scalar manually so that we can return unique pointer
235 // without having to go trough YAML traits.
236 if (const auto *BSN =
237 dyn_cast_or_null<yaml::BlockScalarNode>(In.getCurrentNode())) {
Alex Lorenz735c47e2015-06-15 20:30:22 +0000238 SMDiagnostic Error;
Alex Lorenz78d78312015-05-28 22:41:12 +0000239 M = parseAssembly(MemoryBufferRef(BSN->getValue(), Filename), Error,
Yaxun Liuc00d81e2018-01-30 22:32:39 +0000240 Context, &IRSlots, /*UpgradeDebugInfo=*/false);
Alex Lorenz09b832c2015-05-29 17:05:41 +0000241 if (!M) {
Alex Lorenz9b62cf62015-08-13 20:30:11 +0000242 reportDiagnostic(diagFromBlockStringDiag(Error, BSN->getSourceRange()));
Matthias Braund6f95622016-07-14 00:42:37 +0000243 return nullptr;
Alex Lorenz09b832c2015-05-29 17:05:41 +0000244 }
Alex Lorenz78d78312015-05-28 22:41:12 +0000245 In.nextDocument();
246 if (!In.setCurrentDocument())
Matthias Braun7bda1952017-06-06 00:44:35 +0000247 NoMIRDocuments = true;
Alex Lorenz78d78312015-05-28 22:41:12 +0000248 } else {
249 // Create an new, empty module.
250 M = llvm::make_unique<Module>(Filename, Context);
Alex Lorenz8e7a58d72015-06-15 23:07:38 +0000251 NoLLVMIR = true;
Alex Lorenz78d78312015-05-28 22:41:12 +0000252 }
Alex Lorenz78d78312015-05-28 22:41:12 +0000253 return M;
254}
255
Matthias Braun7bda1952017-06-06 00:44:35 +0000256bool MIRParserImpl::parseMachineFunctions(Module &M, MachineModuleInfo &MMI) {
257 if (NoMIRDocuments)
258 return false;
259
260 // Parse the machine functions.
261 do {
262 if (parseMachineFunction(M, MMI))
263 return true;
264 In.nextDocument();
265 } while (In.setCurrentDocument());
266
Alex Lorenz735c47e2015-06-15 20:30:22 +0000267 return false;
268}
269
Matthias Braun7bda1952017-06-06 00:44:35 +0000270/// Create an empty function with the given name.
271static Function *createDummyFunction(StringRef Name, Module &M) {
Alex Lorenz8e7a58d72015-06-15 23:07:38 +0000272 auto &Context = M.getContext();
273 Function *F = cast<Function>(M.getOrInsertFunction(
274 Name, FunctionType::get(Type::getVoidTy(Context), false)));
275 BasicBlock *BB = BasicBlock::Create(Context, "entry", F);
276 new UnreachableInst(Context, BB);
Matthias Braun7bda1952017-06-06 00:44:35 +0000277 return F;
278}
279
280bool MIRParserImpl::parseMachineFunction(Module &M, MachineModuleInfo &MMI) {
281 // Parse the yaml.
282 yaml::MachineFunction YamlMF;
283 yaml::EmptyContext Ctx;
284 yaml::yamlize(In, YamlMF, false, Ctx);
285 if (In.error())
286 return true;
287
288 // Search for the corresponding IR function.
289 StringRef FunctionName = YamlMF.Name;
290 Function *F = M.getFunction(FunctionName);
291 if (!F) {
292 if (NoLLVMIR) {
293 F = createDummyFunction(FunctionName, M);
294 } else {
295 return error(Twine("function '") + FunctionName +
296 "' isn't defined in the provided LLVM IR");
297 }
298 }
299 if (MMI.getMachineFunction(*F) != nullptr)
300 return error(Twine("redefinition of machine function '") + FunctionName +
301 "'");
302
303 // Create the MachineFunction.
304 MachineFunction &MF = MMI.getOrCreateMachineFunction(*F);
305 if (initializeMachineFunction(YamlMF, MF))
306 return true;
307
308 return false;
Alex Lorenz8e7a58d72015-06-15 23:07:38 +0000309}
310
Matthias Braun79f85b32016-08-24 01:32:41 +0000311static bool isSSA(const MachineFunction &MF) {
312 const MachineRegisterInfo &MRI = MF.getRegInfo();
313 for (unsigned I = 0, E = MRI.getNumVirtRegs(); I != E; ++I) {
314 unsigned Reg = TargetRegisterInfo::index2VirtReg(I);
315 if (!MRI.hasOneDef(Reg) && !MRI.def_empty(Reg))
316 return false;
317 }
318 return true;
319}
320
Matthias Braun90799ce2016-08-23 21:19:49 +0000321void MIRParserImpl::computeFunctionProperties(MachineFunction &MF) {
Matthias Braun79f85b32016-08-24 01:32:41 +0000322 MachineFunctionProperties &Properties = MF.getProperties();
Matthias Brauna319e2c2016-08-24 22:34:06 +0000323
324 bool HasPHI = false;
325 bool HasInlineAsm = false;
326 for (const MachineBasicBlock &MBB : MF) {
327 for (const MachineInstr &MI : MBB) {
328 if (MI.isPHI())
329 HasPHI = true;
330 if (MI.isInlineAsm())
331 HasInlineAsm = true;
332 }
333 }
334 if (!HasPHI)
Matthias Braun79f85b32016-08-24 01:32:41 +0000335 Properties.set(MachineFunctionProperties::Property::NoPHIs);
Matthias Brauna319e2c2016-08-24 22:34:06 +0000336 MF.setHasInlineAsm(HasInlineAsm);
Matthias Braun79f85b32016-08-24 01:32:41 +0000337
338 if (isSSA(MF))
339 Properties.set(MachineFunctionProperties::Property::IsSSA);
340 else
Quentin Colombete609a9a2016-08-26 22:09:11 +0000341 Properties.reset(MachineFunctionProperties::Property::IsSSA);
Matthias Braun1eb47362016-08-25 01:27:13 +0000342
343 const MachineRegisterInfo &MRI = MF.getRegInfo();
344 if (MRI.getNumVirtRegs() == 0)
345 Properties.set(MachineFunctionProperties::Property::NoVRegs);
Matthias Braun90799ce2016-08-23 21:19:49 +0000346}
347
Matthias Braun7bda1952017-06-06 00:44:35 +0000348bool
349MIRParserImpl::initializeMachineFunction(const yaml::MachineFunction &YamlMF,
350 MachineFunction &MF) {
Alex Lorenz735c47e2015-06-15 20:30:22 +0000351 // TODO: Recreate the machine function.
Matthias Braunde5fea22017-01-18 00:59:19 +0000352 initNames2RegClasses(MF);
353 initNames2RegBanks(MF);
Alex Lorenz5b5f9752015-06-16 00:10:47 +0000354 if (YamlMF.Alignment)
355 MF.setAlignment(YamlMF.Alignment);
356 MF.setExposesReturnsTwice(YamlMF.ExposesReturnsTwice);
Ahmed Bougacha0d7b0cb2016-08-02 15:10:25 +0000357
358 if (YamlMF.Legalized)
359 MF.getProperties().set(MachineFunctionProperties::Property::Legalized);
Ahmed Bougacha24712652016-08-02 16:17:10 +0000360 if (YamlMF.RegBankSelected)
361 MF.getProperties().set(
362 MachineFunctionProperties::Property::RegBankSelected);
Ahmed Bougachab109d512016-08-02 16:49:19 +0000363 if (YamlMF.Selected)
364 MF.getProperties().set(MachineFunctionProperties::Property::Selected);
Ahmed Bougacha0d7b0cb2016-08-02 15:10:25 +0000365
Matthias Braunde5fea22017-01-18 00:59:19 +0000366 PerFunctionMIParsingState PFS(MF, SM, IRSlots, Names2RegClasses,
367 Names2RegBanks);
Matthias Braun74ad41c2016-10-11 03:13:01 +0000368 if (parseRegisterInfo(PFS, YamlMF))
Alex Lorenz54565cf2015-06-24 19:56:10 +0000369 return true;
Alex Lorenzab980492015-07-20 20:51:18 +0000370 if (!YamlMF.Constants.empty()) {
371 auto *ConstantPool = MF.getConstantPool();
372 assert(ConstantPool && "Constant pool must be created");
Matthias Braun83947862016-07-13 22:23:23 +0000373 if (initializeConstantPool(PFS, *ConstantPool, YamlMF))
Alex Lorenzab980492015-07-20 20:51:18 +0000374 return true;
375 }
Alex Lorenz54565cf2015-06-24 19:56:10 +0000376
Matthias Braune35861d2016-07-13 23:27:50 +0000377 StringRef BlockStr = YamlMF.Body.Value.Value;
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000378 SMDiagnostic Error;
Matthias Braune35861d2016-07-13 23:27:50 +0000379 SourceMgr BlockSM;
380 BlockSM.AddNewSourceBuffer(
381 MemoryBuffer::getMemBuffer(BlockStr, "",/*RequiresNullTerminator=*/false),
382 SMLoc());
383 PFS.SM = &BlockSM;
384 if (parseMachineBasicBlockDefinitions(PFS, BlockStr, Error)) {
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000385 reportDiagnostic(
386 diagFromBlockStringDiag(Error, YamlMF.Body.Value.SourceRange));
387 return true;
Alex Lorenz33f0aef2015-06-26 16:46:11 +0000388 }
Matthias Braune35861d2016-07-13 23:27:50 +0000389 PFS.SM = &SM;
Alex Lorenz33f0aef2015-06-26 16:46:11 +0000390
Alex Lorenza6f9a372015-07-29 21:09:09 +0000391 // Initialize the frame information after creating all the MBBs so that the
392 // MBB references in the frame information can be resolved.
Matthias Braun83947862016-07-13 22:23:23 +0000393 if (initializeFrameInfo(PFS, YamlMF))
Alex Lorenza6f9a372015-07-29 21:09:09 +0000394 return true;
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000395 // Initialize the jump table after creating all the MBBs so that the MBB
396 // references can be resolved.
397 if (!YamlMF.JumpTableInfo.Entries.empty() &&
Matthias Braun83947862016-07-13 22:23:23 +0000398 initializeJumpTableInfo(PFS, YamlMF.JumpTableInfo))
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000399 return true;
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000400 // Parse the machine instructions after creating all of the MBBs so that the
401 // parser can resolve the MBB references.
Matthias Braune35861d2016-07-13 23:27:50 +0000402 StringRef InsnStr = YamlMF.Body.Value.Value;
403 SourceMgr InsnSM;
404 InsnSM.AddNewSourceBuffer(
405 MemoryBuffer::getMemBuffer(InsnStr, "", /*RequiresNullTerminator=*/false),
406 SMLoc());
407 PFS.SM = &InsnSM;
408 if (parseMachineInstructions(PFS, InsnStr, Error)) {
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000409 reportDiagnostic(
410 diagFromBlockStringDiag(Error, YamlMF.Body.Value.SourceRange));
411 return true;
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000412 }
Matthias Braune35861d2016-07-13 23:27:50 +0000413 PFS.SM = &SM;
414
Matthias Braun74ad41c2016-10-11 03:13:01 +0000415 if (setupRegisterInfo(PFS, YamlMF))
416 return true;
Matthias Braun90799ce2016-08-23 21:19:49 +0000417
418 computeFunctionProperties(MF);
419
Matthias Braun5c290dc2018-01-19 03:16:36 +0000420 MF.getSubtarget().mirFileLoaded(MF);
421
Alex Lorenzc7bf2042015-07-24 17:44:49 +0000422 MF.verify();
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000423 return false;
424}
425
Matthias Braun74ad41c2016-10-11 03:13:01 +0000426bool MIRParserImpl::parseRegisterInfo(PerFunctionMIParsingState &PFS,
427 const yaml::MachineFunction &YamlMF) {
Matthias Braun83947862016-07-13 22:23:23 +0000428 MachineFunction &MF = PFS.MF;
Alex Lorenzdb07c402015-07-28 16:48:37 +0000429 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Alex Lorenz54565cf2015-06-24 19:56:10 +0000430 assert(RegInfo.tracksLiveness());
431 if (!YamlMF.TracksRegLiveness)
432 RegInfo.invalidateLiveness();
Alex Lorenz28148ba2015-07-09 22:23:13 +0000433
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000434 SMDiagnostic Error;
Alex Lorenz28148ba2015-07-09 22:23:13 +0000435 // Parse the virtual register information.
436 for (const auto &VReg : YamlMF.VirtualRegisters) {
Matthias Braun74ad41c2016-10-11 03:13:01 +0000437 VRegInfo &Info = PFS.getVRegInfo(VReg.ID.Value);
438 if (Info.Explicit)
439 return error(VReg.ID.SourceRange.Start,
440 Twine("redefinition of virtual register '%") +
441 Twine(VReg.ID.Value) + "'");
442 Info.Explicit = true;
443
Quentin Colombet050b2112016-03-08 01:17:03 +0000444 if (StringRef(VReg.Class.Value).equals("_")) {
Matthias Braun74ad41c2016-10-11 03:13:01 +0000445 Info.Kind = VRegInfo::GENERIC;
Justin Bogner6c7663f2017-11-17 18:51:20 +0000446 Info.D.RegBank = nullptr;
Quentin Colombet050b2112016-03-08 01:17:03 +0000447 } else {
448 const auto *RC = getRegClass(MF, VReg.Class.Value);
Quentin Colombet876ddf82016-04-08 16:40:43 +0000449 if (RC) {
Matthias Braun74ad41c2016-10-11 03:13:01 +0000450 Info.Kind = VRegInfo::NORMAL;
451 Info.D.RC = RC;
Quentin Colombet876ddf82016-04-08 16:40:43 +0000452 } else {
Matthias Braun74ad41c2016-10-11 03:13:01 +0000453 const RegisterBank *RegBank = getRegBank(MF, VReg.Class.Value);
Quentin Colombet876ddf82016-04-08 16:40:43 +0000454 if (!RegBank)
455 return error(
456 VReg.Class.SourceRange.Start,
457 Twine("use of undefined register class or register bank '") +
458 VReg.Class.Value + "'");
Matthias Braun74ad41c2016-10-11 03:13:01 +0000459 Info.Kind = VRegInfo::REGBANK;
460 Info.D.RegBank = RegBank;
Quentin Colombet876ddf82016-04-08 16:40:43 +0000461 }
Quentin Colombet050b2112016-03-08 01:17:03 +0000462 }
Matthias Braun74ad41c2016-10-11 03:13:01 +0000463
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000464 if (!VReg.PreferredRegister.Value.empty()) {
Matthias Braun74ad41c2016-10-11 03:13:01 +0000465 if (Info.Kind != VRegInfo::NORMAL)
466 return error(VReg.Class.SourceRange.Start,
467 Twine("preferred register can only be set for normal vregs"));
Tom Stellard9c884e42016-11-15 00:03:14 +0000468
469 if (parseRegisterReference(PFS, Info.PreferredReg,
470 VReg.PreferredRegister.Value, Error))
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000471 return error(Error, VReg.PreferredRegister.SourceRange);
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000472 }
Alex Lorenz28148ba2015-07-09 22:23:13 +0000473 }
Alex Lorenz12045a42015-07-27 17:42:45 +0000474
475 // Parse the liveins.
476 for (const auto &LiveIn : YamlMF.LiveIns) {
477 unsigned Reg = 0;
Matthias Braune35861d2016-07-13 23:27:50 +0000478 if (parseNamedRegisterReference(PFS, Reg, LiveIn.Register.Value, Error))
Alex Lorenz12045a42015-07-27 17:42:45 +0000479 return error(Error, LiveIn.Register.SourceRange);
480 unsigned VReg = 0;
481 if (!LiveIn.VirtualRegister.Value.empty()) {
Matthias Braun74ad41c2016-10-11 03:13:01 +0000482 VRegInfo *Info;
483 if (parseVirtualRegisterReference(PFS, Info, LiveIn.VirtualRegister.Value,
Matthias Braune35861d2016-07-13 23:27:50 +0000484 Error))
Alex Lorenz12045a42015-07-27 17:42:45 +0000485 return error(Error, LiveIn.VirtualRegister.SourceRange);
Matthias Braun74ad41c2016-10-11 03:13:01 +0000486 VReg = Info->VReg;
Alex Lorenz12045a42015-07-27 17:42:45 +0000487 }
488 RegInfo.addLiveIn(Reg, VReg);
489 }
Alex Lorenzc4838082015-08-11 00:32:49 +0000490
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000491 // Parse the callee saved registers (Registers that will
492 // be saved for the caller).
493 if (YamlMF.CalleeSavedRegisters) {
494 SmallVector<MCPhysReg, 16> CalleeSavedRegisters;
495 for (const auto &RegSource : YamlMF.CalleeSavedRegisters.getValue()) {
496 unsigned Reg = 0;
497 if (parseNamedRegisterReference(PFS, Reg, RegSource.Value, Error))
498 return error(Error, RegSource.SourceRange);
499 CalleeSavedRegisters.push_back(Reg);
500 }
501 RegInfo.setCalleeSavedRegs(CalleeSavedRegisters);
Alex Lorenzc4838082015-08-11 00:32:49 +0000502 }
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000503
Alex Lorenz54565cf2015-06-24 19:56:10 +0000504 return false;
505}
506
Matthias Braun74ad41c2016-10-11 03:13:01 +0000507bool MIRParserImpl::setupRegisterInfo(const PerFunctionMIParsingState &PFS,
Alex Lorenzc4838082015-08-11 00:32:49 +0000508 const yaml::MachineFunction &YamlMF) {
Matthias Braun74ad41c2016-10-11 03:13:01 +0000509 MachineFunction &MF = PFS.MF;
510 MachineRegisterInfo &MRI = MF.getRegInfo();
511 bool Error = false;
512 // Create VRegs
513 for (auto P : PFS.VRegInfos) {
514 const VRegInfo &Info = *P.second;
515 unsigned Reg = Info.VReg;
516 switch (Info.Kind) {
517 case VRegInfo::UNKNOWN:
518 error(Twine("Cannot determine class/bank of virtual register ") +
519 Twine(P.first) + " in function '" + MF.getName() + "'");
520 Error = true;
521 break;
522 case VRegInfo::NORMAL:
523 MRI.setRegClass(Reg, Info.D.RC);
524 if (Info.PreferredReg != 0)
525 MRI.setSimpleHint(Reg, Info.PreferredReg);
526 break;
527 case VRegInfo::GENERIC:
528 break;
529 case VRegInfo::REGBANK:
530 MRI.setRegBank(Reg, *Info.D.RegBank);
531 break;
532 }
533 }
534
535 // Compute MachineRegisterInfo::UsedPhysRegMask
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000536 for (const MachineBasicBlock &MBB : MF) {
537 for (const MachineInstr &MI : MBB) {
538 for (const MachineOperand &MO : MI.operands()) {
539 if (!MO.isRegMask())
540 continue;
541 MRI.addPhysRegsUsedFromRegMask(MO.getRegMask());
Alex Lorenzc4838082015-08-11 00:32:49 +0000542 }
543 }
544 }
Matthias Braun74ad41c2016-10-11 03:13:01 +0000545
546 // FIXME: This is a temporary workaround until the reserved registers can be
547 // serialized.
548 MRI.freezeReservedRegs(MF);
549 return Error;
Alex Lorenzc4838082015-08-11 00:32:49 +0000550}
551
Matthias Braun83947862016-07-13 22:23:23 +0000552bool MIRParserImpl::initializeFrameInfo(PerFunctionMIParsingState &PFS,
553 const yaml::MachineFunction &YamlMF) {
554 MachineFunction &MF = PFS.MF;
Matthias Braun941a7052016-07-28 18:40:00 +0000555 MachineFrameInfo &MFI = MF.getFrameInfo();
Matthias Braunf1caa282017-12-15 22:22:58 +0000556 const Function &F = MF.getFunction();
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000557 const yaml::MachineFrameInfo &YamlMFI = YamlMF.FrameInfo;
Alex Lorenz60541c12015-07-09 19:55:27 +0000558 MFI.setFrameAddressIsTaken(YamlMFI.IsFrameAddressTaken);
559 MFI.setReturnAddressIsTaken(YamlMFI.IsReturnAddressTaken);
560 MFI.setHasStackMap(YamlMFI.HasStackMap);
561 MFI.setHasPatchPoint(YamlMFI.HasPatchPoint);
562 MFI.setStackSize(YamlMFI.StackSize);
563 MFI.setOffsetAdjustment(YamlMFI.OffsetAdjustment);
564 if (YamlMFI.MaxAlignment)
565 MFI.ensureMaxAlignment(YamlMFI.MaxAlignment);
566 MFI.setAdjustsStack(YamlMFI.AdjustsStack);
567 MFI.setHasCalls(YamlMFI.HasCalls);
Matthias Braunab9438c2017-05-01 22:32:25 +0000568 if (YamlMFI.MaxCallFrameSize != ~0u)
569 MFI.setMaxCallFrameSize(YamlMFI.MaxCallFrameSize);
Alex Lorenz60541c12015-07-09 19:55:27 +0000570 MFI.setHasOpaqueSPAdjustment(YamlMFI.HasOpaqueSPAdjustment);
571 MFI.setHasVAStart(YamlMFI.HasVAStart);
572 MFI.setHasMustTailInVarArgFunc(YamlMFI.HasMustTailInVarArgFunc);
Alex Lorenza6f9a372015-07-29 21:09:09 +0000573 if (!YamlMFI.SavePoint.Value.empty()) {
574 MachineBasicBlock *MBB = nullptr;
Matthias Braun83947862016-07-13 22:23:23 +0000575 if (parseMBBReference(PFS, MBB, YamlMFI.SavePoint))
Alex Lorenza6f9a372015-07-29 21:09:09 +0000576 return true;
577 MFI.setSavePoint(MBB);
578 }
579 if (!YamlMFI.RestorePoint.Value.empty()) {
580 MachineBasicBlock *MBB = nullptr;
Matthias Braun83947862016-07-13 22:23:23 +0000581 if (parseMBBReference(PFS, MBB, YamlMFI.RestorePoint))
Alex Lorenza6f9a372015-07-29 21:09:09 +0000582 return true;
583 MFI.setRestorePoint(MBB);
584 }
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000585
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000586 std::vector<CalleeSavedInfo> CSIInfo;
Alex Lorenzde491f02015-07-13 18:07:26 +0000587 // Initialize the fixed frame objects.
588 for (const auto &Object : YamlMF.FixedStackObjects) {
589 int ObjectIdx;
590 if (Object.Type != yaml::FixedMachineStackObject::SpillSlot)
591 ObjectIdx = MFI.CreateFixedObject(Object.Size, Object.Offset,
592 Object.IsImmutable, Object.IsAliased);
593 else
594 ObjectIdx = MFI.CreateFixedSpillStackObject(Object.Size, Object.Offset);
595 MFI.setObjectAlignment(ObjectIdx, Object.Alignment);
Matt Arsenaultdb782732017-07-20 21:03:45 +0000596 MFI.setStackID(ObjectIdx, Object.StackID);
Alex Lorenz1d9a3032015-08-10 23:45:02 +0000597 if (!PFS.FixedStackObjectSlots.insert(std::make_pair(Object.ID.Value,
598 ObjectIdx))
599 .second)
600 return error(Object.ID.SourceRange.Start,
601 Twine("redefinition of fixed stack object '%fixed-stack.") +
602 Twine(Object.ID.Value) + "'");
Matthias Braun83947862016-07-13 22:23:23 +0000603 if (parseCalleeSavedRegister(PFS, CSIInfo, Object.CalleeSavedRegister,
Matthias Braun5c3e8a42017-09-28 18:52:14 +0000604 Object.CalleeSavedRestored, ObjectIdx))
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000605 return true;
Alex Lorenzde491f02015-07-13 18:07:26 +0000606 }
607
608 // Initialize the ordinary frame objects.
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000609 for (const auto &Object : YamlMF.StackObjects) {
Alex Lorenz418f3ec2015-07-14 00:26:26 +0000610 int ObjectIdx;
Alex Lorenz37643a02015-07-15 22:14:49 +0000611 const AllocaInst *Alloca = nullptr;
612 const yaml::StringValue &Name = Object.Name;
613 if (!Name.Value.empty()) {
614 Alloca = dyn_cast_or_null<AllocaInst>(
Mehdi Aminia53d49e2016-09-17 06:00:02 +0000615 F.getValueSymbolTable()->lookup(Name.Value));
Alex Lorenz37643a02015-07-15 22:14:49 +0000616 if (!Alloca)
617 return error(Name.SourceRange.Start,
618 "alloca instruction named '" + Name.Value +
619 "' isn't defined in the function '" + F.getName() +
620 "'");
621 }
Alex Lorenz418f3ec2015-07-14 00:26:26 +0000622 if (Object.Type == yaml::MachineStackObject::VariableSized)
Alex Lorenz37643a02015-07-15 22:14:49 +0000623 ObjectIdx = MFI.CreateVariableSizedObject(Object.Alignment, Alloca);
Alex Lorenz418f3ec2015-07-14 00:26:26 +0000624 else
625 ObjectIdx = MFI.CreateStackObject(
626 Object.Size, Object.Alignment,
Alex Lorenz37643a02015-07-15 22:14:49 +0000627 Object.Type == yaml::MachineStackObject::SpillSlot, Alloca);
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000628 MFI.setObjectOffset(ObjectIdx, Object.Offset);
Matt Arsenaultdb782732017-07-20 21:03:45 +0000629 MFI.setStackID(ObjectIdx, Object.StackID);
630
Alex Lorenzc5d35ba2015-08-10 23:50:41 +0000631 if (!PFS.StackObjectSlots.insert(std::make_pair(Object.ID.Value, ObjectIdx))
632 .second)
633 return error(Object.ID.SourceRange.Start,
634 Twine("redefinition of stack object '%stack.") +
635 Twine(Object.ID.Value) + "'");
Matthias Braun83947862016-07-13 22:23:23 +0000636 if (parseCalleeSavedRegister(PFS, CSIInfo, Object.CalleeSavedRegister,
Matthias Braun5c3e8a42017-09-28 18:52:14 +0000637 Object.CalleeSavedRestored, ObjectIdx))
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000638 return true;
Alex Lorenza56ba6a2015-08-17 22:17:42 +0000639 if (Object.LocalOffset)
640 MFI.mapLocalFrameObject(ObjectIdx, Object.LocalOffset.getValue());
Matthias Braun83947862016-07-13 22:23:23 +0000641 if (parseStackObjectsDebugInfo(PFS, Object, ObjectIdx))
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000642 return true;
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000643 }
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000644 MFI.setCalleeSavedInfo(CSIInfo);
645 if (!CSIInfo.empty())
646 MFI.setCalleeSavedInfoValid(true);
Alex Lorenza314d812015-08-18 22:26:26 +0000647
648 // Initialize the various stack object references after initializing the
649 // stack objects.
650 if (!YamlMFI.StackProtector.Value.empty()) {
651 SMDiagnostic Error;
652 int FI;
Matthias Braune35861d2016-07-13 23:27:50 +0000653 if (parseStackObjectReference(PFS, FI, YamlMFI.StackProtector.Value, Error))
Alex Lorenza314d812015-08-18 22:26:26 +0000654 return error(Error, YamlMFI.StackProtector.SourceRange);
655 MFI.setStackProtectorIndex(FI);
656 }
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000657 return false;
658}
659
Matthias Braun83947862016-07-13 22:23:23 +0000660bool MIRParserImpl::parseCalleeSavedRegister(PerFunctionMIParsingState &PFS,
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000661 std::vector<CalleeSavedInfo> &CSIInfo,
Matthias Braun5c3e8a42017-09-28 18:52:14 +0000662 const yaml::StringValue &RegisterSource, bool IsRestored, int FrameIdx) {
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000663 if (RegisterSource.Value.empty())
664 return false;
665 unsigned Reg = 0;
666 SMDiagnostic Error;
Matthias Braune35861d2016-07-13 23:27:50 +0000667 if (parseNamedRegisterReference(PFS, Reg, RegisterSource.Value, Error))
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000668 return error(Error, RegisterSource.SourceRange);
Matthias Braun5c3e8a42017-09-28 18:52:14 +0000669 CalleeSavedInfo CSI(Reg, FrameIdx);
670 CSI.setRestored(IsRestored);
671 CSIInfo.push_back(CSI);
Alex Lorenz60541c12015-07-09 19:55:27 +0000672 return false;
673}
674
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000675/// Verify that given node is of a certain type. Return true on error.
676template <typename T>
677static bool typecheckMDNode(T *&Result, MDNode *Node,
678 const yaml::StringValue &Source,
679 StringRef TypeString, MIRParserImpl &Parser) {
680 if (!Node)
681 return false;
682 Result = dyn_cast<T>(Node);
683 if (!Result)
684 return Parser.error(Source.SourceRange.Start,
685 "expected a reference to a '" + TypeString +
686 "' metadata node");
687 return false;
688}
689
Matthias Braun83947862016-07-13 22:23:23 +0000690bool MIRParserImpl::parseStackObjectsDebugInfo(PerFunctionMIParsingState &PFS,
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000691 const yaml::MachineStackObject &Object, int FrameIdx) {
692 // Debug information can only be attached to stack objects; Fixed stack
693 // objects aren't supported.
694 assert(FrameIdx >= 0 && "Expected a stack object frame index");
695 MDNode *Var = nullptr, *Expr = nullptr, *Loc = nullptr;
Matthias Braun83947862016-07-13 22:23:23 +0000696 if (parseMDNode(PFS, Var, Object.DebugVar) ||
697 parseMDNode(PFS, Expr, Object.DebugExpr) ||
698 parseMDNode(PFS, Loc, Object.DebugLoc))
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000699 return true;
700 if (!Var && !Expr && !Loc)
701 return false;
702 DILocalVariable *DIVar = nullptr;
703 DIExpression *DIExpr = nullptr;
704 DILocation *DILoc = nullptr;
705 if (typecheckMDNode(DIVar, Var, Object.DebugVar, "DILocalVariable", *this) ||
706 typecheckMDNode(DIExpr, Expr, Object.DebugExpr, "DIExpression", *this) ||
707 typecheckMDNode(DILoc, Loc, Object.DebugLoc, "DILocation", *this))
708 return true;
Matthias Braunef331ef2016-11-30 23:48:50 +0000709 PFS.MF.setVariableDbgInfo(DIVar, DIExpr, unsigned(FrameIdx), DILoc);
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000710 return false;
711}
712
Matthias Braun74ad41c2016-10-11 03:13:01 +0000713bool MIRParserImpl::parseMDNode(PerFunctionMIParsingState &PFS,
Matthias Braun83947862016-07-13 22:23:23 +0000714 MDNode *&Node, const yaml::StringValue &Source) {
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000715 if (Source.Value.empty())
716 return false;
717 SMDiagnostic Error;
Matthias Braune35861d2016-07-13 23:27:50 +0000718 if (llvm::parseMDNode(PFS, Node, Source.Value, Error))
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000719 return error(Error, Source.SourceRange);
720 return false;
721}
722
Matthias Braun83947862016-07-13 22:23:23 +0000723bool MIRParserImpl::initializeConstantPool(PerFunctionMIParsingState &PFS,
724 MachineConstantPool &ConstantPool, const yaml::MachineFunction &YamlMF) {
725 DenseMap<unsigned, unsigned> &ConstantPoolSlots = PFS.ConstantPoolSlots;
726 const MachineFunction &MF = PFS.MF;
Matthias Braunf1caa282017-12-15 22:22:58 +0000727 const auto &M = *MF.getFunction().getParent();
Alex Lorenzab980492015-07-20 20:51:18 +0000728 SMDiagnostic Error;
729 for (const auto &YamlConstant : YamlMF.Constants) {
Diana Picusd5a00b02017-08-02 11:09:30 +0000730 if (YamlConstant.IsTargetSpecific)
731 // FIXME: Support target-specific constant pools
732 return error(YamlConstant.Value.SourceRange.Start,
733 "Can't parse target-specific constant pool entries yet");
Alex Lorenzab980492015-07-20 20:51:18 +0000734 const Constant *Value = dyn_cast_or_null<Constant>(
735 parseConstantValue(YamlConstant.Value.Value, Error, M));
736 if (!Value)
737 return error(Error, YamlConstant.Value.SourceRange);
738 unsigned Alignment =
739 YamlConstant.Alignment
740 ? YamlConstant.Alignment
741 : M.getDataLayout().getPrefTypeAlignment(Value->getType());
Alex Lorenz60bf5992015-07-30 22:00:17 +0000742 unsigned Index = ConstantPool.getConstantPoolIndex(Value, Alignment);
743 if (!ConstantPoolSlots.insert(std::make_pair(YamlConstant.ID.Value, Index))
744 .second)
745 return error(YamlConstant.ID.SourceRange.Start,
746 Twine("redefinition of constant pool item '%const.") +
747 Twine(YamlConstant.ID.Value) + "'");
Alex Lorenzab980492015-07-20 20:51:18 +0000748 }
749 return false;
750}
751
Matthias Braun83947862016-07-13 22:23:23 +0000752bool MIRParserImpl::initializeJumpTableInfo(PerFunctionMIParsingState &PFS,
753 const yaml::MachineJumpTable &YamlJTI) {
754 MachineJumpTableInfo *JTI = PFS.MF.getOrCreateJumpTableInfo(YamlJTI.Kind);
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000755 for (const auto &Entry : YamlJTI.Entries) {
756 std::vector<MachineBasicBlock *> Blocks;
757 for (const auto &MBBSource : Entry.Blocks) {
758 MachineBasicBlock *MBB = nullptr;
Matthias Braun83947862016-07-13 22:23:23 +0000759 if (parseMBBReference(PFS, MBB, MBBSource.Value))
Alex Lorenz05fa73b2015-07-29 20:57:11 +0000760 return true;
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000761 Blocks.push_back(MBB);
762 }
Alex Lorenz31d70682015-07-15 23:38:35 +0000763 unsigned Index = JTI->createJumpTableIndex(Blocks);
Alex Lorenz59ed5912015-07-31 23:13:23 +0000764 if (!PFS.JumpTableSlots.insert(std::make_pair(Entry.ID.Value, Index))
765 .second)
766 return error(Entry.ID.SourceRange.Start,
767 Twine("redefinition of jump table entry '%jump-table.") +
768 Twine(Entry.ID.Value) + "'");
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000769 }
770 return false;
771}
772
Matthias Braun74ad41c2016-10-11 03:13:01 +0000773bool MIRParserImpl::parseMBBReference(PerFunctionMIParsingState &PFS,
Matthias Braun83947862016-07-13 22:23:23 +0000774 MachineBasicBlock *&MBB,
775 const yaml::StringValue &Source) {
Alex Lorenz05fa73b2015-07-29 20:57:11 +0000776 SMDiagnostic Error;
Matthias Braune35861d2016-07-13 23:27:50 +0000777 if (llvm::parseMBBReference(PFS, MBB, Source.Value, Error))
Alex Lorenz05fa73b2015-07-29 20:57:11 +0000778 return error(Error, Source.SourceRange);
779 return false;
780}
781
Alex Lorenz51af1602015-06-23 22:39:23 +0000782SMDiagnostic MIRParserImpl::diagFromMIStringDiag(const SMDiagnostic &Error,
783 SMRange SourceRange) {
784 assert(SourceRange.isValid() && "Invalid source range");
785 SMLoc Loc = SourceRange.Start;
786 bool HasQuote = Loc.getPointer() < SourceRange.End.getPointer() &&
787 *Loc.getPointer() == '\'';
788 // Translate the location of the error from the location in the MI string to
789 // the corresponding location in the MIR file.
790 Loc = Loc.getFromPointer(Loc.getPointer() + Error.getColumnNo() +
791 (HasQuote ? 1 : 0));
792
793 // TODO: Translate any source ranges as well.
794 return SM.GetMessage(Loc, Error.getKind(), Error.getMessage(), None,
795 Error.getFixIts());
796}
797
Alex Lorenz9b62cf62015-08-13 20:30:11 +0000798SMDiagnostic MIRParserImpl::diagFromBlockStringDiag(const SMDiagnostic &Error,
799 SMRange SourceRange) {
Alex Lorenz09b832c2015-05-29 17:05:41 +0000800 assert(SourceRange.isValid());
801
802 // Translate the location of the error from the location in the llvm IR string
803 // to the corresponding location in the MIR file.
804 auto LineAndColumn = SM.getLineAndColumn(SourceRange.Start);
805 unsigned Line = LineAndColumn.first + Error.getLineNo() - 1;
806 unsigned Column = Error.getColumnNo();
807 StringRef LineStr = Error.getLineContents();
808 SMLoc Loc = Error.getLoc();
809
810 // Get the full line and adjust the column number by taking the indentation of
811 // LLVM IR into account.
812 for (line_iterator L(*SM.getMemoryBuffer(SM.getMainFileID()), false), E;
813 L != E; ++L) {
814 if (L.line_number() == Line) {
815 LineStr = *L;
816 Loc = SMLoc::getFromPointer(LineStr.data());
817 auto Indent = LineStr.find(Error.getLineContents());
818 if (Indent != StringRef::npos)
819 Column += Indent;
820 break;
821 }
822 }
823
824 return SMDiagnostic(SM, Loc, Filename, Line, Column, Error.getKind(),
825 Error.getMessage(), LineStr, Error.getRanges(),
826 Error.getFixIts());
827}
828
Alex Lorenz28148ba2015-07-09 22:23:13 +0000829void MIRParserImpl::initNames2RegClasses(const MachineFunction &MF) {
830 if (!Names2RegClasses.empty())
831 return;
832 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
833 for (unsigned I = 0, E = TRI->getNumRegClasses(); I < E; ++I) {
834 const auto *RC = TRI->getRegClass(I);
835 Names2RegClasses.insert(
836 std::make_pair(StringRef(TRI->getRegClassName(RC)).lower(), RC));
837 }
838}
839
Quentin Colombet876ddf82016-04-08 16:40:43 +0000840void MIRParserImpl::initNames2RegBanks(const MachineFunction &MF) {
841 if (!Names2RegBanks.empty())
842 return;
843 const RegisterBankInfo *RBI = MF.getSubtarget().getRegBankInfo();
844 // If the target does not support GlobalISel, we may not have a
845 // register bank info.
846 if (!RBI)
847 return;
848 for (unsigned I = 0, E = RBI->getNumRegBanks(); I < E; ++I) {
849 const auto &RegBank = RBI->getRegBank(I);
850 Names2RegBanks.insert(
851 std::make_pair(StringRef(RegBank.getName()).lower(), &RegBank));
852 }
853}
854
Alex Lorenz28148ba2015-07-09 22:23:13 +0000855const TargetRegisterClass *MIRParserImpl::getRegClass(const MachineFunction &MF,
856 StringRef Name) {
Alex Lorenz28148ba2015-07-09 22:23:13 +0000857 auto RegClassInfo = Names2RegClasses.find(Name);
858 if (RegClassInfo == Names2RegClasses.end())
859 return nullptr;
860 return RegClassInfo->getValue();
861}
862
Quentin Colombet876ddf82016-04-08 16:40:43 +0000863const RegisterBank *MIRParserImpl::getRegBank(const MachineFunction &MF,
864 StringRef Name) {
Quentin Colombet876ddf82016-04-08 16:40:43 +0000865 auto RegBankInfo = Names2RegBanks.find(Name);
866 if (RegBankInfo == Names2RegBanks.end())
867 return nullptr;
868 return RegBankInfo->getValue();
869}
870
Alex Lorenz735c47e2015-06-15 20:30:22 +0000871MIRParser::MIRParser(std::unique_ptr<MIRParserImpl> Impl)
872 : Impl(std::move(Impl)) {}
873
874MIRParser::~MIRParser() {}
875
Matthias Braun7bda1952017-06-06 00:44:35 +0000876std::unique_ptr<Module> MIRParser::parseIRModule() {
877 return Impl->parseIRModule();
878}
Alex Lorenz735c47e2015-06-15 20:30:22 +0000879
Matthias Braun7bda1952017-06-06 00:44:35 +0000880bool MIRParser::parseMachineFunctions(Module &M, MachineModuleInfo &MMI) {
881 return Impl->parseMachineFunctions(M, MMI);
Alex Lorenz735c47e2015-06-15 20:30:22 +0000882}
883
884std::unique_ptr<MIRParser> llvm::createMIRParserFromFile(StringRef Filename,
885 SMDiagnostic &Error,
886 LLVMContext &Context) {
Matthias Braun7e23fc02017-06-06 20:06:57 +0000887 auto FileOrErr = MemoryBuffer::getFileOrSTDIN(Filename);
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000888 if (std::error_code EC = FileOrErr.getError()) {
889 Error = SMDiagnostic(Filename, SourceMgr::DK_Error,
890 "Could not open input file: " + EC.message());
Alex Lorenz735c47e2015-06-15 20:30:22 +0000891 return nullptr;
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000892 }
Alex Lorenz735c47e2015-06-15 20:30:22 +0000893 return createMIRParser(std::move(FileOrErr.get()), Context);
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000894}
895
Alex Lorenz735c47e2015-06-15 20:30:22 +0000896std::unique_ptr<MIRParser>
897llvm::createMIRParser(std::unique_ptr<MemoryBuffer> Contents,
898 LLVMContext &Context) {
Mehdi Amini05188a62016-09-17 05:41:02 +0000899 auto Filename = Contents->getBufferIdentifier();
Mehdi Amini8d904e92016-09-17 05:33:58 +0000900 if (Context.shouldDiscardValueNames()) {
901 Context.diagnose(DiagnosticInfoMIRParser(
902 DS_Error,
903 SMDiagnostic(
904 Filename, SourceMgr::DK_Error,
905 "Can't read MIR with a Context that discards named Values")));
906 return nullptr;
907 }
Alex Lorenz735c47e2015-06-15 20:30:22 +0000908 return llvm::make_unique<MIRParser>(
909 llvm::make_unique<MIRParserImpl>(std::move(Contents), Filename, Context));
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000910}