blob: 5b22762f001f6a23de14d4a21d2e91559da8bd44 [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"
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +000022#include "llvm/ADT/StringExtras.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000023#include "llvm/ADT/StringRef.h"
24#include "llvm/ADT/Twine.h"
Quentin Colombetfab1cfe2016-04-08 16:26:22 +000025#include "llvm/CodeGen/GlobalISel/RegisterBank.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000026#include "llvm/CodeGen/MIRYamlMapping.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000027#include "llvm/CodeGen/MachineBasicBlock.h"
Alex Lorenzab980492015-07-20 20:51:18 +000028#include "llvm/CodeGen/MachineConstantPool.h"
Alex Lorenz60541c12015-07-09 19:55:27 +000029#include "llvm/CodeGen/MachineFrameInfo.h"
Quentin Colombetfab1cfe2016-04-08 16:26:22 +000030#include "llvm/CodeGen/MachineFunction.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000031#include "llvm/CodeGen/MachineInstr.h"
32#include "llvm/CodeGen/MachineJumpTableInfo.h"
Alex Lorenz4af7e612015-08-03 23:08:19 +000033#include "llvm/CodeGen/MachineMemOperand.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000034#include "llvm/CodeGen/MachineOperand.h"
Alex Lorenz54565cf2015-06-24 19:56:10 +000035#include "llvm/CodeGen/MachineRegisterInfo.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000036#include "llvm/CodeGen/PseudoSourceValue.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000037#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000038#include "llvm/CodeGen/TargetRegisterInfo.h"
39#include "llvm/CodeGen/TargetSubtargetInfo.h"
Alex Lorenz4f093bf2015-06-19 17:43:07 +000040#include "llvm/IR/BasicBlock.h"
Alex Lorenzdeb53492015-07-28 17:28:03 +000041#include "llvm/IR/Constants.h"
Reid Kleckner28865802016-04-14 18:29:59 +000042#include "llvm/IR/DebugInfo.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000043#include "llvm/IR/DebugLoc.h"
44#include "llvm/IR/Function.h"
45#include "llvm/IR/GlobalValue.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000046#include "llvm/IR/IRPrintingPasses.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000047#include "llvm/IR/InstrTypes.h"
Quentin Colombetfab1cfe2016-04-08 16:26:22 +000048#include "llvm/IR/Instructions.h"
Tim Northover6b3bd612016-07-29 20:32:59 +000049#include "llvm/IR/Intrinsics.h"
Alex Lorenz345c1442015-06-15 23:52:35 +000050#include "llvm/IR/Module.h"
Alex Lorenz900b5cb2015-07-07 23:27:53 +000051#include "llvm/IR/ModuleSlotTracker.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000052#include "llvm/IR/Value.h"
53#include "llvm/MC/LaneBitmask.h"
54#include "llvm/MC/MCDwarf.h"
Alex Lorenzf22ca8a2015-08-21 21:12:44 +000055#include "llvm/MC/MCSymbol.h"
Eugene Zelenkofb69e662017-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 Berryb51774a2016-11-18 19:37:24 +000061#include "llvm/Support/Format.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000062#include "llvm/Support/LowLevelTypeImpl.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000063#include "llvm/Support/YAMLTraits.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000064#include "llvm/Support/raw_ostream.h"
Tim Northover6b3bd612016-07-29 20:32:59 +000065#include "llvm/Target/TargetIntrinsicInfo.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000066#include "llvm/Target/TargetMachine.h"
Eugene Zelenkofb69e662017-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 Lorenz345c1442015-06-15 23:52:35 +000075
76using namespace llvm;
77
Zachary Turner8065f0b2017-12-01 00:53:10 +000078static cl::opt<bool> SimplifyMIR(
79 "simplify-mir", cl::Hidden,
Matthias Braun89401142017-05-05 21:09:30 +000080 cl::desc("Leave out unnecessary information when printing MIR"));
81
Alex Lorenz345c1442015-06-15 23:52:35 +000082namespace {
83
Alex Lorenz7feaf7c2015-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 Lorenz618b2832015-07-30 16:54:38 +0000104} // end anonymous namespace
105
106namespace llvm {
107
Alex Lorenz345c1442015-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 Lorenz8f6f4282015-06-29 16:57:06 +0000112 DenseMap<const uint32_t *, unsigned> RegisterMaskIds;
Alex Lorenz7feaf7c2015-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 Lorenz345c1442015-06-15 23:52:35 +0000116
117public:
118 MIRPrinter(raw_ostream &OS) : OS(OS) {}
119
120 void print(const MachineFunction &MF);
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000121
Alex Lorenz28148ba2015-07-09 22:23:13 +0000122 void convert(yaml::MachineFunction &MF, const MachineRegisterInfo &RegInfo,
123 const TargetRegisterInfo *TRI);
Alex Lorenza6f9a372015-07-29 21:09:09 +0000124 void convert(ModuleSlotTracker &MST, yaml::MachineFrameInfo &YamlMFI,
125 const MachineFrameInfo &MFI);
Alex Lorenzab980492015-07-20 20:51:18 +0000126 void convert(yaml::MachineFunction &MF,
127 const MachineConstantPool &ConstantPool);
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000128 void convert(ModuleSlotTracker &MST, yaml::MachineJumpTable &YamlJTI,
129 const MachineJumpTableInfo &JTI);
Matthias Braunef331ef2016-11-30 23:48:50 +0000130 void convertStackObjects(yaml::MachineFunction &YMF,
131 const MachineFunction &MF, ModuleSlotTracker &MST);
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000132
133private:
134 void initRegisterMaskIds(const MachineFunction &MF);
Alex Lorenz345c1442015-06-15 23:52:35 +0000135};
136
Alex Lorenz8e0a1b42015-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 Lorenz900b5cb2015-07-07 23:27:53 +0000141 ModuleSlotTracker &MST;
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000142 const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000143 const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000144 /// Synchronization scope names registered with LLVMContext.
145 SmallVector<StringRef, 8> SSNs;
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000146
Matthias Braun89401142017-05-05 21:09:30 +0000147 bool canPredictBranchProbabilities(const MachineBasicBlock &MBB) const;
148 bool canPredictSuccessors(const MachineBasicBlock &MBB) const;
149
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000150public:
Alex Lorenz900b5cb2015-07-07 23:27:53 +0000151 MIPrinter(raw_ostream &OS, ModuleSlotTracker &MST,
Alex Lorenz7feaf7c2015-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 Lorenz8e0a1b42015-06-22 17:02:30 +0000156
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000157 void print(const MachineBasicBlock &MBB);
158
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000159 void print(const MachineInstr &MI);
Alex Lorenz4af7e612015-08-03 23:08:19 +0000160 void printIRValueReference(const Value &V);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000161 void printStackObjectReference(int FrameIndex);
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000162 void print(const MachineInstr &MI, unsigned OpIdx,
163 const TargetRegisterInfo *TRI, bool ShouldPrintRegisterTies,
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000164 LLT TypeToPrint, bool PrintDef = true);
Geoff Berry6748abe2017-07-13 02:28:54 +0000165 void print(const LLVMContext &Context, const TargetInstrInfo &TII,
166 const MachineMemOperand &Op);
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000167 void printSyncScope(const LLVMContext &Context, SyncScope::ID SSID);
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000168};
169
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000170} // end namespace llvm
Alex Lorenz345c1442015-06-15 23:52:35 +0000171
172namespace llvm {
173namespace yaml {
174
175/// This struct serializes the LLVM IR module.
176template <> struct BlockScalarTraits<Module> {
177 static void output(const Module &Mod, void *Ctxt, raw_ostream &OS) {
178 Mod.print(OS, nullptr);
179 }
Eugene Zelenkofb69e662017-06-06 22:22:41 +0000180
Alex Lorenz345c1442015-06-15 23:52:35 +0000181 static StringRef input(StringRef Str, void *Ctxt, Module &Mod) {
182 llvm_unreachable("LLVM Module is supposed to be parsed separately");
183 return "";
184 }
185};
186
187} // end namespace yaml
188} // end namespace llvm
189
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000190static void printRegMIR(unsigned Reg, yaml::StringValue &Dest,
191 const TargetRegisterInfo *TRI) {
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000192 raw_string_ostream OS(Dest.Value);
Francis Visoiu Mistrihc71cced2017-11-30 16:12:24 +0000193 OS << printReg(Reg, TRI);
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000194}
195
Alex Lorenz345c1442015-06-15 23:52:35 +0000196void MIRPrinter::print(const MachineFunction &MF) {
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000197 initRegisterMaskIds(MF);
198
Alex Lorenz345c1442015-06-15 23:52:35 +0000199 yaml::MachineFunction YamlMF;
200 YamlMF.Name = MF.getName();
Alex Lorenz5b5f9752015-06-16 00:10:47 +0000201 YamlMF.Alignment = MF.getAlignment();
202 YamlMF.ExposesReturnsTwice = MF.exposesReturnsTwice();
Derek Schuffad154c82016-03-28 17:05:30 +0000203
Ahmed Bougacha0d7b0cb2016-08-02 15:10:25 +0000204 YamlMF.Legalized = MF.getProperties().hasProperty(
205 MachineFunctionProperties::Property::Legalized);
Ahmed Bougacha24712652016-08-02 16:17:10 +0000206 YamlMF.RegBankSelected = MF.getProperties().hasProperty(
207 MachineFunctionProperties::Property::RegBankSelected);
Ahmed Bougachab109d512016-08-02 16:49:19 +0000208 YamlMF.Selected = MF.getProperties().hasProperty(
209 MachineFunctionProperties::Property::Selected);
Ahmed Bougacha0d7b0cb2016-08-02 15:10:25 +0000210
Alex Lorenz28148ba2015-07-09 22:23:13 +0000211 convert(YamlMF, MF.getRegInfo(), MF.getSubtarget().getRegisterInfo());
Matthias Braunf1caa282017-12-15 22:22:58 +0000212 ModuleSlotTracker MST(MF.getFunction().getParent());
213 MST.incorporateFunction(MF.getFunction());
Matthias Braun941a7052016-07-28 18:40:00 +0000214 convert(MST, YamlMF.FrameInfo, MF.getFrameInfo());
Matthias Braunef331ef2016-11-30 23:48:50 +0000215 convertStackObjects(YamlMF, MF, MST);
Alex Lorenzab980492015-07-20 20:51:18 +0000216 if (const auto *ConstantPool = MF.getConstantPool())
217 convert(YamlMF, *ConstantPool);
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000218 if (const auto *JumpTableInfo = MF.getJumpTableInfo())
219 convert(MST, YamlMF.JumpTableInfo, *JumpTableInfo);
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000220 raw_string_ostream StrOS(YamlMF.Body.Value.Value);
221 bool IsNewlineNeeded = false;
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000222 for (const auto &MBB : MF) {
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000223 if (IsNewlineNeeded)
224 StrOS << "\n";
225 MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping)
226 .print(MBB);
227 IsNewlineNeeded = true;
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000228 }
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000229 StrOS.flush();
Alex Lorenz345c1442015-06-15 23:52:35 +0000230 yaml::Output Out(OS);
Vivek Pandya56d87ef2017-06-06 08:16:19 +0000231 if (!SimplifyMIR)
232 Out.setWriteDefaultValues(true);
Alex Lorenz345c1442015-06-15 23:52:35 +0000233 Out << YamlMF;
234}
235
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000236static void printCustomRegMask(const uint32_t *RegMask, raw_ostream &OS,
237 const TargetRegisterInfo *TRI) {
238 assert(RegMask && "Can't print an empty register mask");
239 OS << StringRef("CustomRegMask(");
240
241 bool IsRegInRegMaskFound = false;
242 for (int I = 0, E = TRI->getNumRegs(); I < E; I++) {
243 // Check whether the register is asserted in regmask.
244 if (RegMask[I / 32] & (1u << (I % 32))) {
245 if (IsRegInRegMaskFound)
246 OS << ',';
Francis Visoiu Mistrihc71cced2017-11-30 16:12:24 +0000247 OS << printReg(I, TRI);
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000248 IsRegInRegMaskFound = true;
249 }
250 }
251
252 OS << ')';
253}
254
Justin Bogner6c452832017-10-24 18:04:54 +0000255static void printRegClassOrBank(unsigned Reg, yaml::StringValue &Dest,
256 const MachineRegisterInfo &RegInfo,
257 const TargetRegisterInfo *TRI) {
258 raw_string_ostream OS(Dest.Value);
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000259 OS << printRegClassOrBank(Reg, RegInfo, TRI);
Justin Bogner6c452832017-10-24 18:04:54 +0000260}
261
262
Alex Lorenz54565cf2015-06-24 19:56:10 +0000263void MIRPrinter::convert(yaml::MachineFunction &MF,
Alex Lorenz28148ba2015-07-09 22:23:13 +0000264 const MachineRegisterInfo &RegInfo,
265 const TargetRegisterInfo *TRI) {
Alex Lorenz54565cf2015-06-24 19:56:10 +0000266 MF.TracksRegLiveness = RegInfo.tracksLiveness();
Alex Lorenz28148ba2015-07-09 22:23:13 +0000267
268 // Print the virtual register definitions.
269 for (unsigned I = 0, E = RegInfo.getNumVirtRegs(); I < E; ++I) {
270 unsigned Reg = TargetRegisterInfo::index2VirtReg(I);
271 yaml::VirtualRegisterDefinition VReg;
272 VReg.ID = I;
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000273 ::printRegClassOrBank(Reg, VReg.Class, RegInfo, TRI);
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000274 unsigned PreferredReg = RegInfo.getSimpleHint(Reg);
275 if (PreferredReg)
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000276 printRegMIR(PreferredReg, VReg.PreferredRegister, TRI);
Alex Lorenz28148ba2015-07-09 22:23:13 +0000277 MF.VirtualRegisters.push_back(VReg);
278 }
Alex Lorenz12045a42015-07-27 17:42:45 +0000279
280 // Print the live ins.
Krzysztof Parzyszek72518ea2017-10-16 19:08:41 +0000281 for (std::pair<unsigned, unsigned> LI : RegInfo.liveins()) {
Alex Lorenz12045a42015-07-27 17:42:45 +0000282 yaml::MachineFunctionLiveIn LiveIn;
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000283 printRegMIR(LI.first, LiveIn.Register, TRI);
Krzysztof Parzyszek72518ea2017-10-16 19:08:41 +0000284 if (LI.second)
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000285 printRegMIR(LI.second, LiveIn.VirtualRegister, TRI);
Alex Lorenz12045a42015-07-27 17:42:45 +0000286 MF.LiveIns.push_back(LiveIn);
287 }
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000288
289 // Prints the callee saved registers.
290 if (RegInfo.isUpdatedCSRsInitialized()) {
291 const MCPhysReg *CalleeSavedRegs = RegInfo.getCalleeSavedRegs();
292 std::vector<yaml::FlowStringValue> CalleeSavedRegisters;
293 for (const MCPhysReg *I = CalleeSavedRegs; *I; ++I) {
Alex Lorenzc4838082015-08-11 00:32:49 +0000294 yaml::FlowStringValue Reg;
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000295 printRegMIR(*I, Reg, TRI);
Alex Lorenzc4838082015-08-11 00:32:49 +0000296 CalleeSavedRegisters.push_back(Reg);
297 }
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000298 MF.CalleeSavedRegisters = CalleeSavedRegisters;
Alex Lorenzc4838082015-08-11 00:32:49 +0000299 }
Alex Lorenz54565cf2015-06-24 19:56:10 +0000300}
301
Alex Lorenza6f9a372015-07-29 21:09:09 +0000302void MIRPrinter::convert(ModuleSlotTracker &MST,
303 yaml::MachineFrameInfo &YamlMFI,
Alex Lorenz60541c12015-07-09 19:55:27 +0000304 const MachineFrameInfo &MFI) {
305 YamlMFI.IsFrameAddressTaken = MFI.isFrameAddressTaken();
306 YamlMFI.IsReturnAddressTaken = MFI.isReturnAddressTaken();
307 YamlMFI.HasStackMap = MFI.hasStackMap();
308 YamlMFI.HasPatchPoint = MFI.hasPatchPoint();
309 YamlMFI.StackSize = MFI.getStackSize();
310 YamlMFI.OffsetAdjustment = MFI.getOffsetAdjustment();
311 YamlMFI.MaxAlignment = MFI.getMaxAlignment();
312 YamlMFI.AdjustsStack = MFI.adjustsStack();
313 YamlMFI.HasCalls = MFI.hasCalls();
Matthias Braunab9438c2017-05-01 22:32:25 +0000314 YamlMFI.MaxCallFrameSize = MFI.isMaxCallFrameSizeComputed()
315 ? MFI.getMaxCallFrameSize() : ~0u;
Alex Lorenz60541c12015-07-09 19:55:27 +0000316 YamlMFI.HasOpaqueSPAdjustment = MFI.hasOpaqueSPAdjustment();
317 YamlMFI.HasVAStart = MFI.hasVAStart();
318 YamlMFI.HasMustTailInVarArgFunc = MFI.hasMustTailInVarArgFunc();
Alex Lorenza6f9a372015-07-29 21:09:09 +0000319 if (MFI.getSavePoint()) {
320 raw_string_ostream StrOS(YamlMFI.SavePoint.Value);
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000321 StrOS << printMBBReference(*MFI.getSavePoint());
Alex Lorenza6f9a372015-07-29 21:09:09 +0000322 }
323 if (MFI.getRestorePoint()) {
324 raw_string_ostream StrOS(YamlMFI.RestorePoint.Value);
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000325 StrOS << printMBBReference(*MFI.getRestorePoint());
Alex Lorenza6f9a372015-07-29 21:09:09 +0000326 }
Alex Lorenz60541c12015-07-09 19:55:27 +0000327}
328
Matthias Braunef331ef2016-11-30 23:48:50 +0000329void MIRPrinter::convertStackObjects(yaml::MachineFunction &YMF,
330 const MachineFunction &MF,
331 ModuleSlotTracker &MST) {
332 const MachineFrameInfo &MFI = MF.getFrameInfo();
333 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
Alex Lorenzde491f02015-07-13 18:07:26 +0000334 // Process fixed stack objects.
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000335 unsigned ID = 0;
Alex Lorenzde491f02015-07-13 18:07:26 +0000336 for (int I = MFI.getObjectIndexBegin(); I < 0; ++I) {
337 if (MFI.isDeadObjectIndex(I))
338 continue;
339
340 yaml::FixedMachineStackObject YamlObject;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000341 YamlObject.ID = ID;
Alex Lorenzde491f02015-07-13 18:07:26 +0000342 YamlObject.Type = MFI.isSpillSlotObjectIndex(I)
343 ? yaml::FixedMachineStackObject::SpillSlot
344 : yaml::FixedMachineStackObject::DefaultType;
345 YamlObject.Offset = MFI.getObjectOffset(I);
346 YamlObject.Size = MFI.getObjectSize(I);
347 YamlObject.Alignment = MFI.getObjectAlignment(I);
Matt Arsenaultdb782732017-07-20 21:03:45 +0000348 YamlObject.StackID = MFI.getStackID(I);
Alex Lorenzde491f02015-07-13 18:07:26 +0000349 YamlObject.IsImmutable = MFI.isImmutableObjectIndex(I);
350 YamlObject.IsAliased = MFI.isAliasedObjectIndex(I);
Matthias Braunef331ef2016-11-30 23:48:50 +0000351 YMF.FixedStackObjects.push_back(YamlObject);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000352 StackObjectOperandMapping.insert(
353 std::make_pair(I, FrameIndexOperand::createFixed(ID++)));
Alex Lorenzde491f02015-07-13 18:07:26 +0000354 }
355
356 // Process ordinary stack objects.
357 ID = 0;
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000358 for (int I = 0, E = MFI.getObjectIndexEnd(); I < E; ++I) {
359 if (MFI.isDeadObjectIndex(I))
360 continue;
361
362 yaml::MachineStackObject YamlObject;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000363 YamlObject.ID = ID;
Alex Lorenz37643a02015-07-15 22:14:49 +0000364 if (const auto *Alloca = MFI.getObjectAllocation(I))
365 YamlObject.Name.Value =
366 Alloca->hasName() ? Alloca->getName() : "<unnamed alloca>";
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000367 YamlObject.Type = MFI.isSpillSlotObjectIndex(I)
368 ? yaml::MachineStackObject::SpillSlot
Alex Lorenz418f3ec2015-07-14 00:26:26 +0000369 : MFI.isVariableSizedObjectIndex(I)
370 ? yaml::MachineStackObject::VariableSized
371 : yaml::MachineStackObject::DefaultType;
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000372 YamlObject.Offset = MFI.getObjectOffset(I);
373 YamlObject.Size = MFI.getObjectSize(I);
374 YamlObject.Alignment = MFI.getObjectAlignment(I);
Matt Arsenaultdb782732017-07-20 21:03:45 +0000375 YamlObject.StackID = MFI.getStackID(I);
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000376
Matthias Braunef331ef2016-11-30 23:48:50 +0000377 YMF.StackObjects.push_back(YamlObject);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000378 StackObjectOperandMapping.insert(std::make_pair(
379 I, FrameIndexOperand::create(YamlObject.Name.Value, ID++)));
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000380 }
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000381
382 for (const auto &CSInfo : MFI.getCalleeSavedInfo()) {
383 yaml::StringValue Reg;
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000384 printRegMIR(CSInfo.getReg(), Reg, TRI);
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000385 auto StackObjectInfo = StackObjectOperandMapping.find(CSInfo.getFrameIdx());
386 assert(StackObjectInfo != StackObjectOperandMapping.end() &&
387 "Invalid stack object index");
388 const FrameIndexOperand &StackObject = StackObjectInfo->second;
Matthias Braun5c3e8a42017-09-28 18:52:14 +0000389 if (StackObject.IsFixed) {
Matthias Braunef331ef2016-11-30 23:48:50 +0000390 YMF.FixedStackObjects[StackObject.ID].CalleeSavedRegister = Reg;
Matthias Braun5c3e8a42017-09-28 18:52:14 +0000391 YMF.FixedStackObjects[StackObject.ID].CalleeSavedRestored =
392 CSInfo.isRestored();
393 } else {
Matthias Braunef331ef2016-11-30 23:48:50 +0000394 YMF.StackObjects[StackObject.ID].CalleeSavedRegister = Reg;
Matthias Braun5c3e8a42017-09-28 18:52:14 +0000395 YMF.StackObjects[StackObject.ID].CalleeSavedRestored =
396 CSInfo.isRestored();
397 }
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000398 }
Alex Lorenza56ba6a2015-08-17 22:17:42 +0000399 for (unsigned I = 0, E = MFI.getLocalFrameObjectCount(); I < E; ++I) {
400 auto LocalObject = MFI.getLocalFrameObjectMap(I);
401 auto StackObjectInfo = StackObjectOperandMapping.find(LocalObject.first);
402 assert(StackObjectInfo != StackObjectOperandMapping.end() &&
403 "Invalid stack object index");
404 const FrameIndexOperand &StackObject = StackObjectInfo->second;
405 assert(!StackObject.IsFixed && "Expected a locally mapped stack object");
Matthias Braunef331ef2016-11-30 23:48:50 +0000406 YMF.StackObjects[StackObject.ID].LocalOffset = LocalObject.second;
Alex Lorenza56ba6a2015-08-17 22:17:42 +0000407 }
Alex Lorenza314d812015-08-18 22:26:26 +0000408
409 // Print the stack object references in the frame information class after
410 // converting the stack objects.
411 if (MFI.hasStackProtectorIndex()) {
Matthias Braunef331ef2016-11-30 23:48:50 +0000412 raw_string_ostream StrOS(YMF.FrameInfo.StackProtector.Value);
Alex Lorenza314d812015-08-18 22:26:26 +0000413 MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping)
414 .printStackObjectReference(MFI.getStackProtectorIndex());
415 }
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000416
417 // Print the debug variable information.
Matthias Braunef331ef2016-11-30 23:48:50 +0000418 for (const MachineFunction::VariableDbgInfo &DebugVar :
419 MF.getVariableDbgInfo()) {
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000420 auto StackObjectInfo = StackObjectOperandMapping.find(DebugVar.Slot);
421 assert(StackObjectInfo != StackObjectOperandMapping.end() &&
422 "Invalid stack object index");
423 const FrameIndexOperand &StackObject = StackObjectInfo->second;
424 assert(!StackObject.IsFixed && "Expected a non-fixed stack object");
Matthias Braunef331ef2016-11-30 23:48:50 +0000425 auto &Object = YMF.StackObjects[StackObject.ID];
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000426 {
427 raw_string_ostream StrOS(Object.DebugVar.Value);
428 DebugVar.Var->printAsOperand(StrOS, MST);
429 }
430 {
431 raw_string_ostream StrOS(Object.DebugExpr.Value);
432 DebugVar.Expr->printAsOperand(StrOS, MST);
433 }
434 {
435 raw_string_ostream StrOS(Object.DebugLoc.Value);
436 DebugVar.Loc->printAsOperand(StrOS, MST);
437 }
438 }
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000439}
440
Alex Lorenzab980492015-07-20 20:51:18 +0000441void MIRPrinter::convert(yaml::MachineFunction &MF,
442 const MachineConstantPool &ConstantPool) {
443 unsigned ID = 0;
444 for (const MachineConstantPoolEntry &Constant : ConstantPool.getConstants()) {
Alex Lorenzab980492015-07-20 20:51:18 +0000445 std::string Str;
446 raw_string_ostream StrOS(Str);
Diana Picusd5a00b02017-08-02 11:09:30 +0000447 if (Constant.isMachineConstantPoolEntry()) {
448 Constant.Val.MachineCPVal->print(StrOS);
449 } else {
450 Constant.Val.ConstVal->printAsOperand(StrOS);
451 }
452
453 yaml::MachineConstantPoolValue YamlConstant;
Alex Lorenzab980492015-07-20 20:51:18 +0000454 YamlConstant.ID = ID++;
455 YamlConstant.Value = StrOS.str();
456 YamlConstant.Alignment = Constant.getAlignment();
Diana Picusd5a00b02017-08-02 11:09:30 +0000457 YamlConstant.IsTargetSpecific = Constant.isMachineConstantPoolEntry();
458
Alex Lorenzab980492015-07-20 20:51:18 +0000459 MF.Constants.push_back(YamlConstant);
460 }
461}
462
Alex Lorenz900b5cb2015-07-07 23:27:53 +0000463void MIRPrinter::convert(ModuleSlotTracker &MST,
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000464 yaml::MachineJumpTable &YamlJTI,
465 const MachineJumpTableInfo &JTI) {
466 YamlJTI.Kind = JTI.getEntryKind();
467 unsigned ID = 0;
468 for (const auto &Table : JTI.getJumpTables()) {
469 std::string Str;
470 yaml::MachineJumpTable::Entry Entry;
471 Entry.ID = ID++;
472 for (const auto *MBB : Table.MBBs) {
473 raw_string_ostream StrOS(Str);
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000474 StrOS << printMBBReference(*MBB);
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000475 Entry.Blocks.push_back(StrOS.str());
476 Str.clear();
477 }
478 YamlJTI.Entries.push_back(Entry);
479 }
480}
481
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000482void MIRPrinter::initRegisterMaskIds(const MachineFunction &MF) {
483 const auto *TRI = MF.getSubtarget().getRegisterInfo();
484 unsigned I = 0;
485 for (const uint32_t *Mask : TRI->getRegMasks())
486 RegisterMaskIds.insert(std::make_pair(Mask, I++));
487}
488
Matthias Braun89401142017-05-05 21:09:30 +0000489void llvm::guessSuccessors(const MachineBasicBlock &MBB,
490 SmallVectorImpl<MachineBasicBlock*> &Result,
491 bool &IsFallthrough) {
492 SmallPtrSet<MachineBasicBlock*,8> Seen;
493
494 for (const MachineInstr &MI : MBB) {
495 if (MI.isPHI())
496 continue;
497 for (const MachineOperand &MO : MI.operands()) {
498 if (!MO.isMBB())
499 continue;
500 MachineBasicBlock *Succ = MO.getMBB();
501 auto RP = Seen.insert(Succ);
502 if (RP.second)
503 Result.push_back(Succ);
504 }
505 }
506 MachineBasicBlock::const_iterator I = MBB.getLastNonDebugInstr();
507 IsFallthrough = I == MBB.end() || !I->isBarrier();
508}
509
510bool
511MIPrinter::canPredictBranchProbabilities(const MachineBasicBlock &MBB) const {
512 if (MBB.succ_size() <= 1)
513 return true;
514 if (!MBB.hasSuccessorProbabilities())
515 return true;
516
517 SmallVector<BranchProbability,8> Normalized(MBB.Probs.begin(),
518 MBB.Probs.end());
519 BranchProbability::normalizeProbabilities(Normalized.begin(),
520 Normalized.end());
521 SmallVector<BranchProbability,8> Equal(Normalized.size());
522 BranchProbability::normalizeProbabilities(Equal.begin(), Equal.end());
523
524 return std::equal(Normalized.begin(), Normalized.end(), Equal.begin());
525}
526
527bool MIPrinter::canPredictSuccessors(const MachineBasicBlock &MBB) const {
528 SmallVector<MachineBasicBlock*,8> GuessedSuccs;
529 bool GuessedFallthrough;
530 guessSuccessors(MBB, GuessedSuccs, GuessedFallthrough);
531 if (GuessedFallthrough) {
532 const MachineFunction &MF = *MBB.getParent();
533 MachineFunction::const_iterator NextI = std::next(MBB.getIterator());
534 if (NextI != MF.end()) {
535 MachineBasicBlock *Next = const_cast<MachineBasicBlock*>(&*NextI);
536 if (!is_contained(GuessedSuccs, Next))
537 GuessedSuccs.push_back(Next);
538 }
539 }
540 if (GuessedSuccs.size() != MBB.succ_size())
541 return false;
542 return std::equal(MBB.succ_begin(), MBB.succ_end(), GuessedSuccs.begin());
543}
544
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000545void MIPrinter::print(const MachineBasicBlock &MBB) {
546 assert(MBB.getNumber() >= 0 && "Invalid MBB number");
547 OS << "bb." << MBB.getNumber();
548 bool HasAttributes = false;
549 if (const auto *BB = MBB.getBasicBlock()) {
550 if (BB->hasName()) {
551 OS << "." << BB->getName();
552 } else {
553 HasAttributes = true;
554 OS << " (";
555 int Slot = MST.getLocalSlot(BB);
556 if (Slot == -1)
557 OS << "<ir-block badref>";
558 else
559 OS << (Twine("%ir-block.") + Twine(Slot)).str();
560 }
561 }
562 if (MBB.hasAddressTaken()) {
563 OS << (HasAttributes ? ", " : " (");
564 OS << "address-taken";
565 HasAttributes = true;
566 }
Reid Kleckner0e288232015-08-27 23:27:47 +0000567 if (MBB.isEHPad()) {
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000568 OS << (HasAttributes ? ", " : " (");
569 OS << "landing-pad";
570 HasAttributes = true;
571 }
572 if (MBB.getAlignment()) {
573 OS << (HasAttributes ? ", " : " (");
574 OS << "align " << MBB.getAlignment();
575 HasAttributes = true;
576 }
577 if (HasAttributes)
578 OS << ")";
579 OS << ":\n";
580
581 bool HasLineAttributes = false;
582 // Print the successors
Matthias Braun89401142017-05-05 21:09:30 +0000583 bool canPredictProbs = canPredictBranchProbabilities(MBB);
Quentin Colombetd652aeb2017-09-19 23:34:12 +0000584 // Even if the list of successors is empty, if we cannot guess it,
585 // we need to print it to tell the parser that the list is empty.
586 // This is needed, because MI model unreachable as empty blocks
587 // with an empty successor list. If the parser would see that
588 // without the successor list, it would guess the code would
589 // fallthrough.
590 if ((!MBB.succ_empty() && !SimplifyMIR) || !canPredictProbs ||
591 !canPredictSuccessors(MBB)) {
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000592 OS.indent(2) << "successors: ";
593 for (auto I = MBB.succ_begin(), E = MBB.succ_end(); I != E; ++I) {
594 if (I != MBB.succ_begin())
595 OS << ", ";
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000596 OS << printMBBReference(**I);
Matthias Braun89401142017-05-05 21:09:30 +0000597 if (!SimplifyMIR || !canPredictProbs)
Geoff Berryb51774a2016-11-18 19:37:24 +0000598 OS << '('
599 << format("0x%08" PRIx32, MBB.getSuccProbability(I).getNumerator())
600 << ')';
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000601 }
602 OS << "\n";
603 HasLineAttributes = true;
604 }
605
606 // Print the live in registers.
Matthias Braun11723322017-01-05 20:01:19 +0000607 const MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
608 if (MRI.tracksLiveness() && !MBB.livein_empty()) {
609 const TargetRegisterInfo &TRI = *MRI.getTargetRegisterInfo();
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000610 OS.indent(2) << "liveins: ";
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000611 bool First = true;
Matthias Braund9da1622015-09-09 18:08:03 +0000612 for (const auto &LI : MBB.liveins()) {
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000613 if (!First)
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000614 OS << ", ";
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000615 First = false;
Francis Visoiu Mistrihc71cced2017-11-30 16:12:24 +0000616 OS << printReg(LI.PhysReg, &TRI);
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +0000617 if (!LI.LaneMask.all())
Krzysztof Parzyszekd62669d2016-10-12 21:06:45 +0000618 OS << ":0x" << PrintLaneMask(LI.LaneMask);
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000619 }
620 OS << "\n";
621 HasLineAttributes = true;
622 }
623
624 if (HasLineAttributes)
625 OS << "\n";
Alex Lorenzf9a2b122015-08-14 18:57:24 +0000626 bool IsInBundle = false;
627 for (auto I = MBB.instr_begin(), E = MBB.instr_end(); I != E; ++I) {
628 const MachineInstr &MI = *I;
629 if (IsInBundle && !MI.isInsideBundle()) {
630 OS.indent(2) << "}\n";
631 IsInBundle = false;
632 }
633 OS.indent(IsInBundle ? 4 : 2);
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000634 print(MI);
Alex Lorenzf9a2b122015-08-14 18:57:24 +0000635 if (!IsInBundle && MI.getFlag(MachineInstr::BundledSucc)) {
636 OS << " {";
637 IsInBundle = true;
638 }
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000639 OS << "\n";
640 }
Alex Lorenzf9a2b122015-08-14 18:57:24 +0000641 if (IsInBundle)
642 OS.indent(2) << "}\n";
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000643}
644
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000645void MIPrinter::print(const MachineInstr &MI) {
Justin Bognerfdf9bf42017-10-10 23:50:49 +0000646 const auto *MF = MI.getMF();
Quentin Colombet4e14a492016-03-07 21:57:52 +0000647 const auto &MRI = MF->getRegInfo();
648 const auto &SubTarget = MF->getSubtarget();
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000649 const auto *TRI = SubTarget.getRegisterInfo();
650 assert(TRI && "Expected target register info");
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000651 const auto *TII = SubTarget.getInstrInfo();
652 assert(TII && "Expected target instruction info");
Alex Lorenzf4baeb52015-07-21 22:28:27 +0000653 if (MI.isCFIInstruction())
654 assert(MI.getNumOperands() == 1 && "Expected 1 operand in CFI instruction");
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000655
Tim Northoverd28d3cc2016-09-12 11:20:10 +0000656 SmallBitVector PrintedTypes(8);
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000657 bool ShouldPrintRegisterTies = MI.hasComplexRegisterTies();
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000658 unsigned I = 0, E = MI.getNumOperands();
659 for (; I < E && MI.getOperand(I).isReg() && MI.getOperand(I).isDef() &&
660 !MI.getOperand(I).isImplicit();
661 ++I) {
662 if (I)
663 OS << ", ";
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000664 print(MI, I, TRI, ShouldPrintRegisterTies,
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000665 MI.getTypeToPrint(I, PrintedTypes, MRI),
666 /*PrintDef=*/false);
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000667 }
668
669 if (I)
670 OS << " = ";
Alex Lorenze5a44662015-07-17 00:24:15 +0000671 if (MI.getFlag(MachineInstr::FrameSetup))
672 OS << "frame-setup ";
Francis Visoiu Mistrihdbf2c482018-01-09 11:33:22 +0000673 else if (MI.getFlag(MachineInstr::FrameDestroy))
674 OS << "frame-destroy ";
675
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000676 OS << TII->getName(MI.getOpcode());
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000677 if (I < E)
678 OS << ' ';
679
680 bool NeedComma = false;
681 for (; I < E; ++I) {
682 if (NeedComma)
683 OS << ", ";
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000684 print(MI, I, TRI, ShouldPrintRegisterTies,
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000685 MI.getTypeToPrint(I, PrintedTypes, MRI));
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000686 NeedComma = true;
687 }
Alex Lorenz46d760d2015-07-22 21:15:11 +0000688
689 if (MI.getDebugLoc()) {
690 if (NeedComma)
691 OS << ',';
692 OS << " debug-location ";
693 MI.getDebugLoc()->printAsOperand(OS, MST);
694 }
Alex Lorenz4af7e612015-08-03 23:08:19 +0000695
696 if (!MI.memoperands_empty()) {
697 OS << " :: ";
Matthias Braunf1caa282017-12-15 22:22:58 +0000698 const LLVMContext &Context = MF->getFunction().getContext();
Alex Lorenz4af7e612015-08-03 23:08:19 +0000699 bool NeedComma = false;
700 for (const auto *Op : MI.memoperands()) {
701 if (NeedComma)
702 OS << ", ";
Geoff Berry6748abe2017-07-13 02:28:54 +0000703 print(Context, *TII, *Op);
Alex Lorenz4af7e612015-08-03 23:08:19 +0000704 NeedComma = true;
705 }
706 }
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000707}
708
Alex Lorenz4af7e612015-08-03 23:08:19 +0000709void MIPrinter::printIRValueReference(const Value &V) {
Alex Lorenz36efd382015-08-20 00:20:03 +0000710 if (isa<GlobalValue>(V)) {
711 V.printAsOperand(OS, /*PrintType=*/false, MST);
712 return;
713 }
Alex Lorenzc1136ef32015-08-21 21:54:12 +0000714 if (isa<Constant>(V)) {
715 // Machine memory operands can load/store to/from constant value pointers.
716 OS << '`';
717 V.printAsOperand(OS, /*PrintType=*/true, MST);
718 OS << '`';
719 return;
720 }
Alex Lorenz4af7e612015-08-03 23:08:19 +0000721 OS << "%ir.";
722 if (V.hasName()) {
723 printLLVMNameWithoutPrefix(OS, V.getName());
724 return;
725 }
Francis Visoiu Mistrihf81727d2017-12-19 21:47:14 +0000726 MachineOperand::printIRSlotNumber(OS, MST.getLocalSlot(&V));
Alex Lorenz4af7e612015-08-03 23:08:19 +0000727}
728
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000729void MIPrinter::printStackObjectReference(int FrameIndex) {
730 auto ObjectInfo = StackObjectOperandMapping.find(FrameIndex);
731 assert(ObjectInfo != StackObjectOperandMapping.end() &&
732 "Invalid frame index");
733 const FrameIndexOperand &Operand = ObjectInfo->second;
Francis Visoiu Mistrih0b5bdce2017-12-15 16:33:45 +0000734 MachineOperand::printStackObjectReference(OS, Operand.ID, Operand.IsFixed,
735 Operand.Name);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000736}
737
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000738void MIPrinter::print(const MachineInstr &MI, unsigned OpIdx,
739 const TargetRegisterInfo *TRI,
740 bool ShouldPrintRegisterTies, LLT TypeToPrint,
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000741 bool PrintDef) {
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000742 const MachineOperand &Op = MI.getOperand(OpIdx);
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000743 switch (Op.getType()) {
Francis Visoiu Mistrih440f69c2017-12-08 22:53:21 +0000744 case MachineOperand::MO_Immediate:
745 if (MI.isOperandSubregIdx(OpIdx)) {
Francis Visoiu Mistrih5df3bbf2017-12-14 10:03:09 +0000746 MachineOperand::printTargetFlags(OS, Op);
Francis Visoiu Mistrihecd0b832018-01-16 10:53:11 +0000747 MachineOperand::printSubRegIdx(OS, Op.getImm(), TRI);
Francis Visoiu Mistrih440f69c2017-12-08 22:53:21 +0000748 break;
749 }
750 LLVM_FALLTHROUGH;
Francis Visoiu Mistrih6c4ca712017-12-08 11:40:06 +0000751 case MachineOperand::MO_Register:
Francis Visoiu Mistrihf4bd2952017-12-08 11:48:02 +0000752 case MachineOperand::MO_CImmediate:
Francis Visoiu Mistrih3b265c82017-12-19 21:47:00 +0000753 case MachineOperand::MO_FPImmediate:
Francis Visoiu Mistrih26ae8a62017-12-13 10:30:45 +0000754 case MachineOperand::MO_MachineBasicBlock:
Francis Visoiu Mistrihb3a0d512017-12-13 10:30:51 +0000755 case MachineOperand::MO_ConstantPoolIndex:
Francis Visoiu Mistrihb41dbbe2017-12-13 10:30:59 +0000756 case MachineOperand::MO_TargetIndex:
Francis Visoiu Mistrihe76c5fc2017-12-14 10:02:58 +0000757 case MachineOperand::MO_JumpTableIndex:
Francis Visoiu Mistrih5df3bbf2017-12-14 10:03:09 +0000758 case MachineOperand::MO_ExternalSymbol:
Francis Visoiu Mistrihbdaf8bf2017-12-14 10:03:14 +0000759 case MachineOperand::MO_GlobalAddress:
Francis Visoiu Mistrih2db59382017-12-14 10:03:18 +0000760 case MachineOperand::MO_RegisterLiveOut:
Francis Visoiu Mistrih3c993712017-12-14 10:03:23 +0000761 case MachineOperand::MO_Metadata:
Francis Visoiu Mistrih874ae6f2017-12-19 16:51:52 +0000762 case MachineOperand::MO_MCSymbol:
Francis Visoiu Mistrihbbd610a2017-12-19 21:47:05 +0000763 case MachineOperand::MO_CFIIndex:
Francis Visoiu Mistrihcb2683d2017-12-19 21:47:10 +0000764 case MachineOperand::MO_IntrinsicID:
Francis Visoiu Mistrihf81727d2017-12-19 21:47:14 +0000765 case MachineOperand::MO_Predicate:
766 case MachineOperand::MO_BlockAddress: {
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000767 unsigned TiedOperandIdx = 0;
Francis Visoiu Mistrih440f69c2017-12-08 22:53:21 +0000768 if (ShouldPrintRegisterTies && Op.isReg() && Op.isTied() && !Op.isDef())
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000769 TiedOperandIdx = Op.getParent()->findTiedOperandIdx(OpIdx);
770 const TargetIntrinsicInfo *TII = MI.getMF()->getTarget().getIntrinsicInfo();
Francis Visoiu Mistrih378b5f32018-01-18 17:59:06 +0000771 Op.print(OS, MST, TypeToPrint, PrintDef, /*IsVerbose=*/false,
772 ShouldPrintRegisterTies, TiedOperandIdx, TRI, TII);
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000773 break;
Justin Bogner6c452832017-10-24 18:04:54 +0000774 }
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000775 case MachineOperand::MO_FrameIndex:
776 printStackObjectReference(Op.getIndex());
777 break;
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000778 case MachineOperand::MO_RegisterMask: {
779 auto RegMaskInfo = RegisterMaskIds.find(Op.getRegMask());
780 if (RegMaskInfo != RegisterMaskIds.end())
781 OS << StringRef(TRI->getRegMaskNames()[RegMaskInfo->second]).lower();
782 else
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000783 printCustomRegMask(Op.getRegMask(), OS, TRI);
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000784 break;
785 }
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000786 }
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000787}
788
Geoff Berry6748abe2017-07-13 02:28:54 +0000789static const char *getTargetMMOFlagName(const TargetInstrInfo &TII,
790 unsigned TMMOFlag) {
791 auto Flags = TII.getSerializableMachineMemOperandTargetFlags();
792 for (const auto &I : Flags) {
793 if (I.first == TMMOFlag) {
794 return I.second;
795 }
796 }
797 return nullptr;
798}
799
800void MIPrinter::print(const LLVMContext &Context, const TargetInstrInfo &TII,
801 const MachineMemOperand &Op) {
Alex Lorenz4af7e612015-08-03 23:08:19 +0000802 OS << '(';
Alex Lorenza518b792015-08-04 00:24:45 +0000803 if (Op.isVolatile())
804 OS << "volatile ";
Alex Lorenz10fd0382015-08-06 16:49:30 +0000805 if (Op.isNonTemporal())
806 OS << "non-temporal ";
Justin Lebaradbf09e2016-09-11 01:38:58 +0000807 if (Op.isDereferenceable())
808 OS << "dereferenceable ";
Alex Lorenzdc8de2a2015-08-06 16:55:53 +0000809 if (Op.isInvariant())
810 OS << "invariant ";
Geoff Berry6748abe2017-07-13 02:28:54 +0000811 if (Op.getFlags() & MachineMemOperand::MOTargetFlag1)
812 OS << '"' << getTargetMMOFlagName(TII, MachineMemOperand::MOTargetFlag1)
813 << "\" ";
814 if (Op.getFlags() & MachineMemOperand::MOTargetFlag2)
815 OS << '"' << getTargetMMOFlagName(TII, MachineMemOperand::MOTargetFlag2)
816 << "\" ";
817 if (Op.getFlags() & MachineMemOperand::MOTargetFlag3)
818 OS << '"' << getTargetMMOFlagName(TII, MachineMemOperand::MOTargetFlag3)
819 << "\" ";
Daniel Sanders17d277b2017-11-28 18:57:02 +0000820
821 assert((Op.isLoad() || Op.isStore()) && "machine memory operand must be a load or store (or both)");
Alex Lorenz4af7e612015-08-03 23:08:19 +0000822 if (Op.isLoad())
823 OS << "load ";
Daniel Sanders17d277b2017-11-28 18:57:02 +0000824 if (Op.isStore())
Alex Lorenz4af7e612015-08-03 23:08:19 +0000825 OS << "store ";
Tim Northoverb73e3092017-02-13 22:14:08 +0000826
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000827 printSyncScope(Context, Op.getSyncScopeID());
Tim Northoverb73e3092017-02-13 22:14:08 +0000828
829 if (Op.getOrdering() != AtomicOrdering::NotAtomic)
830 OS << toIRString(Op.getOrdering()) << ' ';
831 if (Op.getFailureOrdering() != AtomicOrdering::NotAtomic)
832 OS << toIRString(Op.getFailureOrdering()) << ' ';
833
Matthias Braunc25c9cc2016-06-04 00:06:31 +0000834 OS << Op.getSize();
Alex Lorenz91097a32015-08-12 20:33:26 +0000835 if (const Value *Val = Op.getValue()) {
Daniel Sanders17d277b2017-11-28 18:57:02 +0000836 OS << ((Op.isLoad() && Op.isStore()) ? " on "
837 : Op.isLoad() ? " from " : " into ");
Alex Lorenz4af7e612015-08-03 23:08:19 +0000838 printIRValueReference(*Val);
Matthias Braunc25c9cc2016-06-04 00:06:31 +0000839 } else if (const PseudoSourceValue *PVal = Op.getPseudoValue()) {
Daniel Sanders17d277b2017-11-28 18:57:02 +0000840 OS << ((Op.isLoad() && Op.isStore()) ? " on "
841 : Op.isLoad() ? " from " : " into ");
Alex Lorenz91097a32015-08-12 20:33:26 +0000842 assert(PVal && "Expected a pseudo source value");
843 switch (PVal->kind()) {
Alex Lorenz46e95582015-08-12 20:44:16 +0000844 case PseudoSourceValue::Stack:
845 OS << "stack";
846 break;
Alex Lorenzd858f872015-08-12 21:00:22 +0000847 case PseudoSourceValue::GOT:
848 OS << "got";
849 break;
Alex Lorenz4be56e92015-08-12 21:11:08 +0000850 case PseudoSourceValue::JumpTable:
851 OS << "jump-table";
852 break;
Alex Lorenz91097a32015-08-12 20:33:26 +0000853 case PseudoSourceValue::ConstantPool:
854 OS << "constant-pool";
855 break;
Alex Lorenz0cc671b2015-08-12 21:23:17 +0000856 case PseudoSourceValue::FixedStack:
857 printStackObjectReference(
858 cast<FixedStackPseudoSourceValue>(PVal)->getFrameIndex());
859 break;
Alex Lorenz50b826f2015-08-14 21:08:30 +0000860 case PseudoSourceValue::GlobalValueCallEntry:
Alex Lorenz0d009642015-08-20 00:12:57 +0000861 OS << "call-entry ";
Alex Lorenz50b826f2015-08-14 21:08:30 +0000862 cast<GlobalValuePseudoSourceValue>(PVal)->getValue()->printAsOperand(
863 OS, /*PrintType=*/false, MST);
864 break;
Alex Lorenzc3ba7502015-08-14 21:14:50 +0000865 case PseudoSourceValue::ExternalSymbolCallEntry:
Puyan Lotfife6c9cb2018-01-10 00:56:48 +0000866 OS << "call-entry &";
Alex Lorenzc3ba7502015-08-14 21:14:50 +0000867 printLLVMNameWithoutPrefix(
868 OS, cast<ExternalSymbolPseudoSourceValue>(PVal)->getSymbol());
Alex Lorenz91097a32015-08-12 20:33:26 +0000869 break;
Tom Stellard7761abb2016-12-17 04:41:53 +0000870 case PseudoSourceValue::TargetCustom:
871 llvm_unreachable("TargetCustom pseudo source values are not supported");
872 break;
Alex Lorenz91097a32015-08-12 20:33:26 +0000873 }
874 }
Francis Visoiu Mistrih81226602017-12-19 21:46:55 +0000875 MachineOperand::printOperandOffset(OS, Op.getOffset());
Alex Lorenz61420f72015-08-07 20:48:30 +0000876 if (Op.getBaseAlignment() != Op.getSize())
877 OS << ", align " << Op.getBaseAlignment();
Alex Lorenza617c912015-08-17 22:05:15 +0000878 auto AAInfo = Op.getAAInfo();
879 if (AAInfo.TBAA) {
880 OS << ", !tbaa ";
881 AAInfo.TBAA->printAsOperand(OS, MST);
882 }
Alex Lorenza16f6242015-08-17 22:06:40 +0000883 if (AAInfo.Scope) {
884 OS << ", !alias.scope ";
885 AAInfo.Scope->printAsOperand(OS, MST);
886 }
Alex Lorenz03e940d2015-08-17 22:08:02 +0000887 if (AAInfo.NoAlias) {
888 OS << ", !noalias ";
889 AAInfo.NoAlias->printAsOperand(OS, MST);
890 }
Alex Lorenzeb625682015-08-17 22:09:52 +0000891 if (Op.getRanges()) {
892 OS << ", !range ";
893 Op.getRanges()->printAsOperand(OS, MST);
894 }
Alex Lorenz4af7e612015-08-03 23:08:19 +0000895 OS << ')';
896}
897
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000898void MIPrinter::printSyncScope(const LLVMContext &Context, SyncScope::ID SSID) {
899 switch (SSID) {
900 case SyncScope::System: {
901 break;
902 }
903 default: {
904 if (SSNs.empty())
905 Context.getSyncScopeNames(SSNs);
906
907 OS << "syncscope(\"";
908 PrintEscapedString(SSNs[SSID], OS);
909 OS << "\") ";
910 break;
911 }
912 }
913}
914
Alex Lorenz345c1442015-06-15 23:52:35 +0000915void llvm::printMIR(raw_ostream &OS, const Module &M) {
916 yaml::Output Out(OS);
917 Out << const_cast<Module &>(M);
918}
919
920void llvm::printMIR(raw_ostream &OS, const MachineFunction &MF) {
921 MIRPrinter Printer(OS);
922 Printer.print(MF);
923}