blob: e6f5890b5132516093adaa6f12f2f24ae5113e65 [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"
Alex Lorenz4f093bf2015-06-19 17:43:07 +000038#include "llvm/IR/BasicBlock.h"
Alex Lorenzdeb53492015-07-28 17:28:03 +000039#include "llvm/IR/Constants.h"
Reid Kleckner28865802016-04-14 18:29:59 +000040#include "llvm/IR/DebugInfo.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000041#include "llvm/IR/DebugLoc.h"
42#include "llvm/IR/Function.h"
43#include "llvm/IR/GlobalValue.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000044#include "llvm/IR/IRPrintingPasses.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000045#include "llvm/IR/InstrTypes.h"
Quentin Colombetfab1cfe2016-04-08 16:26:22 +000046#include "llvm/IR/Instructions.h"
Tim Northover6b3bd612016-07-29 20:32:59 +000047#include "llvm/IR/Intrinsics.h"
Alex Lorenz345c1442015-06-15 23:52:35 +000048#include "llvm/IR/Module.h"
Alex Lorenz900b5cb2015-07-07 23:27:53 +000049#include "llvm/IR/ModuleSlotTracker.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000050#include "llvm/IR/Value.h"
51#include "llvm/MC/LaneBitmask.h"
Chandler Carruth75ca6be2018-08-16 23:11:05 +000052#include "llvm/MC/MCContext.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000053#include "llvm/MC/MCDwarf.h"
Alex Lorenzf22ca8a2015-08-21 21:12:44 +000054#include "llvm/MC/MCSymbol.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000055#include "llvm/Support/AtomicOrdering.h"
56#include "llvm/Support/BranchProbability.h"
57#include "llvm/Support/Casting.h"
58#include "llvm/Support/CommandLine.h"
59#include "llvm/Support/ErrorHandling.h"
Geoff Berryb51774a2016-11-18 19:37:24 +000060#include "llvm/Support/Format.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000061#include "llvm/Support/LowLevelTypeImpl.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000062#include "llvm/Support/YAMLTraits.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000063#include "llvm/Support/raw_ostream.h"
Tim Northover6b3bd612016-07-29 20:32:59 +000064#include "llvm/Target/TargetIntrinsicInfo.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000065#include "llvm/Target/TargetMachine.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000066#include <algorithm>
67#include <cassert>
68#include <cinttypes>
69#include <cstdint>
70#include <iterator>
71#include <string>
72#include <utility>
73#include <vector>
Alex Lorenz345c1442015-06-15 23:52:35 +000074
75using namespace llvm;
76
Zachary Turner8065f0b2017-12-01 00:53:10 +000077static cl::opt<bool> SimplifyMIR(
78 "simplify-mir", cl::Hidden,
Matthias Braun89401142017-05-05 21:09:30 +000079 cl::desc("Leave out unnecessary information when printing MIR"));
80
Alex Lorenz345c1442015-06-15 23:52:35 +000081namespace {
82
Alex Lorenz7feaf7c2015-07-16 23:37:45 +000083/// This structure describes how to print out stack object references.
84struct FrameIndexOperand {
85 std::string Name;
86 unsigned ID;
87 bool IsFixed;
88
89 FrameIndexOperand(StringRef Name, unsigned ID, bool IsFixed)
90 : Name(Name.str()), ID(ID), IsFixed(IsFixed) {}
91
92 /// Return an ordinary stack object reference.
93 static FrameIndexOperand create(StringRef Name, unsigned ID) {
94 return FrameIndexOperand(Name, ID, /*IsFixed=*/false);
95 }
96
97 /// Return a fixed stack object reference.
98 static FrameIndexOperand createFixed(unsigned ID) {
99 return FrameIndexOperand("", ID, /*IsFixed=*/true);
100 }
101};
102
Alex Lorenz618b2832015-07-30 16:54:38 +0000103} // end anonymous namespace
104
105namespace llvm {
106
Alex Lorenz345c1442015-06-15 23:52:35 +0000107/// This class prints out the machine functions using the MIR serialization
108/// format.
109class MIRPrinter {
110 raw_ostream &OS;
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000111 DenseMap<const uint32_t *, unsigned> RegisterMaskIds;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000112 /// Maps from stack object indices to operand indices which will be used when
113 /// printing frame index machine operands.
114 DenseMap<int, FrameIndexOperand> StackObjectOperandMapping;
Alex Lorenz345c1442015-06-15 23:52:35 +0000115
116public:
117 MIRPrinter(raw_ostream &OS) : OS(OS) {}
118
119 void print(const MachineFunction &MF);
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000120
Alex Lorenz28148ba2015-07-09 22:23:13 +0000121 void convert(yaml::MachineFunction &MF, const MachineRegisterInfo &RegInfo,
122 const TargetRegisterInfo *TRI);
Alex Lorenza6f9a372015-07-29 21:09:09 +0000123 void convert(ModuleSlotTracker &MST, yaml::MachineFrameInfo &YamlMFI,
124 const MachineFrameInfo &MFI);
Alex Lorenzab980492015-07-20 20:51:18 +0000125 void convert(yaml::MachineFunction &MF,
126 const MachineConstantPool &ConstantPool);
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000127 void convert(ModuleSlotTracker &MST, yaml::MachineJumpTable &YamlJTI,
128 const MachineJumpTableInfo &JTI);
Matthias Braunef331ef2016-11-30 23:48:50 +0000129 void convertStackObjects(yaml::MachineFunction &YMF,
130 const MachineFunction &MF, ModuleSlotTracker &MST);
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000131
132private:
133 void initRegisterMaskIds(const MachineFunction &MF);
Alex Lorenz345c1442015-06-15 23:52:35 +0000134};
135
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000136/// This class prints out the machine instructions using the MIR serialization
137/// format.
138class MIPrinter {
139 raw_ostream &OS;
Alex Lorenz900b5cb2015-07-07 23:27:53 +0000140 ModuleSlotTracker &MST;
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000141 const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000142 const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping;
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000143 /// Synchronization scope names registered with LLVMContext.
144 SmallVector<StringRef, 8> SSNs;
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000145
Matthias Braun89401142017-05-05 21:09:30 +0000146 bool canPredictBranchProbabilities(const MachineBasicBlock &MBB) const;
147 bool canPredictSuccessors(const MachineBasicBlock &MBB) const;
148
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000149public:
Alex Lorenz900b5cb2015-07-07 23:27:53 +0000150 MIPrinter(raw_ostream &OS, ModuleSlotTracker &MST,
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000151 const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds,
152 const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping)
153 : OS(OS), MST(MST), RegisterMaskIds(RegisterMaskIds),
154 StackObjectOperandMapping(StackObjectOperandMapping) {}
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000155
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000156 void print(const MachineBasicBlock &MBB);
157
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000158 void print(const MachineInstr &MI);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000159 void printStackObjectReference(int FrameIndex);
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000160 void print(const MachineInstr &MI, unsigned OpIdx,
161 const TargetRegisterInfo *TRI, bool ShouldPrintRegisterTies,
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000162 LLT TypeToPrint, bool PrintDef = true);
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000163};
164
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000165} // end namespace llvm
Alex Lorenz345c1442015-06-15 23:52:35 +0000166
167namespace llvm {
168namespace yaml {
169
170/// This struct serializes the LLVM IR module.
171template <> struct BlockScalarTraits<Module> {
172 static void output(const Module &Mod, void *Ctxt, raw_ostream &OS) {
173 Mod.print(OS, nullptr);
174 }
Eugene Zelenkofb69e662017-06-06 22:22:41 +0000175
Alex Lorenz345c1442015-06-15 23:52:35 +0000176 static StringRef input(StringRef Str, void *Ctxt, Module &Mod) {
177 llvm_unreachable("LLVM Module is supposed to be parsed separately");
178 return "";
179 }
180};
181
182} // end namespace yaml
183} // end namespace llvm
184
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000185static void printRegMIR(unsigned Reg, yaml::StringValue &Dest,
186 const TargetRegisterInfo *TRI) {
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000187 raw_string_ostream OS(Dest.Value);
Francis Visoiu Mistrihc71cced2017-11-30 16:12:24 +0000188 OS << printReg(Reg, TRI);
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000189}
190
Alex Lorenz345c1442015-06-15 23:52:35 +0000191void MIRPrinter::print(const MachineFunction &MF) {
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000192 initRegisterMaskIds(MF);
193
Alex Lorenz345c1442015-06-15 23:52:35 +0000194 yaml::MachineFunction YamlMF;
195 YamlMF.Name = MF.getName();
Alex Lorenz5b5f9752015-06-16 00:10:47 +0000196 YamlMF.Alignment = MF.getAlignment();
197 YamlMF.ExposesReturnsTwice = MF.exposesReturnsTwice();
Sanjin Sijaric625d08e2018-10-24 21:07:38 +0000198 YamlMF.HasWinCFI = MF.hasWinCFI();
Derek Schuffad154c82016-03-28 17:05:30 +0000199
Ahmed Bougacha0d7b0cb2016-08-02 15:10:25 +0000200 YamlMF.Legalized = MF.getProperties().hasProperty(
201 MachineFunctionProperties::Property::Legalized);
Ahmed Bougacha24712652016-08-02 16:17:10 +0000202 YamlMF.RegBankSelected = MF.getProperties().hasProperty(
203 MachineFunctionProperties::Property::RegBankSelected);
Ahmed Bougachab109d512016-08-02 16:49:19 +0000204 YamlMF.Selected = MF.getProperties().hasProperty(
205 MachineFunctionProperties::Property::Selected);
Roman Tereshin3054ece2018-02-28 17:55:45 +0000206 YamlMF.FailedISel = MF.getProperties().hasProperty(
207 MachineFunctionProperties::Property::FailedISel);
Ahmed Bougacha0d7b0cb2016-08-02 15:10:25 +0000208
Alex Lorenz28148ba2015-07-09 22:23:13 +0000209 convert(YamlMF, MF.getRegInfo(), MF.getSubtarget().getRegisterInfo());
Matthias Braunf1caa282017-12-15 22:22:58 +0000210 ModuleSlotTracker MST(MF.getFunction().getParent());
211 MST.incorporateFunction(MF.getFunction());
Matthias Braun941a7052016-07-28 18:40:00 +0000212 convert(MST, YamlMF.FrameInfo, MF.getFrameInfo());
Matthias Braunef331ef2016-11-30 23:48:50 +0000213 convertStackObjects(YamlMF, MF, MST);
Alex Lorenzab980492015-07-20 20:51:18 +0000214 if (const auto *ConstantPool = MF.getConstantPool())
215 convert(YamlMF, *ConstantPool);
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000216 if (const auto *JumpTableInfo = MF.getJumpTableInfo())
217 convert(MST, YamlMF.JumpTableInfo, *JumpTableInfo);
Matt Arsenaultbc6d07c2019-03-14 22:54:43 +0000218
219 const TargetMachine &TM = MF.getTarget();
220 YamlMF.MachineFuncInfo =
221 std::unique_ptr<yaml::MachineFunctionInfo>(TM.convertFuncInfoToYAML(MF));
222
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000223 raw_string_ostream StrOS(YamlMF.Body.Value.Value);
224 bool IsNewlineNeeded = false;
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000225 for (const auto &MBB : MF) {
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000226 if (IsNewlineNeeded)
227 StrOS << "\n";
228 MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping)
229 .print(MBB);
230 IsNewlineNeeded = true;
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000231 }
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000232 StrOS.flush();
Alex Lorenz345c1442015-06-15 23:52:35 +0000233 yaml::Output Out(OS);
Vivek Pandya56d87ef2017-06-06 08:16:19 +0000234 if (!SimplifyMIR)
235 Out.setWriteDefaultValues(true);
Alex Lorenz345c1442015-06-15 23:52:35 +0000236 Out << YamlMF;
237}
238
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000239static void printCustomRegMask(const uint32_t *RegMask, raw_ostream &OS,
240 const TargetRegisterInfo *TRI) {
241 assert(RegMask && "Can't print an empty register mask");
242 OS << StringRef("CustomRegMask(");
243
244 bool IsRegInRegMaskFound = false;
245 for (int I = 0, E = TRI->getNumRegs(); I < E; I++) {
246 // Check whether the register is asserted in regmask.
247 if (RegMask[I / 32] & (1u << (I % 32))) {
248 if (IsRegInRegMaskFound)
249 OS << ',';
Francis Visoiu Mistrihc71cced2017-11-30 16:12:24 +0000250 OS << printReg(I, TRI);
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000251 IsRegInRegMaskFound = true;
252 }
253 }
254
255 OS << ')';
256}
257
Justin Bogner6c452832017-10-24 18:04:54 +0000258static void printRegClassOrBank(unsigned Reg, yaml::StringValue &Dest,
259 const MachineRegisterInfo &RegInfo,
260 const TargetRegisterInfo *TRI) {
261 raw_string_ostream OS(Dest.Value);
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000262 OS << printRegClassOrBank(Reg, RegInfo, TRI);
Justin Bogner6c452832017-10-24 18:04:54 +0000263}
264
Francis Visoiu Mistrih57fcd342018-04-25 18:58:06 +0000265template <typename T>
266static void
267printStackObjectDbgInfo(const MachineFunction::VariableDbgInfo &DebugVar,
268 T &Object, ModuleSlotTracker &MST) {
269 std::array<std::string *, 3> Outputs{{&Object.DebugVar.Value,
270 &Object.DebugExpr.Value,
271 &Object.DebugLoc.Value}};
272 std::array<const Metadata *, 3> Metas{{DebugVar.Var,
273 DebugVar.Expr,
274 DebugVar.Loc}};
275 for (unsigned i = 0; i < 3; ++i) {
276 raw_string_ostream StrOS(*Outputs[i]);
277 Metas[i]->printAsOperand(StrOS, MST);
278 }
279}
Justin Bogner6c452832017-10-24 18:04:54 +0000280
Alex Lorenz54565cf2015-06-24 19:56:10 +0000281void MIRPrinter::convert(yaml::MachineFunction &MF,
Alex Lorenz28148ba2015-07-09 22:23:13 +0000282 const MachineRegisterInfo &RegInfo,
283 const TargetRegisterInfo *TRI) {
Alex Lorenz54565cf2015-06-24 19:56:10 +0000284 MF.TracksRegLiveness = RegInfo.tracksLiveness();
Alex Lorenz28148ba2015-07-09 22:23:13 +0000285
286 // Print the virtual register definitions.
287 for (unsigned I = 0, E = RegInfo.getNumVirtRegs(); I < E; ++I) {
288 unsigned Reg = TargetRegisterInfo::index2VirtReg(I);
289 yaml::VirtualRegisterDefinition VReg;
290 VReg.ID = I;
Puyan Lotfi399b46c2018-03-30 18:15:54 +0000291 if (RegInfo.getVRegName(Reg) != "")
292 continue;
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000293 ::printRegClassOrBank(Reg, VReg.Class, RegInfo, TRI);
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000294 unsigned PreferredReg = RegInfo.getSimpleHint(Reg);
295 if (PreferredReg)
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000296 printRegMIR(PreferredReg, VReg.PreferredRegister, TRI);
Alex Lorenz28148ba2015-07-09 22:23:13 +0000297 MF.VirtualRegisters.push_back(VReg);
298 }
Alex Lorenz12045a42015-07-27 17:42:45 +0000299
300 // Print the live ins.
Krzysztof Parzyszek72518ea2017-10-16 19:08:41 +0000301 for (std::pair<unsigned, unsigned> LI : RegInfo.liveins()) {
Alex Lorenz12045a42015-07-27 17:42:45 +0000302 yaml::MachineFunctionLiveIn LiveIn;
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000303 printRegMIR(LI.first, LiveIn.Register, TRI);
Krzysztof Parzyszek72518ea2017-10-16 19:08:41 +0000304 if (LI.second)
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000305 printRegMIR(LI.second, LiveIn.VirtualRegister, TRI);
Alex Lorenz12045a42015-07-27 17:42:45 +0000306 MF.LiveIns.push_back(LiveIn);
307 }
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000308
309 // Prints the callee saved registers.
310 if (RegInfo.isUpdatedCSRsInitialized()) {
311 const MCPhysReg *CalleeSavedRegs = RegInfo.getCalleeSavedRegs();
312 std::vector<yaml::FlowStringValue> CalleeSavedRegisters;
313 for (const MCPhysReg *I = CalleeSavedRegs; *I; ++I) {
Alex Lorenzc4838082015-08-11 00:32:49 +0000314 yaml::FlowStringValue Reg;
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000315 printRegMIR(*I, Reg, TRI);
Alex Lorenzc4838082015-08-11 00:32:49 +0000316 CalleeSavedRegisters.push_back(Reg);
317 }
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000318 MF.CalleeSavedRegisters = CalleeSavedRegisters;
Alex Lorenzc4838082015-08-11 00:32:49 +0000319 }
Alex Lorenz54565cf2015-06-24 19:56:10 +0000320}
321
Alex Lorenza6f9a372015-07-29 21:09:09 +0000322void MIRPrinter::convert(ModuleSlotTracker &MST,
323 yaml::MachineFrameInfo &YamlMFI,
Alex Lorenz60541c12015-07-09 19:55:27 +0000324 const MachineFrameInfo &MFI) {
325 YamlMFI.IsFrameAddressTaken = MFI.isFrameAddressTaken();
326 YamlMFI.IsReturnAddressTaken = MFI.isReturnAddressTaken();
327 YamlMFI.HasStackMap = MFI.hasStackMap();
328 YamlMFI.HasPatchPoint = MFI.hasPatchPoint();
329 YamlMFI.StackSize = MFI.getStackSize();
330 YamlMFI.OffsetAdjustment = MFI.getOffsetAdjustment();
331 YamlMFI.MaxAlignment = MFI.getMaxAlignment();
332 YamlMFI.AdjustsStack = MFI.adjustsStack();
333 YamlMFI.HasCalls = MFI.hasCalls();
Matthias Braunab9438c2017-05-01 22:32:25 +0000334 YamlMFI.MaxCallFrameSize = MFI.isMaxCallFrameSizeComputed()
335 ? MFI.getMaxCallFrameSize() : ~0u;
Reid Kleckner9ea2c012018-10-01 21:59:45 +0000336 YamlMFI.CVBytesOfCalleeSavedRegisters =
337 MFI.getCVBytesOfCalleeSavedRegisters();
Alex Lorenz60541c12015-07-09 19:55:27 +0000338 YamlMFI.HasOpaqueSPAdjustment = MFI.hasOpaqueSPAdjustment();
339 YamlMFI.HasVAStart = MFI.hasVAStart();
340 YamlMFI.HasMustTailInVarArgFunc = MFI.hasMustTailInVarArgFunc();
Francis Visoiu Mistrih537d7ee2018-04-06 08:56:25 +0000341 YamlMFI.LocalFrameSize = MFI.getLocalFrameSize();
Alex Lorenza6f9a372015-07-29 21:09:09 +0000342 if (MFI.getSavePoint()) {
343 raw_string_ostream StrOS(YamlMFI.SavePoint.Value);
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000344 StrOS << printMBBReference(*MFI.getSavePoint());
Alex Lorenza6f9a372015-07-29 21:09:09 +0000345 }
346 if (MFI.getRestorePoint()) {
347 raw_string_ostream StrOS(YamlMFI.RestorePoint.Value);
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000348 StrOS << printMBBReference(*MFI.getRestorePoint());
Alex Lorenza6f9a372015-07-29 21:09:09 +0000349 }
Alex Lorenz60541c12015-07-09 19:55:27 +0000350}
351
Matthias Braunef331ef2016-11-30 23:48:50 +0000352void MIRPrinter::convertStackObjects(yaml::MachineFunction &YMF,
353 const MachineFunction &MF,
354 ModuleSlotTracker &MST) {
355 const MachineFrameInfo &MFI = MF.getFrameInfo();
356 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
Alex Lorenzde491f02015-07-13 18:07:26 +0000357 // Process fixed stack objects.
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000358 unsigned ID = 0;
Matt Arsenault7b550662019-02-22 19:30:38 +0000359 for (int I = MFI.getObjectIndexBegin(); I < 0; ++I, ++ID) {
Alex Lorenzde491f02015-07-13 18:07:26 +0000360 if (MFI.isDeadObjectIndex(I))
361 continue;
362
363 yaml::FixedMachineStackObject YamlObject;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000364 YamlObject.ID = ID;
Alex Lorenzde491f02015-07-13 18:07:26 +0000365 YamlObject.Type = MFI.isSpillSlotObjectIndex(I)
366 ? yaml::FixedMachineStackObject::SpillSlot
367 : yaml::FixedMachineStackObject::DefaultType;
368 YamlObject.Offset = MFI.getObjectOffset(I);
369 YamlObject.Size = MFI.getObjectSize(I);
370 YamlObject.Alignment = MFI.getObjectAlignment(I);
Matt Arsenaultdb782732017-07-20 21:03:45 +0000371 YamlObject.StackID = MFI.getStackID(I);
Alex Lorenzde491f02015-07-13 18:07:26 +0000372 YamlObject.IsImmutable = MFI.isImmutableObjectIndex(I);
373 YamlObject.IsAliased = MFI.isAliasedObjectIndex(I);
Matthias Braunef331ef2016-11-30 23:48:50 +0000374 YMF.FixedStackObjects.push_back(YamlObject);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000375 StackObjectOperandMapping.insert(
Matt Arsenault7b550662019-02-22 19:30:38 +0000376 std::make_pair(I, FrameIndexOperand::createFixed(ID)));
Alex Lorenzde491f02015-07-13 18:07:26 +0000377 }
378
379 // Process ordinary stack objects.
380 ID = 0;
Matt Arsenault7b550662019-02-22 19:30:38 +0000381 for (int I = 0, E = MFI.getObjectIndexEnd(); I < E; ++I, ++ID) {
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000382 if (MFI.isDeadObjectIndex(I))
383 continue;
384
385 yaml::MachineStackObject YamlObject;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000386 YamlObject.ID = ID;
Alex Lorenz37643a02015-07-15 22:14:49 +0000387 if (const auto *Alloca = MFI.getObjectAllocation(I))
388 YamlObject.Name.Value =
389 Alloca->hasName() ? Alloca->getName() : "<unnamed alloca>";
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000390 YamlObject.Type = MFI.isSpillSlotObjectIndex(I)
391 ? yaml::MachineStackObject::SpillSlot
Alex Lorenz418f3ec2015-07-14 00:26:26 +0000392 : MFI.isVariableSizedObjectIndex(I)
393 ? yaml::MachineStackObject::VariableSized
394 : yaml::MachineStackObject::DefaultType;
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000395 YamlObject.Offset = MFI.getObjectOffset(I);
396 YamlObject.Size = MFI.getObjectSize(I);
397 YamlObject.Alignment = MFI.getObjectAlignment(I);
Matt Arsenaultdb782732017-07-20 21:03:45 +0000398 YamlObject.StackID = MFI.getStackID(I);
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000399
Matthias Braunef331ef2016-11-30 23:48:50 +0000400 YMF.StackObjects.push_back(YamlObject);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000401 StackObjectOperandMapping.insert(std::make_pair(
Matt Arsenault7b550662019-02-22 19:30:38 +0000402 I, FrameIndexOperand::create(YamlObject.Name.Value, ID)));
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000403 }
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000404
405 for (const auto &CSInfo : MFI.getCalleeSavedInfo()) {
Matt Arsenaultd3ed4182019-05-28 13:08:31 +0000406 if (!CSInfo.isSpilledToReg() && MFI.isDeadObjectIndex(CSInfo.getFrameIdx()))
407 continue;
408
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000409 yaml::StringValue Reg;
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000410 printRegMIR(CSInfo.getReg(), Reg, TRI);
Zaara Syeda5c179bf2018-11-09 16:36:24 +0000411 if (!CSInfo.isSpilledToReg()) {
412 auto StackObjectInfo = StackObjectOperandMapping.find(CSInfo.getFrameIdx());
413 assert(StackObjectInfo != StackObjectOperandMapping.end() &&
414 "Invalid stack object index");
415 const FrameIndexOperand &StackObject = StackObjectInfo->second;
416 if (StackObject.IsFixed) {
417 YMF.FixedStackObjects[StackObject.ID].CalleeSavedRegister = Reg;
418 YMF.FixedStackObjects[StackObject.ID].CalleeSavedRestored =
419 CSInfo.isRestored();
420 } else {
421 YMF.StackObjects[StackObject.ID].CalleeSavedRegister = Reg;
422 YMF.StackObjects[StackObject.ID].CalleeSavedRestored =
423 CSInfo.isRestored();
424 }
Matthias Braun5c3e8a42017-09-28 18:52:14 +0000425 }
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000426 }
Alex Lorenza56ba6a2015-08-17 22:17:42 +0000427 for (unsigned I = 0, E = MFI.getLocalFrameObjectCount(); I < E; ++I) {
428 auto LocalObject = MFI.getLocalFrameObjectMap(I);
429 auto StackObjectInfo = StackObjectOperandMapping.find(LocalObject.first);
430 assert(StackObjectInfo != StackObjectOperandMapping.end() &&
431 "Invalid stack object index");
432 const FrameIndexOperand &StackObject = StackObjectInfo->second;
433 assert(!StackObject.IsFixed && "Expected a locally mapped stack object");
Matthias Braunef331ef2016-11-30 23:48:50 +0000434 YMF.StackObjects[StackObject.ID].LocalOffset = LocalObject.second;
Alex Lorenza56ba6a2015-08-17 22:17:42 +0000435 }
Alex Lorenza314d812015-08-18 22:26:26 +0000436
437 // Print the stack object references in the frame information class after
438 // converting the stack objects.
439 if (MFI.hasStackProtectorIndex()) {
Matthias Braunef331ef2016-11-30 23:48:50 +0000440 raw_string_ostream StrOS(YMF.FrameInfo.StackProtector.Value);
Alex Lorenza314d812015-08-18 22:26:26 +0000441 MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping)
442 .printStackObjectReference(MFI.getStackProtectorIndex());
443 }
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000444
445 // Print the debug variable information.
Matthias Braunef331ef2016-11-30 23:48:50 +0000446 for (const MachineFunction::VariableDbgInfo &DebugVar :
447 MF.getVariableDbgInfo()) {
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000448 auto StackObjectInfo = StackObjectOperandMapping.find(DebugVar.Slot);
449 assert(StackObjectInfo != StackObjectOperandMapping.end() &&
450 "Invalid stack object index");
451 const FrameIndexOperand &StackObject = StackObjectInfo->second;
Francis Visoiu Mistrih57fcd342018-04-25 18:58:06 +0000452 if (StackObject.IsFixed) {
453 auto &Object = YMF.FixedStackObjects[StackObject.ID];
454 printStackObjectDbgInfo(DebugVar, Object, MST);
455 } else {
456 auto &Object = YMF.StackObjects[StackObject.ID];
457 printStackObjectDbgInfo(DebugVar, Object, MST);
Alex Lorenzdf9e3c62015-08-19 00:13:25 +0000458 }
459 }
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000460}
461
Alex Lorenzab980492015-07-20 20:51:18 +0000462void MIRPrinter::convert(yaml::MachineFunction &MF,
463 const MachineConstantPool &ConstantPool) {
464 unsigned ID = 0;
465 for (const MachineConstantPoolEntry &Constant : ConstantPool.getConstants()) {
Alex Lorenzab980492015-07-20 20:51:18 +0000466 std::string Str;
467 raw_string_ostream StrOS(Str);
Diana Picusd5a00b02017-08-02 11:09:30 +0000468 if (Constant.isMachineConstantPoolEntry()) {
469 Constant.Val.MachineCPVal->print(StrOS);
470 } else {
471 Constant.Val.ConstVal->printAsOperand(StrOS);
472 }
473
474 yaml::MachineConstantPoolValue YamlConstant;
Alex Lorenzab980492015-07-20 20:51:18 +0000475 YamlConstant.ID = ID++;
476 YamlConstant.Value = StrOS.str();
477 YamlConstant.Alignment = Constant.getAlignment();
Diana Picusd5a00b02017-08-02 11:09:30 +0000478 YamlConstant.IsTargetSpecific = Constant.isMachineConstantPoolEntry();
479
Alex Lorenzab980492015-07-20 20:51:18 +0000480 MF.Constants.push_back(YamlConstant);
481 }
482}
483
Alex Lorenz900b5cb2015-07-07 23:27:53 +0000484void MIRPrinter::convert(ModuleSlotTracker &MST,
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000485 yaml::MachineJumpTable &YamlJTI,
486 const MachineJumpTableInfo &JTI) {
487 YamlJTI.Kind = JTI.getEntryKind();
488 unsigned ID = 0;
489 for (const auto &Table : JTI.getJumpTables()) {
490 std::string Str;
491 yaml::MachineJumpTable::Entry Entry;
492 Entry.ID = ID++;
493 for (const auto *MBB : Table.MBBs) {
494 raw_string_ostream StrOS(Str);
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000495 StrOS << printMBBReference(*MBB);
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000496 Entry.Blocks.push_back(StrOS.str());
497 Str.clear();
498 }
499 YamlJTI.Entries.push_back(Entry);
500 }
501}
502
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000503void MIRPrinter::initRegisterMaskIds(const MachineFunction &MF) {
504 const auto *TRI = MF.getSubtarget().getRegisterInfo();
505 unsigned I = 0;
506 for (const uint32_t *Mask : TRI->getRegMasks())
507 RegisterMaskIds.insert(std::make_pair(Mask, I++));
508}
509
Matthias Braun89401142017-05-05 21:09:30 +0000510void llvm::guessSuccessors(const MachineBasicBlock &MBB,
511 SmallVectorImpl<MachineBasicBlock*> &Result,
512 bool &IsFallthrough) {
513 SmallPtrSet<MachineBasicBlock*,8> Seen;
514
515 for (const MachineInstr &MI : MBB) {
516 if (MI.isPHI())
517 continue;
518 for (const MachineOperand &MO : MI.operands()) {
519 if (!MO.isMBB())
520 continue;
521 MachineBasicBlock *Succ = MO.getMBB();
522 auto RP = Seen.insert(Succ);
523 if (RP.second)
524 Result.push_back(Succ);
525 }
526 }
527 MachineBasicBlock::const_iterator I = MBB.getLastNonDebugInstr();
528 IsFallthrough = I == MBB.end() || !I->isBarrier();
529}
530
531bool
532MIPrinter::canPredictBranchProbabilities(const MachineBasicBlock &MBB) const {
533 if (MBB.succ_size() <= 1)
534 return true;
535 if (!MBB.hasSuccessorProbabilities())
536 return true;
537
538 SmallVector<BranchProbability,8> Normalized(MBB.Probs.begin(),
539 MBB.Probs.end());
540 BranchProbability::normalizeProbabilities(Normalized.begin(),
541 Normalized.end());
542 SmallVector<BranchProbability,8> Equal(Normalized.size());
543 BranchProbability::normalizeProbabilities(Equal.begin(), Equal.end());
544
545 return std::equal(Normalized.begin(), Normalized.end(), Equal.begin());
546}
547
548bool MIPrinter::canPredictSuccessors(const MachineBasicBlock &MBB) const {
549 SmallVector<MachineBasicBlock*,8> GuessedSuccs;
550 bool GuessedFallthrough;
551 guessSuccessors(MBB, GuessedSuccs, GuessedFallthrough);
552 if (GuessedFallthrough) {
553 const MachineFunction &MF = *MBB.getParent();
554 MachineFunction::const_iterator NextI = std::next(MBB.getIterator());
555 if (NextI != MF.end()) {
556 MachineBasicBlock *Next = const_cast<MachineBasicBlock*>(&*NextI);
557 if (!is_contained(GuessedSuccs, Next))
558 GuessedSuccs.push_back(Next);
559 }
560 }
561 if (GuessedSuccs.size() != MBB.succ_size())
562 return false;
563 return std::equal(MBB.succ_begin(), MBB.succ_end(), GuessedSuccs.begin());
564}
565
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000566void MIPrinter::print(const MachineBasicBlock &MBB) {
567 assert(MBB.getNumber() >= 0 && "Invalid MBB number");
568 OS << "bb." << MBB.getNumber();
569 bool HasAttributes = false;
570 if (const auto *BB = MBB.getBasicBlock()) {
571 if (BB->hasName()) {
572 OS << "." << BB->getName();
573 } else {
574 HasAttributes = true;
575 OS << " (";
576 int Slot = MST.getLocalSlot(BB);
577 if (Slot == -1)
578 OS << "<ir-block badref>";
579 else
580 OS << (Twine("%ir-block.") + Twine(Slot)).str();
581 }
582 }
583 if (MBB.hasAddressTaken()) {
584 OS << (HasAttributes ? ", " : " (");
585 OS << "address-taken";
586 HasAttributes = true;
587 }
Reid Kleckner0e288232015-08-27 23:27:47 +0000588 if (MBB.isEHPad()) {
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000589 OS << (HasAttributes ? ", " : " (");
590 OS << "landing-pad";
591 HasAttributes = true;
592 }
593 if (MBB.getAlignment()) {
594 OS << (HasAttributes ? ", " : " (");
595 OS << "align " << MBB.getAlignment();
596 HasAttributes = true;
597 }
598 if (HasAttributes)
599 OS << ")";
600 OS << ":\n";
601
602 bool HasLineAttributes = false;
603 // Print the successors
Matthias Braun89401142017-05-05 21:09:30 +0000604 bool canPredictProbs = canPredictBranchProbabilities(MBB);
Quentin Colombetd652aeb2017-09-19 23:34:12 +0000605 // Even if the list of successors is empty, if we cannot guess it,
606 // we need to print it to tell the parser that the list is empty.
607 // This is needed, because MI model unreachable as empty blocks
608 // with an empty successor list. If the parser would see that
609 // without the successor list, it would guess the code would
610 // fallthrough.
611 if ((!MBB.succ_empty() && !SimplifyMIR) || !canPredictProbs ||
612 !canPredictSuccessors(MBB)) {
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000613 OS.indent(2) << "successors: ";
614 for (auto I = MBB.succ_begin(), E = MBB.succ_end(); I != E; ++I) {
615 if (I != MBB.succ_begin())
616 OS << ", ";
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000617 OS << printMBBReference(**I);
Matthias Braun89401142017-05-05 21:09:30 +0000618 if (!SimplifyMIR || !canPredictProbs)
Geoff Berryb51774a2016-11-18 19:37:24 +0000619 OS << '('
620 << format("0x%08" PRIx32, MBB.getSuccProbability(I).getNumerator())
621 << ')';
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000622 }
623 OS << "\n";
624 HasLineAttributes = true;
625 }
626
627 // Print the live in registers.
Matthias Braun11723322017-01-05 20:01:19 +0000628 const MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
629 if (MRI.tracksLiveness() && !MBB.livein_empty()) {
630 const TargetRegisterInfo &TRI = *MRI.getTargetRegisterInfo();
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000631 OS.indent(2) << "liveins: ";
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000632 bool First = true;
Matthias Braund9da1622015-09-09 18:08:03 +0000633 for (const auto &LI : MBB.liveins()) {
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000634 if (!First)
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000635 OS << ", ";
Matthias Braunb2b7ef12015-08-24 22:59:52 +0000636 First = false;
Francis Visoiu Mistrihc71cced2017-11-30 16:12:24 +0000637 OS << printReg(LI.PhysReg, &TRI);
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +0000638 if (!LI.LaneMask.all())
Krzysztof Parzyszekd62669d2016-10-12 21:06:45 +0000639 OS << ":0x" << PrintLaneMask(LI.LaneMask);
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000640 }
641 OS << "\n";
642 HasLineAttributes = true;
643 }
644
645 if (HasLineAttributes)
646 OS << "\n";
Alex Lorenzf9a2b122015-08-14 18:57:24 +0000647 bool IsInBundle = false;
648 for (auto I = MBB.instr_begin(), E = MBB.instr_end(); I != E; ++I) {
649 const MachineInstr &MI = *I;
650 if (IsInBundle && !MI.isInsideBundle()) {
651 OS.indent(2) << "}\n";
652 IsInBundle = false;
653 }
654 OS.indent(IsInBundle ? 4 : 2);
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000655 print(MI);
Alex Lorenzf9a2b122015-08-14 18:57:24 +0000656 if (!IsInBundle && MI.getFlag(MachineInstr::BundledSucc)) {
657 OS << " {";
658 IsInBundle = true;
659 }
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000660 OS << "\n";
661 }
Alex Lorenzf9a2b122015-08-14 18:57:24 +0000662 if (IsInBundle)
663 OS.indent(2) << "}\n";
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000664}
665
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000666void MIPrinter::print(const MachineInstr &MI) {
Justin Bognerfdf9bf42017-10-10 23:50:49 +0000667 const auto *MF = MI.getMF();
Quentin Colombet4e14a492016-03-07 21:57:52 +0000668 const auto &MRI = MF->getRegInfo();
669 const auto &SubTarget = MF->getSubtarget();
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000670 const auto *TRI = SubTarget.getRegisterInfo();
671 assert(TRI && "Expected target register info");
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000672 const auto *TII = SubTarget.getInstrInfo();
673 assert(TII && "Expected target instruction info");
Alex Lorenzf4baeb52015-07-21 22:28:27 +0000674 if (MI.isCFIInstruction())
675 assert(MI.getNumOperands() == 1 && "Expected 1 operand in CFI instruction");
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000676
Tim Northoverd28d3cc2016-09-12 11:20:10 +0000677 SmallBitVector PrintedTypes(8);
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000678 bool ShouldPrintRegisterTies = MI.hasComplexRegisterTies();
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000679 unsigned I = 0, E = MI.getNumOperands();
680 for (; I < E && MI.getOperand(I).isReg() && MI.getOperand(I).isDef() &&
681 !MI.getOperand(I).isImplicit();
682 ++I) {
683 if (I)
684 OS << ", ";
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000685 print(MI, I, TRI, ShouldPrintRegisterTies,
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000686 MI.getTypeToPrint(I, PrintedTypes, MRI),
687 /*PrintDef=*/false);
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000688 }
689
690 if (I)
691 OS << " = ";
Alex Lorenze5a44662015-07-17 00:24:15 +0000692 if (MI.getFlag(MachineInstr::FrameSetup))
693 OS << "frame-setup ";
Francis Visoiu Mistrih3abf05732018-03-13 19:53:16 +0000694 if (MI.getFlag(MachineInstr::FrameDestroy))
Francis Visoiu Mistrihdbf2c482018-01-09 11:33:22 +0000695 OS << "frame-destroy ";
Michael Berg7d1b25d2018-05-03 00:07:56 +0000696 if (MI.getFlag(MachineInstr::FmNoNans))
697 OS << "nnan ";
698 if (MI.getFlag(MachineInstr::FmNoInfs))
699 OS << "ninf ";
700 if (MI.getFlag(MachineInstr::FmNsz))
701 OS << "nsz ";
702 if (MI.getFlag(MachineInstr::FmArcp))
703 OS << "arcp ";
704 if (MI.getFlag(MachineInstr::FmContract))
705 OS << "contract ";
706 if (MI.getFlag(MachineInstr::FmAfn))
707 OS << "afn ";
708 if (MI.getFlag(MachineInstr::FmReassoc))
709 OS << "reassoc ";
Michael Bergc72a7252018-09-11 21:35:32 +0000710 if (MI.getFlag(MachineInstr::NoUWrap))
711 OS << "nuw ";
712 if (MI.getFlag(MachineInstr::NoSWrap))
713 OS << "nsw ";
714 if (MI.getFlag(MachineInstr::IsExact))
715 OS << "exact ";
Ulrich Weigand6c5d5ce2019-06-05 22:33:10 +0000716 if (MI.getFlag(MachineInstr::FPExcept))
717 OS << "fpexcept ";
Francis Visoiu Mistrihdbf2c482018-01-09 11:33:22 +0000718
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000719 OS << TII->getName(MI.getOpcode());
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000720 if (I < E)
721 OS << ' ';
722
723 bool NeedComma = false;
724 for (; I < E; ++I) {
725 if (NeedComma)
726 OS << ", ";
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000727 print(MI, I, TRI, ShouldPrintRegisterTies,
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000728 MI.getTypeToPrint(I, PrintedTypes, MRI));
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000729 NeedComma = true;
730 }
Alex Lorenz46d760d2015-07-22 21:15:11 +0000731
Chandler Carruth75ca6be2018-08-16 23:11:05 +0000732 // Print any optional symbols attached to this instruction as-if they were
733 // operands.
734 if (MCSymbol *PreInstrSymbol = MI.getPreInstrSymbol()) {
735 if (NeedComma)
736 OS << ',';
737 OS << " pre-instr-symbol ";
738 MachineOperand::printSymbol(OS, *PreInstrSymbol);
739 NeedComma = true;
740 }
741 if (MCSymbol *PostInstrSymbol = MI.getPostInstrSymbol()) {
742 if (NeedComma)
743 OS << ',';
744 OS << " post-instr-symbol ";
745 MachineOperand::printSymbol(OS, *PostInstrSymbol);
746 NeedComma = true;
747 }
748
Francis Visoiu Mistrih548add92018-01-19 11:44:42 +0000749 if (const DebugLoc &DL = MI.getDebugLoc()) {
Alex Lorenz46d760d2015-07-22 21:15:11 +0000750 if (NeedComma)
751 OS << ',';
752 OS << " debug-location ";
Francis Visoiu Mistrih548add92018-01-19 11:44:42 +0000753 DL->printAsOperand(OS, MST);
Alex Lorenz46d760d2015-07-22 21:15:11 +0000754 }
Alex Lorenz4af7e612015-08-03 23:08:19 +0000755
756 if (!MI.memoperands_empty()) {
757 OS << " :: ";
Matthias Braunf1caa282017-12-15 22:22:58 +0000758 const LLVMContext &Context = MF->getFunction().getContext();
Francis Visoiu Mistrihe85b06d2018-03-14 21:52:13 +0000759 const MachineFrameInfo &MFI = MF->getFrameInfo();
Alex Lorenz4af7e612015-08-03 23:08:19 +0000760 bool NeedComma = false;
761 for (const auto *Op : MI.memoperands()) {
762 if (NeedComma)
763 OS << ", ";
Francis Visoiu Mistrihe85b06d2018-03-14 21:52:13 +0000764 Op->print(OS, MST, SSNs, Context, &MFI, TII);
Alex Lorenz4af7e612015-08-03 23:08:19 +0000765 NeedComma = true;
766 }
767 }
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000768}
769
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000770void MIPrinter::printStackObjectReference(int FrameIndex) {
771 auto ObjectInfo = StackObjectOperandMapping.find(FrameIndex);
772 assert(ObjectInfo != StackObjectOperandMapping.end() &&
773 "Invalid frame index");
774 const FrameIndexOperand &Operand = ObjectInfo->second;
Francis Visoiu Mistrih0b5bdce2017-12-15 16:33:45 +0000775 MachineOperand::printStackObjectReference(OS, Operand.ID, Operand.IsFixed,
776 Operand.Name);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000777}
778
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000779void MIPrinter::print(const MachineInstr &MI, unsigned OpIdx,
780 const TargetRegisterInfo *TRI,
781 bool ShouldPrintRegisterTies, LLT TypeToPrint,
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000782 bool PrintDef) {
Bjorn Petterssona42ed3e2017-11-06 21:46:06 +0000783 const MachineOperand &Op = MI.getOperand(OpIdx);
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000784 switch (Op.getType()) {
Francis Visoiu Mistrih440f69c2017-12-08 22:53:21 +0000785 case MachineOperand::MO_Immediate:
786 if (MI.isOperandSubregIdx(OpIdx)) {
Francis Visoiu Mistrih5df3bbf2017-12-14 10:03:09 +0000787 MachineOperand::printTargetFlags(OS, Op);
Francis Visoiu Mistrihecd0b832018-01-16 10:53:11 +0000788 MachineOperand::printSubRegIdx(OS, Op.getImm(), TRI);
Francis Visoiu Mistrih440f69c2017-12-08 22:53:21 +0000789 break;
790 }
791 LLVM_FALLTHROUGH;
Francis Visoiu Mistrih6c4ca712017-12-08 11:40:06 +0000792 case MachineOperand::MO_Register:
Francis Visoiu Mistrihf4bd2952017-12-08 11:48:02 +0000793 case MachineOperand::MO_CImmediate:
Francis Visoiu Mistrih3b265c82017-12-19 21:47:00 +0000794 case MachineOperand::MO_FPImmediate:
Francis Visoiu Mistrih26ae8a62017-12-13 10:30:45 +0000795 case MachineOperand::MO_MachineBasicBlock:
Francis Visoiu Mistrihb3a0d512017-12-13 10:30:51 +0000796 case MachineOperand::MO_ConstantPoolIndex:
Francis Visoiu Mistrihb41dbbe2017-12-13 10:30:59 +0000797 case MachineOperand::MO_TargetIndex:
Francis Visoiu Mistrihe76c5fc2017-12-14 10:02:58 +0000798 case MachineOperand::MO_JumpTableIndex:
Francis Visoiu Mistrih5df3bbf2017-12-14 10:03:09 +0000799 case MachineOperand::MO_ExternalSymbol:
Francis Visoiu Mistrihbdaf8bf2017-12-14 10:03:14 +0000800 case MachineOperand::MO_GlobalAddress:
Francis Visoiu Mistrih2db59382017-12-14 10:03:18 +0000801 case MachineOperand::MO_RegisterLiveOut:
Francis Visoiu Mistrih3c993712017-12-14 10:03:23 +0000802 case MachineOperand::MO_Metadata:
Francis Visoiu Mistrih874ae6f2017-12-19 16:51:52 +0000803 case MachineOperand::MO_MCSymbol:
Francis Visoiu Mistrihbbd610a2017-12-19 21:47:05 +0000804 case MachineOperand::MO_CFIIndex:
Francis Visoiu Mistrihcb2683d2017-12-19 21:47:10 +0000805 case MachineOperand::MO_IntrinsicID:
Francis Visoiu Mistrihf81727d2017-12-19 21:47:14 +0000806 case MachineOperand::MO_Predicate:
807 case MachineOperand::MO_BlockAddress: {
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000808 unsigned TiedOperandIdx = 0;
Francis Visoiu Mistrih440f69c2017-12-08 22:53:21 +0000809 if (ShouldPrintRegisterTies && Op.isReg() && Op.isTied() && !Op.isDef())
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000810 TiedOperandIdx = Op.getParent()->findTiedOperandIdx(OpIdx);
811 const TargetIntrinsicInfo *TII = MI.getMF()->getTarget().getIntrinsicInfo();
Francis Visoiu Mistriheb3f76f2018-01-18 18:05:15 +0000812 Op.print(OS, MST, TypeToPrint, PrintDef, /*IsStandalone=*/false,
Francis Visoiu Mistrih378b5f32018-01-18 17:59:06 +0000813 ShouldPrintRegisterTies, TiedOperandIdx, TRI, TII);
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000814 break;
Justin Bogner6c452832017-10-24 18:04:54 +0000815 }
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000816 case MachineOperand::MO_FrameIndex:
817 printStackObjectReference(Op.getIndex());
818 break;
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000819 case MachineOperand::MO_RegisterMask: {
820 auto RegMaskInfo = RegisterMaskIds.find(Op.getRegMask());
821 if (RegMaskInfo != RegisterMaskIds.end())
822 OS << StringRef(TRI->getRegMaskNames()[RegMaskInfo->second]).lower();
823 else
Oren Ben Simhon0ef61ec2017-03-19 08:14:18 +0000824 printCustomRegMask(Op.getRegMask(), OS, TRI);
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000825 break;
826 }
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000827 }
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000828}
829
Alex Lorenz345c1442015-06-15 23:52:35 +0000830void llvm::printMIR(raw_ostream &OS, const Module &M) {
831 yaml::Output Out(OS);
832 Out << const_cast<Module &>(M);
833}
834
835void llvm::printMIR(raw_ostream &OS, const MachineFunction &MF) {
836 MIRPrinter Printer(OS);
837 Printer.print(MF);
838}