blob: d9dcc428943f19cb1a93cce21fd3979cf59543fe [file] [log] [blame]
Alex Lorenzb3607cd2015-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 Blaikie48319232017-11-08 01:01:31 +000015#include "llvm/CodeGen/MIRPrinter.h"
Eugene Zelenkoe74c4362017-06-06 22:22:41 +000016#include "llvm/ADT/DenseMap.h"
17#include "llvm/ADT/None.h"
David Blaikie48319232017-11-08 01:01:31 +000018#include "llvm/ADT/STLExtras.h"
Tim Northover7a92e732016-09-12 11:20:10 +000019#include "llvm/ADT/SmallBitVector.h"
Eugene Zelenkoe74c4362017-06-06 22:22:41 +000020#include "llvm/ADT/SmallPtrSet.h"
21#include "llvm/ADT/SmallVector.h"
Eugene Zelenkoe74c4362017-06-06 22:22:41 +000022#include "llvm/ADT/StringRef.h"
23#include "llvm/ADT/Twine.h"
Quentin Colombetb2469692016-04-08 16:26:22 +000024#include "llvm/CodeGen/GlobalISel/RegisterBank.h"
David Blaikie48319232017-11-08 01:01:31 +000025#include "llvm/CodeGen/MIRYamlMapping.h"
Eugene Zelenkoe74c4362017-06-06 22:22:41 +000026#include "llvm/CodeGen/MachineBasicBlock.h"
Alex Lorenz0e4484f2015-07-20 20:51:18 +000027#include "llvm/CodeGen/MachineConstantPool.h"
Alex Lorenz7c6ad332015-07-09 19:55:27 +000028#include "llvm/CodeGen/MachineFrameInfo.h"
Quentin Colombetb2469692016-04-08 16:26:22 +000029#include "llvm/CodeGen/MachineFunction.h"
Eugene Zelenkoe74c4362017-06-06 22:22:41 +000030#include "llvm/CodeGen/MachineInstr.h"
31#include "llvm/CodeGen/MachineJumpTableInfo.h"
Alex Lorenz3db44ce2015-08-03 23:08:19 +000032#include "llvm/CodeGen/MachineMemOperand.h"
Eugene Zelenkoe74c4362017-06-06 22:22:41 +000033#include "llvm/CodeGen/MachineOperand.h"
Alex Lorenzc9a4f3d2015-06-24 19:56:10 +000034#include "llvm/CodeGen/MachineRegisterInfo.h"
Eugene Zelenkoe74c4362017-06-06 22:22:41 +000035#include "llvm/CodeGen/PseudoSourceValue.h"
David Blaikie48319232017-11-08 01:01:31 +000036#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikiee3a9b4c2017-11-17 01:07:10 +000037#include "llvm/CodeGen/TargetRegisterInfo.h"
38#include "llvm/CodeGen/TargetSubtargetInfo.h"
Alex Lorenz26036642015-06-19 17:43:07 +000039#include "llvm/IR/BasicBlock.h"
Alex Lorenz6d0376c2015-07-28 17:28:03 +000040#include "llvm/IR/Constants.h"
Reid Kleckner13fb5a32016-04-14 18:29:59 +000041#include "llvm/IR/DebugInfo.h"
Eugene Zelenkoe74c4362017-06-06 22:22:41 +000042#include "llvm/IR/DebugLoc.h"
43#include "llvm/IR/Function.h"
44#include "llvm/IR/GlobalValue.h"
David Blaikie48319232017-11-08 01:01:31 +000045#include "llvm/IR/IRPrintingPasses.h"
Eugene Zelenkoe74c4362017-06-06 22:22:41 +000046#include "llvm/IR/InstrTypes.h"
Quentin Colombetb2469692016-04-08 16:26:22 +000047#include "llvm/IR/Instructions.h"
Tim Northover9c9955b2016-07-29 20:32:59 +000048#include "llvm/IR/Intrinsics.h"
Alex Lorenzb3607cd2015-06-15 23:52:35 +000049#include "llvm/IR/Module.h"
Alex Lorenzaa0d6db2015-07-07 23:27:53 +000050#include "llvm/IR/ModuleSlotTracker.h"
Eugene Zelenkoe74c4362017-06-06 22:22:41 +000051#include "llvm/IR/Value.h"
52#include "llvm/MC/LaneBitmask.h"
Chandler Carruthe90d4402018-08-16 23:11:05 +000053#include "llvm/MC/MCContext.h"
Eugene Zelenkoe74c4362017-06-06 22:22:41 +000054#include "llvm/MC/MCDwarf.h"
Alex Lorenz62b84e22015-08-21 21:12:44 +000055#include "llvm/MC/MCSymbol.h"
Eugene Zelenkoe74c4362017-06-06 22:22:41 +000056#include "llvm/Support/AtomicOrdering.h"
57#include "llvm/Support/BranchProbability.h"
58#include "llvm/Support/Casting.h"
59#include "llvm/Support/CommandLine.h"
60#include "llvm/Support/ErrorHandling.h"
Geoff Berry181c24a2016-11-18 19:37:24 +000061#include "llvm/Support/Format.h"
Eugene Zelenkoe74c4362017-06-06 22:22:41 +000062#include "llvm/Support/LowLevelTypeImpl.h"
Eugene Zelenkoe74c4362017-06-06 22:22:41 +000063#include "llvm/Support/YAMLTraits.h"
David Blaikie48319232017-11-08 01:01:31 +000064#include "llvm/Support/raw_ostream.h"
Tim Northover9c9955b2016-07-29 20:32:59 +000065#include "llvm/Target/TargetIntrinsicInfo.h"
Eugene Zelenkoe74c4362017-06-06 22:22:41 +000066#include "llvm/Target/TargetMachine.h"
Eugene Zelenkoe74c4362017-06-06 22:22:41 +000067#include <algorithm>
68#include <cassert>
69#include <cinttypes>
70#include <cstdint>
71#include <iterator>
72#include <string>
73#include <utility>
74#include <vector>
Alex Lorenzb3607cd2015-06-15 23:52:35 +000075
76using namespace llvm;
77
Zachary Turner9a4e15c2017-12-01 00:53:10 +000078static cl::opt<bool> SimplifyMIR(
79 "simplify-mir", cl::Hidden,
Matthias Braun0cb25a22017-05-05 21:09:30 +000080 cl::desc("Leave out unnecessary information when printing MIR"));
81
Alex Lorenzb3607cd2015-06-15 23:52:35 +000082namespace {
83
Alex Lorenzed2032f2015-07-16 23:37:45 +000084/// This structure describes how to print out stack object references.
85struct FrameIndexOperand {
86 std::string Name;
87 unsigned ID;
88 bool IsFixed;
89
90 FrameIndexOperand(StringRef Name, unsigned ID, bool IsFixed)
91 : Name(Name.str()), ID(ID), IsFixed(IsFixed) {}
92
93 /// Return an ordinary stack object reference.
94 static FrameIndexOperand create(StringRef Name, unsigned ID) {
95 return FrameIndexOperand(Name, ID, /*IsFixed=*/false);
96 }
97
98 /// Return a fixed stack object reference.
99 static FrameIndexOperand createFixed(unsigned ID) {
100 return FrameIndexOperand("", ID, /*IsFixed=*/true);
101 }
102};
103
Alex Lorenzfbd94792015-07-30 16:54:38 +0000104} // end anonymous namespace
105
106namespace llvm {
107
Alex Lorenzb3607cd2015-06-15 23:52:35 +0000108/// This class prints out the machine functions using the MIR serialization
109/// format.
110class MIRPrinter {
111 raw_ostream &OS;
Alex Lorenz1a4def32015-06-29 16:57:06 +0000112 DenseMap<const uint32_t *, unsigned> RegisterMaskIds;
Alex Lorenzed2032f2015-07-16 23:37:45 +0000113 /// Maps from stack object indices to operand indices which will be used when
114 /// printing frame index machine operands.
115 DenseMap<int, FrameIndexOperand> StackObjectOperandMapping;
Alex Lorenzb3607cd2015-06-15 23:52:35 +0000116
117public:
118 MIRPrinter(raw_ostream &OS) : OS(OS) {}
119
120 void print(const MachineFunction &MF);
Alex Lorenz26036642015-06-19 17:43:07 +0000121
Alex Lorenzad6702e2015-07-09 22:23:13 +0000122 void convert(yaml::MachineFunction &MF, const MachineRegisterInfo &RegInfo,
123 const TargetRegisterInfo *TRI);
Alex Lorenz81474d32015-07-29 21:09:09 +0000124 void convert(ModuleSlotTracker &MST, yaml::MachineFrameInfo &YamlMFI,
125 const MachineFrameInfo &MFI);
Alex Lorenz0e4484f2015-07-20 20:51:18 +0000126 void convert(yaml::MachineFunction &MF,
127 const MachineConstantPool &ConstantPool);
Alex Lorenz81bef8c2015-07-15 23:31:07 +0000128 void convert(ModuleSlotTracker &MST, yaml::MachineJumpTable &YamlJTI,
129 const MachineJumpTableInfo &JTI);
Matthias Braun40485c22016-11-30 23:48:50 +0000130 void convertStackObjects(yaml::MachineFunction &YMF,
131 const MachineFunction &MF, ModuleSlotTracker &MST);
Alex Lorenz1a4def32015-06-29 16:57:06 +0000132
133private:
134 void initRegisterMaskIds(const MachineFunction &MF);
Alex Lorenzb3607cd2015-06-15 23:52:35 +0000135};
136
Alex Lorenz2f801fa2015-06-22 17:02:30 +0000137/// This class prints out the machine instructions using the MIR serialization
138/// format.
139class MIPrinter {
140 raw_ostream &OS;
Alex Lorenzaa0d6db2015-07-07 23:27:53 +0000141 ModuleSlotTracker &MST;
Alex Lorenz1a4def32015-06-29 16:57:06 +0000142 const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds;
Alex Lorenzed2032f2015-07-16 23:37:45 +0000143 const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping;
Konstantin Zhuravlyov8f856852017-07-11 22:23:00 +0000144 /// Synchronization scope names registered with LLVMContext.
145 SmallVector<StringRef, 8> SSNs;
Alex Lorenz2f801fa2015-06-22 17:02:30 +0000146
Matthias Braun0cb25a22017-05-05 21:09:30 +0000147 bool canPredictBranchProbabilities(const MachineBasicBlock &MBB) const;
148 bool canPredictSuccessors(const MachineBasicBlock &MBB) const;
149
Alex Lorenz2f801fa2015-06-22 17:02:30 +0000150public:
Alex Lorenzaa0d6db2015-07-07 23:27:53 +0000151 MIPrinter(raw_ostream &OS, ModuleSlotTracker &MST,
Alex Lorenzed2032f2015-07-16 23:37:45 +0000152 const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds,
153 const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping)
154 : OS(OS), MST(MST), RegisterMaskIds(RegisterMaskIds),
155 StackObjectOperandMapping(StackObjectOperandMapping) {}
Alex Lorenz2f801fa2015-06-22 17:02:30 +0000156
Alex Lorenz5d09c2f2015-08-13 23:10:16 +0000157 void print(const MachineBasicBlock &MBB);
158
Alex Lorenz2f801fa2015-06-22 17:02:30 +0000159 void print(const MachineInstr &MI);
Alex Lorenzed2032f2015-07-16 23:37:45 +0000160 void printStackObjectReference(int FrameIndex);
Bjorn Pettersson4cbab702017-11-06 21:46:06 +0000161 void print(const MachineInstr &MI, unsigned OpIdx,
162 const TargetRegisterInfo *TRI, bool ShouldPrintRegisterTies,
Francis Visoiu Mistrihfd11bc02017-12-07 10:40:31 +0000163 LLT TypeToPrint, bool PrintDef = true);
Alex Lorenz2f801fa2015-06-22 17:02:30 +0000164};
165
Alex Lorenz5d09c2f2015-08-13 23:10:16 +0000166} // end namespace llvm
Alex Lorenzb3607cd2015-06-15 23:52:35 +0000167
168namespace llvm {
169namespace yaml {
170
171/// This struct serializes the LLVM IR module.
172template <> struct BlockScalarTraits<Module> {
173 static void output(const Module &Mod, void *Ctxt, raw_ostream &OS) {
174 Mod.print(OS, nullptr);
175 }
Eugene Zelenkoe74c4362017-06-06 22:22:41 +0000176
Alex Lorenzb3607cd2015-06-15 23:52:35 +0000177 static StringRef input(StringRef Str, void *Ctxt, Module &Mod) {
178 llvm_unreachable("LLVM Module is supposed to be parsed separately");
179 return "";
180 }
181};
182
183} // end namespace yaml
184} // end namespace llvm
185
Francis Visoiu Mistrihaccb3372017-11-28 12:42:37 +0000186static void printRegMIR(unsigned Reg, yaml::StringValue &Dest,
187 const TargetRegisterInfo *TRI) {
Alex Lorenzdfe0e532015-07-24 20:35:40 +0000188 raw_string_ostream OS(Dest.Value);
Francis Visoiu Mistrihe6b89912017-11-30 16:12:24 +0000189 OS << printReg(Reg, TRI);
Alex Lorenzdfe0e532015-07-24 20:35:40 +0000190}
191
Alex Lorenzb3607cd2015-06-15 23:52:35 +0000192void MIRPrinter::print(const MachineFunction &MF) {
Alex Lorenz1a4def32015-06-29 16:57:06 +0000193 initRegisterMaskIds(MF);
194
Alex Lorenzb3607cd2015-06-15 23:52:35 +0000195 yaml::MachineFunction YamlMF;
196 YamlMF.Name = MF.getName();
Alex Lorenz00b64132015-06-16 00:10:47 +0000197 YamlMF.Alignment = MF.getAlignment();
198 YamlMF.ExposesReturnsTwice = MF.exposesReturnsTwice();
Sanjin Sijaricb8895a82018-10-24 21:07:38 +0000199 YamlMF.HasWinCFI = MF.hasWinCFI();
Derek Schufffadd1132016-03-28 17:05:30 +0000200
Ahmed Bougacha46fe4272016-08-02 15:10:25 +0000201 YamlMF.Legalized = MF.getProperties().hasProperty(
202 MachineFunctionProperties::Property::Legalized);
Ahmed Bougacha31c3e4f2016-08-02 16:17:10 +0000203 YamlMF.RegBankSelected = MF.getProperties().hasProperty(
204 MachineFunctionProperties::Property::RegBankSelected);
Ahmed Bougachafc114db2016-08-02 16:49:19 +0000205 YamlMF.Selected = MF.getProperties().hasProperty(
206 MachineFunctionProperties::Property::Selected);
Roman Tereshin8e63a832018-02-28 17:55:45 +0000207 YamlMF.FailedISel = MF.getProperties().hasProperty(
208 MachineFunctionProperties::Property::FailedISel);
Ahmed Bougacha46fe4272016-08-02 15:10:25 +0000209
Alex Lorenzad6702e2015-07-09 22:23:13 +0000210 convert(YamlMF, MF.getRegInfo(), MF.getSubtarget().getRegisterInfo());
Matthias Braund3181392017-12-15 22:22:58 +0000211 ModuleSlotTracker MST(MF.getFunction().getParent());
212 MST.incorporateFunction(MF.getFunction());
Matthias Braunf79c57a2016-07-28 18:40:00 +0000213 convert(MST, YamlMF.FrameInfo, MF.getFrameInfo());
Matthias Braun40485c22016-11-30 23:48:50 +0000214 convertStackObjects(YamlMF, MF, MST);
Alex Lorenz0e4484f2015-07-20 20:51:18 +0000215 if (const auto *ConstantPool = MF.getConstantPool())
216 convert(YamlMF, *ConstantPool);
Alex Lorenz81bef8c2015-07-15 23:31:07 +0000217 if (const auto *JumpTableInfo = MF.getJumpTableInfo())
218 convert(MST, YamlMF.JumpTableInfo, *JumpTableInfo);
Alex Lorenz5d09c2f2015-08-13 23:10:16 +0000219 raw_string_ostream StrOS(YamlMF.Body.Value.Value);
220 bool IsNewlineNeeded = false;
Alex Lorenz26036642015-06-19 17:43:07 +0000221 for (const auto &MBB : MF) {
Alex Lorenz5d09c2f2015-08-13 23:10:16 +0000222 if (IsNewlineNeeded)
223 StrOS << "\n";
224 MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping)
225 .print(MBB);
226 IsNewlineNeeded = true;
Alex Lorenz26036642015-06-19 17:43:07 +0000227 }
Alex Lorenz5d09c2f2015-08-13 23:10:16 +0000228 StrOS.flush();
Alex Lorenzb3607cd2015-06-15 23:52:35 +0000229 yaml::Output Out(OS);
Vivek Pandyade227822017-06-06 08:16:19 +0000230 if (!SimplifyMIR)
231 Out.setWriteDefaultValues(true);
Alex Lorenzb3607cd2015-06-15 23:52:35 +0000232 Out << YamlMF;
233}
234
Oren Ben Simhon05383db2017-03-19 08:14:18 +0000235static void printCustomRegMask(const uint32_t *RegMask, raw_ostream &OS,
236 const TargetRegisterInfo *TRI) {
237 assert(RegMask && "Can't print an empty register mask");
238 OS << StringRef("CustomRegMask(");
239
240 bool IsRegInRegMaskFound = false;
241 for (int I = 0, E = TRI->getNumRegs(); I < E; I++) {
242 // Check whether the register is asserted in regmask.
243 if (RegMask[I / 32] & (1u << (I % 32))) {
244 if (IsRegInRegMaskFound)
245 OS << ',';
Francis Visoiu Mistrihe6b89912017-11-30 16:12:24 +0000246 OS << printReg(I, TRI);
Oren Ben Simhon05383db2017-03-19 08:14:18 +0000247 IsRegInRegMaskFound = true;
248 }
249 }
250
251 OS << ')';
252}
253
Justin Bogneredab7572017-10-24 18:04:54 +0000254static void printRegClassOrBank(unsigned Reg, yaml::StringValue &Dest,
255 const MachineRegisterInfo &RegInfo,
256 const TargetRegisterInfo *TRI) {
257 raw_string_ostream OS(Dest.Value);
Francis Visoiu Mistrihfd11bc02017-12-07 10:40:31 +0000258 OS << printRegClassOrBank(Reg, RegInfo, TRI);
Justin Bogneredab7572017-10-24 18:04:54 +0000259}
260
Francis Visoiu Mistrihbea0f242018-04-25 18:58:06 +0000261template <typename T>
262static void
263printStackObjectDbgInfo(const MachineFunction::VariableDbgInfo &DebugVar,
264 T &Object, ModuleSlotTracker &MST) {
265 std::array<std::string *, 3> Outputs{{&Object.DebugVar.Value,
266 &Object.DebugExpr.Value,
267 &Object.DebugLoc.Value}};
268 std::array<const Metadata *, 3> Metas{{DebugVar.Var,
269 DebugVar.Expr,
270 DebugVar.Loc}};
271 for (unsigned i = 0; i < 3; ++i) {
272 raw_string_ostream StrOS(*Outputs[i]);
273 Metas[i]->printAsOperand(StrOS, MST);
274 }
275}
Justin Bogneredab7572017-10-24 18:04:54 +0000276
Alex Lorenzc9a4f3d2015-06-24 19:56:10 +0000277void MIRPrinter::convert(yaml::MachineFunction &MF,
Alex Lorenzad6702e2015-07-09 22:23:13 +0000278 const MachineRegisterInfo &RegInfo,
279 const TargetRegisterInfo *TRI) {
Alex Lorenzc9a4f3d2015-06-24 19:56:10 +0000280 MF.TracksRegLiveness = RegInfo.tracksLiveness();
Alex Lorenzad6702e2015-07-09 22:23:13 +0000281
282 // Print the virtual register definitions.
283 for (unsigned I = 0, E = RegInfo.getNumVirtRegs(); I < E; ++I) {
284 unsigned Reg = TargetRegisterInfo::index2VirtReg(I);
285 yaml::VirtualRegisterDefinition VReg;
286 VReg.ID = I;
Puyan Lotfieed988e2018-03-30 18:15:54 +0000287 if (RegInfo.getVRegName(Reg) != "")
288 continue;
Francis Visoiu Mistrihfd11bc02017-12-07 10:40:31 +0000289 ::printRegClassOrBank(Reg, VReg.Class, RegInfo, TRI);
Alex Lorenzdfe0e532015-07-24 20:35:40 +0000290 unsigned PreferredReg = RegInfo.getSimpleHint(Reg);
291 if (PreferredReg)
Francis Visoiu Mistrihaccb3372017-11-28 12:42:37 +0000292 printRegMIR(PreferredReg, VReg.PreferredRegister, TRI);
Alex Lorenzad6702e2015-07-09 22:23:13 +0000293 MF.VirtualRegisters.push_back(VReg);
294 }
Alex Lorenza5da4f12015-07-27 17:42:45 +0000295
296 // Print the live ins.
Krzysztof Parzyszek7b72f392017-10-16 19:08:41 +0000297 for (std::pair<unsigned, unsigned> LI : RegInfo.liveins()) {
Alex Lorenza5da4f12015-07-27 17:42:45 +0000298 yaml::MachineFunctionLiveIn LiveIn;
Francis Visoiu Mistrihaccb3372017-11-28 12:42:37 +0000299 printRegMIR(LI.first, LiveIn.Register, TRI);
Krzysztof Parzyszek7b72f392017-10-16 19:08:41 +0000300 if (LI.second)
Francis Visoiu Mistrihaccb3372017-11-28 12:42:37 +0000301 printRegMIR(LI.second, LiveIn.VirtualRegister, TRI);
Alex Lorenza5da4f12015-07-27 17:42:45 +0000302 MF.LiveIns.push_back(LiveIn);
303 }
Oren Ben Simhon05383db2017-03-19 08:14:18 +0000304
305 // Prints the callee saved registers.
306 if (RegInfo.isUpdatedCSRsInitialized()) {
307 const MCPhysReg *CalleeSavedRegs = RegInfo.getCalleeSavedRegs();
308 std::vector<yaml::FlowStringValue> CalleeSavedRegisters;
309 for (const MCPhysReg *I = CalleeSavedRegs; *I; ++I) {
Alex Lorenz2a04c762015-08-11 00:32:49 +0000310 yaml::FlowStringValue Reg;
Francis Visoiu Mistrihaccb3372017-11-28 12:42:37 +0000311 printRegMIR(*I, Reg, TRI);
Alex Lorenz2a04c762015-08-11 00:32:49 +0000312 CalleeSavedRegisters.push_back(Reg);
313 }
Oren Ben Simhon05383db2017-03-19 08:14:18 +0000314 MF.CalleeSavedRegisters = CalleeSavedRegisters;
Alex Lorenz2a04c762015-08-11 00:32:49 +0000315 }
Alex Lorenzc9a4f3d2015-06-24 19:56:10 +0000316}
317
Alex Lorenz81474d32015-07-29 21:09:09 +0000318void MIRPrinter::convert(ModuleSlotTracker &MST,
319 yaml::MachineFrameInfo &YamlMFI,
Alex Lorenz7c6ad332015-07-09 19:55:27 +0000320 const MachineFrameInfo &MFI) {
321 YamlMFI.IsFrameAddressTaken = MFI.isFrameAddressTaken();
322 YamlMFI.IsReturnAddressTaken = MFI.isReturnAddressTaken();
323 YamlMFI.HasStackMap = MFI.hasStackMap();
324 YamlMFI.HasPatchPoint = MFI.hasPatchPoint();
325 YamlMFI.StackSize = MFI.getStackSize();
326 YamlMFI.OffsetAdjustment = MFI.getOffsetAdjustment();
327 YamlMFI.MaxAlignment = MFI.getMaxAlignment();
328 YamlMFI.AdjustsStack = MFI.adjustsStack();
329 YamlMFI.HasCalls = MFI.hasCalls();
Matthias Braun5927be12017-05-01 22:32:25 +0000330 YamlMFI.MaxCallFrameSize = MFI.isMaxCallFrameSizeComputed()
331 ? MFI.getMaxCallFrameSize() : ~0u;
Reid Kleckner6d4c2712018-10-01 21:59:45 +0000332 YamlMFI.CVBytesOfCalleeSavedRegisters =
333 MFI.getCVBytesOfCalleeSavedRegisters();
Alex Lorenz7c6ad332015-07-09 19:55:27 +0000334 YamlMFI.HasOpaqueSPAdjustment = MFI.hasOpaqueSPAdjustment();
335 YamlMFI.HasVAStart = MFI.hasVAStart();
336 YamlMFI.HasMustTailInVarArgFunc = MFI.hasMustTailInVarArgFunc();
Francis Visoiu Mistrih995c80d2018-04-06 08:56:25 +0000337 YamlMFI.LocalFrameSize = MFI.getLocalFrameSize();
Alex Lorenz81474d32015-07-29 21:09:09 +0000338 if (MFI.getSavePoint()) {
339 raw_string_ostream StrOS(YamlMFI.SavePoint.Value);
Francis Visoiu Mistrihca0df552017-12-04 17:18:51 +0000340 StrOS << printMBBReference(*MFI.getSavePoint());
Alex Lorenz81474d32015-07-29 21:09:09 +0000341 }
342 if (MFI.getRestorePoint()) {
343 raw_string_ostream StrOS(YamlMFI.RestorePoint.Value);
Francis Visoiu Mistrihca0df552017-12-04 17:18:51 +0000344 StrOS << printMBBReference(*MFI.getRestorePoint());
Alex Lorenz81474d32015-07-29 21:09:09 +0000345 }
Alex Lorenz7c6ad332015-07-09 19:55:27 +0000346}
347
Matthias Braun40485c22016-11-30 23:48:50 +0000348void MIRPrinter::convertStackObjects(yaml::MachineFunction &YMF,
349 const MachineFunction &MF,
350 ModuleSlotTracker &MST) {
351 const MachineFrameInfo &MFI = MF.getFrameInfo();
352 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
Alex Lorenzad7556d2015-07-13 18:07:26 +0000353 // Process fixed stack objects.
Alex Lorenzb8389692015-07-10 18:13:57 +0000354 unsigned ID = 0;
Alex Lorenzad7556d2015-07-13 18:07:26 +0000355 for (int I = MFI.getObjectIndexBegin(); I < 0; ++I) {
356 if (MFI.isDeadObjectIndex(I))
357 continue;
358
359 yaml::FixedMachineStackObject YamlObject;
Alex Lorenzed2032f2015-07-16 23:37:45 +0000360 YamlObject.ID = ID;
Alex Lorenzad7556d2015-07-13 18:07:26 +0000361 YamlObject.Type = MFI.isSpillSlotObjectIndex(I)
362 ? yaml::FixedMachineStackObject::SpillSlot
363 : yaml::FixedMachineStackObject::DefaultType;
364 YamlObject.Offset = MFI.getObjectOffset(I);
365 YamlObject.Size = MFI.getObjectSize(I);
366 YamlObject.Alignment = MFI.getObjectAlignment(I);
Matt Arsenault20f83342017-07-20 21:03:45 +0000367 YamlObject.StackID = MFI.getStackID(I);
Alex Lorenzad7556d2015-07-13 18:07:26 +0000368 YamlObject.IsImmutable = MFI.isImmutableObjectIndex(I);
369 YamlObject.IsAliased = MFI.isAliasedObjectIndex(I);
Matthias Braun40485c22016-11-30 23:48:50 +0000370 YMF.FixedStackObjects.push_back(YamlObject);
Alex Lorenzed2032f2015-07-16 23:37:45 +0000371 StackObjectOperandMapping.insert(
372 std::make_pair(I, FrameIndexOperand::createFixed(ID++)));
Alex Lorenzad7556d2015-07-13 18:07:26 +0000373 }
374
375 // Process ordinary stack objects.
376 ID = 0;
Alex Lorenzb8389692015-07-10 18:13:57 +0000377 for (int I = 0, E = MFI.getObjectIndexEnd(); I < E; ++I) {
378 if (MFI.isDeadObjectIndex(I))
379 continue;
380
381 yaml::MachineStackObject YamlObject;
Alex Lorenzed2032f2015-07-16 23:37:45 +0000382 YamlObject.ID = ID;
Alex Lorenz71da3632015-07-15 22:14:49 +0000383 if (const auto *Alloca = MFI.getObjectAllocation(I))
384 YamlObject.Name.Value =
385 Alloca->hasName() ? Alloca->getName() : "<unnamed alloca>";
Alex Lorenzb8389692015-07-10 18:13:57 +0000386 YamlObject.Type = MFI.isSpillSlotObjectIndex(I)
387 ? yaml::MachineStackObject::SpillSlot
Alex Lorenzdee03ee2015-07-14 00:26:26 +0000388 : MFI.isVariableSizedObjectIndex(I)
389 ? yaml::MachineStackObject::VariableSized
390 : yaml::MachineStackObject::DefaultType;
Alex Lorenzb8389692015-07-10 18:13:57 +0000391 YamlObject.Offset = MFI.getObjectOffset(I);
392 YamlObject.Size = MFI.getObjectSize(I);
393 YamlObject.Alignment = MFI.getObjectAlignment(I);
Matt Arsenault20f83342017-07-20 21:03:45 +0000394 YamlObject.StackID = MFI.getStackID(I);
Alex Lorenzb8389692015-07-10 18:13:57 +0000395
Matthias Braun40485c22016-11-30 23:48:50 +0000396 YMF.StackObjects.push_back(YamlObject);
Alex Lorenzed2032f2015-07-16 23:37:45 +0000397 StackObjectOperandMapping.insert(std::make_pair(
398 I, FrameIndexOperand::create(YamlObject.Name.Value, ID++)));
Alex Lorenzb8389692015-07-10 18:13:57 +0000399 }
Alex Lorenz3a8b87d2015-07-24 22:22:50 +0000400
401 for (const auto &CSInfo : MFI.getCalleeSavedInfo()) {
402 yaml::StringValue Reg;
Francis Visoiu Mistrihaccb3372017-11-28 12:42:37 +0000403 printRegMIR(CSInfo.getReg(), Reg, TRI);
Zaara Syeda7bade9c2018-11-09 16:36:24 +0000404 if (!CSInfo.isSpilledToReg()) {
405 auto StackObjectInfo = StackObjectOperandMapping.find(CSInfo.getFrameIdx());
406 assert(StackObjectInfo != StackObjectOperandMapping.end() &&
407 "Invalid stack object index");
408 const FrameIndexOperand &StackObject = StackObjectInfo->second;
409 if (StackObject.IsFixed) {
410 YMF.FixedStackObjects[StackObject.ID].CalleeSavedRegister = Reg;
411 YMF.FixedStackObjects[StackObject.ID].CalleeSavedRestored =
412 CSInfo.isRestored();
413 } else {
414 YMF.StackObjects[StackObject.ID].CalleeSavedRegister = Reg;
415 YMF.StackObjects[StackObject.ID].CalleeSavedRestored =
416 CSInfo.isRestored();
417 }
Matthias Braund44b0da2017-09-28 18:52:14 +0000418 }
Alex Lorenz3a8b87d2015-07-24 22:22:50 +0000419 }
Alex Lorenzfb764b72015-08-17 22:17:42 +0000420 for (unsigned I = 0, E = MFI.getLocalFrameObjectCount(); I < E; ++I) {
421 auto LocalObject = MFI.getLocalFrameObjectMap(I);
422 auto StackObjectInfo = StackObjectOperandMapping.find(LocalObject.first);
423 assert(StackObjectInfo != StackObjectOperandMapping.end() &&
424 "Invalid stack object index");
425 const FrameIndexOperand &StackObject = StackObjectInfo->second;
426 assert(!StackObject.IsFixed && "Expected a locally mapped stack object");
Matthias Braun40485c22016-11-30 23:48:50 +0000427 YMF.StackObjects[StackObject.ID].LocalOffset = LocalObject.second;
Alex Lorenzfb764b72015-08-17 22:17:42 +0000428 }
Alex Lorenz07c6bd82015-08-18 22:26:26 +0000429
430 // Print the stack object references in the frame information class after
431 // converting the stack objects.
432 if (MFI.hasStackProtectorIndex()) {
Matthias Braun40485c22016-11-30 23:48:50 +0000433 raw_string_ostream StrOS(YMF.FrameInfo.StackProtector.Value);
Alex Lorenz07c6bd82015-08-18 22:26:26 +0000434 MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping)
435 .printStackObjectReference(MFI.getStackProtectorIndex());
436 }
Alex Lorenza80c0442015-08-19 00:13:25 +0000437
438 // Print the debug variable information.
Matthias Braun40485c22016-11-30 23:48:50 +0000439 for (const MachineFunction::VariableDbgInfo &DebugVar :
440 MF.getVariableDbgInfo()) {
Alex Lorenza80c0442015-08-19 00:13:25 +0000441 auto StackObjectInfo = StackObjectOperandMapping.find(DebugVar.Slot);
442 assert(StackObjectInfo != StackObjectOperandMapping.end() &&
443 "Invalid stack object index");
444 const FrameIndexOperand &StackObject = StackObjectInfo->second;
Francis Visoiu Mistrihbea0f242018-04-25 18:58:06 +0000445 if (StackObject.IsFixed) {
446 auto &Object = YMF.FixedStackObjects[StackObject.ID];
447 printStackObjectDbgInfo(DebugVar, Object, MST);
448 } else {
449 auto &Object = YMF.StackObjects[StackObject.ID];
450 printStackObjectDbgInfo(DebugVar, Object, MST);
Alex Lorenza80c0442015-08-19 00:13:25 +0000451 }
452 }
Alex Lorenzb8389692015-07-10 18:13:57 +0000453}
454
Alex Lorenz0e4484f2015-07-20 20:51:18 +0000455void MIRPrinter::convert(yaml::MachineFunction &MF,
456 const MachineConstantPool &ConstantPool) {
457 unsigned ID = 0;
458 for (const MachineConstantPoolEntry &Constant : ConstantPool.getConstants()) {
Alex Lorenz0e4484f2015-07-20 20:51:18 +0000459 std::string Str;
460 raw_string_ostream StrOS(Str);
Diana Picusbb326e22017-08-02 11:09:30 +0000461 if (Constant.isMachineConstantPoolEntry()) {
462 Constant.Val.MachineCPVal->print(StrOS);
463 } else {
464 Constant.Val.ConstVal->printAsOperand(StrOS);
465 }
466
467 yaml::MachineConstantPoolValue YamlConstant;
Alex Lorenz0e4484f2015-07-20 20:51:18 +0000468 YamlConstant.ID = ID++;
469 YamlConstant.Value = StrOS.str();
470 YamlConstant.Alignment = Constant.getAlignment();
Diana Picusbb326e22017-08-02 11:09:30 +0000471 YamlConstant.IsTargetSpecific = Constant.isMachineConstantPoolEntry();
472
Alex Lorenz0e4484f2015-07-20 20:51:18 +0000473 MF.Constants.push_back(YamlConstant);
474 }
475}
476
Alex Lorenzaa0d6db2015-07-07 23:27:53 +0000477void MIRPrinter::convert(ModuleSlotTracker &MST,
Alex Lorenz81bef8c2015-07-15 23:31:07 +0000478 yaml::MachineJumpTable &YamlJTI,
479 const MachineJumpTableInfo &JTI) {
480 YamlJTI.Kind = JTI.getEntryKind();
481 unsigned ID = 0;
482 for (const auto &Table : JTI.getJumpTables()) {
483 std::string Str;
484 yaml::MachineJumpTable::Entry Entry;
485 Entry.ID = ID++;
486 for (const auto *MBB : Table.MBBs) {
487 raw_string_ostream StrOS(Str);
Francis Visoiu Mistrihca0df552017-12-04 17:18:51 +0000488 StrOS << printMBBReference(*MBB);
Alex Lorenz81bef8c2015-07-15 23:31:07 +0000489 Entry.Blocks.push_back(StrOS.str());
490 Str.clear();
491 }
492 YamlJTI.Entries.push_back(Entry);
493 }
494}
495
Alex Lorenz1a4def32015-06-29 16:57:06 +0000496void MIRPrinter::initRegisterMaskIds(const MachineFunction &MF) {
497 const auto *TRI = MF.getSubtarget().getRegisterInfo();
498 unsigned I = 0;
499 for (const uint32_t *Mask : TRI->getRegMasks())
500 RegisterMaskIds.insert(std::make_pair(Mask, I++));
501}
502
Matthias Braun0cb25a22017-05-05 21:09:30 +0000503void llvm::guessSuccessors(const MachineBasicBlock &MBB,
504 SmallVectorImpl<MachineBasicBlock*> &Result,
505 bool &IsFallthrough) {
506 SmallPtrSet<MachineBasicBlock*,8> Seen;
507
508 for (const MachineInstr &MI : MBB) {
509 if (MI.isPHI())
510 continue;
511 for (const MachineOperand &MO : MI.operands()) {
512 if (!MO.isMBB())
513 continue;
514 MachineBasicBlock *Succ = MO.getMBB();
515 auto RP = Seen.insert(Succ);
516 if (RP.second)
517 Result.push_back(Succ);
518 }
519 }
520 MachineBasicBlock::const_iterator I = MBB.getLastNonDebugInstr();
521 IsFallthrough = I == MBB.end() || !I->isBarrier();
522}
523
524bool
525MIPrinter::canPredictBranchProbabilities(const MachineBasicBlock &MBB) const {
526 if (MBB.succ_size() <= 1)
527 return true;
528 if (!MBB.hasSuccessorProbabilities())
529 return true;
530
531 SmallVector<BranchProbability,8> Normalized(MBB.Probs.begin(),
532 MBB.Probs.end());
533 BranchProbability::normalizeProbabilities(Normalized.begin(),
534 Normalized.end());
535 SmallVector<BranchProbability,8> Equal(Normalized.size());
536 BranchProbability::normalizeProbabilities(Equal.begin(), Equal.end());
537
538 return std::equal(Normalized.begin(), Normalized.end(), Equal.begin());
539}
540
541bool MIPrinter::canPredictSuccessors(const MachineBasicBlock &MBB) const {
542 SmallVector<MachineBasicBlock*,8> GuessedSuccs;
543 bool GuessedFallthrough;
544 guessSuccessors(MBB, GuessedSuccs, GuessedFallthrough);
545 if (GuessedFallthrough) {
546 const MachineFunction &MF = *MBB.getParent();
547 MachineFunction::const_iterator NextI = std::next(MBB.getIterator());
548 if (NextI != MF.end()) {
549 MachineBasicBlock *Next = const_cast<MachineBasicBlock*>(&*NextI);
550 if (!is_contained(GuessedSuccs, Next))
551 GuessedSuccs.push_back(Next);
552 }
553 }
554 if (GuessedSuccs.size() != MBB.succ_size())
555 return false;
556 return std::equal(MBB.succ_begin(), MBB.succ_end(), GuessedSuccs.begin());
557}
558
Alex Lorenz5d09c2f2015-08-13 23:10:16 +0000559void MIPrinter::print(const MachineBasicBlock &MBB) {
560 assert(MBB.getNumber() >= 0 && "Invalid MBB number");
561 OS << "bb." << MBB.getNumber();
562 bool HasAttributes = false;
563 if (const auto *BB = MBB.getBasicBlock()) {
564 if (BB->hasName()) {
565 OS << "." << BB->getName();
566 } else {
567 HasAttributes = true;
568 OS << " (";
569 int Slot = MST.getLocalSlot(BB);
570 if (Slot == -1)
571 OS << "<ir-block badref>";
572 else
573 OS << (Twine("%ir-block.") + Twine(Slot)).str();
574 }
575 }
576 if (MBB.hasAddressTaken()) {
577 OS << (HasAttributes ? ", " : " (");
578 OS << "address-taken";
579 HasAttributes = true;
580 }
Reid Klecknerc0e64ad2015-08-27 23:27:47 +0000581 if (MBB.isEHPad()) {
Alex Lorenz5d09c2f2015-08-13 23:10:16 +0000582 OS << (HasAttributes ? ", " : " (");
583 OS << "landing-pad";
584 HasAttributes = true;
585 }
586 if (MBB.getAlignment()) {
587 OS << (HasAttributes ? ", " : " (");
588 OS << "align " << MBB.getAlignment();
589 HasAttributes = true;
590 }
591 if (HasAttributes)
592 OS << ")";
593 OS << ":\n";
594
595 bool HasLineAttributes = false;
596 // Print the successors
Matthias Braun0cb25a22017-05-05 21:09:30 +0000597 bool canPredictProbs = canPredictBranchProbabilities(MBB);
Quentin Colombet8726dc52017-09-19 23:34:12 +0000598 // Even if the list of successors is empty, if we cannot guess it,
599 // we need to print it to tell the parser that the list is empty.
600 // This is needed, because MI model unreachable as empty blocks
601 // with an empty successor list. If the parser would see that
602 // without the successor list, it would guess the code would
603 // fallthrough.
604 if ((!MBB.succ_empty() && !SimplifyMIR) || !canPredictProbs ||
605 !canPredictSuccessors(MBB)) {
Alex Lorenz5d09c2f2015-08-13 23:10:16 +0000606 OS.indent(2) << "successors: ";
607 for (auto I = MBB.succ_begin(), E = MBB.succ_end(); I != E; ++I) {
608 if (I != MBB.succ_begin())
609 OS << ", ";
Francis Visoiu Mistrihca0df552017-12-04 17:18:51 +0000610 OS << printMBBReference(**I);
Matthias Braun0cb25a22017-05-05 21:09:30 +0000611 if (!SimplifyMIR || !canPredictProbs)
Geoff Berry181c24a2016-11-18 19:37:24 +0000612 OS << '('
613 << format("0x%08" PRIx32, MBB.getSuccProbability(I).getNumerator())
614 << ')';
Alex Lorenz5d09c2f2015-08-13 23:10:16 +0000615 }
616 OS << "\n";
617 HasLineAttributes = true;
618 }
619
620 // Print the live in registers.
Matthias Braun47004632017-01-05 20:01:19 +0000621 const MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
622 if (MRI.tracksLiveness() && !MBB.livein_empty()) {
623 const TargetRegisterInfo &TRI = *MRI.getTargetRegisterInfo();
Alex Lorenz5d09c2f2015-08-13 23:10:16 +0000624 OS.indent(2) << "liveins: ";
Matthias Braun56dd2d02015-08-24 22:59:52 +0000625 bool First = true;
Matthias Braunaf5ff602015-09-09 18:08:03 +0000626 for (const auto &LI : MBB.liveins()) {
Matthias Braun56dd2d02015-08-24 22:59:52 +0000627 if (!First)
Alex Lorenz5d09c2f2015-08-13 23:10:16 +0000628 OS << ", ";
Matthias Braun56dd2d02015-08-24 22:59:52 +0000629 First = false;
Francis Visoiu Mistrihe6b89912017-11-30 16:12:24 +0000630 OS << printReg(LI.PhysReg, &TRI);
Krzysztof Parzyszekd6ca3f02016-12-15 14:36:06 +0000631 if (!LI.LaneMask.all())
Krzysztof Parzyszekb15c2582016-10-12 21:06:45 +0000632 OS << ":0x" << PrintLaneMask(LI.LaneMask);
Alex Lorenz5d09c2f2015-08-13 23:10:16 +0000633 }
634 OS << "\n";
635 HasLineAttributes = true;
636 }
637
638 if (HasLineAttributes)
639 OS << "\n";
Alex Lorenz46d5ea62015-08-14 18:57:24 +0000640 bool IsInBundle = false;
641 for (auto I = MBB.instr_begin(), E = MBB.instr_end(); I != E; ++I) {
642 const MachineInstr &MI = *I;
643 if (IsInBundle && !MI.isInsideBundle()) {
644 OS.indent(2) << "}\n";
645 IsInBundle = false;
646 }
647 OS.indent(IsInBundle ? 4 : 2);
Alex Lorenz5d09c2f2015-08-13 23:10:16 +0000648 print(MI);
Alex Lorenz46d5ea62015-08-14 18:57:24 +0000649 if (!IsInBundle && MI.getFlag(MachineInstr::BundledSucc)) {
650 OS << " {";
651 IsInBundle = true;
652 }
Alex Lorenz5d09c2f2015-08-13 23:10:16 +0000653 OS << "\n";
654 }
Alex Lorenz46d5ea62015-08-14 18:57:24 +0000655 if (IsInBundle)
656 OS.indent(2) << "}\n";
Alex Lorenz5d09c2f2015-08-13 23:10:16 +0000657}
658
Alex Lorenz2f801fa2015-06-22 17:02:30 +0000659void MIPrinter::print(const MachineInstr &MI) {
Justin Bogner1842f4a2017-10-10 23:50:49 +0000660 const auto *MF = MI.getMF();
Quentin Colombet6266be02016-03-07 21:57:52 +0000661 const auto &MRI = MF->getRegInfo();
662 const auto &SubTarget = MF->getSubtarget();
Alex Lorenz9982d6f2015-06-23 16:35:26 +0000663 const auto *TRI = SubTarget.getRegisterInfo();
664 assert(TRI && "Expected target register info");
Alex Lorenz2f801fa2015-06-22 17:02:30 +0000665 const auto *TII = SubTarget.getInstrInfo();
666 assert(TII && "Expected target instruction info");
Alex Lorenz1b75dd22015-07-21 22:28:27 +0000667 if (MI.isCFIInstruction())
668 assert(MI.getNumOperands() == 1 && "Expected 1 operand in CFI instruction");
Alex Lorenz2f801fa2015-06-22 17:02:30 +0000669
Tim Northover7a92e732016-09-12 11:20:10 +0000670 SmallBitVector PrintedTypes(8);
Francis Visoiu Mistrihfd11bc02017-12-07 10:40:31 +0000671 bool ShouldPrintRegisterTies = MI.hasComplexRegisterTies();
Alex Lorenz9982d6f2015-06-23 16:35:26 +0000672 unsigned I = 0, E = MI.getNumOperands();
673 for (; I < E && MI.getOperand(I).isReg() && MI.getOperand(I).isDef() &&
674 !MI.getOperand(I).isImplicit();
675 ++I) {
676 if (I)
677 OS << ", ";
Bjorn Pettersson4cbab702017-11-06 21:46:06 +0000678 print(MI, I, TRI, ShouldPrintRegisterTies,
Francis Visoiu Mistrihfd11bc02017-12-07 10:40:31 +0000679 MI.getTypeToPrint(I, PrintedTypes, MRI),
680 /*PrintDef=*/false);
Alex Lorenz9982d6f2015-06-23 16:35:26 +0000681 }
682
683 if (I)
684 OS << " = ";
Alex Lorenz27441892015-07-17 00:24:15 +0000685 if (MI.getFlag(MachineInstr::FrameSetup))
686 OS << "frame-setup ";
Francis Visoiu Mistrih12d58072018-03-13 19:53:16 +0000687 if (MI.getFlag(MachineInstr::FrameDestroy))
Francis Visoiu Mistrih4e1cf662018-01-09 11:33:22 +0000688 OS << "frame-destroy ";
Michael Bergecfd97d2018-05-03 00:07:56 +0000689 if (MI.getFlag(MachineInstr::FmNoNans))
690 OS << "nnan ";
691 if (MI.getFlag(MachineInstr::FmNoInfs))
692 OS << "ninf ";
693 if (MI.getFlag(MachineInstr::FmNsz))
694 OS << "nsz ";
695 if (MI.getFlag(MachineInstr::FmArcp))
696 OS << "arcp ";
697 if (MI.getFlag(MachineInstr::FmContract))
698 OS << "contract ";
699 if (MI.getFlag(MachineInstr::FmAfn))
700 OS << "afn ";
701 if (MI.getFlag(MachineInstr::FmReassoc))
702 OS << "reassoc ";
Michael Berg87d1f822018-09-11 21:35:32 +0000703 if (MI.getFlag(MachineInstr::NoUWrap))
704 OS << "nuw ";
705 if (MI.getFlag(MachineInstr::NoSWrap))
706 OS << "nsw ";
707 if (MI.getFlag(MachineInstr::IsExact))
708 OS << "exact ";
Francis Visoiu Mistrih4e1cf662018-01-09 11:33:22 +0000709
Alex Lorenz2f801fa2015-06-22 17:02:30 +0000710 OS << TII->getName(MI.getOpcode());
Alex Lorenz9982d6f2015-06-23 16:35:26 +0000711 if (I < E)
712 OS << ' ';
713
714 bool NeedComma = false;
715 for (; I < E; ++I) {
716 if (NeedComma)
717 OS << ", ";
Bjorn Pettersson4cbab702017-11-06 21:46:06 +0000718 print(MI, I, TRI, ShouldPrintRegisterTies,
Francis Visoiu Mistrihfd11bc02017-12-07 10:40:31 +0000719 MI.getTypeToPrint(I, PrintedTypes, MRI));
Alex Lorenz9982d6f2015-06-23 16:35:26 +0000720 NeedComma = true;
721 }
Alex Lorenz6f3ab8d2015-07-22 21:15:11 +0000722
Chandler Carruthe90d4402018-08-16 23:11:05 +0000723 // Print any optional symbols attached to this instruction as-if they were
724 // operands.
725 if (MCSymbol *PreInstrSymbol = MI.getPreInstrSymbol()) {
726 if (NeedComma)
727 OS << ',';
728 OS << " pre-instr-symbol ";
729 MachineOperand::printSymbol(OS, *PreInstrSymbol);
730 NeedComma = true;
731 }
732 if (MCSymbol *PostInstrSymbol = MI.getPostInstrSymbol()) {
733 if (NeedComma)
734 OS << ',';
735 OS << " post-instr-symbol ";
736 MachineOperand::printSymbol(OS, *PostInstrSymbol);
737 NeedComma = true;
738 }
739
Francis Visoiu Mistrihe97eca62018-01-19 11:44:42 +0000740 if (const DebugLoc &DL = MI.getDebugLoc()) {
Alex Lorenz6f3ab8d2015-07-22 21:15:11 +0000741 if (NeedComma)
742 OS << ',';
743 OS << " debug-location ";
Francis Visoiu Mistrihe97eca62018-01-19 11:44:42 +0000744 DL->printAsOperand(OS, MST);
Alex Lorenz6f3ab8d2015-07-22 21:15:11 +0000745 }
Alex Lorenz3db44ce2015-08-03 23:08:19 +0000746
747 if (!MI.memoperands_empty()) {
748 OS << " :: ";
Matthias Braund3181392017-12-15 22:22:58 +0000749 const LLVMContext &Context = MF->getFunction().getContext();
Francis Visoiu Mistrih0d758f32018-03-14 21:52:13 +0000750 const MachineFrameInfo &MFI = MF->getFrameInfo();
Alex Lorenz3db44ce2015-08-03 23:08:19 +0000751 bool NeedComma = false;
752 for (const auto *Op : MI.memoperands()) {
753 if (NeedComma)
754 OS << ", ";
Francis Visoiu Mistrih0d758f32018-03-14 21:52:13 +0000755 Op->print(OS, MST, SSNs, Context, &MFI, TII);
Alex Lorenz3db44ce2015-08-03 23:08:19 +0000756 NeedComma = true;
757 }
758 }
Alex Lorenz9982d6f2015-06-23 16:35:26 +0000759}
760
Alex Lorenzed2032f2015-07-16 23:37:45 +0000761void MIPrinter::printStackObjectReference(int FrameIndex) {
762 auto ObjectInfo = StackObjectOperandMapping.find(FrameIndex);
763 assert(ObjectInfo != StackObjectOperandMapping.end() &&
764 "Invalid frame index");
765 const FrameIndexOperand &Operand = ObjectInfo->second;
Francis Visoiu Mistrih38e881d2017-12-15 16:33:45 +0000766 MachineOperand::printStackObjectReference(OS, Operand.ID, Operand.IsFixed,
767 Operand.Name);
Alex Lorenzed2032f2015-07-16 23:37:45 +0000768}
769
Bjorn Pettersson4cbab702017-11-06 21:46:06 +0000770void MIPrinter::print(const MachineInstr &MI, unsigned OpIdx,
771 const TargetRegisterInfo *TRI,
772 bool ShouldPrintRegisterTies, LLT TypeToPrint,
Francis Visoiu Mistrihfd11bc02017-12-07 10:40:31 +0000773 bool PrintDef) {
Bjorn Pettersson4cbab702017-11-06 21:46:06 +0000774 const MachineOperand &Op = MI.getOperand(OpIdx);
Alex Lorenz9982d6f2015-06-23 16:35:26 +0000775 switch (Op.getType()) {
Francis Visoiu Mistrihe28484a2017-12-08 22:53:21 +0000776 case MachineOperand::MO_Immediate:
777 if (MI.isOperandSubregIdx(OpIdx)) {
Francis Visoiu Mistrih3f63013f2017-12-14 10:03:09 +0000778 MachineOperand::printTargetFlags(OS, Op);
Francis Visoiu Mistrih19988dd2018-01-16 10:53:11 +0000779 MachineOperand::printSubRegIdx(OS, Op.getImm(), TRI);
Francis Visoiu Mistrihe28484a2017-12-08 22:53:21 +0000780 break;
781 }
782 LLVM_FALLTHROUGH;
Francis Visoiu Mistrihab9bb802017-12-08 11:40:06 +0000783 case MachineOperand::MO_Register:
Francis Visoiu Mistriha72ab5b2017-12-08 11:48:02 +0000784 case MachineOperand::MO_CImmediate:
Francis Visoiu Mistrih30e8e012017-12-19 21:47:00 +0000785 case MachineOperand::MO_FPImmediate:
Francis Visoiu Mistrihc8469092017-12-13 10:30:45 +0000786 case MachineOperand::MO_MachineBasicBlock:
Francis Visoiu Mistrih2b168632017-12-13 10:30:51 +0000787 case MachineOperand::MO_ConstantPoolIndex:
Francis Visoiu Mistrihd347e972017-12-13 10:30:59 +0000788 case MachineOperand::MO_TargetIndex:
Francis Visoiu Mistrihd3987752017-12-14 10:02:58 +0000789 case MachineOperand::MO_JumpTableIndex:
Francis Visoiu Mistrih3f63013f2017-12-14 10:03:09 +0000790 case MachineOperand::MO_ExternalSymbol:
Francis Visoiu Mistrihf6cd5822017-12-14 10:03:14 +0000791 case MachineOperand::MO_GlobalAddress:
Francis Visoiu Mistrihf726bec2017-12-14 10:03:18 +0000792 case MachineOperand::MO_RegisterLiveOut:
Francis Visoiu Mistrihee30ab72017-12-14 10:03:23 +0000793 case MachineOperand::MO_Metadata:
Francis Visoiu Mistrihfcfc7b22017-12-19 16:51:52 +0000794 case MachineOperand::MO_MCSymbol:
Francis Visoiu Mistrih43c2ba72017-12-19 21:47:05 +0000795 case MachineOperand::MO_CFIIndex:
Francis Visoiu Mistrih234b36e2017-12-19 21:47:10 +0000796 case MachineOperand::MO_IntrinsicID:
Francis Visoiu Mistrih235e8562017-12-19 21:47:14 +0000797 case MachineOperand::MO_Predicate:
798 case MachineOperand::MO_BlockAddress: {
Francis Visoiu Mistrihfd11bc02017-12-07 10:40:31 +0000799 unsigned TiedOperandIdx = 0;
Francis Visoiu Mistrihe28484a2017-12-08 22:53:21 +0000800 if (ShouldPrintRegisterTies && Op.isReg() && Op.isTied() && !Op.isDef())
Francis Visoiu Mistrihfd11bc02017-12-07 10:40:31 +0000801 TiedOperandIdx = Op.getParent()->findTiedOperandIdx(OpIdx);
802 const TargetIntrinsicInfo *TII = MI.getMF()->getTarget().getIntrinsicInfo();
Francis Visoiu Mistrih7bee1ce2018-01-18 18:05:15 +0000803 Op.print(OS, MST, TypeToPrint, PrintDef, /*IsStandalone=*/false,
Francis Visoiu Mistrih96ed12f2018-01-18 17:59:06 +0000804 ShouldPrintRegisterTies, TiedOperandIdx, TRI, TII);
Alex Lorenz9982d6f2015-06-23 16:35:26 +0000805 break;
Justin Bogneredab7572017-10-24 18:04:54 +0000806 }
Alex Lorenzed2032f2015-07-16 23:37:45 +0000807 case MachineOperand::MO_FrameIndex:
808 printStackObjectReference(Op.getIndex());
809 break;
Alex Lorenz1a4def32015-06-29 16:57:06 +0000810 case MachineOperand::MO_RegisterMask: {
811 auto RegMaskInfo = RegisterMaskIds.find(Op.getRegMask());
812 if (RegMaskInfo != RegisterMaskIds.end())
813 OS << StringRef(TRI->getRegMaskNames()[RegMaskInfo->second]).lower();
814 else
Oren Ben Simhon05383db2017-03-19 08:14:18 +0000815 printCustomRegMask(Op.getRegMask(), OS, TRI);
Alex Lorenz1a4def32015-06-29 16:57:06 +0000816 break;
817 }
Alex Lorenz9982d6f2015-06-23 16:35:26 +0000818 }
Alex Lorenz26036642015-06-19 17:43:07 +0000819}
820
Alex Lorenzb3607cd2015-06-15 23:52:35 +0000821void llvm::printMIR(raw_ostream &OS, const Module &M) {
822 yaml::Output Out(OS);
823 Out << const_cast<Module &>(M);
824}
825
826void llvm::printMIR(raw_ostream &OS, const MachineFunction &MF) {
827 MIRPrinter Printer(OS);
828 Printer.print(MF);
829}