blob: 1a4e21ac06a9ab06110cb18066dcce74655941b9 [file] [log] [blame]
Alex Lorenz345c1442015-06-15 23:52:35 +00001//===- MIRPrinter.cpp - MIR serialization format printer ------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Alex Lorenz345c1442015-06-15 23:52:35 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file implements the class that prints out the LLVM IR and machine
10// functions using the MIR serialization format.
11//
12//===----------------------------------------------------------------------===//
13
David Blaikie3f833ed2017-11-08 01:01:31 +000014#include "llvm/CodeGen/MIRPrinter.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000015#include "llvm/ADT/DenseMap.h"
16#include "llvm/ADT/None.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000017#include "llvm/ADT/STLExtras.h"
Tim Northoverd28d3cc2016-09-12 11:20:10 +000018#include "llvm/ADT/SmallBitVector.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000019#include "llvm/ADT/SmallPtrSet.h"
20#include "llvm/ADT/SmallVector.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000021#include "llvm/ADT/StringRef.h"
22#include "llvm/ADT/Twine.h"
Quentin Colombetfab1cfe2016-04-08 16:26:22 +000023#include "llvm/CodeGen/GlobalISel/RegisterBank.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000024#include "llvm/CodeGen/MIRYamlMapping.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000025#include "llvm/CodeGen/MachineBasicBlock.h"
Alex Lorenzab980492015-07-20 20:51:18 +000026#include "llvm/CodeGen/MachineConstantPool.h"
Alex Lorenz60541c12015-07-09 19:55:27 +000027#include "llvm/CodeGen/MachineFrameInfo.h"
Quentin Colombetfab1cfe2016-04-08 16:26:22 +000028#include "llvm/CodeGen/MachineFunction.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000029#include "llvm/CodeGen/MachineInstr.h"
30#include "llvm/CodeGen/MachineJumpTableInfo.h"
Alex Lorenz4af7e612015-08-03 23:08:19 +000031#include "llvm/CodeGen/MachineMemOperand.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000032#include "llvm/CodeGen/MachineOperand.h"
Alex Lorenz54565cf2015-06-24 19:56:10 +000033#include "llvm/CodeGen/MachineRegisterInfo.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000034#include "llvm/CodeGen/PseudoSourceValue.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000035#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000036#include "llvm/CodeGen/TargetRegisterInfo.h"
37#include "llvm/CodeGen/TargetSubtargetInfo.h"
Sander de Smalen5d6ee762019-06-17 09:13:29 +000038#include "llvm/CodeGen/TargetFrameLowering.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"
Chandler Carruth75ca6be2018-08-16 23:11:05 +000053#include "llvm/MC/MCContext.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000054#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);
Djordje Todorovica7cde102019-06-27 07:48:06 +0000132 void convertCallSiteObjects(yaml::MachineFunction &YMF,
133 const MachineFunction &MF,
134 ModuleSlotTracker &MST);
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000135
136private:
137 void initRegisterMaskIds(const MachineFunction &MF);
Alex Lorenz345c1442015-06-15 23:52:35 +0000138};
139
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000140/// This class prints out the machine instructions using the MIR serialization
141/// format.
142class MIPrinter {
143 raw_ostream &OS;
Alex Lorenz900b5cb2015-07-07 23:27:53 +0000144 ModuleSlotTracker &MST;
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000145 const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000146 const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000147 /// Synchronization scope names registered with LLVMContext.
148 SmallVector<StringRef, 8> SSNs;
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000149
Matthias Braun89401142017-05-05 21:09:30 +0000150 bool canPredictBranchProbabilities(const MachineBasicBlock &MBB) const;
151 bool canPredictSuccessors(const MachineBasicBlock &MBB) const;
152
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000153public:
Alex Lorenz900b5cb2015-07-07 23:27:53 +0000154 MIPrinter(raw_ostream &OS, ModuleSlotTracker &MST,
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000155 const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds,
156 const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping)
157 : OS(OS), MST(MST), RegisterMaskIds(RegisterMaskIds),
158 StackObjectOperandMapping(StackObjectOperandMapping) {}
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000159
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000160 void print(const MachineBasicBlock &MBB);
161
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000162 void print(const MachineInstr &MI);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000163 void printStackObjectReference(int FrameIndex);
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000164 void print(const MachineInstr &MI, unsigned OpIdx,
165 const TargetRegisterInfo *TRI, bool ShouldPrintRegisterTies,
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000166 LLT TypeToPrint, bool PrintDef = true);
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000167};
168
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000169} // end namespace llvm
Alex Lorenz345c1442015-06-15 23:52:35 +0000170
171namespace llvm {
172namespace yaml {
173
174/// This struct serializes the LLVM IR module.
175template <> struct BlockScalarTraits<Module> {
176 static void output(const Module &Mod, void *Ctxt, raw_ostream &OS) {
177 Mod.print(OS, nullptr);
178 }
Eugene Zelenkofb69e662017-06-06 22:22:41 +0000179
Alex Lorenz345c1442015-06-15 23:52:35 +0000180 static StringRef input(StringRef Str, void *Ctxt, Module &Mod) {
181 llvm_unreachable("LLVM Module is supposed to be parsed separately");
182 return "";
183 }
184};
185
186} // end namespace yaml
187} // end namespace llvm
188
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000189static void printRegMIR(unsigned Reg, yaml::StringValue &Dest,
190 const TargetRegisterInfo *TRI) {
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000191 raw_string_ostream OS(Dest.Value);
Francis Visoiu Mistrihc71cced2017-11-30 16:12:24 +0000192 OS << printReg(Reg, TRI);
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000193}
194
Alex Lorenz345c1442015-06-15 23:52:35 +0000195void MIRPrinter::print(const MachineFunction &MF) {
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000196 initRegisterMaskIds(MF);
197
Alex Lorenz345c1442015-06-15 23:52:35 +0000198 yaml::MachineFunction YamlMF;
199 YamlMF.Name = MF.getName();
Guillaume Chatelet48904e92019-09-11 11:16:48 +0000200 YamlMF.Alignment = MF.getAlignment().value();
Alex Lorenz5b5f9752015-06-16 00:10:47 +0000201 YamlMF.ExposesReturnsTwice = MF.exposesReturnsTwice();
Sanjin Sijaric625d08e2018-10-24 21:07:38 +0000202 YamlMF.HasWinCFI = MF.hasWinCFI();
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);
Roman Tereshin3054ece2018-02-28 17:55:45 +0000210 YamlMF.FailedISel = MF.getProperties().hasProperty(
211 MachineFunctionProperties::Property::FailedISel);
Ahmed Bougacha0d7b0cb2016-08-02 15:10:25 +0000212
Alex Lorenz28148ba2015-07-09 22:23:13 +0000213 convert(YamlMF, MF.getRegInfo(), MF.getSubtarget().getRegisterInfo());
Matthias Braunf1caa282017-12-15 22:22:58 +0000214 ModuleSlotTracker MST(MF.getFunction().getParent());
215 MST.incorporateFunction(MF.getFunction());
Matthias Braun941a7052016-07-28 18:40:00 +0000216 convert(MST, YamlMF.FrameInfo, MF.getFrameInfo());
Matthias Braunef331ef2016-11-30 23:48:50 +0000217 convertStackObjects(YamlMF, MF, MST);
Djordje Todorovica7cde102019-06-27 07:48:06 +0000218 convertCallSiteObjects(YamlMF, MF, MST);
Alex Lorenzab980492015-07-20 20:51:18 +0000219 if (const auto *ConstantPool = MF.getConstantPool())
220 convert(YamlMF, *ConstantPool);
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000221 if (const auto *JumpTableInfo = MF.getJumpTableInfo())
222 convert(MST, YamlMF.JumpTableInfo, *JumpTableInfo);
Matt Arsenaultbc6d07c2019-03-14 22:54:43 +0000223
224 const TargetMachine &TM = MF.getTarget();
225 YamlMF.MachineFuncInfo =
226 std::unique_ptr<yaml::MachineFunctionInfo>(TM.convertFuncInfoToYAML(MF));
227
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000228 raw_string_ostream StrOS(YamlMF.Body.Value.Value);
229 bool IsNewlineNeeded = false;
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000230 for (const auto &MBB : MF) {
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000231 if (IsNewlineNeeded)
232 StrOS << "\n";
233 MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping)
234 .print(MBB);
235 IsNewlineNeeded = true;
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000236 }
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000237 StrOS.flush();
Alex Lorenz345c1442015-06-15 23:52:35 +0000238 yaml::Output Out(OS);
Vivek Pandya56d87ef2017-06-06 08:16:19 +0000239 if (!SimplifyMIR)
240 Out.setWriteDefaultValues(true);
Alex Lorenz345c1442015-06-15 23:52:35 +0000241 Out << YamlMF;
242}
243
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000244static void printCustomRegMask(const uint32_t *RegMask, raw_ostream &OS,
245 const TargetRegisterInfo *TRI) {
246 assert(RegMask && "Can't print an empty register mask");
247 OS << StringRef("CustomRegMask(");
248
249 bool IsRegInRegMaskFound = false;
250 for (int I = 0, E = TRI->getNumRegs(); I < E; I++) {
251 // Check whether the register is asserted in regmask.
252 if (RegMask[I / 32] & (1u << (I % 32))) {
253 if (IsRegInRegMaskFound)
254 OS << ',';
Francis Visoiu Mistrihc71cced2017-11-30 16:12:24 +0000255 OS << printReg(I, TRI);
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000256 IsRegInRegMaskFound = true;
257 }
258 }
259
260 OS << ')';
261}
262
Justin Bogner6c452832017-10-24 18:04:54 +0000263static void printRegClassOrBank(unsigned Reg, yaml::StringValue &Dest,
264 const MachineRegisterInfo &RegInfo,
265 const TargetRegisterInfo *TRI) {
266 raw_string_ostream OS(Dest.Value);
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000267 OS << printRegClassOrBank(Reg, RegInfo, TRI);
Justin Bogner6c452832017-10-24 18:04:54 +0000268}
269
Francis Visoiu Mistrih57fcd342018-04-25 18:58:06 +0000270template <typename T>
271static void
272printStackObjectDbgInfo(const MachineFunction::VariableDbgInfo &DebugVar,
273 T &Object, ModuleSlotTracker &MST) {
274 std::array<std::string *, 3> Outputs{{&Object.DebugVar.Value,
275 &Object.DebugExpr.Value,
276 &Object.DebugLoc.Value}};
277 std::array<const Metadata *, 3> Metas{{DebugVar.Var,
278 DebugVar.Expr,
279 DebugVar.Loc}};
280 for (unsigned i = 0; i < 3; ++i) {
281 raw_string_ostream StrOS(*Outputs[i]);
282 Metas[i]->printAsOperand(StrOS, MST);
283 }
284}
Justin Bogner6c452832017-10-24 18:04:54 +0000285
Alex Lorenz54565cf2015-06-24 19:56:10 +0000286void MIRPrinter::convert(yaml::MachineFunction &MF,
Alex Lorenz28148ba2015-07-09 22:23:13 +0000287 const MachineRegisterInfo &RegInfo,
288 const TargetRegisterInfo *TRI) {
Alex Lorenz54565cf2015-06-24 19:56:10 +0000289 MF.TracksRegLiveness = RegInfo.tracksLiveness();
Alex Lorenz28148ba2015-07-09 22:23:13 +0000290
291 // Print the virtual register definitions.
292 for (unsigned I = 0, E = RegInfo.getNumVirtRegs(); I < E; ++I) {
Daniel Sanders2bea69b2019-08-01 23:27:28 +0000293 unsigned Reg = Register::index2VirtReg(I);
Alex Lorenz28148ba2015-07-09 22:23:13 +0000294 yaml::VirtualRegisterDefinition VReg;
295 VReg.ID = I;
Puyan Lotfi399b46c2018-03-30 18:15:54 +0000296 if (RegInfo.getVRegName(Reg) != "")
297 continue;
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000298 ::printRegClassOrBank(Reg, VReg.Class, RegInfo, TRI);
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000299 unsigned PreferredReg = RegInfo.getSimpleHint(Reg);
300 if (PreferredReg)
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000301 printRegMIR(PreferredReg, VReg.PreferredRegister, TRI);
Alex Lorenz28148ba2015-07-09 22:23:13 +0000302 MF.VirtualRegisters.push_back(VReg);
303 }
Alex Lorenz12045a42015-07-27 17:42:45 +0000304
305 // Print the live ins.
Krzysztof Parzyszek72518ea2017-10-16 19:08:41 +0000306 for (std::pair<unsigned, unsigned> LI : RegInfo.liveins()) {
Alex Lorenz12045a42015-07-27 17:42:45 +0000307 yaml::MachineFunctionLiveIn LiveIn;
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000308 printRegMIR(LI.first, LiveIn.Register, TRI);
Krzysztof Parzyszek72518ea2017-10-16 19:08:41 +0000309 if (LI.second)
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000310 printRegMIR(LI.second, LiveIn.VirtualRegister, TRI);
Alex Lorenz12045a42015-07-27 17:42:45 +0000311 MF.LiveIns.push_back(LiveIn);
312 }
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000313
314 // Prints the callee saved registers.
315 if (RegInfo.isUpdatedCSRsInitialized()) {
316 const MCPhysReg *CalleeSavedRegs = RegInfo.getCalleeSavedRegs();
317 std::vector<yaml::FlowStringValue> CalleeSavedRegisters;
318 for (const MCPhysReg *I = CalleeSavedRegs; *I; ++I) {
Alex Lorenzc4838082015-08-11 00:32:49 +0000319 yaml::FlowStringValue Reg;
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000320 printRegMIR(*I, Reg, TRI);
Alex Lorenzc4838082015-08-11 00:32:49 +0000321 CalleeSavedRegisters.push_back(Reg);
322 }
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000323 MF.CalleeSavedRegisters = CalleeSavedRegisters;
Alex Lorenzc4838082015-08-11 00:32:49 +0000324 }
Alex Lorenz54565cf2015-06-24 19:56:10 +0000325}
326
Alex Lorenza6f9a372015-07-29 21:09:09 +0000327void MIRPrinter::convert(ModuleSlotTracker &MST,
328 yaml::MachineFrameInfo &YamlMFI,
Alex Lorenz60541c12015-07-09 19:55:27 +0000329 const MachineFrameInfo &MFI) {
330 YamlMFI.IsFrameAddressTaken = MFI.isFrameAddressTaken();
331 YamlMFI.IsReturnAddressTaken = MFI.isReturnAddressTaken();
332 YamlMFI.HasStackMap = MFI.hasStackMap();
333 YamlMFI.HasPatchPoint = MFI.hasPatchPoint();
334 YamlMFI.StackSize = MFI.getStackSize();
335 YamlMFI.OffsetAdjustment = MFI.getOffsetAdjustment();
336 YamlMFI.MaxAlignment = MFI.getMaxAlignment();
337 YamlMFI.AdjustsStack = MFI.adjustsStack();
338 YamlMFI.HasCalls = MFI.hasCalls();
Matthias Braunab9438c2017-05-01 22:32:25 +0000339 YamlMFI.MaxCallFrameSize = MFI.isMaxCallFrameSizeComputed()
340 ? MFI.getMaxCallFrameSize() : ~0u;
Reid Kleckner9ea2c012018-10-01 21:59:45 +0000341 YamlMFI.CVBytesOfCalleeSavedRegisters =
342 MFI.getCVBytesOfCalleeSavedRegisters();
Alex Lorenz60541c12015-07-09 19:55:27 +0000343 YamlMFI.HasOpaqueSPAdjustment = MFI.hasOpaqueSPAdjustment();
344 YamlMFI.HasVAStart = MFI.hasVAStart();
345 YamlMFI.HasMustTailInVarArgFunc = MFI.hasMustTailInVarArgFunc();
Francis Visoiu Mistrih537d7ee2018-04-06 08:56:25 +0000346 YamlMFI.LocalFrameSize = MFI.getLocalFrameSize();
Alex Lorenza6f9a372015-07-29 21:09:09 +0000347 if (MFI.getSavePoint()) {
348 raw_string_ostream StrOS(YamlMFI.SavePoint.Value);
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000349 StrOS << printMBBReference(*MFI.getSavePoint());
Alex Lorenza6f9a372015-07-29 21:09:09 +0000350 }
351 if (MFI.getRestorePoint()) {
352 raw_string_ostream StrOS(YamlMFI.RestorePoint.Value);
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000353 StrOS << printMBBReference(*MFI.getRestorePoint());
Alex Lorenza6f9a372015-07-29 21:09:09 +0000354 }
Alex Lorenz60541c12015-07-09 19:55:27 +0000355}
356
Matthias Braunef331ef2016-11-30 23:48:50 +0000357void MIRPrinter::convertStackObjects(yaml::MachineFunction &YMF,
358 const MachineFunction &MF,
359 ModuleSlotTracker &MST) {
360 const MachineFrameInfo &MFI = MF.getFrameInfo();
361 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
Alex Lorenzde491f02015-07-13 18:07:26 +0000362 // Process fixed stack objects.
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000363 unsigned ID = 0;
Matt Arsenault7b550662019-02-22 19:30:38 +0000364 for (int I = MFI.getObjectIndexBegin(); I < 0; ++I, ++ID) {
Alex Lorenzde491f02015-07-13 18:07:26 +0000365 if (MFI.isDeadObjectIndex(I))
366 continue;
367
368 yaml::FixedMachineStackObject YamlObject;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000369 YamlObject.ID = ID;
Alex Lorenzde491f02015-07-13 18:07:26 +0000370 YamlObject.Type = MFI.isSpillSlotObjectIndex(I)
371 ? yaml::FixedMachineStackObject::SpillSlot
372 : yaml::FixedMachineStackObject::DefaultType;
373 YamlObject.Offset = MFI.getObjectOffset(I);
374 YamlObject.Size = MFI.getObjectSize(I);
375 YamlObject.Alignment = MFI.getObjectAlignment(I);
Sander de Smalen5d6ee762019-06-17 09:13:29 +0000376 YamlObject.StackID = (TargetStackID::Value)MFI.getStackID(I);
Alex Lorenzde491f02015-07-13 18:07:26 +0000377 YamlObject.IsImmutable = MFI.isImmutableObjectIndex(I);
378 YamlObject.IsAliased = MFI.isAliasedObjectIndex(I);
Matthias Braunef331ef2016-11-30 23:48:50 +0000379 YMF.FixedStackObjects.push_back(YamlObject);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000380 StackObjectOperandMapping.insert(
Matt Arsenault7b550662019-02-22 19:30:38 +0000381 std::make_pair(I, FrameIndexOperand::createFixed(ID)));
Alex Lorenzde491f02015-07-13 18:07:26 +0000382 }
383
384 // Process ordinary stack objects.
385 ID = 0;
Matt Arsenault7b550662019-02-22 19:30:38 +0000386 for (int I = 0, E = MFI.getObjectIndexEnd(); I < E; ++I, ++ID) {
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000387 if (MFI.isDeadObjectIndex(I))
388 continue;
389
390 yaml::MachineStackObject YamlObject;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000391 YamlObject.ID = ID;
Alex Lorenz37643a02015-07-15 22:14:49 +0000392 if (const auto *Alloca = MFI.getObjectAllocation(I))
393 YamlObject.Name.Value =
394 Alloca->hasName() ? Alloca->getName() : "<unnamed alloca>";
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000395 YamlObject.Type = MFI.isSpillSlotObjectIndex(I)
396 ? yaml::MachineStackObject::SpillSlot
Alex Lorenz418f3ec2015-07-14 00:26:26 +0000397 : MFI.isVariableSizedObjectIndex(I)
398 ? yaml::MachineStackObject::VariableSized
399 : yaml::MachineStackObject::DefaultType;
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000400 YamlObject.Offset = MFI.getObjectOffset(I);
401 YamlObject.Size = MFI.getObjectSize(I);
402 YamlObject.Alignment = MFI.getObjectAlignment(I);
Sander de Smalen5d6ee762019-06-17 09:13:29 +0000403 YamlObject.StackID = (TargetStackID::Value)MFI.getStackID(I);
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000404
Matthias Braunef331ef2016-11-30 23:48:50 +0000405 YMF.StackObjects.push_back(YamlObject);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000406 StackObjectOperandMapping.insert(std::make_pair(
Matt Arsenault7b550662019-02-22 19:30:38 +0000407 I, FrameIndexOperand::create(YamlObject.Name.Value, ID)));
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000408 }
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000409
410 for (const auto &CSInfo : MFI.getCalleeSavedInfo()) {
Matt Arsenaultd3ed4182019-05-28 13:08:31 +0000411 if (!CSInfo.isSpilledToReg() && MFI.isDeadObjectIndex(CSInfo.getFrameIdx()))
412 continue;
413
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000414 yaml::StringValue Reg;
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000415 printRegMIR(CSInfo.getReg(), Reg, TRI);
Zaara Syeda5c179bf2018-11-09 16:36:24 +0000416 if (!CSInfo.isSpilledToReg()) {
417 auto StackObjectInfo = StackObjectOperandMapping.find(CSInfo.getFrameIdx());
418 assert(StackObjectInfo != StackObjectOperandMapping.end() &&
419 "Invalid stack object index");
420 const FrameIndexOperand &StackObject = StackObjectInfo->second;
421 if (StackObject.IsFixed) {
422 YMF.FixedStackObjects[StackObject.ID].CalleeSavedRegister = Reg;
423 YMF.FixedStackObjects[StackObject.ID].CalleeSavedRestored =
424 CSInfo.isRestored();
425 } else {
426 YMF.StackObjects[StackObject.ID].CalleeSavedRegister = Reg;
427 YMF.StackObjects[StackObject.ID].CalleeSavedRestored =
428 CSInfo.isRestored();
429 }
Matthias Braun5c3e8a42017-09-28 18:52:14 +0000430 }
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000431 }
Alex Lorenza56ba6a2015-08-17 22:17:42 +0000432 for (unsigned I = 0, E = MFI.getLocalFrameObjectCount(); I < E; ++I) {
433 auto LocalObject = MFI.getLocalFrameObjectMap(I);
434 auto StackObjectInfo = StackObjectOperandMapping.find(LocalObject.first);
435 assert(StackObjectInfo != StackObjectOperandMapping.end() &&
436 "Invalid stack object index");
437 const FrameIndexOperand &StackObject = StackObjectInfo->second;
438 assert(!StackObject.IsFixed && "Expected a locally mapped stack object");
Matthias Braunef331ef2016-11-30 23:48:50 +0000439 YMF.StackObjects[StackObject.ID].LocalOffset = LocalObject.second;
Alex Lorenza56ba6a2015-08-17 22:17:42 +0000440 }
Alex Lorenza314d812015-08-18 22:26:26 +0000441
442 // Print the stack object references in the frame information class after
443 // converting the stack objects.
444 if (MFI.hasStackProtectorIndex()) {
Matthias Braunef331ef2016-11-30 23:48:50 +0000445 raw_string_ostream StrOS(YMF.FrameInfo.StackProtector.Value);
Alex Lorenza314d812015-08-18 22:26:26 +0000446 MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping)
447 .printStackObjectReference(MFI.getStackProtectorIndex());
448 }
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000449
450 // Print the debug variable information.
Matthias Braunef331ef2016-11-30 23:48:50 +0000451 for (const MachineFunction::VariableDbgInfo &DebugVar :
452 MF.getVariableDbgInfo()) {
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000453 auto StackObjectInfo = StackObjectOperandMapping.find(DebugVar.Slot);
454 assert(StackObjectInfo != StackObjectOperandMapping.end() &&
455 "Invalid stack object index");
456 const FrameIndexOperand &StackObject = StackObjectInfo->second;
Francis Visoiu Mistrih57fcd342018-04-25 18:58:06 +0000457 if (StackObject.IsFixed) {
458 auto &Object = YMF.FixedStackObjects[StackObject.ID];
459 printStackObjectDbgInfo(DebugVar, Object, MST);
460 } else {
461 auto &Object = YMF.StackObjects[StackObject.ID];
462 printStackObjectDbgInfo(DebugVar, Object, MST);
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000463 }
464 }
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000465}
466
Djordje Todorovica7cde102019-06-27 07:48:06 +0000467void MIRPrinter::convertCallSiteObjects(yaml::MachineFunction &YMF,
468 const MachineFunction &MF,
469 ModuleSlotTracker &MST) {
470 const auto *TRI = MF.getSubtarget().getRegisterInfo();
471 for (auto CSInfo : MF.getCallSitesInfo()) {
472 yaml::CallSiteInfo YmlCS;
473 yaml::CallSiteInfo::MachineInstrLoc CallLocation;
474
475 // Prepare instruction position.
David Stenberg88df53e2019-08-19 12:41:22 +0000476 MachineBasicBlock::const_instr_iterator CallI = CSInfo.first->getIterator();
Djordje Todorovica7cde102019-06-27 07:48:06 +0000477 CallLocation.BlockNum = CallI->getParent()->getNumber();
478 // Get call instruction offset from the beginning of block.
David Stenberg88df53e2019-08-19 12:41:22 +0000479 CallLocation.Offset =
480 std::distance(CallI->getParent()->instr_begin(), CallI);
Djordje Todorovica7cde102019-06-27 07:48:06 +0000481 YmlCS.CallLocation = CallLocation;
482 // Construct call arguments and theirs forwarding register info.
483 for (auto ArgReg : CSInfo.second) {
484 yaml::CallSiteInfo::ArgRegPair YmlArgReg;
485 YmlArgReg.ArgNo = ArgReg.ArgNo;
486 printRegMIR(ArgReg.Reg, YmlArgReg.Reg, TRI);
487 YmlCS.ArgForwardingRegs.emplace_back(YmlArgReg);
488 }
489 YMF.CallSitesInfo.push_back(YmlCS);
490 }
491
492 // Sort call info by position of call instructions.
493 llvm::sort(YMF.CallSitesInfo.begin(), YMF.CallSitesInfo.end(),
494 [](yaml::CallSiteInfo A, yaml::CallSiteInfo B) {
495 if (A.CallLocation.BlockNum == B.CallLocation.BlockNum)
496 return A.CallLocation.Offset < B.CallLocation.Offset;
497 return A.CallLocation.BlockNum < B.CallLocation.BlockNum;
498 });
499}
500
Alex Lorenzab980492015-07-20 20:51:18 +0000501void MIRPrinter::convert(yaml::MachineFunction &MF,
502 const MachineConstantPool &ConstantPool) {
503 unsigned ID = 0;
504 for (const MachineConstantPoolEntry &Constant : ConstantPool.getConstants()) {
Alex Lorenzab980492015-07-20 20:51:18 +0000505 std::string Str;
506 raw_string_ostream StrOS(Str);
Diana Picusd5a00b02017-08-02 11:09:30 +0000507 if (Constant.isMachineConstantPoolEntry()) {
508 Constant.Val.MachineCPVal->print(StrOS);
509 } else {
510 Constant.Val.ConstVal->printAsOperand(StrOS);
511 }
512
513 yaml::MachineConstantPoolValue YamlConstant;
Alex Lorenzab980492015-07-20 20:51:18 +0000514 YamlConstant.ID = ID++;
515 YamlConstant.Value = StrOS.str();
516 YamlConstant.Alignment = Constant.getAlignment();
Diana Picusd5a00b02017-08-02 11:09:30 +0000517 YamlConstant.IsTargetSpecific = Constant.isMachineConstantPoolEntry();
518
Alex Lorenzab980492015-07-20 20:51:18 +0000519 MF.Constants.push_back(YamlConstant);
520 }
521}
522
Alex Lorenz900b5cb2015-07-07 23:27:53 +0000523void MIRPrinter::convert(ModuleSlotTracker &MST,
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000524 yaml::MachineJumpTable &YamlJTI,
525 const MachineJumpTableInfo &JTI) {
526 YamlJTI.Kind = JTI.getEntryKind();
527 unsigned ID = 0;
528 for (const auto &Table : JTI.getJumpTables()) {
529 std::string Str;
530 yaml::MachineJumpTable::Entry Entry;
531 Entry.ID = ID++;
532 for (const auto *MBB : Table.MBBs) {
533 raw_string_ostream StrOS(Str);
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000534 StrOS << printMBBReference(*MBB);
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000535 Entry.Blocks.push_back(StrOS.str());
536 Str.clear();
537 }
538 YamlJTI.Entries.push_back(Entry);
539 }
540}
541
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000542void MIRPrinter::initRegisterMaskIds(const MachineFunction &MF) {
543 const auto *TRI = MF.getSubtarget().getRegisterInfo();
544 unsigned I = 0;
545 for (const uint32_t *Mask : TRI->getRegMasks())
546 RegisterMaskIds.insert(std::make_pair(Mask, I++));
547}
548
Matthias Braun89401142017-05-05 21:09:30 +0000549void llvm::guessSuccessors(const MachineBasicBlock &MBB,
550 SmallVectorImpl<MachineBasicBlock*> &Result,
551 bool &IsFallthrough) {
552 SmallPtrSet<MachineBasicBlock*,8> Seen;
553
554 for (const MachineInstr &MI : MBB) {
555 if (MI.isPHI())
556 continue;
557 for (const MachineOperand &MO : MI.operands()) {
558 if (!MO.isMBB())
559 continue;
560 MachineBasicBlock *Succ = MO.getMBB();
561 auto RP = Seen.insert(Succ);
562 if (RP.second)
563 Result.push_back(Succ);
564 }
565 }
566 MachineBasicBlock::const_iterator I = MBB.getLastNonDebugInstr();
567 IsFallthrough = I == MBB.end() || !I->isBarrier();
568}
569
570bool
571MIPrinter::canPredictBranchProbabilities(const MachineBasicBlock &MBB) const {
572 if (MBB.succ_size() <= 1)
573 return true;
574 if (!MBB.hasSuccessorProbabilities())
575 return true;
576
577 SmallVector<BranchProbability,8> Normalized(MBB.Probs.begin(),
578 MBB.Probs.end());
579 BranchProbability::normalizeProbabilities(Normalized.begin(),
580 Normalized.end());
581 SmallVector<BranchProbability,8> Equal(Normalized.size());
582 BranchProbability::normalizeProbabilities(Equal.begin(), Equal.end());
583
584 return std::equal(Normalized.begin(), Normalized.end(), Equal.begin());
585}
586
587bool MIPrinter::canPredictSuccessors(const MachineBasicBlock &MBB) const {
588 SmallVector<MachineBasicBlock*,8> GuessedSuccs;
589 bool GuessedFallthrough;
590 guessSuccessors(MBB, GuessedSuccs, GuessedFallthrough);
591 if (GuessedFallthrough) {
592 const MachineFunction &MF = *MBB.getParent();
593 MachineFunction::const_iterator NextI = std::next(MBB.getIterator());
594 if (NextI != MF.end()) {
595 MachineBasicBlock *Next = const_cast<MachineBasicBlock*>(&*NextI);
596 if (!is_contained(GuessedSuccs, Next))
597 GuessedSuccs.push_back(Next);
598 }
599 }
600 if (GuessedSuccs.size() != MBB.succ_size())
601 return false;
602 return std::equal(MBB.succ_begin(), MBB.succ_end(), GuessedSuccs.begin());
603}
604
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000605void MIPrinter::print(const MachineBasicBlock &MBB) {
606 assert(MBB.getNumber() >= 0 && "Invalid MBB number");
607 OS << "bb." << MBB.getNumber();
608 bool HasAttributes = false;
609 if (const auto *BB = MBB.getBasicBlock()) {
610 if (BB->hasName()) {
611 OS << "." << BB->getName();
612 } else {
613 HasAttributes = true;
614 OS << " (";
615 int Slot = MST.getLocalSlot(BB);
616 if (Slot == -1)
617 OS << "<ir-block badref>";
618 else
619 OS << (Twine("%ir-block.") + Twine(Slot)).str();
620 }
621 }
622 if (MBB.hasAddressTaken()) {
623 OS << (HasAttributes ? ", " : " (");
624 OS << "address-taken";
625 HasAttributes = true;
626 }
Reid Kleckner0e288232015-08-27 23:27:47 +0000627 if (MBB.isEHPad()) {
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000628 OS << (HasAttributes ? ", " : " (");
629 OS << "landing-pad";
630 HasAttributes = true;
631 }
Guillaume Chatelet18f805a2019-09-27 12:54:21 +0000632 if (MBB.getAlignment() != Align::None()) {
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000633 OS << (HasAttributes ? ", " : " (");
Guillaume Chateletd4c46712019-09-18 15:49:49 +0000634 OS << "align " << MBB.getAlignment().value();
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000635 HasAttributes = true;
636 }
637 if (HasAttributes)
638 OS << ")";
639 OS << ":\n";
640
641 bool HasLineAttributes = false;
642 // Print the successors
Matthias Braun89401142017-05-05 21:09:30 +0000643 bool canPredictProbs = canPredictBranchProbabilities(MBB);
Quentin Colombetd652aeb2017-09-19 23:34:12 +0000644 // Even if the list of successors is empty, if we cannot guess it,
645 // we need to print it to tell the parser that the list is empty.
646 // This is needed, because MI model unreachable as empty blocks
647 // with an empty successor list. If the parser would see that
648 // without the successor list, it would guess the code would
649 // fallthrough.
650 if ((!MBB.succ_empty() && !SimplifyMIR) || !canPredictProbs ||
651 !canPredictSuccessors(MBB)) {
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000652 OS.indent(2) << "successors: ";
653 for (auto I = MBB.succ_begin(), E = MBB.succ_end(); I != E; ++I) {
654 if (I != MBB.succ_begin())
655 OS << ", ";
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000656 OS << printMBBReference(**I);
Matthias Braun89401142017-05-05 21:09:30 +0000657 if (!SimplifyMIR || !canPredictProbs)
Geoff Berryb51774a2016-11-18 19:37:24 +0000658 OS << '('
659 << format("0x%08" PRIx32, MBB.getSuccProbability(I).getNumerator())
660 << ')';
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000661 }
662 OS << "\n";
663 HasLineAttributes = true;
664 }
665
666 // Print the live in registers.
Matthias Braun11723322017-01-05 20:01:19 +0000667 const MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
668 if (MRI.tracksLiveness() && !MBB.livein_empty()) {
669 const TargetRegisterInfo &TRI = *MRI.getTargetRegisterInfo();
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000670 OS.indent(2) << "liveins: ";
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000671 bool First = true;
Matthias Braund9da1622015-09-09 18:08:03 +0000672 for (const auto &LI : MBB.liveins()) {
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000673 if (!First)
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000674 OS << ", ";
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000675 First = false;
Francis Visoiu Mistrihc71cced2017-11-30 16:12:24 +0000676 OS << printReg(LI.PhysReg, &TRI);
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +0000677 if (!LI.LaneMask.all())
Krzysztof Parzyszekd62669d2016-10-12 21:06:45 +0000678 OS << ":0x" << PrintLaneMask(LI.LaneMask);
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000679 }
680 OS << "\n";
681 HasLineAttributes = true;
682 }
683
684 if (HasLineAttributes)
685 OS << "\n";
Alex Lorenzf9a2b122015-08-14 18:57:24 +0000686 bool IsInBundle = false;
687 for (auto I = MBB.instr_begin(), E = MBB.instr_end(); I != E; ++I) {
688 const MachineInstr &MI = *I;
689 if (IsInBundle && !MI.isInsideBundle()) {
690 OS.indent(2) << "}\n";
691 IsInBundle = false;
692 }
693 OS.indent(IsInBundle ? 4 : 2);
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000694 print(MI);
Alex Lorenzf9a2b122015-08-14 18:57:24 +0000695 if (!IsInBundle && MI.getFlag(MachineInstr::BundledSucc)) {
696 OS << " {";
697 IsInBundle = true;
698 }
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000699 OS << "\n";
700 }
Alex Lorenzf9a2b122015-08-14 18:57:24 +0000701 if (IsInBundle)
702 OS.indent(2) << "}\n";
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000703}
704
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000705void MIPrinter::print(const MachineInstr &MI) {
Justin Bognerfdf9bf42017-10-10 23:50:49 +0000706 const auto *MF = MI.getMF();
Quentin Colombet4e14a492016-03-07 21:57:52 +0000707 const auto &MRI = MF->getRegInfo();
708 const auto &SubTarget = MF->getSubtarget();
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000709 const auto *TRI = SubTarget.getRegisterInfo();
710 assert(TRI && "Expected target register info");
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000711 const auto *TII = SubTarget.getInstrInfo();
712 assert(TII && "Expected target instruction info");
Alex Lorenzf4baeb52015-07-21 22:28:27 +0000713 if (MI.isCFIInstruction())
714 assert(MI.getNumOperands() == 1 && "Expected 1 operand in CFI instruction");
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000715
Tim Northoverd28d3cc2016-09-12 11:20:10 +0000716 SmallBitVector PrintedTypes(8);
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000717 bool ShouldPrintRegisterTies = MI.hasComplexRegisterTies();
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000718 unsigned I = 0, E = MI.getNumOperands();
719 for (; I < E && MI.getOperand(I).isReg() && MI.getOperand(I).isDef() &&
720 !MI.getOperand(I).isImplicit();
721 ++I) {
722 if (I)
723 OS << ", ";
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000724 print(MI, I, TRI, ShouldPrintRegisterTies,
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000725 MI.getTypeToPrint(I, PrintedTypes, MRI),
726 /*PrintDef=*/false);
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000727 }
728
729 if (I)
730 OS << " = ";
Alex Lorenze5a44662015-07-17 00:24:15 +0000731 if (MI.getFlag(MachineInstr::FrameSetup))
732 OS << "frame-setup ";
Francis Visoiu Mistrih3abf05732018-03-13 19:53:16 +0000733 if (MI.getFlag(MachineInstr::FrameDestroy))
Francis Visoiu Mistrihdbf2c482018-01-09 11:33:22 +0000734 OS << "frame-destroy ";
Michael Berg7d1b25d2018-05-03 00:07:56 +0000735 if (MI.getFlag(MachineInstr::FmNoNans))
736 OS << "nnan ";
737 if (MI.getFlag(MachineInstr::FmNoInfs))
738 OS << "ninf ";
739 if (MI.getFlag(MachineInstr::FmNsz))
740 OS << "nsz ";
741 if (MI.getFlag(MachineInstr::FmArcp))
742 OS << "arcp ";
743 if (MI.getFlag(MachineInstr::FmContract))
744 OS << "contract ";
745 if (MI.getFlag(MachineInstr::FmAfn))
746 OS << "afn ";
747 if (MI.getFlag(MachineInstr::FmReassoc))
748 OS << "reassoc ";
Michael Bergc72a7252018-09-11 21:35:32 +0000749 if (MI.getFlag(MachineInstr::NoUWrap))
750 OS << "nuw ";
751 if (MI.getFlag(MachineInstr::NoSWrap))
752 OS << "nsw ";
753 if (MI.getFlag(MachineInstr::IsExact))
754 OS << "exact ";
Ulrich Weigand6c5d5ce2019-06-05 22:33:10 +0000755 if (MI.getFlag(MachineInstr::FPExcept))
756 OS << "fpexcept ";
Francis Visoiu Mistrihdbf2c482018-01-09 11:33:22 +0000757
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000758 OS << TII->getName(MI.getOpcode());
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000759 if (I < E)
760 OS << ' ';
761
762 bool NeedComma = false;
763 for (; I < E; ++I) {
764 if (NeedComma)
765 OS << ", ";
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000766 print(MI, I, TRI, ShouldPrintRegisterTies,
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000767 MI.getTypeToPrint(I, PrintedTypes, MRI));
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000768 NeedComma = true;
769 }
Alex Lorenz46d760d2015-07-22 21:15:11 +0000770
Chandler Carruth75ca6be2018-08-16 23:11:05 +0000771 // Print any optional symbols attached to this instruction as-if they were
772 // operands.
773 if (MCSymbol *PreInstrSymbol = MI.getPreInstrSymbol()) {
774 if (NeedComma)
775 OS << ',';
776 OS << " pre-instr-symbol ";
777 MachineOperand::printSymbol(OS, *PreInstrSymbol);
778 NeedComma = true;
779 }
780 if (MCSymbol *PostInstrSymbol = MI.getPostInstrSymbol()) {
781 if (NeedComma)
782 OS << ',';
783 OS << " post-instr-symbol ";
784 MachineOperand::printSymbol(OS, *PostInstrSymbol);
785 NeedComma = true;
786 }
787
Francis Visoiu Mistrih548add92018-01-19 11:44:42 +0000788 if (const DebugLoc &DL = MI.getDebugLoc()) {
Alex Lorenz46d760d2015-07-22 21:15:11 +0000789 if (NeedComma)
790 OS << ',';
791 OS << " debug-location ";
Francis Visoiu Mistrih548add92018-01-19 11:44:42 +0000792 DL->printAsOperand(OS, MST);
Alex Lorenz46d760d2015-07-22 21:15:11 +0000793 }
Alex Lorenz4af7e612015-08-03 23:08:19 +0000794
795 if (!MI.memoperands_empty()) {
796 OS << " :: ";
Matthias Braunf1caa282017-12-15 22:22:58 +0000797 const LLVMContext &Context = MF->getFunction().getContext();
Francis Visoiu Mistrihe85b06d2018-03-14 21:52:13 +0000798 const MachineFrameInfo &MFI = MF->getFrameInfo();
Alex Lorenz4af7e612015-08-03 23:08:19 +0000799 bool NeedComma = false;
800 for (const auto *Op : MI.memoperands()) {
801 if (NeedComma)
802 OS << ", ";
Francis Visoiu Mistrihe85b06d2018-03-14 21:52:13 +0000803 Op->print(OS, MST, SSNs, Context, &MFI, TII);
Alex Lorenz4af7e612015-08-03 23:08:19 +0000804 NeedComma = true;
805 }
806 }
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000807}
808
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000809void MIPrinter::printStackObjectReference(int FrameIndex) {
810 auto ObjectInfo = StackObjectOperandMapping.find(FrameIndex);
811 assert(ObjectInfo != StackObjectOperandMapping.end() &&
812 "Invalid frame index");
813 const FrameIndexOperand &Operand = ObjectInfo->second;
Francis Visoiu Mistrih0b5bdce2017-12-15 16:33:45 +0000814 MachineOperand::printStackObjectReference(OS, Operand.ID, Operand.IsFixed,
815 Operand.Name);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000816}
817
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000818void MIPrinter::print(const MachineInstr &MI, unsigned OpIdx,
819 const TargetRegisterInfo *TRI,
820 bool ShouldPrintRegisterTies, LLT TypeToPrint,
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000821 bool PrintDef) {
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000822 const MachineOperand &Op = MI.getOperand(OpIdx);
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000823 switch (Op.getType()) {
Francis Visoiu Mistrih440f69c2017-12-08 22:53:21 +0000824 case MachineOperand::MO_Immediate:
825 if (MI.isOperandSubregIdx(OpIdx)) {
Francis Visoiu Mistrih5df3bbf2017-12-14 10:03:09 +0000826 MachineOperand::printTargetFlags(OS, Op);
Francis Visoiu Mistrihecd0b832018-01-16 10:53:11 +0000827 MachineOperand::printSubRegIdx(OS, Op.getImm(), TRI);
Francis Visoiu Mistrih440f69c2017-12-08 22:53:21 +0000828 break;
829 }
830 LLVM_FALLTHROUGH;
Francis Visoiu Mistrih6c4ca712017-12-08 11:40:06 +0000831 case MachineOperand::MO_Register:
Francis Visoiu Mistrihf4bd2952017-12-08 11:48:02 +0000832 case MachineOperand::MO_CImmediate:
Francis Visoiu Mistrih3b265c82017-12-19 21:47:00 +0000833 case MachineOperand::MO_FPImmediate:
Francis Visoiu Mistrih26ae8a62017-12-13 10:30:45 +0000834 case MachineOperand::MO_MachineBasicBlock:
Francis Visoiu Mistrihb3a0d512017-12-13 10:30:51 +0000835 case MachineOperand::MO_ConstantPoolIndex:
Francis Visoiu Mistrihb41dbbe2017-12-13 10:30:59 +0000836 case MachineOperand::MO_TargetIndex:
Francis Visoiu Mistrihe76c5fc2017-12-14 10:02:58 +0000837 case MachineOperand::MO_JumpTableIndex:
Francis Visoiu Mistrih5df3bbf2017-12-14 10:03:09 +0000838 case MachineOperand::MO_ExternalSymbol:
Francis Visoiu Mistrihbdaf8bf2017-12-14 10:03:14 +0000839 case MachineOperand::MO_GlobalAddress:
Francis Visoiu Mistrih2db59382017-12-14 10:03:18 +0000840 case MachineOperand::MO_RegisterLiveOut:
Francis Visoiu Mistrih3c993712017-12-14 10:03:23 +0000841 case MachineOperand::MO_Metadata:
Francis Visoiu Mistrih874ae6f2017-12-19 16:51:52 +0000842 case MachineOperand::MO_MCSymbol:
Francis Visoiu Mistrihbbd610a2017-12-19 21:47:05 +0000843 case MachineOperand::MO_CFIIndex:
Francis Visoiu Mistrihcb2683d2017-12-19 21:47:10 +0000844 case MachineOperand::MO_IntrinsicID:
Francis Visoiu Mistrihf81727d2017-12-19 21:47:14 +0000845 case MachineOperand::MO_Predicate:
Matt Arsenault5af9cf02019-08-13 15:34:38 +0000846 case MachineOperand::MO_BlockAddress:
847 case MachineOperand::MO_ShuffleMask: {
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000848 unsigned TiedOperandIdx = 0;
Francis Visoiu Mistrih440f69c2017-12-08 22:53:21 +0000849 if (ShouldPrintRegisterTies && Op.isReg() && Op.isTied() && !Op.isDef())
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000850 TiedOperandIdx = Op.getParent()->findTiedOperandIdx(OpIdx);
851 const TargetIntrinsicInfo *TII = MI.getMF()->getTarget().getIntrinsicInfo();
Francis Visoiu Mistriheb3f76f2018-01-18 18:05:15 +0000852 Op.print(OS, MST, TypeToPrint, PrintDef, /*IsStandalone=*/false,
Francis Visoiu Mistrih378b5f32018-01-18 17:59:06 +0000853 ShouldPrintRegisterTies, TiedOperandIdx, TRI, TII);
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000854 break;
Justin Bogner6c452832017-10-24 18:04:54 +0000855 }
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000856 case MachineOperand::MO_FrameIndex:
857 printStackObjectReference(Op.getIndex());
858 break;
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000859 case MachineOperand::MO_RegisterMask: {
860 auto RegMaskInfo = RegisterMaskIds.find(Op.getRegMask());
861 if (RegMaskInfo != RegisterMaskIds.end())
862 OS << StringRef(TRI->getRegMaskNames()[RegMaskInfo->second]).lower();
863 else
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000864 printCustomRegMask(Op.getRegMask(), OS, TRI);
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000865 break;
866 }
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000867 }
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000868}
869
Alex Lorenz345c1442015-06-15 23:52:35 +0000870void llvm::printMIR(raw_ostream &OS, const Module &M) {
871 yaml::Output Out(OS);
872 Out << const_cast<Module &>(M);
873}
874
875void llvm::printMIR(raw_ostream &OS, const MachineFunction &MF) {
876 MIRPrinter Printer(OS);
877 Printer.print(MF);
878}