blob: 5dd38cf9491a9bfb8315b2370ef8f4bd4cbebb20 [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);
Alex Lorenzf3db51de2015-06-23 16:35:26 +000053 void print(const MachineOperand &Op, const TargetRegisterInfo *TRI);
Alex Lorenz8e0a1b42015-06-22 17:02:30 +000054};
55
Alex Lorenz345c1442015-06-15 23:52:35 +000056} // end anonymous namespace
57
58namespace llvm {
59namespace yaml {
60
61/// This struct serializes the LLVM IR module.
62template <> struct BlockScalarTraits<Module> {
63 static void output(const Module &Mod, void *Ctxt, raw_ostream &OS) {
64 Mod.print(OS, nullptr);
65 }
66 static StringRef input(StringRef Str, void *Ctxt, Module &Mod) {
67 llvm_unreachable("LLVM Module is supposed to be parsed separately");
68 return "";
69 }
70};
71
72} // end namespace yaml
73} // end namespace llvm
74
75void MIRPrinter::print(const MachineFunction &MF) {
76 yaml::MachineFunction YamlMF;
77 YamlMF.Name = MF.getName();
Alex Lorenz5b5f9752015-06-16 00:10:47 +000078 YamlMF.Alignment = MF.getAlignment();
79 YamlMF.ExposesReturnsTwice = MF.exposesReturnsTwice();
80 YamlMF.HasInlineAsm = MF.hasInlineAsm();
Alex Lorenz4f093bf2015-06-19 17:43:07 +000081 for (const auto &MBB : MF) {
82 yaml::MachineBasicBlock YamlMBB;
83 convert(YamlMBB, MBB);
84 YamlMF.BasicBlocks.push_back(YamlMBB);
85 }
Alex Lorenz345c1442015-06-15 23:52:35 +000086 yaml::Output Out(OS);
87 Out << YamlMF;
88}
89
Alex Lorenz4f093bf2015-06-19 17:43:07 +000090void MIRPrinter::convert(yaml::MachineBasicBlock &YamlMBB,
91 const MachineBasicBlock &MBB) {
92 // TODO: Serialize unnamed BB references.
93 if (const auto *BB = MBB.getBasicBlock())
94 YamlMBB.Name = BB->hasName() ? BB->getName() : "<unnamed bb>";
95 else
96 YamlMBB.Name = "";
97 YamlMBB.Alignment = MBB.getAlignment();
98 YamlMBB.AddressTaken = MBB.hasAddressTaken();
99 YamlMBB.IsLandingPad = MBB.isLandingPad();
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000100
101 // Print the machine instructions.
102 YamlMBB.Instructions.reserve(MBB.size());
103 std::string Str;
104 for (const auto &MI : MBB) {
105 raw_string_ostream StrOS(Str);
106 MIPrinter(StrOS).print(MI);
107 YamlMBB.Instructions.push_back(StrOS.str());
108 Str.clear();
109 }
110}
111
112void MIPrinter::print(const MachineInstr &MI) {
113 const auto &SubTarget = MI.getParent()->getParent()->getSubtarget();
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000114 const auto *TRI = SubTarget.getRegisterInfo();
115 assert(TRI && "Expected target register info");
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000116 const auto *TII = SubTarget.getInstrInfo();
117 assert(TII && "Expected target instruction info");
118
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000119 unsigned I = 0, E = MI.getNumOperands();
120 for (; I < E && MI.getOperand(I).isReg() && MI.getOperand(I).isDef() &&
121 !MI.getOperand(I).isImplicit();
122 ++I) {
123 if (I)
124 OS << ", ";
125 print(MI.getOperand(I), TRI);
126 }
127
128 if (I)
129 OS << " = ";
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000130 OS << TII->getName(MI.getOpcode());
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000131 // TODO: Print the instruction flags, machine mem operands.
132 if (I < E)
133 OS << ' ';
134
135 bool NeedComma = false;
136 for (; I < E; ++I) {
137 if (NeedComma)
138 OS << ", ";
139 print(MI.getOperand(I), TRI);
140 NeedComma = true;
141 }
142}
143
144static void printReg(unsigned Reg, raw_ostream &OS,
145 const TargetRegisterInfo *TRI) {
146 // TODO: Print Stack Slots.
147 // TODO: Print no register.
148 // TODO: Print virtual registers.
149 if (Reg < TRI->getNumRegs())
150 OS << '%' << StringRef(TRI->getName(Reg)).lower();
151 else
152 llvm_unreachable("Can't print this kind of register yet");
153}
154
155void MIPrinter::print(const MachineOperand &Op, const TargetRegisterInfo *TRI) {
156 switch (Op.getType()) {
157 case MachineOperand::MO_Register:
158 // TODO: Print register flags.
159 printReg(Op.getReg(), OS, TRI);
160 // TODO: Print sub register.
161 break;
162 default:
163 // TODO: Print the other machine operands.
164 llvm_unreachable("Can't print this machine operand at the moment");
165 }
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000166}
167
Alex Lorenz345c1442015-06-15 23:52:35 +0000168void llvm::printMIR(raw_ostream &OS, const Module &M) {
169 yaml::Output Out(OS);
170 Out << const_cast<Module &>(M);
171}
172
173void llvm::printMIR(raw_ostream &OS, const MachineFunction &MF) {
174 MIRPrinter Printer(OS);
175 Printer.print(MF);
176}