blob: 797affa9431513a58a5e2616c39aa1f206159892 [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
David Blaikie3f833ed2017-11-08 01:01:31 +000015#include "llvm/CodeGen/MIRPrinter.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000016#include "llvm/ADT/DenseMap.h"
17#include "llvm/ADT/None.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000018#include "llvm/ADT/STLExtras.h"
Tim Northoverd28d3cc2016-09-12 11:20:10 +000019#include "llvm/ADT/SmallBitVector.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000020#include "llvm/ADT/SmallPtrSet.h"
21#include "llvm/ADT/SmallVector.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000022#include "llvm/ADT/StringRef.h"
23#include "llvm/ADT/Twine.h"
Quentin Colombetfab1cfe2016-04-08 16:26:22 +000024#include "llvm/CodeGen/GlobalISel/RegisterBank.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000025#include "llvm/CodeGen/MIRYamlMapping.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000026#include "llvm/CodeGen/MachineBasicBlock.h"
Alex Lorenzab980492015-07-20 20:51:18 +000027#include "llvm/CodeGen/MachineConstantPool.h"
Alex Lorenz60541c12015-07-09 19:55:27 +000028#include "llvm/CodeGen/MachineFrameInfo.h"
Quentin Colombetfab1cfe2016-04-08 16:26:22 +000029#include "llvm/CodeGen/MachineFunction.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000030#include "llvm/CodeGen/MachineInstr.h"
31#include "llvm/CodeGen/MachineJumpTableInfo.h"
Alex Lorenz4af7e612015-08-03 23:08:19 +000032#include "llvm/CodeGen/MachineMemOperand.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000033#include "llvm/CodeGen/MachineOperand.h"
Alex Lorenz54565cf2015-06-24 19:56:10 +000034#include "llvm/CodeGen/MachineRegisterInfo.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000035#include "llvm/CodeGen/PseudoSourceValue.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000036#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000037#include "llvm/CodeGen/TargetRegisterInfo.h"
38#include "llvm/CodeGen/TargetSubtargetInfo.h"
Alex Lorenz4f093bf2015-06-19 17:43:07 +000039#include "llvm/IR/BasicBlock.h"
Alex Lorenzdeb53492015-07-28 17:28:03 +000040#include "llvm/IR/Constants.h"
Reid Kleckner28865802016-04-14 18:29:59 +000041#include "llvm/IR/DebugInfo.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000042#include "llvm/IR/DebugLoc.h"
43#include "llvm/IR/Function.h"
44#include "llvm/IR/GlobalValue.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000045#include "llvm/IR/IRPrintingPasses.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000046#include "llvm/IR/InstrTypes.h"
Quentin Colombetfab1cfe2016-04-08 16:26:22 +000047#include "llvm/IR/Instructions.h"
Tim Northover6b3bd612016-07-29 20:32:59 +000048#include "llvm/IR/Intrinsics.h"
Alex Lorenz345c1442015-06-15 23:52:35 +000049#include "llvm/IR/Module.h"
Alex Lorenz900b5cb2015-07-07 23:27:53 +000050#include "llvm/IR/ModuleSlotTracker.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000051#include "llvm/IR/Value.h"
52#include "llvm/MC/LaneBitmask.h"
53#include "llvm/MC/MCDwarf.h"
Alex Lorenzf22ca8a2015-08-21 21:12:44 +000054#include "llvm/MC/MCSymbol.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000055#include "llvm/Support/AtomicOrdering.h"
56#include "llvm/Support/BranchProbability.h"
57#include "llvm/Support/Casting.h"
58#include "llvm/Support/CommandLine.h"
59#include "llvm/Support/ErrorHandling.h"
Geoff Berryb51774a2016-11-18 19:37:24 +000060#include "llvm/Support/Format.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000061#include "llvm/Support/LowLevelTypeImpl.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000062#include "llvm/Support/YAMLTraits.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000063#include "llvm/Support/raw_ostream.h"
Tim Northover6b3bd612016-07-29 20:32:59 +000064#include "llvm/Target/TargetIntrinsicInfo.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000065#include "llvm/Target/TargetMachine.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000066#include <algorithm>
67#include <cassert>
68#include <cinttypes>
69#include <cstdint>
70#include <iterator>
71#include <string>
72#include <utility>
73#include <vector>
Alex Lorenz345c1442015-06-15 23:52:35 +000074
75using namespace llvm;
76
Zachary Turner8065f0b2017-12-01 00:53:10 +000077static cl::opt<bool> SimplifyMIR(
78 "simplify-mir", cl::Hidden,
Matthias Braun89401142017-05-05 21:09:30 +000079 cl::desc("Leave out unnecessary information when printing MIR"));
80
Alex Lorenz345c1442015-06-15 23:52:35 +000081namespace {
82
Alex Lorenz7feaf7c2015-07-16 23:37:45 +000083/// This structure describes how to print out stack object references.
84struct FrameIndexOperand {
85 std::string Name;
86 unsigned ID;
87 bool IsFixed;
88
89 FrameIndexOperand(StringRef Name, unsigned ID, bool IsFixed)
90 : Name(Name.str()), ID(ID), IsFixed(IsFixed) {}
91
92 /// Return an ordinary stack object reference.
93 static FrameIndexOperand create(StringRef Name, unsigned ID) {
94 return FrameIndexOperand(Name, ID, /*IsFixed=*/false);
95 }
96
97 /// Return a fixed stack object reference.
98 static FrameIndexOperand createFixed(unsigned ID) {
99 return FrameIndexOperand("", ID, /*IsFixed=*/true);
100 }
101};
102
Alex Lorenz618b2832015-07-30 16:54:38 +0000103} // end anonymous namespace
104
105namespace llvm {
106
Alex Lorenz345c1442015-06-15 23:52:35 +0000107/// This class prints out the machine functions using the MIR serialization
108/// format.
109class MIRPrinter {
110 raw_ostream &OS;
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000111 DenseMap<const uint32_t *, unsigned> RegisterMaskIds;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000112 /// Maps from stack object indices to operand indices which will be used when
113 /// printing frame index machine operands.
114 DenseMap<int, FrameIndexOperand> StackObjectOperandMapping;
Alex Lorenz345c1442015-06-15 23:52:35 +0000115
116public:
117 MIRPrinter(raw_ostream &OS) : OS(OS) {}
118
119 void print(const MachineFunction &MF);
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000120
Alex Lorenz28148ba2015-07-09 22:23:13 +0000121 void convert(yaml::MachineFunction &MF, const MachineRegisterInfo &RegInfo,
122 const TargetRegisterInfo *TRI);
Alex Lorenza6f9a372015-07-29 21:09:09 +0000123 void convert(ModuleSlotTracker &MST, yaml::MachineFrameInfo &YamlMFI,
124 const MachineFrameInfo &MFI);
Alex Lorenzab980492015-07-20 20:51:18 +0000125 void convert(yaml::MachineFunction &MF,
126 const MachineConstantPool &ConstantPool);
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000127 void convert(ModuleSlotTracker &MST, yaml::MachineJumpTable &YamlJTI,
128 const MachineJumpTableInfo &JTI);
Matthias Braunef331ef2016-11-30 23:48:50 +0000129 void convertStackObjects(yaml::MachineFunction &YMF,
130 const MachineFunction &MF, ModuleSlotTracker &MST);
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000131
132private:
133 void initRegisterMaskIds(const MachineFunction &MF);
Alex Lorenz345c1442015-06-15 23:52:35 +0000134};
135
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000136/// This class prints out the machine instructions using the MIR serialization
137/// format.
138class MIPrinter {
139 raw_ostream &OS;
Alex Lorenz900b5cb2015-07-07 23:27:53 +0000140 ModuleSlotTracker &MST;
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000141 const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000142 const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000143 /// Synchronization scope names registered with LLVMContext.
144 SmallVector<StringRef, 8> SSNs;
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000145
Matthias Braun89401142017-05-05 21:09:30 +0000146 bool canPredictBranchProbabilities(const MachineBasicBlock &MBB) const;
147 bool canPredictSuccessors(const MachineBasicBlock &MBB) const;
148
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000149public:
Alex Lorenz900b5cb2015-07-07 23:27:53 +0000150 MIPrinter(raw_ostream &OS, ModuleSlotTracker &MST,
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000151 const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds,
152 const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping)
153 : OS(OS), MST(MST), RegisterMaskIds(RegisterMaskIds),
154 StackObjectOperandMapping(StackObjectOperandMapping) {}
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000155
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000156 void print(const MachineBasicBlock &MBB);
157
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000158 void print(const MachineInstr &MI);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000159 void printStackObjectReference(int FrameIndex);
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000160 void print(const MachineInstr &MI, unsigned OpIdx,
161 const TargetRegisterInfo *TRI, bool ShouldPrintRegisterTies,
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000162 LLT TypeToPrint, bool PrintDef = true);
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000163};
164
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000165} // end namespace llvm
Alex Lorenz345c1442015-06-15 23:52:35 +0000166
167namespace llvm {
168namespace yaml {
169
170/// This struct serializes the LLVM IR module.
171template <> struct BlockScalarTraits<Module> {
172 static void output(const Module &Mod, void *Ctxt, raw_ostream &OS) {
173 Mod.print(OS, nullptr);
174 }
Eugene Zelenkofb69e662017-06-06 22:22:41 +0000175
Alex Lorenz345c1442015-06-15 23:52:35 +0000176 static StringRef input(StringRef Str, void *Ctxt, Module &Mod) {
177 llvm_unreachable("LLVM Module is supposed to be parsed separately");
178 return "";
179 }
180};
181
182} // end namespace yaml
183} // end namespace llvm
184
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000185static void printRegMIR(unsigned Reg, yaml::StringValue &Dest,
186 const TargetRegisterInfo *TRI) {
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000187 raw_string_ostream OS(Dest.Value);
Francis Visoiu Mistrihc71cced2017-11-30 16:12:24 +0000188 OS << printReg(Reg, TRI);
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000189}
190
Alex Lorenz345c1442015-06-15 23:52:35 +0000191void MIRPrinter::print(const MachineFunction &MF) {
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000192 initRegisterMaskIds(MF);
193
Alex Lorenz345c1442015-06-15 23:52:35 +0000194 yaml::MachineFunction YamlMF;
195 YamlMF.Name = MF.getName();
Alex Lorenz5b5f9752015-06-16 00:10:47 +0000196 YamlMF.Alignment = MF.getAlignment();
197 YamlMF.ExposesReturnsTwice = MF.exposesReturnsTwice();
Derek Schuffad154c82016-03-28 17:05:30 +0000198
Ahmed Bougacha0d7b0cb2016-08-02 15:10:25 +0000199 YamlMF.Legalized = MF.getProperties().hasProperty(
200 MachineFunctionProperties::Property::Legalized);
Ahmed Bougacha24712652016-08-02 16:17:10 +0000201 YamlMF.RegBankSelected = MF.getProperties().hasProperty(
202 MachineFunctionProperties::Property::RegBankSelected);
Ahmed Bougachab109d512016-08-02 16:49:19 +0000203 YamlMF.Selected = MF.getProperties().hasProperty(
204 MachineFunctionProperties::Property::Selected);
Roman Tereshin3054ece2018-02-28 17:55:45 +0000205 YamlMF.FailedISel = MF.getProperties().hasProperty(
206 MachineFunctionProperties::Property::FailedISel);
Ahmed Bougacha0d7b0cb2016-08-02 15:10:25 +0000207
Alex Lorenz28148ba2015-07-09 22:23:13 +0000208 convert(YamlMF, MF.getRegInfo(), MF.getSubtarget().getRegisterInfo());
Matthias Braunf1caa282017-12-15 22:22:58 +0000209 ModuleSlotTracker MST(MF.getFunction().getParent());
210 MST.incorporateFunction(MF.getFunction());
Matthias Braun941a7052016-07-28 18:40:00 +0000211 convert(MST, YamlMF.FrameInfo, MF.getFrameInfo());
Matthias Braunef331ef2016-11-30 23:48:50 +0000212 convertStackObjects(YamlMF, MF, MST);
Alex Lorenzab980492015-07-20 20:51:18 +0000213 if (const auto *ConstantPool = MF.getConstantPool())
214 convert(YamlMF, *ConstantPool);
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000215 if (const auto *JumpTableInfo = MF.getJumpTableInfo())
216 convert(MST, YamlMF.JumpTableInfo, *JumpTableInfo);
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000217 raw_string_ostream StrOS(YamlMF.Body.Value.Value);
218 bool IsNewlineNeeded = false;
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000219 for (const auto &MBB : MF) {
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000220 if (IsNewlineNeeded)
221 StrOS << "\n";
222 MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping)
223 .print(MBB);
224 IsNewlineNeeded = true;
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000225 }
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000226 StrOS.flush();
Alex Lorenz345c1442015-06-15 23:52:35 +0000227 yaml::Output Out(OS);
Vivek Pandya56d87ef2017-06-06 08:16:19 +0000228 if (!SimplifyMIR)
229 Out.setWriteDefaultValues(true);
Alex Lorenz345c1442015-06-15 23:52:35 +0000230 Out << YamlMF;
231}
232
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000233static void printCustomRegMask(const uint32_t *RegMask, raw_ostream &OS,
234 const TargetRegisterInfo *TRI) {
235 assert(RegMask && "Can't print an empty register mask");
236 OS << StringRef("CustomRegMask(");
237
238 bool IsRegInRegMaskFound = false;
239 for (int I = 0, E = TRI->getNumRegs(); I < E; I++) {
240 // Check whether the register is asserted in regmask.
241 if (RegMask[I / 32] & (1u << (I % 32))) {
242 if (IsRegInRegMaskFound)
243 OS << ',';
Francis Visoiu Mistrihc71cced2017-11-30 16:12:24 +0000244 OS << printReg(I, TRI);
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000245 IsRegInRegMaskFound = true;
246 }
247 }
248
249 OS << ')';
250}
251
Justin Bogner6c452832017-10-24 18:04:54 +0000252static void printRegClassOrBank(unsigned Reg, yaml::StringValue &Dest,
253 const MachineRegisterInfo &RegInfo,
254 const TargetRegisterInfo *TRI) {
255 raw_string_ostream OS(Dest.Value);
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000256 OS << printRegClassOrBank(Reg, RegInfo, TRI);
Justin Bogner6c452832017-10-24 18:04:54 +0000257}
258
Francis Visoiu Mistrih57fcd342018-04-25 18:58:06 +0000259template <typename T>
260static void
261printStackObjectDbgInfo(const MachineFunction::VariableDbgInfo &DebugVar,
262 T &Object, ModuleSlotTracker &MST) {
263 std::array<std::string *, 3> Outputs{{&Object.DebugVar.Value,
264 &Object.DebugExpr.Value,
265 &Object.DebugLoc.Value}};
266 std::array<const Metadata *, 3> Metas{{DebugVar.Var,
267 DebugVar.Expr,
268 DebugVar.Loc}};
269 for (unsigned i = 0; i < 3; ++i) {
270 raw_string_ostream StrOS(*Outputs[i]);
271 Metas[i]->printAsOperand(StrOS, MST);
272 }
273}
Justin Bogner6c452832017-10-24 18:04:54 +0000274
Alex Lorenz54565cf2015-06-24 19:56:10 +0000275void MIRPrinter::convert(yaml::MachineFunction &MF,
Alex Lorenz28148ba2015-07-09 22:23:13 +0000276 const MachineRegisterInfo &RegInfo,
277 const TargetRegisterInfo *TRI) {
Alex Lorenz54565cf2015-06-24 19:56:10 +0000278 MF.TracksRegLiveness = RegInfo.tracksLiveness();
Alex Lorenz28148ba2015-07-09 22:23:13 +0000279
280 // Print the virtual register definitions.
281 for (unsigned I = 0, E = RegInfo.getNumVirtRegs(); I < E; ++I) {
282 unsigned Reg = TargetRegisterInfo::index2VirtReg(I);
283 yaml::VirtualRegisterDefinition VReg;
284 VReg.ID = I;
Puyan Lotfi399b46c2018-03-30 18:15:54 +0000285 if (RegInfo.getVRegName(Reg) != "")
286 continue;
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000287 ::printRegClassOrBank(Reg, VReg.Class, RegInfo, TRI);
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000288 unsigned PreferredReg = RegInfo.getSimpleHint(Reg);
289 if (PreferredReg)
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000290 printRegMIR(PreferredReg, VReg.PreferredRegister, TRI);
Alex Lorenz28148ba2015-07-09 22:23:13 +0000291 MF.VirtualRegisters.push_back(VReg);
292 }
Alex Lorenz12045a42015-07-27 17:42:45 +0000293
294 // Print the live ins.
Krzysztof Parzyszek72518ea2017-10-16 19:08:41 +0000295 for (std::pair<unsigned, unsigned> LI : RegInfo.liveins()) {
Alex Lorenz12045a42015-07-27 17:42:45 +0000296 yaml::MachineFunctionLiveIn LiveIn;
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000297 printRegMIR(LI.first, LiveIn.Register, TRI);
Krzysztof Parzyszek72518ea2017-10-16 19:08:41 +0000298 if (LI.second)
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000299 printRegMIR(LI.second, LiveIn.VirtualRegister, TRI);
Alex Lorenz12045a42015-07-27 17:42:45 +0000300 MF.LiveIns.push_back(LiveIn);
301 }
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000302
303 // Prints the callee saved registers.
304 if (RegInfo.isUpdatedCSRsInitialized()) {
305 const MCPhysReg *CalleeSavedRegs = RegInfo.getCalleeSavedRegs();
306 std::vector<yaml::FlowStringValue> CalleeSavedRegisters;
307 for (const MCPhysReg *I = CalleeSavedRegs; *I; ++I) {
Alex Lorenzc4838082015-08-11 00:32:49 +0000308 yaml::FlowStringValue Reg;
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000309 printRegMIR(*I, Reg, TRI);
Alex Lorenzc4838082015-08-11 00:32:49 +0000310 CalleeSavedRegisters.push_back(Reg);
311 }
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000312 MF.CalleeSavedRegisters = CalleeSavedRegisters;
Alex Lorenzc4838082015-08-11 00:32:49 +0000313 }
Alex Lorenz54565cf2015-06-24 19:56:10 +0000314}
315
Alex Lorenza6f9a372015-07-29 21:09:09 +0000316void MIRPrinter::convert(ModuleSlotTracker &MST,
317 yaml::MachineFrameInfo &YamlMFI,
Alex Lorenz60541c12015-07-09 19:55:27 +0000318 const MachineFrameInfo &MFI) {
319 YamlMFI.IsFrameAddressTaken = MFI.isFrameAddressTaken();
320 YamlMFI.IsReturnAddressTaken = MFI.isReturnAddressTaken();
321 YamlMFI.HasStackMap = MFI.hasStackMap();
322 YamlMFI.HasPatchPoint = MFI.hasPatchPoint();
323 YamlMFI.StackSize = MFI.getStackSize();
324 YamlMFI.OffsetAdjustment = MFI.getOffsetAdjustment();
325 YamlMFI.MaxAlignment = MFI.getMaxAlignment();
326 YamlMFI.AdjustsStack = MFI.adjustsStack();
327 YamlMFI.HasCalls = MFI.hasCalls();
Matthias Braunab9438c2017-05-01 22:32:25 +0000328 YamlMFI.MaxCallFrameSize = MFI.isMaxCallFrameSizeComputed()
329 ? MFI.getMaxCallFrameSize() : ~0u;
Alex Lorenz60541c12015-07-09 19:55:27 +0000330 YamlMFI.HasOpaqueSPAdjustment = MFI.hasOpaqueSPAdjustment();
331 YamlMFI.HasVAStart = MFI.hasVAStart();
332 YamlMFI.HasMustTailInVarArgFunc = MFI.hasMustTailInVarArgFunc();
Francis Visoiu Mistrih537d7ee2018-04-06 08:56:25 +0000333 YamlMFI.LocalFrameSize = MFI.getLocalFrameSize();
Alex Lorenza6f9a372015-07-29 21:09:09 +0000334 if (MFI.getSavePoint()) {
335 raw_string_ostream StrOS(YamlMFI.SavePoint.Value);
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000336 StrOS << printMBBReference(*MFI.getSavePoint());
Alex Lorenza6f9a372015-07-29 21:09:09 +0000337 }
338 if (MFI.getRestorePoint()) {
339 raw_string_ostream StrOS(YamlMFI.RestorePoint.Value);
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000340 StrOS << printMBBReference(*MFI.getRestorePoint());
Alex Lorenza6f9a372015-07-29 21:09:09 +0000341 }
Alex Lorenz60541c12015-07-09 19:55:27 +0000342}
343
Matthias Braunef331ef2016-11-30 23:48:50 +0000344void MIRPrinter::convertStackObjects(yaml::MachineFunction &YMF,
345 const MachineFunction &MF,
346 ModuleSlotTracker &MST) {
347 const MachineFrameInfo &MFI = MF.getFrameInfo();
348 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
Alex Lorenzde491f02015-07-13 18:07:26 +0000349 // Process fixed stack objects.
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000350 unsigned ID = 0;
Alex Lorenzde491f02015-07-13 18:07:26 +0000351 for (int I = MFI.getObjectIndexBegin(); I < 0; ++I) {
352 if (MFI.isDeadObjectIndex(I))
353 continue;
354
355 yaml::FixedMachineStackObject YamlObject;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000356 YamlObject.ID = ID;
Alex Lorenzde491f02015-07-13 18:07:26 +0000357 YamlObject.Type = MFI.isSpillSlotObjectIndex(I)
358 ? yaml::FixedMachineStackObject::SpillSlot
359 : yaml::FixedMachineStackObject::DefaultType;
360 YamlObject.Offset = MFI.getObjectOffset(I);
361 YamlObject.Size = MFI.getObjectSize(I);
362 YamlObject.Alignment = MFI.getObjectAlignment(I);
Matt Arsenaultdb782732017-07-20 21:03:45 +0000363 YamlObject.StackID = MFI.getStackID(I);
Alex Lorenzde491f02015-07-13 18:07:26 +0000364 YamlObject.IsImmutable = MFI.isImmutableObjectIndex(I);
365 YamlObject.IsAliased = MFI.isAliasedObjectIndex(I);
Matthias Braunef331ef2016-11-30 23:48:50 +0000366 YMF.FixedStackObjects.push_back(YamlObject);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000367 StackObjectOperandMapping.insert(
368 std::make_pair(I, FrameIndexOperand::createFixed(ID++)));
Alex Lorenzde491f02015-07-13 18:07:26 +0000369 }
370
371 // Process ordinary stack objects.
372 ID = 0;
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000373 for (int I = 0, E = MFI.getObjectIndexEnd(); I < E; ++I) {
374 if (MFI.isDeadObjectIndex(I))
375 continue;
376
377 yaml::MachineStackObject YamlObject;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000378 YamlObject.ID = ID;
Alex Lorenz37643a02015-07-15 22:14:49 +0000379 if (const auto *Alloca = MFI.getObjectAllocation(I))
380 YamlObject.Name.Value =
381 Alloca->hasName() ? Alloca->getName() : "<unnamed alloca>";
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000382 YamlObject.Type = MFI.isSpillSlotObjectIndex(I)
383 ? yaml::MachineStackObject::SpillSlot
Alex Lorenz418f3ec2015-07-14 00:26:26 +0000384 : MFI.isVariableSizedObjectIndex(I)
385 ? yaml::MachineStackObject::VariableSized
386 : yaml::MachineStackObject::DefaultType;
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000387 YamlObject.Offset = MFI.getObjectOffset(I);
388 YamlObject.Size = MFI.getObjectSize(I);
389 YamlObject.Alignment = MFI.getObjectAlignment(I);
Matt Arsenaultdb782732017-07-20 21:03:45 +0000390 YamlObject.StackID = MFI.getStackID(I);
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000391
Matthias Braunef331ef2016-11-30 23:48:50 +0000392 YMF.StackObjects.push_back(YamlObject);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000393 StackObjectOperandMapping.insert(std::make_pair(
394 I, FrameIndexOperand::create(YamlObject.Name.Value, ID++)));
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000395 }
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000396
397 for (const auto &CSInfo : MFI.getCalleeSavedInfo()) {
398 yaml::StringValue Reg;
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000399 printRegMIR(CSInfo.getReg(), Reg, TRI);
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000400 auto StackObjectInfo = StackObjectOperandMapping.find(CSInfo.getFrameIdx());
401 assert(StackObjectInfo != StackObjectOperandMapping.end() &&
402 "Invalid stack object index");
403 const FrameIndexOperand &StackObject = StackObjectInfo->second;
Matthias Braun5c3e8a42017-09-28 18:52:14 +0000404 if (StackObject.IsFixed) {
Matthias Braunef331ef2016-11-30 23:48:50 +0000405 YMF.FixedStackObjects[StackObject.ID].CalleeSavedRegister = Reg;
Matthias Braun5c3e8a42017-09-28 18:52:14 +0000406 YMF.FixedStackObjects[StackObject.ID].CalleeSavedRestored =
407 CSInfo.isRestored();
408 } else {
Matthias Braunef331ef2016-11-30 23:48:50 +0000409 YMF.StackObjects[StackObject.ID].CalleeSavedRegister = Reg;
Matthias Braun5c3e8a42017-09-28 18:52:14 +0000410 YMF.StackObjects[StackObject.ID].CalleeSavedRestored =
411 CSInfo.isRestored();
412 }
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000413 }
Alex Lorenza56ba6a2015-08-17 22:17:42 +0000414 for (unsigned I = 0, E = MFI.getLocalFrameObjectCount(); I < E; ++I) {
415 auto LocalObject = MFI.getLocalFrameObjectMap(I);
416 auto StackObjectInfo = StackObjectOperandMapping.find(LocalObject.first);
417 assert(StackObjectInfo != StackObjectOperandMapping.end() &&
418 "Invalid stack object index");
419 const FrameIndexOperand &StackObject = StackObjectInfo->second;
420 assert(!StackObject.IsFixed && "Expected a locally mapped stack object");
Matthias Braunef331ef2016-11-30 23:48:50 +0000421 YMF.StackObjects[StackObject.ID].LocalOffset = LocalObject.second;
Alex Lorenza56ba6a2015-08-17 22:17:42 +0000422 }
Alex Lorenza314d812015-08-18 22:26:26 +0000423
424 // Print the stack object references in the frame information class after
425 // converting the stack objects.
426 if (MFI.hasStackProtectorIndex()) {
Matthias Braunef331ef2016-11-30 23:48:50 +0000427 raw_string_ostream StrOS(YMF.FrameInfo.StackProtector.Value);
Alex Lorenza314d812015-08-18 22:26:26 +0000428 MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping)
429 .printStackObjectReference(MFI.getStackProtectorIndex());
430 }
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000431
432 // Print the debug variable information.
Matthias Braunef331ef2016-11-30 23:48:50 +0000433 for (const MachineFunction::VariableDbgInfo &DebugVar :
434 MF.getVariableDbgInfo()) {
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000435 auto StackObjectInfo = StackObjectOperandMapping.find(DebugVar.Slot);
436 assert(StackObjectInfo != StackObjectOperandMapping.end() &&
437 "Invalid stack object index");
438 const FrameIndexOperand &StackObject = StackObjectInfo->second;
Francis Visoiu Mistrih57fcd342018-04-25 18:58:06 +0000439 if (StackObject.IsFixed) {
440 auto &Object = YMF.FixedStackObjects[StackObject.ID];
441 printStackObjectDbgInfo(DebugVar, Object, MST);
442 } else {
443 auto &Object = YMF.StackObjects[StackObject.ID];
444 printStackObjectDbgInfo(DebugVar, Object, MST);
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000445 }
446 }
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000447}
448
Alex Lorenzab980492015-07-20 20:51:18 +0000449void MIRPrinter::convert(yaml::MachineFunction &MF,
450 const MachineConstantPool &ConstantPool) {
451 unsigned ID = 0;
452 for (const MachineConstantPoolEntry &Constant : ConstantPool.getConstants()) {
Alex Lorenzab980492015-07-20 20:51:18 +0000453 std::string Str;
454 raw_string_ostream StrOS(Str);
Diana Picusd5a00b02017-08-02 11:09:30 +0000455 if (Constant.isMachineConstantPoolEntry()) {
456 Constant.Val.MachineCPVal->print(StrOS);
457 } else {
458 Constant.Val.ConstVal->printAsOperand(StrOS);
459 }
460
461 yaml::MachineConstantPoolValue YamlConstant;
Alex Lorenzab980492015-07-20 20:51:18 +0000462 YamlConstant.ID = ID++;
463 YamlConstant.Value = StrOS.str();
464 YamlConstant.Alignment = Constant.getAlignment();
Diana Picusd5a00b02017-08-02 11:09:30 +0000465 YamlConstant.IsTargetSpecific = Constant.isMachineConstantPoolEntry();
466
Alex Lorenzab980492015-07-20 20:51:18 +0000467 MF.Constants.push_back(YamlConstant);
468 }
469}
470
Alex Lorenz900b5cb2015-07-07 23:27:53 +0000471void MIRPrinter::convert(ModuleSlotTracker &MST,
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000472 yaml::MachineJumpTable &YamlJTI,
473 const MachineJumpTableInfo &JTI) {
474 YamlJTI.Kind = JTI.getEntryKind();
475 unsigned ID = 0;
476 for (const auto &Table : JTI.getJumpTables()) {
477 std::string Str;
478 yaml::MachineJumpTable::Entry Entry;
479 Entry.ID = ID++;
480 for (const auto *MBB : Table.MBBs) {
481 raw_string_ostream StrOS(Str);
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000482 StrOS << printMBBReference(*MBB);
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000483 Entry.Blocks.push_back(StrOS.str());
484 Str.clear();
485 }
486 YamlJTI.Entries.push_back(Entry);
487 }
488}
489
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000490void MIRPrinter::initRegisterMaskIds(const MachineFunction &MF) {
491 const auto *TRI = MF.getSubtarget().getRegisterInfo();
492 unsigned I = 0;
493 for (const uint32_t *Mask : TRI->getRegMasks())
494 RegisterMaskIds.insert(std::make_pair(Mask, I++));
495}
496
Matthias Braun89401142017-05-05 21:09:30 +0000497void llvm::guessSuccessors(const MachineBasicBlock &MBB,
498 SmallVectorImpl<MachineBasicBlock*> &Result,
499 bool &IsFallthrough) {
500 SmallPtrSet<MachineBasicBlock*,8> Seen;
501
502 for (const MachineInstr &MI : MBB) {
503 if (MI.isPHI())
504 continue;
505 for (const MachineOperand &MO : MI.operands()) {
506 if (!MO.isMBB())
507 continue;
508 MachineBasicBlock *Succ = MO.getMBB();
509 auto RP = Seen.insert(Succ);
510 if (RP.second)
511 Result.push_back(Succ);
512 }
513 }
514 MachineBasicBlock::const_iterator I = MBB.getLastNonDebugInstr();
515 IsFallthrough = I == MBB.end() || !I->isBarrier();
516}
517
518bool
519MIPrinter::canPredictBranchProbabilities(const MachineBasicBlock &MBB) const {
520 if (MBB.succ_size() <= 1)
521 return true;
522 if (!MBB.hasSuccessorProbabilities())
523 return true;
524
525 SmallVector<BranchProbability,8> Normalized(MBB.Probs.begin(),
526 MBB.Probs.end());
527 BranchProbability::normalizeProbabilities(Normalized.begin(),
528 Normalized.end());
529 SmallVector<BranchProbability,8> Equal(Normalized.size());
530 BranchProbability::normalizeProbabilities(Equal.begin(), Equal.end());
531
532 return std::equal(Normalized.begin(), Normalized.end(), Equal.begin());
533}
534
535bool MIPrinter::canPredictSuccessors(const MachineBasicBlock &MBB) const {
536 SmallVector<MachineBasicBlock*,8> GuessedSuccs;
537 bool GuessedFallthrough;
538 guessSuccessors(MBB, GuessedSuccs, GuessedFallthrough);
539 if (GuessedFallthrough) {
540 const MachineFunction &MF = *MBB.getParent();
541 MachineFunction::const_iterator NextI = std::next(MBB.getIterator());
542 if (NextI != MF.end()) {
543 MachineBasicBlock *Next = const_cast<MachineBasicBlock*>(&*NextI);
544 if (!is_contained(GuessedSuccs, Next))
545 GuessedSuccs.push_back(Next);
546 }
547 }
548 if (GuessedSuccs.size() != MBB.succ_size())
549 return false;
550 return std::equal(MBB.succ_begin(), MBB.succ_end(), GuessedSuccs.begin());
551}
552
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000553void MIPrinter::print(const MachineBasicBlock &MBB) {
554 assert(MBB.getNumber() >= 0 && "Invalid MBB number");
555 OS << "bb." << MBB.getNumber();
556 bool HasAttributes = false;
557 if (const auto *BB = MBB.getBasicBlock()) {
558 if (BB->hasName()) {
559 OS << "." << BB->getName();
560 } else {
561 HasAttributes = true;
562 OS << " (";
563 int Slot = MST.getLocalSlot(BB);
564 if (Slot == -1)
565 OS << "<ir-block badref>";
566 else
567 OS << (Twine("%ir-block.") + Twine(Slot)).str();
568 }
569 }
570 if (MBB.hasAddressTaken()) {
571 OS << (HasAttributes ? ", " : " (");
572 OS << "address-taken";
573 HasAttributes = true;
574 }
Reid Kleckner0e288232015-08-27 23:27:47 +0000575 if (MBB.isEHPad()) {
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000576 OS << (HasAttributes ? ", " : " (");
577 OS << "landing-pad";
578 HasAttributes = true;
579 }
580 if (MBB.getAlignment()) {
581 OS << (HasAttributes ? ", " : " (");
582 OS << "align " << MBB.getAlignment();
583 HasAttributes = true;
584 }
585 if (HasAttributes)
586 OS << ")";
587 OS << ":\n";
588
589 bool HasLineAttributes = false;
590 // Print the successors
Matthias Braun89401142017-05-05 21:09:30 +0000591 bool canPredictProbs = canPredictBranchProbabilities(MBB);
Quentin Colombetd652aeb2017-09-19 23:34:12 +0000592 // Even if the list of successors is empty, if we cannot guess it,
593 // we need to print it to tell the parser that the list is empty.
594 // This is needed, because MI model unreachable as empty blocks
595 // with an empty successor list. If the parser would see that
596 // without the successor list, it would guess the code would
597 // fallthrough.
598 if ((!MBB.succ_empty() && !SimplifyMIR) || !canPredictProbs ||
599 !canPredictSuccessors(MBB)) {
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000600 OS.indent(2) << "successors: ";
601 for (auto I = MBB.succ_begin(), E = MBB.succ_end(); I != E; ++I) {
602 if (I != MBB.succ_begin())
603 OS << ", ";
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000604 OS << printMBBReference(**I);
Matthias Braun89401142017-05-05 21:09:30 +0000605 if (!SimplifyMIR || !canPredictProbs)
Geoff Berryb51774a2016-11-18 19:37:24 +0000606 OS << '('
607 << format("0x%08" PRIx32, MBB.getSuccProbability(I).getNumerator())
608 << ')';
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000609 }
610 OS << "\n";
611 HasLineAttributes = true;
612 }
613
614 // Print the live in registers.
Matthias Braun11723322017-01-05 20:01:19 +0000615 const MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
616 if (MRI.tracksLiveness() && !MBB.livein_empty()) {
617 const TargetRegisterInfo &TRI = *MRI.getTargetRegisterInfo();
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000618 OS.indent(2) << "liveins: ";
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000619 bool First = true;
Matthias Braund9da1622015-09-09 18:08:03 +0000620 for (const auto &LI : MBB.liveins()) {
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000621 if (!First)
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000622 OS << ", ";
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000623 First = false;
Francis Visoiu Mistrihc71cced2017-11-30 16:12:24 +0000624 OS << printReg(LI.PhysReg, &TRI);
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +0000625 if (!LI.LaneMask.all())
Krzysztof Parzyszekd62669d2016-10-12 21:06:45 +0000626 OS << ":0x" << PrintLaneMask(LI.LaneMask);
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000627 }
628 OS << "\n";
629 HasLineAttributes = true;
630 }
631
632 if (HasLineAttributes)
633 OS << "\n";
Alex Lorenzf9a2b122015-08-14 18:57:24 +0000634 bool IsInBundle = false;
635 for (auto I = MBB.instr_begin(), E = MBB.instr_end(); I != E; ++I) {
636 const MachineInstr &MI = *I;
637 if (IsInBundle && !MI.isInsideBundle()) {
638 OS.indent(2) << "}\n";
639 IsInBundle = false;
640 }
641 OS.indent(IsInBundle ? 4 : 2);
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000642 print(MI);
Alex Lorenzf9a2b122015-08-14 18:57:24 +0000643 if (!IsInBundle && MI.getFlag(MachineInstr::BundledSucc)) {
644 OS << " {";
645 IsInBundle = true;
646 }
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000647 OS << "\n";
648 }
Alex Lorenzf9a2b122015-08-14 18:57:24 +0000649 if (IsInBundle)
650 OS.indent(2) << "}\n";
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000651}
652
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000653void MIPrinter::print(const MachineInstr &MI) {
Justin Bognerfdf9bf42017-10-10 23:50:49 +0000654 const auto *MF = MI.getMF();
Quentin Colombet4e14a492016-03-07 21:57:52 +0000655 const auto &MRI = MF->getRegInfo();
656 const auto &SubTarget = MF->getSubtarget();
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000657 const auto *TRI = SubTarget.getRegisterInfo();
658 assert(TRI && "Expected target register info");
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000659 const auto *TII = SubTarget.getInstrInfo();
660 assert(TII && "Expected target instruction info");
Alex Lorenzf4baeb52015-07-21 22:28:27 +0000661 if (MI.isCFIInstruction())
662 assert(MI.getNumOperands() == 1 && "Expected 1 operand in CFI instruction");
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000663
Tim Northoverd28d3cc2016-09-12 11:20:10 +0000664 SmallBitVector PrintedTypes(8);
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000665 bool ShouldPrintRegisterTies = MI.hasComplexRegisterTies();
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000666 unsigned I = 0, E = MI.getNumOperands();
667 for (; I < E && MI.getOperand(I).isReg() && MI.getOperand(I).isDef() &&
668 !MI.getOperand(I).isImplicit();
669 ++I) {
670 if (I)
671 OS << ", ";
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000672 print(MI, I, TRI, ShouldPrintRegisterTies,
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000673 MI.getTypeToPrint(I, PrintedTypes, MRI),
674 /*PrintDef=*/false);
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000675 }
676
677 if (I)
678 OS << " = ";
Alex Lorenze5a44662015-07-17 00:24:15 +0000679 if (MI.getFlag(MachineInstr::FrameSetup))
680 OS << "frame-setup ";
Francis Visoiu Mistrih3abf05732018-03-13 19:53:16 +0000681 if (MI.getFlag(MachineInstr::FrameDestroy))
Francis Visoiu Mistrihdbf2c482018-01-09 11:33:22 +0000682 OS << "frame-destroy ";
683
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000684 OS << TII->getName(MI.getOpcode());
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000685 if (I < E)
686 OS << ' ';
687
688 bool NeedComma = false;
689 for (; I < E; ++I) {
690 if (NeedComma)
691 OS << ", ";
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000692 print(MI, I, TRI, ShouldPrintRegisterTies,
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000693 MI.getTypeToPrint(I, PrintedTypes, MRI));
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000694 NeedComma = true;
695 }
Alex Lorenz46d760d2015-07-22 21:15:11 +0000696
Francis Visoiu Mistrih548add92018-01-19 11:44:42 +0000697 if (const DebugLoc &DL = MI.getDebugLoc()) {
Alex Lorenz46d760d2015-07-22 21:15:11 +0000698 if (NeedComma)
699 OS << ',';
700 OS << " debug-location ";
Francis Visoiu Mistrih548add92018-01-19 11:44:42 +0000701 DL->printAsOperand(OS, MST);
Alex Lorenz46d760d2015-07-22 21:15:11 +0000702 }
Alex Lorenz4af7e612015-08-03 23:08:19 +0000703
704 if (!MI.memoperands_empty()) {
705 OS << " :: ";
Matthias Braunf1caa282017-12-15 22:22:58 +0000706 const LLVMContext &Context = MF->getFunction().getContext();
Francis Visoiu Mistrihe85b06d2018-03-14 21:52:13 +0000707 const MachineFrameInfo &MFI = MF->getFrameInfo();
Alex Lorenz4af7e612015-08-03 23:08:19 +0000708 bool NeedComma = false;
709 for (const auto *Op : MI.memoperands()) {
710 if (NeedComma)
711 OS << ", ";
Francis Visoiu Mistrihe85b06d2018-03-14 21:52:13 +0000712 Op->print(OS, MST, SSNs, Context, &MFI, TII);
Alex Lorenz4af7e612015-08-03 23:08:19 +0000713 NeedComma = true;
714 }
715 }
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000716}
717
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000718void MIPrinter::printStackObjectReference(int FrameIndex) {
719 auto ObjectInfo = StackObjectOperandMapping.find(FrameIndex);
720 assert(ObjectInfo != StackObjectOperandMapping.end() &&
721 "Invalid frame index");
722 const FrameIndexOperand &Operand = ObjectInfo->second;
Francis Visoiu Mistrih0b5bdce2017-12-15 16:33:45 +0000723 MachineOperand::printStackObjectReference(OS, Operand.ID, Operand.IsFixed,
724 Operand.Name);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000725}
726
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000727void MIPrinter::print(const MachineInstr &MI, unsigned OpIdx,
728 const TargetRegisterInfo *TRI,
729 bool ShouldPrintRegisterTies, LLT TypeToPrint,
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000730 bool PrintDef) {
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000731 const MachineOperand &Op = MI.getOperand(OpIdx);
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000732 switch (Op.getType()) {
Francis Visoiu Mistrih440f69c2017-12-08 22:53:21 +0000733 case MachineOperand::MO_Immediate:
734 if (MI.isOperandSubregIdx(OpIdx)) {
Francis Visoiu Mistrih5df3bbf2017-12-14 10:03:09 +0000735 MachineOperand::printTargetFlags(OS, Op);
Francis Visoiu Mistrihecd0b832018-01-16 10:53:11 +0000736 MachineOperand::printSubRegIdx(OS, Op.getImm(), TRI);
Francis Visoiu Mistrih440f69c2017-12-08 22:53:21 +0000737 break;
738 }
739 LLVM_FALLTHROUGH;
Francis Visoiu Mistrih6c4ca712017-12-08 11:40:06 +0000740 case MachineOperand::MO_Register:
Francis Visoiu Mistrihf4bd2952017-12-08 11:48:02 +0000741 case MachineOperand::MO_CImmediate:
Francis Visoiu Mistrih3b265c82017-12-19 21:47:00 +0000742 case MachineOperand::MO_FPImmediate:
Francis Visoiu Mistrih26ae8a62017-12-13 10:30:45 +0000743 case MachineOperand::MO_MachineBasicBlock:
Francis Visoiu Mistrihb3a0d512017-12-13 10:30:51 +0000744 case MachineOperand::MO_ConstantPoolIndex:
Francis Visoiu Mistrihb41dbbe2017-12-13 10:30:59 +0000745 case MachineOperand::MO_TargetIndex:
Francis Visoiu Mistrihe76c5fc2017-12-14 10:02:58 +0000746 case MachineOperand::MO_JumpTableIndex:
Francis Visoiu Mistrih5df3bbf2017-12-14 10:03:09 +0000747 case MachineOperand::MO_ExternalSymbol:
Francis Visoiu Mistrihbdaf8bf2017-12-14 10:03:14 +0000748 case MachineOperand::MO_GlobalAddress:
Francis Visoiu Mistrih2db59382017-12-14 10:03:18 +0000749 case MachineOperand::MO_RegisterLiveOut:
Francis Visoiu Mistrih3c993712017-12-14 10:03:23 +0000750 case MachineOperand::MO_Metadata:
Francis Visoiu Mistrih874ae6f2017-12-19 16:51:52 +0000751 case MachineOperand::MO_MCSymbol:
Francis Visoiu Mistrihbbd610a2017-12-19 21:47:05 +0000752 case MachineOperand::MO_CFIIndex:
Francis Visoiu Mistrihcb2683d2017-12-19 21:47:10 +0000753 case MachineOperand::MO_IntrinsicID:
Francis Visoiu Mistrihf81727d2017-12-19 21:47:14 +0000754 case MachineOperand::MO_Predicate:
755 case MachineOperand::MO_BlockAddress: {
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000756 unsigned TiedOperandIdx = 0;
Francis Visoiu Mistrih440f69c2017-12-08 22:53:21 +0000757 if (ShouldPrintRegisterTies && Op.isReg() && Op.isTied() && !Op.isDef())
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000758 TiedOperandIdx = Op.getParent()->findTiedOperandIdx(OpIdx);
759 const TargetIntrinsicInfo *TII = MI.getMF()->getTarget().getIntrinsicInfo();
Francis Visoiu Mistriheb3f76f2018-01-18 18:05:15 +0000760 Op.print(OS, MST, TypeToPrint, PrintDef, /*IsStandalone=*/false,
Francis Visoiu Mistrih378b5f32018-01-18 17:59:06 +0000761 ShouldPrintRegisterTies, TiedOperandIdx, TRI, TII);
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000762 break;
Justin Bogner6c452832017-10-24 18:04:54 +0000763 }
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000764 case MachineOperand::MO_FrameIndex:
765 printStackObjectReference(Op.getIndex());
766 break;
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000767 case MachineOperand::MO_RegisterMask: {
768 auto RegMaskInfo = RegisterMaskIds.find(Op.getRegMask());
769 if (RegMaskInfo != RegisterMaskIds.end())
770 OS << StringRef(TRI->getRegMaskNames()[RegMaskInfo->second]).lower();
771 else
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000772 printCustomRegMask(Op.getRegMask(), OS, TRI);
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000773 break;
774 }
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000775 }
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000776}
777
Alex Lorenz345c1442015-06-15 23:52:35 +0000778void llvm::printMIR(raw_ostream &OS, const Module &M) {
779 yaml::Output Out(OS);
780 Out << const_cast<Module &>(M);
781}
782
783void llvm::printMIR(raw_ostream &OS, const MachineFunction &MF) {
784 MIRPrinter Printer(OS);
785 Printer.print(MF);
786}