[PowerPC] Remove self-copies in pre-emit peephole
[llvm-core.git] / lib / CodeGen / MIRParser / MIRParser.cpp
blob0102f1240a887cbc90f0b1170a97713386b0c5f1
1 //===- 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.
13 //===----------------------------------------------------------------------===//
15 #include "llvm/CodeGen/MIRParser/MIRParser.h"
16 #include "MIParser.h"
17 #include "llvm/ADT/DenseMap.h"
18 #include "llvm/ADT/STLExtras.h"
19 #include "llvm/ADT/StringMap.h"
20 #include "llvm/ADT/StringRef.h"
21 #include "llvm/AsmParser/Parser.h"
22 #include "llvm/AsmParser/SlotMapping.h"
23 #include "llvm/CodeGen/GlobalISel/RegisterBank.h"
24 #include "llvm/CodeGen/GlobalISel/RegisterBankInfo.h"
25 #include "llvm/CodeGen/MIRYamlMapping.h"
26 #include "llvm/CodeGen/MachineConstantPool.h"
27 #include "llvm/CodeGen/MachineFrameInfo.h"
28 #include "llvm/CodeGen/MachineFunction.h"
29 #include "llvm/CodeGen/MachineModuleInfo.h"
30 #include "llvm/CodeGen/MachineRegisterInfo.h"
31 #include "llvm/IR/BasicBlock.h"
32 #include "llvm/IR/DebugInfo.h"
33 #include "llvm/IR/DiagnosticInfo.h"
34 #include "llvm/IR/Instructions.h"
35 #include "llvm/IR/LLVMContext.h"
36 #include "llvm/IR/Module.h"
37 #include "llvm/IR/ValueSymbolTable.h"
38 #include "llvm/Support/LineIterator.h"
39 #include "llvm/Support/MemoryBuffer.h"
40 #include "llvm/Support/SMLoc.h"
41 #include "llvm/Support/SourceMgr.h"
42 #include "llvm/Support/YAMLTraits.h"
43 #include <memory>
45 using namespace llvm;
47 namespace llvm {
49 /// This class implements the parsing of LLVM IR that's embedded inside a MIR
50 /// file.
51 class MIRParserImpl {
52 SourceMgr SM;
53 yaml::Input In;
54 StringRef Filename;
55 LLVMContext &Context;
56 SlotMapping IRSlots;
57 /// Maps from register class names to register classes.
58 Name2RegClassMap Names2RegClasses;
59 /// Maps from register bank names to register banks.
60 Name2RegBankMap Names2RegBanks;
61 /// 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;
68 public:
69 MIRParserImpl(std::unique_ptr<MemoryBuffer> Contents,
70 StringRef Filename, LLVMContext &Context);
72 void reportDiagnostic(const SMDiagnostic &Diag);
74 /// Report an error with the given message at unknown location.
75 ///
76 /// Always returns true.
77 bool error(const Twine &Message);
79 /// Report an error with the given message at the given location.
80 ///
81 /// Always returns true.
82 bool error(SMLoc Loc, const Twine &Message);
84 /// 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);
90 /// Try to parse the optional LLVM module and the machine functions in the MIR
91 /// file.
92 ///
93 /// Return null if an error occurred.
94 std::unique_ptr<Module> parseIRModule();
96 bool parseMachineFunctions(Module &M, MachineModuleInfo &MMI);
98 /// Parse the machine function in the current YAML document.
99 ///
101 /// Return true if an error occurred.
102 bool parseMachineFunction(Module &M, MachineModuleInfo &MMI);
104 /// Initialize the machine function to the state that's described in the MIR
105 /// file.
107 /// Return true if error occurred.
108 bool initializeMachineFunction(const yaml::MachineFunction &YamlMF,
109 MachineFunction &MF);
111 bool parseRegisterInfo(PerFunctionMIParsingState &PFS,
112 const yaml::MachineFunction &YamlMF);
114 bool setupRegisterInfo(const PerFunctionMIParsingState &PFS,
115 const yaml::MachineFunction &YamlMF);
117 bool initializeFrameInfo(PerFunctionMIParsingState &PFS,
118 const yaml::MachineFunction &YamlMF);
120 bool parseCalleeSavedRegister(PerFunctionMIParsingState &PFS,
121 std::vector<CalleeSavedInfo> &CSIInfo,
122 const yaml::StringValue &RegisterSource,
123 bool IsRestored, int FrameIdx);
125 template <typename T>
126 bool parseStackObjectsDebugInfo(PerFunctionMIParsingState &PFS,
127 const T &Object,
128 int FrameIdx);
130 bool initializeConstantPool(PerFunctionMIParsingState &PFS,
131 MachineConstantPool &ConstantPool,
132 const yaml::MachineFunction &YamlMF);
134 bool initializeJumpTableInfo(PerFunctionMIParsingState &PFS,
135 const yaml::MachineJumpTable &YamlJTI);
137 private:
138 bool parseMDNode(PerFunctionMIParsingState &PFS, MDNode *&Node,
139 const yaml::StringValue &Source);
141 bool parseMBBReference(PerFunctionMIParsingState &PFS,
142 MachineBasicBlock *&MBB,
143 const yaml::StringValue &Source);
145 /// Return a MIR diagnostic converted from an MI string diagnostic.
146 SMDiagnostic diagFromMIStringDiag(const SMDiagnostic &Error,
147 SMRange SourceRange);
149 /// Return a MIR diagnostic converted from a diagnostic located in a YAML
150 /// block scalar string.
151 SMDiagnostic diagFromBlockStringDiag(const SMDiagnostic &Error,
152 SMRange SourceRange);
154 void initNames2RegClasses(const MachineFunction &MF);
155 void initNames2RegBanks(const MachineFunction &MF);
157 /// Check if the given identifier is a name of a register class.
159 /// Return null if the name isn't a register class.
160 const TargetRegisterClass *getRegClass(const MachineFunction &MF,
161 StringRef Name);
163 /// Check if the given identifier is a name of a register bank.
165 /// Return null if the name isn't a register bank.
166 const RegisterBank *getRegBank(const MachineFunction &MF, StringRef Name);
168 void computeFunctionProperties(MachineFunction &MF);
171 } // end namespace llvm
173 static void handleYAMLDiag(const SMDiagnostic &Diag, void *Context) {
174 reinterpret_cast<MIRParserImpl *>(Context)->reportDiagnostic(Diag);
177 MIRParserImpl::MIRParserImpl(std::unique_ptr<MemoryBuffer> Contents,
178 StringRef Filename, LLVMContext &Context)
179 : SM(),
180 In(SM.getMemoryBuffer(
181 SM.AddNewSourceBuffer(std::move(Contents), SMLoc()))->getBuffer(),
182 nullptr, handleYAMLDiag, this),
183 Filename(Filename),
184 Context(Context) {
185 In.setContext(&In);
188 bool MIRParserImpl::error(const Twine &Message) {
189 Context.diagnose(DiagnosticInfoMIRParser(
190 DS_Error, SMDiagnostic(Filename, SourceMgr::DK_Error, Message.str())));
191 return true;
194 bool MIRParserImpl::error(SMLoc Loc, const Twine &Message) {
195 Context.diagnose(DiagnosticInfoMIRParser(
196 DS_Error, SM.GetMessage(Loc, SourceMgr::DK_Error, Message)));
197 return true;
200 bool MIRParserImpl::error(const SMDiagnostic &Error, SMRange SourceRange) {
201 assert(Error.getKind() == SourceMgr::DK_Error && "Expected an error");
202 reportDiagnostic(diagFromMIStringDiag(Error, SourceRange));
203 return true;
206 void MIRParserImpl::reportDiagnostic(const SMDiagnostic &Diag) {
207 DiagnosticSeverity Kind;
208 switch (Diag.getKind()) {
209 case SourceMgr::DK_Error:
210 Kind = DS_Error;
211 break;
212 case SourceMgr::DK_Warning:
213 Kind = DS_Warning;
214 break;
215 case SourceMgr::DK_Note:
216 Kind = DS_Note;
217 break;
218 case SourceMgr::DK_Remark:
219 llvm_unreachable("remark unexpected");
220 break;
222 Context.diagnose(DiagnosticInfoMIRParser(Kind, Diag));
225 std::unique_ptr<Module> MIRParserImpl::parseIRModule() {
226 if (!In.setCurrentDocument()) {
227 if (In.error())
228 return nullptr;
229 // Create an empty module when the MIR file is empty.
230 NoMIRDocuments = true;
231 return llvm::make_unique<Module>(Filename, Context);
234 std::unique_ptr<Module> M;
235 // Parse the block scalar manually so that we can return unique pointer
236 // without having to go trough YAML traits.
237 if (const auto *BSN =
238 dyn_cast_or_null<yaml::BlockScalarNode>(In.getCurrentNode())) {
239 SMDiagnostic Error;
240 M = parseAssembly(MemoryBufferRef(BSN->getValue(), Filename), Error,
241 Context, &IRSlots, /*UpgradeDebugInfo=*/false);
242 if (!M) {
243 reportDiagnostic(diagFromBlockStringDiag(Error, BSN->getSourceRange()));
244 return nullptr;
246 In.nextDocument();
247 if (!In.setCurrentDocument())
248 NoMIRDocuments = true;
249 } else {
250 // Create an new, empty module.
251 M = llvm::make_unique<Module>(Filename, Context);
252 NoLLVMIR = true;
254 return M;
257 bool MIRParserImpl::parseMachineFunctions(Module &M, MachineModuleInfo &MMI) {
258 if (NoMIRDocuments)
259 return false;
261 // Parse the machine functions.
262 do {
263 if (parseMachineFunction(M, MMI))
264 return true;
265 In.nextDocument();
266 } while (In.setCurrentDocument());
268 return false;
271 /// Create an empty function with the given name.
272 static Function *createDummyFunction(StringRef Name, Module &M) {
273 auto &Context = M.getContext();
274 Function *F = cast<Function>(M.getOrInsertFunction(
275 Name, FunctionType::get(Type::getVoidTy(Context), false)));
276 BasicBlock *BB = BasicBlock::Create(Context, "entry", F);
277 new UnreachableInst(Context, BB);
278 return F;
281 bool MIRParserImpl::parseMachineFunction(Module &M, MachineModuleInfo &MMI) {
282 // Parse the yaml.
283 yaml::MachineFunction YamlMF;
284 yaml::EmptyContext Ctx;
285 yaml::yamlize(In, YamlMF, false, Ctx);
286 if (In.error())
287 return true;
289 // Search for the corresponding IR function.
290 StringRef FunctionName = YamlMF.Name;
291 Function *F = M.getFunction(FunctionName);
292 if (!F) {
293 if (NoLLVMIR) {
294 F = createDummyFunction(FunctionName, M);
295 } else {
296 return error(Twine("function '") + FunctionName +
297 "' isn't defined in the provided LLVM IR");
300 if (MMI.getMachineFunction(*F) != nullptr)
301 return error(Twine("redefinition of machine function '") + FunctionName +
302 "'");
304 // Create the MachineFunction.
305 MachineFunction &MF = MMI.getOrCreateMachineFunction(*F);
306 if (initializeMachineFunction(YamlMF, MF))
307 return true;
309 return false;
312 static bool isSSA(const MachineFunction &MF) {
313 const MachineRegisterInfo &MRI = MF.getRegInfo();
314 for (unsigned I = 0, E = MRI.getNumVirtRegs(); I != E; ++I) {
315 unsigned Reg = TargetRegisterInfo::index2VirtReg(I);
316 if (!MRI.hasOneDef(Reg) && !MRI.def_empty(Reg))
317 return false;
319 return true;
322 void MIRParserImpl::computeFunctionProperties(MachineFunction &MF) {
323 MachineFunctionProperties &Properties = MF.getProperties();
325 bool HasPHI = false;
326 bool HasInlineAsm = false;
327 for (const MachineBasicBlock &MBB : MF) {
328 for (const MachineInstr &MI : MBB) {
329 if (MI.isPHI())
330 HasPHI = true;
331 if (MI.isInlineAsm())
332 HasInlineAsm = true;
335 if (!HasPHI)
336 Properties.set(MachineFunctionProperties::Property::NoPHIs);
337 MF.setHasInlineAsm(HasInlineAsm);
339 if (isSSA(MF))
340 Properties.set(MachineFunctionProperties::Property::IsSSA);
341 else
342 Properties.reset(MachineFunctionProperties::Property::IsSSA);
344 const MachineRegisterInfo &MRI = MF.getRegInfo();
345 if (MRI.getNumVirtRegs() == 0)
346 Properties.set(MachineFunctionProperties::Property::NoVRegs);
349 bool
350 MIRParserImpl::initializeMachineFunction(const yaml::MachineFunction &YamlMF,
351 MachineFunction &MF) {
352 // TODO: Recreate the machine function.
353 initNames2RegClasses(MF);
354 initNames2RegBanks(MF);
355 if (YamlMF.Alignment)
356 MF.setAlignment(YamlMF.Alignment);
357 MF.setExposesReturnsTwice(YamlMF.ExposesReturnsTwice);
359 if (YamlMF.Legalized)
360 MF.getProperties().set(MachineFunctionProperties::Property::Legalized);
361 if (YamlMF.RegBankSelected)
362 MF.getProperties().set(
363 MachineFunctionProperties::Property::RegBankSelected);
364 if (YamlMF.Selected)
365 MF.getProperties().set(MachineFunctionProperties::Property::Selected);
366 if (YamlMF.FailedISel)
367 MF.getProperties().set(MachineFunctionProperties::Property::FailedISel);
369 PerFunctionMIParsingState PFS(MF, SM, IRSlots, Names2RegClasses,
370 Names2RegBanks);
371 if (parseRegisterInfo(PFS, YamlMF))
372 return true;
373 if (!YamlMF.Constants.empty()) {
374 auto *ConstantPool = MF.getConstantPool();
375 assert(ConstantPool && "Constant pool must be created");
376 if (initializeConstantPool(PFS, *ConstantPool, YamlMF))
377 return true;
380 StringRef BlockStr = YamlMF.Body.Value.Value;
381 SMDiagnostic Error;
382 SourceMgr BlockSM;
383 BlockSM.AddNewSourceBuffer(
384 MemoryBuffer::getMemBuffer(BlockStr, "",/*RequiresNullTerminator=*/false),
385 SMLoc());
386 PFS.SM = &BlockSM;
387 if (parseMachineBasicBlockDefinitions(PFS, BlockStr, Error)) {
388 reportDiagnostic(
389 diagFromBlockStringDiag(Error, YamlMF.Body.Value.SourceRange));
390 return true;
392 PFS.SM = &SM;
394 // Initialize the frame information after creating all the MBBs so that the
395 // MBB references in the frame information can be resolved.
396 if (initializeFrameInfo(PFS, YamlMF))
397 return true;
398 // Initialize the jump table after creating all the MBBs so that the MBB
399 // references can be resolved.
400 if (!YamlMF.JumpTableInfo.Entries.empty() &&
401 initializeJumpTableInfo(PFS, YamlMF.JumpTableInfo))
402 return true;
403 // Parse the machine instructions after creating all of the MBBs so that the
404 // parser can resolve the MBB references.
405 StringRef InsnStr = YamlMF.Body.Value.Value;
406 SourceMgr InsnSM;
407 InsnSM.AddNewSourceBuffer(
408 MemoryBuffer::getMemBuffer(InsnStr, "", /*RequiresNullTerminator=*/false),
409 SMLoc());
410 PFS.SM = &InsnSM;
411 if (parseMachineInstructions(PFS, InsnStr, Error)) {
412 reportDiagnostic(
413 diagFromBlockStringDiag(Error, YamlMF.Body.Value.SourceRange));
414 return true;
416 PFS.SM = &SM;
418 if (setupRegisterInfo(PFS, YamlMF))
419 return true;
421 computeFunctionProperties(MF);
423 MF.getSubtarget().mirFileLoaded(MF);
425 MF.verify();
426 return false;
429 bool MIRParserImpl::parseRegisterInfo(PerFunctionMIParsingState &PFS,
430 const yaml::MachineFunction &YamlMF) {
431 MachineFunction &MF = PFS.MF;
432 MachineRegisterInfo &RegInfo = MF.getRegInfo();
433 assert(RegInfo.tracksLiveness());
434 if (!YamlMF.TracksRegLiveness)
435 RegInfo.invalidateLiveness();
437 SMDiagnostic Error;
438 // Parse the virtual register information.
439 for (const auto &VReg : YamlMF.VirtualRegisters) {
440 VRegInfo &Info = PFS.getVRegInfo(VReg.ID.Value);
441 if (Info.Explicit)
442 return error(VReg.ID.SourceRange.Start,
443 Twine("redefinition of virtual register '%") +
444 Twine(VReg.ID.Value) + "'");
445 Info.Explicit = true;
447 if (StringRef(VReg.Class.Value).equals("_")) {
448 Info.Kind = VRegInfo::GENERIC;
449 Info.D.RegBank = nullptr;
450 } else {
451 const auto *RC = getRegClass(MF, VReg.Class.Value);
452 if (RC) {
453 Info.Kind = VRegInfo::NORMAL;
454 Info.D.RC = RC;
455 } else {
456 const RegisterBank *RegBank = getRegBank(MF, VReg.Class.Value);
457 if (!RegBank)
458 return error(
459 VReg.Class.SourceRange.Start,
460 Twine("use of undefined register class or register bank '") +
461 VReg.Class.Value + "'");
462 Info.Kind = VRegInfo::REGBANK;
463 Info.D.RegBank = RegBank;
467 if (!VReg.PreferredRegister.Value.empty()) {
468 if (Info.Kind != VRegInfo::NORMAL)
469 return error(VReg.Class.SourceRange.Start,
470 Twine("preferred register can only be set for normal vregs"));
472 if (parseRegisterReference(PFS, Info.PreferredReg,
473 VReg.PreferredRegister.Value, Error))
474 return error(Error, VReg.PreferredRegister.SourceRange);
478 // Parse the liveins.
479 for (const auto &LiveIn : YamlMF.LiveIns) {
480 unsigned Reg = 0;
481 if (parseNamedRegisterReference(PFS, Reg, LiveIn.Register.Value, Error))
482 return error(Error, LiveIn.Register.SourceRange);
483 unsigned VReg = 0;
484 if (!LiveIn.VirtualRegister.Value.empty()) {
485 VRegInfo *Info;
486 if (parseVirtualRegisterReference(PFS, Info, LiveIn.VirtualRegister.Value,
487 Error))
488 return error(Error, LiveIn.VirtualRegister.SourceRange);
489 VReg = Info->VReg;
491 RegInfo.addLiveIn(Reg, VReg);
494 // Parse the callee saved registers (Registers that will
495 // be saved for the caller).
496 if (YamlMF.CalleeSavedRegisters) {
497 SmallVector<MCPhysReg, 16> CalleeSavedRegisters;
498 for (const auto &RegSource : YamlMF.CalleeSavedRegisters.getValue()) {
499 unsigned Reg = 0;
500 if (parseNamedRegisterReference(PFS, Reg, RegSource.Value, Error))
501 return error(Error, RegSource.SourceRange);
502 CalleeSavedRegisters.push_back(Reg);
504 RegInfo.setCalleeSavedRegs(CalleeSavedRegisters);
507 return false;
510 bool MIRParserImpl::setupRegisterInfo(const PerFunctionMIParsingState &PFS,
511 const yaml::MachineFunction &YamlMF) {
512 MachineFunction &MF = PFS.MF;
513 MachineRegisterInfo &MRI = MF.getRegInfo();
514 bool Error = false;
515 // Create VRegs
516 auto populateVRegInfo = [&] (const VRegInfo &Info, Twine Name) {
517 unsigned Reg = Info.VReg;
518 switch (Info.Kind) {
519 case VRegInfo::UNKNOWN:
520 error(Twine("Cannot determine class/bank of virtual register ") +
521 Name + " in function '" + MF.getName() + "'");
522 Error = true;
523 break;
524 case VRegInfo::NORMAL:
525 MRI.setRegClass(Reg, Info.D.RC);
526 if (Info.PreferredReg != 0)
527 MRI.setSimpleHint(Reg, Info.PreferredReg);
528 break;
529 case VRegInfo::GENERIC:
530 break;
531 case VRegInfo::REGBANK:
532 MRI.setRegBank(Reg, *Info.D.RegBank);
533 break;
537 for (auto I = PFS.VRegInfosNamed.begin(), E = PFS.VRegInfosNamed.end();
538 I != E; I++) {
539 const VRegInfo &Info = *I->second;
540 populateVRegInfo(Info, Twine(I->first()));
543 for (auto P : PFS.VRegInfos) {
544 const VRegInfo &Info = *P.second;
545 populateVRegInfo(Info, Twine(P.first));
548 // Compute MachineRegisterInfo::UsedPhysRegMask
549 for (const MachineBasicBlock &MBB : MF) {
550 for (const MachineInstr &MI : MBB) {
551 for (const MachineOperand &MO : MI.operands()) {
552 if (!MO.isRegMask())
553 continue;
554 MRI.addPhysRegsUsedFromRegMask(MO.getRegMask());
559 // FIXME: This is a temporary workaround until the reserved registers can be
560 // serialized.
561 MRI.freezeReservedRegs(MF);
562 return Error;
565 bool MIRParserImpl::initializeFrameInfo(PerFunctionMIParsingState &PFS,
566 const yaml::MachineFunction &YamlMF) {
567 MachineFunction &MF = PFS.MF;
568 MachineFrameInfo &MFI = MF.getFrameInfo();
569 const Function &F = MF.getFunction();
570 const yaml::MachineFrameInfo &YamlMFI = YamlMF.FrameInfo;
571 MFI.setFrameAddressIsTaken(YamlMFI.IsFrameAddressTaken);
572 MFI.setReturnAddressIsTaken(YamlMFI.IsReturnAddressTaken);
573 MFI.setHasStackMap(YamlMFI.HasStackMap);
574 MFI.setHasPatchPoint(YamlMFI.HasPatchPoint);
575 MFI.setStackSize(YamlMFI.StackSize);
576 MFI.setOffsetAdjustment(YamlMFI.OffsetAdjustment);
577 if (YamlMFI.MaxAlignment)
578 MFI.ensureMaxAlignment(YamlMFI.MaxAlignment);
579 MFI.setAdjustsStack(YamlMFI.AdjustsStack);
580 MFI.setHasCalls(YamlMFI.HasCalls);
581 if (YamlMFI.MaxCallFrameSize != ~0u)
582 MFI.setMaxCallFrameSize(YamlMFI.MaxCallFrameSize);
583 MFI.setCVBytesOfCalleeSavedRegisters(YamlMFI.CVBytesOfCalleeSavedRegisters);
584 MFI.setHasOpaqueSPAdjustment(YamlMFI.HasOpaqueSPAdjustment);
585 MFI.setHasVAStart(YamlMFI.HasVAStart);
586 MFI.setHasMustTailInVarArgFunc(YamlMFI.HasMustTailInVarArgFunc);
587 MFI.setLocalFrameSize(YamlMFI.LocalFrameSize);
588 if (!YamlMFI.SavePoint.Value.empty()) {
589 MachineBasicBlock *MBB = nullptr;
590 if (parseMBBReference(PFS, MBB, YamlMFI.SavePoint))
591 return true;
592 MFI.setSavePoint(MBB);
594 if (!YamlMFI.RestorePoint.Value.empty()) {
595 MachineBasicBlock *MBB = nullptr;
596 if (parseMBBReference(PFS, MBB, YamlMFI.RestorePoint))
597 return true;
598 MFI.setRestorePoint(MBB);
601 std::vector<CalleeSavedInfo> CSIInfo;
602 // Initialize the fixed frame objects.
603 for (const auto &Object : YamlMF.FixedStackObjects) {
604 int ObjectIdx;
605 if (Object.Type != yaml::FixedMachineStackObject::SpillSlot)
606 ObjectIdx = MFI.CreateFixedObject(Object.Size, Object.Offset,
607 Object.IsImmutable, Object.IsAliased);
608 else
609 ObjectIdx = MFI.CreateFixedSpillStackObject(Object.Size, Object.Offset);
610 MFI.setObjectAlignment(ObjectIdx, Object.Alignment);
611 MFI.setStackID(ObjectIdx, Object.StackID);
612 if (!PFS.FixedStackObjectSlots.insert(std::make_pair(Object.ID.Value,
613 ObjectIdx))
614 .second)
615 return error(Object.ID.SourceRange.Start,
616 Twine("redefinition of fixed stack object '%fixed-stack.") +
617 Twine(Object.ID.Value) + "'");
618 if (parseCalleeSavedRegister(PFS, CSIInfo, Object.CalleeSavedRegister,
619 Object.CalleeSavedRestored, ObjectIdx))
620 return true;
621 if (parseStackObjectsDebugInfo(PFS, Object, ObjectIdx))
622 return true;
625 // Initialize the ordinary frame objects.
626 for (const auto &Object : YamlMF.StackObjects) {
627 int ObjectIdx;
628 const AllocaInst *Alloca = nullptr;
629 const yaml::StringValue &Name = Object.Name;
630 if (!Name.Value.empty()) {
631 Alloca = dyn_cast_or_null<AllocaInst>(
632 F.getValueSymbolTable()->lookup(Name.Value));
633 if (!Alloca)
634 return error(Name.SourceRange.Start,
635 "alloca instruction named '" + Name.Value +
636 "' isn't defined in the function '" + F.getName() +
637 "'");
639 if (Object.Type == yaml::MachineStackObject::VariableSized)
640 ObjectIdx = MFI.CreateVariableSizedObject(Object.Alignment, Alloca);
641 else
642 ObjectIdx = MFI.CreateStackObject(
643 Object.Size, Object.Alignment,
644 Object.Type == yaml::MachineStackObject::SpillSlot, Alloca);
645 MFI.setObjectOffset(ObjectIdx, Object.Offset);
646 MFI.setStackID(ObjectIdx, Object.StackID);
648 if (!PFS.StackObjectSlots.insert(std::make_pair(Object.ID.Value, ObjectIdx))
649 .second)
650 return error(Object.ID.SourceRange.Start,
651 Twine("redefinition of stack object '%stack.") +
652 Twine(Object.ID.Value) + "'");
653 if (parseCalleeSavedRegister(PFS, CSIInfo, Object.CalleeSavedRegister,
654 Object.CalleeSavedRestored, ObjectIdx))
655 return true;
656 if (Object.LocalOffset)
657 MFI.mapLocalFrameObject(ObjectIdx, Object.LocalOffset.getValue());
658 if (parseStackObjectsDebugInfo(PFS, Object, ObjectIdx))
659 return true;
661 MFI.setCalleeSavedInfo(CSIInfo);
662 if (!CSIInfo.empty())
663 MFI.setCalleeSavedInfoValid(true);
665 // Initialize the various stack object references after initializing the
666 // stack objects.
667 if (!YamlMFI.StackProtector.Value.empty()) {
668 SMDiagnostic Error;
669 int FI;
670 if (parseStackObjectReference(PFS, FI, YamlMFI.StackProtector.Value, Error))
671 return error(Error, YamlMFI.StackProtector.SourceRange);
672 MFI.setStackProtectorIndex(FI);
674 return false;
677 bool MIRParserImpl::parseCalleeSavedRegister(PerFunctionMIParsingState &PFS,
678 std::vector<CalleeSavedInfo> &CSIInfo,
679 const yaml::StringValue &RegisterSource, bool IsRestored, int FrameIdx) {
680 if (RegisterSource.Value.empty())
681 return false;
682 unsigned Reg = 0;
683 SMDiagnostic Error;
684 if (parseNamedRegisterReference(PFS, Reg, RegisterSource.Value, Error))
685 return error(Error, RegisterSource.SourceRange);
686 CalleeSavedInfo CSI(Reg, FrameIdx);
687 CSI.setRestored(IsRestored);
688 CSIInfo.push_back(CSI);
689 return false;
692 /// Verify that given node is of a certain type. Return true on error.
693 template <typename T>
694 static bool typecheckMDNode(T *&Result, MDNode *Node,
695 const yaml::StringValue &Source,
696 StringRef TypeString, MIRParserImpl &Parser) {
697 if (!Node)
698 return false;
699 Result = dyn_cast<T>(Node);
700 if (!Result)
701 return Parser.error(Source.SourceRange.Start,
702 "expected a reference to a '" + TypeString +
703 "' metadata node");
704 return false;
707 template <typename T>
708 bool MIRParserImpl::parseStackObjectsDebugInfo(PerFunctionMIParsingState &PFS,
709 const T &Object, int FrameIdx) {
710 // Debug information can only be attached to stack objects; Fixed stack
711 // objects aren't supported.
712 MDNode *Var = nullptr, *Expr = nullptr, *Loc = nullptr;
713 if (parseMDNode(PFS, Var, Object.DebugVar) ||
714 parseMDNode(PFS, Expr, Object.DebugExpr) ||
715 parseMDNode(PFS, Loc, Object.DebugLoc))
716 return true;
717 if (!Var && !Expr && !Loc)
718 return false;
719 DILocalVariable *DIVar = nullptr;
720 DIExpression *DIExpr = nullptr;
721 DILocation *DILoc = nullptr;
722 if (typecheckMDNode(DIVar, Var, Object.DebugVar, "DILocalVariable", *this) ||
723 typecheckMDNode(DIExpr, Expr, Object.DebugExpr, "DIExpression", *this) ||
724 typecheckMDNode(DILoc, Loc, Object.DebugLoc, "DILocation", *this))
725 return true;
726 PFS.MF.setVariableDbgInfo(DIVar, DIExpr, FrameIdx, DILoc);
727 return false;
730 bool MIRParserImpl::parseMDNode(PerFunctionMIParsingState &PFS,
731 MDNode *&Node, const yaml::StringValue &Source) {
732 if (Source.Value.empty())
733 return false;
734 SMDiagnostic Error;
735 if (llvm::parseMDNode(PFS, Node, Source.Value, Error))
736 return error(Error, Source.SourceRange);
737 return false;
740 bool MIRParserImpl::initializeConstantPool(PerFunctionMIParsingState &PFS,
741 MachineConstantPool &ConstantPool, const yaml::MachineFunction &YamlMF) {
742 DenseMap<unsigned, unsigned> &ConstantPoolSlots = PFS.ConstantPoolSlots;
743 const MachineFunction &MF = PFS.MF;
744 const auto &M = *MF.getFunction().getParent();
745 SMDiagnostic Error;
746 for (const auto &YamlConstant : YamlMF.Constants) {
747 if (YamlConstant.IsTargetSpecific)
748 // FIXME: Support target-specific constant pools
749 return error(YamlConstant.Value.SourceRange.Start,
750 "Can't parse target-specific constant pool entries yet");
751 const Constant *Value = dyn_cast_or_null<Constant>(
752 parseConstantValue(YamlConstant.Value.Value, Error, M));
753 if (!Value)
754 return error(Error, YamlConstant.Value.SourceRange);
755 unsigned Alignment =
756 YamlConstant.Alignment
757 ? YamlConstant.Alignment
758 : M.getDataLayout().getPrefTypeAlignment(Value->getType());
759 unsigned Index = ConstantPool.getConstantPoolIndex(Value, Alignment);
760 if (!ConstantPoolSlots.insert(std::make_pair(YamlConstant.ID.Value, Index))
761 .second)
762 return error(YamlConstant.ID.SourceRange.Start,
763 Twine("redefinition of constant pool item '%const.") +
764 Twine(YamlConstant.ID.Value) + "'");
766 return false;
769 bool MIRParserImpl::initializeJumpTableInfo(PerFunctionMIParsingState &PFS,
770 const yaml::MachineJumpTable &YamlJTI) {
771 MachineJumpTableInfo *JTI = PFS.MF.getOrCreateJumpTableInfo(YamlJTI.Kind);
772 for (const auto &Entry : YamlJTI.Entries) {
773 std::vector<MachineBasicBlock *> Blocks;
774 for (const auto &MBBSource : Entry.Blocks) {
775 MachineBasicBlock *MBB = nullptr;
776 if (parseMBBReference(PFS, MBB, MBBSource.Value))
777 return true;
778 Blocks.push_back(MBB);
780 unsigned Index = JTI->createJumpTableIndex(Blocks);
781 if (!PFS.JumpTableSlots.insert(std::make_pair(Entry.ID.Value, Index))
782 .second)
783 return error(Entry.ID.SourceRange.Start,
784 Twine("redefinition of jump table entry '%jump-table.") +
785 Twine(Entry.ID.Value) + "'");
787 return false;
790 bool MIRParserImpl::parseMBBReference(PerFunctionMIParsingState &PFS,
791 MachineBasicBlock *&MBB,
792 const yaml::StringValue &Source) {
793 SMDiagnostic Error;
794 if (llvm::parseMBBReference(PFS, MBB, Source.Value, Error))
795 return error(Error, Source.SourceRange);
796 return false;
799 SMDiagnostic MIRParserImpl::diagFromMIStringDiag(const SMDiagnostic &Error,
800 SMRange SourceRange) {
801 assert(SourceRange.isValid() && "Invalid source range");
802 SMLoc Loc = SourceRange.Start;
803 bool HasQuote = Loc.getPointer() < SourceRange.End.getPointer() &&
804 *Loc.getPointer() == '\'';
805 // Translate the location of the error from the location in the MI string to
806 // the corresponding location in the MIR file.
807 Loc = Loc.getFromPointer(Loc.getPointer() + Error.getColumnNo() +
808 (HasQuote ? 1 : 0));
810 // TODO: Translate any source ranges as well.
811 return SM.GetMessage(Loc, Error.getKind(), Error.getMessage(), None,
812 Error.getFixIts());
815 SMDiagnostic MIRParserImpl::diagFromBlockStringDiag(const SMDiagnostic &Error,
816 SMRange SourceRange) {
817 assert(SourceRange.isValid());
819 // Translate the location of the error from the location in the llvm IR string
820 // to the corresponding location in the MIR file.
821 auto LineAndColumn = SM.getLineAndColumn(SourceRange.Start);
822 unsigned Line = LineAndColumn.first + Error.getLineNo() - 1;
823 unsigned Column = Error.getColumnNo();
824 StringRef LineStr = Error.getLineContents();
825 SMLoc Loc = Error.getLoc();
827 // Get the full line and adjust the column number by taking the indentation of
828 // LLVM IR into account.
829 for (line_iterator L(*SM.getMemoryBuffer(SM.getMainFileID()), false), E;
830 L != E; ++L) {
831 if (L.line_number() == Line) {
832 LineStr = *L;
833 Loc = SMLoc::getFromPointer(LineStr.data());
834 auto Indent = LineStr.find(Error.getLineContents());
835 if (Indent != StringRef::npos)
836 Column += Indent;
837 break;
841 return SMDiagnostic(SM, Loc, Filename, Line, Column, Error.getKind(),
842 Error.getMessage(), LineStr, Error.getRanges(),
843 Error.getFixIts());
846 void MIRParserImpl::initNames2RegClasses(const MachineFunction &MF) {
847 if (!Names2RegClasses.empty())
848 return;
849 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
850 for (unsigned I = 0, E = TRI->getNumRegClasses(); I < E; ++I) {
851 const auto *RC = TRI->getRegClass(I);
852 Names2RegClasses.insert(
853 std::make_pair(StringRef(TRI->getRegClassName(RC)).lower(), RC));
857 void MIRParserImpl::initNames2RegBanks(const MachineFunction &MF) {
858 if (!Names2RegBanks.empty())
859 return;
860 const RegisterBankInfo *RBI = MF.getSubtarget().getRegBankInfo();
861 // If the target does not support GlobalISel, we may not have a
862 // register bank info.
863 if (!RBI)
864 return;
865 for (unsigned I = 0, E = RBI->getNumRegBanks(); I < E; ++I) {
866 const auto &RegBank = RBI->getRegBank(I);
867 Names2RegBanks.insert(
868 std::make_pair(StringRef(RegBank.getName()).lower(), &RegBank));
872 const TargetRegisterClass *MIRParserImpl::getRegClass(const MachineFunction &MF,
873 StringRef Name) {
874 auto RegClassInfo = Names2RegClasses.find(Name);
875 if (RegClassInfo == Names2RegClasses.end())
876 return nullptr;
877 return RegClassInfo->getValue();
880 const RegisterBank *MIRParserImpl::getRegBank(const MachineFunction &MF,
881 StringRef Name) {
882 auto RegBankInfo = Names2RegBanks.find(Name);
883 if (RegBankInfo == Names2RegBanks.end())
884 return nullptr;
885 return RegBankInfo->getValue();
888 MIRParser::MIRParser(std::unique_ptr<MIRParserImpl> Impl)
889 : Impl(std::move(Impl)) {}
891 MIRParser::~MIRParser() {}
893 std::unique_ptr<Module> MIRParser::parseIRModule() {
894 return Impl->parseIRModule();
897 bool MIRParser::parseMachineFunctions(Module &M, MachineModuleInfo &MMI) {
898 return Impl->parseMachineFunctions(M, MMI);
901 std::unique_ptr<MIRParser> llvm::createMIRParserFromFile(StringRef Filename,
902 SMDiagnostic &Error,
903 LLVMContext &Context) {
904 auto FileOrErr = MemoryBuffer::getFileOrSTDIN(Filename);
905 if (std::error_code EC = FileOrErr.getError()) {
906 Error = SMDiagnostic(Filename, SourceMgr::DK_Error,
907 "Could not open input file: " + EC.message());
908 return nullptr;
910 return createMIRParser(std::move(FileOrErr.get()), Context);
913 std::unique_ptr<MIRParser>
914 llvm::createMIRParser(std::unique_ptr<MemoryBuffer> Contents,
915 LLVMContext &Context) {
916 auto Filename = Contents->getBufferIdentifier();
917 if (Context.shouldDiscardValueNames()) {
918 Context.diagnose(DiagnosticInfoMIRParser(
919 DS_Error,
920 SMDiagnostic(
921 Filename, SourceMgr::DK_Error,
922 "Can't read MIR with a Context that discards named Values")));
923 return nullptr;
925 return llvm::make_unique<MIRParser>(
926 llvm::make_unique<MIRParserImpl>(std::move(Contents), Filename, Context));