blob: 7aa1b69a78ba94efe39075087e9657e457a41157 [file] [log] [blame]
Alex Lorenz345c1442015-06-15 23:52:35 +00001//===- MIRPrinter.cpp - MIR serialization format printer ------------------===//
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 prints out the LLVM IR and machine
11// functions using the MIR serialization format.
12//
13//===----------------------------------------------------------------------===//
14
15#include "MIRPrinter.h"
16#include "llvm/ADT/STLExtras.h"
17#include "llvm/CodeGen/MachineFunction.h"
18#include "llvm/CodeGen/MIRYamlMapping.h"
Alex Lorenz4f093bf2015-06-19 17:43:07 +000019#include "llvm/IR/BasicBlock.h"
Alex Lorenz345c1442015-06-15 23:52:35 +000020#include "llvm/IR/Module.h"
21#include "llvm/Support/MemoryBuffer.h"
22#include "llvm/Support/raw_ostream.h"
23#include "llvm/Support/YAMLTraits.h"
Alex Lorenz8e0a1b42015-06-22 17:02:30 +000024#include "llvm/Target/TargetInstrInfo.h"
25#include "llvm/Target/TargetSubtargetInfo.h"
Alex Lorenz345c1442015-06-15 23:52:35 +000026
27using namespace llvm;
28
29namespace {
30
31/// This class prints out the machine functions using the MIR serialization
32/// format.
33class MIRPrinter {
34 raw_ostream &OS;
35
36public:
37 MIRPrinter(raw_ostream &OS) : OS(OS) {}
38
39 void print(const MachineFunction &MF);
Alex Lorenz4f093bf2015-06-19 17:43:07 +000040
41 void convert(yaml::MachineBasicBlock &YamlMBB, const MachineBasicBlock &MBB);
Alex Lorenz345c1442015-06-15 23:52:35 +000042};
43
Alex Lorenz8e0a1b42015-06-22 17:02:30 +000044/// This class prints out the machine instructions using the MIR serialization
45/// format.
46class MIPrinter {
47 raw_ostream &OS;
48
49public:
50 MIPrinter(raw_ostream &OS) : OS(OS) {}
51
52 void print(const MachineInstr &MI);
53};
54
Alex Lorenz345c1442015-06-15 23:52:35 +000055} // end anonymous namespace
56
57namespace llvm {
58namespace yaml {
59
60/// This struct serializes the LLVM IR module.
61template <> struct BlockScalarTraits<Module> {
62 static void output(const Module &Mod, void *Ctxt, raw_ostream &OS) {
63 Mod.print(OS, nullptr);
64 }
65 static StringRef input(StringRef Str, void *Ctxt, Module &Mod) {
66 llvm_unreachable("LLVM Module is supposed to be parsed separately");
67 return "";
68 }
69};
70
71} // end namespace yaml
72} // end namespace llvm
73
74void MIRPrinter::print(const MachineFunction &MF) {
75 yaml::MachineFunction YamlMF;
76 YamlMF.Name = MF.getName();
Alex Lorenz5b5f9752015-06-16 00:10:47 +000077 YamlMF.Alignment = MF.getAlignment();
78 YamlMF.ExposesReturnsTwice = MF.exposesReturnsTwice();
79 YamlMF.HasInlineAsm = MF.hasInlineAsm();
Alex Lorenz4f093bf2015-06-19 17:43:07 +000080 for (const auto &MBB : MF) {
81 yaml::MachineBasicBlock YamlMBB;
82 convert(YamlMBB, MBB);
83 YamlMF.BasicBlocks.push_back(YamlMBB);
84 }
Alex Lorenz345c1442015-06-15 23:52:35 +000085 yaml::Output Out(OS);
86 Out << YamlMF;
87}
88
Alex Lorenz4f093bf2015-06-19 17:43:07 +000089void MIRPrinter::convert(yaml::MachineBasicBlock &YamlMBB,
90 const MachineBasicBlock &MBB) {
91 // TODO: Serialize unnamed BB references.
92 if (const auto *BB = MBB.getBasicBlock())
93 YamlMBB.Name = BB->hasName() ? BB->getName() : "<unnamed bb>";
94 else
95 YamlMBB.Name = "";
96 YamlMBB.Alignment = MBB.getAlignment();
97 YamlMBB.AddressTaken = MBB.hasAddressTaken();
98 YamlMBB.IsLandingPad = MBB.isLandingPad();
Alex Lorenz8e0a1b42015-06-22 17:02:30 +000099
100 // Print the machine instructions.
101 YamlMBB.Instructions.reserve(MBB.size());
102 std::string Str;
103 for (const auto &MI : MBB) {
104 raw_string_ostream StrOS(Str);
105 MIPrinter(StrOS).print(MI);
106 YamlMBB.Instructions.push_back(StrOS.str());
107 Str.clear();
108 }
109}
110
111void MIPrinter::print(const MachineInstr &MI) {
112 const auto &SubTarget = MI.getParent()->getParent()->getSubtarget();
113 const auto *TII = SubTarget.getInstrInfo();
114 assert(TII && "Expected target instruction info");
115
116 OS << TII->getName(MI.getOpcode());
117 // TODO: Print the instruction flags, machine operands, machine mem operands.
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000118}
119
Alex Lorenz345c1442015-06-15 23:52:35 +0000120void llvm::printMIR(raw_ostream &OS, const Module &M) {
121 yaml::Output Out(OS);
122 Out << const_cast<Module &>(M);
123}
124
125void llvm::printMIR(raw_ostream &OS, const MachineFunction &MF) {
126 MIRPrinter Printer(OS);
127 Printer.print(MF);
128}