blob: 9e3f6bb65f6674aecc33b23716bc88e585135acd [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
15#include "MIRPrinter.h"
16#include "llvm/ADT/STLExtras.h"
Alex Lorenzab980492015-07-20 20:51:18 +000017#include "llvm/CodeGen/MachineConstantPool.h"
Alex Lorenz345c1442015-06-15 23:52:35 +000018#include "llvm/CodeGen/MachineFunction.h"
Alex Lorenz60541c12015-07-09 19:55:27 +000019#include "llvm/CodeGen/MachineFrameInfo.h"
Alex Lorenz4af7e612015-08-03 23:08:19 +000020#include "llvm/CodeGen/MachineMemOperand.h"
Alex Lorenzf4baeb52015-07-21 22:28:27 +000021#include "llvm/CodeGen/MachineModuleInfo.h"
Alex Lorenz54565cf2015-06-24 19:56:10 +000022#include "llvm/CodeGen/MachineRegisterInfo.h"
Alex Lorenz345c1442015-06-15 23:52:35 +000023#include "llvm/CodeGen/MIRYamlMapping.h"
Alex Lorenz4f093bf2015-06-19 17:43:07 +000024#include "llvm/IR/BasicBlock.h"
Alex Lorenzdeb53492015-07-28 17:28:03 +000025#include "llvm/IR/Constants.h"
Alex Lorenz37643a02015-07-15 22:14:49 +000026#include "llvm/IR/Instructions.h"
Alex Lorenz6ede3742015-07-21 16:59:53 +000027#include "llvm/IR/IRPrintingPasses.h"
Alex Lorenz345c1442015-06-15 23:52:35 +000028#include "llvm/IR/Module.h"
Alex Lorenz900b5cb2015-07-07 23:27:53 +000029#include "llvm/IR/ModuleSlotTracker.h"
Alex Lorenz345c1442015-06-15 23:52:35 +000030#include "llvm/Support/MemoryBuffer.h"
31#include "llvm/Support/raw_ostream.h"
32#include "llvm/Support/YAMLTraits.h"
Alex Lorenz8e0a1b42015-06-22 17:02:30 +000033#include "llvm/Target/TargetInstrInfo.h"
34#include "llvm/Target/TargetSubtargetInfo.h"
Alex Lorenz345c1442015-06-15 23:52:35 +000035
36using namespace llvm;
37
38namespace {
39
Alex Lorenz7feaf7c2015-07-16 23:37:45 +000040/// This structure describes how to print out stack object references.
41struct FrameIndexOperand {
42 std::string Name;
43 unsigned ID;
44 bool IsFixed;
45
46 FrameIndexOperand(StringRef Name, unsigned ID, bool IsFixed)
47 : Name(Name.str()), ID(ID), IsFixed(IsFixed) {}
48
49 /// Return an ordinary stack object reference.
50 static FrameIndexOperand create(StringRef Name, unsigned ID) {
51 return FrameIndexOperand(Name, ID, /*IsFixed=*/false);
52 }
53
54 /// Return a fixed stack object reference.
55 static FrameIndexOperand createFixed(unsigned ID) {
56 return FrameIndexOperand("", ID, /*IsFixed=*/true);
57 }
58};
59
Alex Lorenz618b2832015-07-30 16:54:38 +000060} // end anonymous namespace
61
62namespace llvm {
63
Alex Lorenz345c1442015-06-15 23:52:35 +000064/// This class prints out the machine functions using the MIR serialization
65/// format.
66class MIRPrinter {
67 raw_ostream &OS;
Alex Lorenz8f6f4282015-06-29 16:57:06 +000068 DenseMap<const uint32_t *, unsigned> RegisterMaskIds;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +000069 /// Maps from stack object indices to operand indices which will be used when
70 /// printing frame index machine operands.
71 DenseMap<int, FrameIndexOperand> StackObjectOperandMapping;
Alex Lorenz345c1442015-06-15 23:52:35 +000072
73public:
74 MIRPrinter(raw_ostream &OS) : OS(OS) {}
75
76 void print(const MachineFunction &MF);
Alex Lorenz4f093bf2015-06-19 17:43:07 +000077
Alex Lorenz28148ba2015-07-09 22:23:13 +000078 void convert(yaml::MachineFunction &MF, const MachineRegisterInfo &RegInfo,
79 const TargetRegisterInfo *TRI);
Alex Lorenza6f9a372015-07-29 21:09:09 +000080 void convert(ModuleSlotTracker &MST, yaml::MachineFrameInfo &YamlMFI,
81 const MachineFrameInfo &MFI);
Alex Lorenzab980492015-07-20 20:51:18 +000082 void convert(yaml::MachineFunction &MF,
83 const MachineConstantPool &ConstantPool);
Alex Lorenz6799e9b2015-07-15 23:31:07 +000084 void convert(ModuleSlotTracker &MST, yaml::MachineJumpTable &YamlJTI,
85 const MachineJumpTableInfo &JTI);
Alex Lorenzf6bc8662015-07-10 18:13:57 +000086 void convertStackObjects(yaml::MachineFunction &MF,
Alex Lorenza314d812015-08-18 22:26:26 +000087 const MachineFrameInfo &MFI, ModuleSlotTracker &MST,
Alex Lorenz1bb48de2015-07-24 22:22:50 +000088 const TargetRegisterInfo *TRI);
Alex Lorenz8f6f4282015-06-29 16:57:06 +000089
90private:
91 void initRegisterMaskIds(const MachineFunction &MF);
Alex Lorenz345c1442015-06-15 23:52:35 +000092};
93
Alex Lorenz8e0a1b42015-06-22 17:02:30 +000094/// This class prints out the machine instructions using the MIR serialization
95/// format.
96class MIPrinter {
97 raw_ostream &OS;
Alex Lorenz900b5cb2015-07-07 23:27:53 +000098 ModuleSlotTracker &MST;
Alex Lorenz8f6f4282015-06-29 16:57:06 +000099 const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000100 const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping;
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000101
102public:
Alex Lorenz900b5cb2015-07-07 23:27:53 +0000103 MIPrinter(raw_ostream &OS, ModuleSlotTracker &MST,
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000104 const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds,
105 const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping)
106 : OS(OS), MST(MST), RegisterMaskIds(RegisterMaskIds),
107 StackObjectOperandMapping(StackObjectOperandMapping) {}
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000108
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000109 void print(const MachineBasicBlock &MBB);
110
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000111 void print(const MachineInstr &MI);
Alex Lorenz5d26fa82015-06-30 18:00:16 +0000112 void printMBBReference(const MachineBasicBlock &MBB);
Alex Lorenzdeb53492015-07-28 17:28:03 +0000113 void printIRBlockReference(const BasicBlock &BB);
Alex Lorenz4af7e612015-08-03 23:08:19 +0000114 void printIRValueReference(const Value &V);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000115 void printStackObjectReference(int FrameIndex);
Alex Lorenz5672a892015-08-05 22:26:15 +0000116 void printOffset(int64_t Offset);
Alex Lorenz49873a82015-08-06 00:44:07 +0000117 void printTargetFlags(const MachineOperand &Op);
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000118 void print(const MachineOperand &Op, const TargetRegisterInfo *TRI);
Alex Lorenz4af7e612015-08-03 23:08:19 +0000119 void print(const MachineMemOperand &Op);
Alex Lorenzf4baeb52015-07-21 22:28:27 +0000120
Alex Lorenz8cfc6862015-07-23 23:09:07 +0000121 void print(const MCCFIInstruction &CFI, const TargetRegisterInfo *TRI);
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000122};
123
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000124} // end namespace llvm
Alex Lorenz345c1442015-06-15 23:52:35 +0000125
126namespace llvm {
127namespace yaml {
128
129/// This struct serializes the LLVM IR module.
130template <> struct BlockScalarTraits<Module> {
131 static void output(const Module &Mod, void *Ctxt, raw_ostream &OS) {
132 Mod.print(OS, nullptr);
133 }
134 static StringRef input(StringRef Str, void *Ctxt, Module &Mod) {
135 llvm_unreachable("LLVM Module is supposed to be parsed separately");
136 return "";
137 }
138};
139
140} // end namespace yaml
141} // end namespace llvm
142
Alex Lorenz15a00a82015-07-14 21:18:25 +0000143static void printReg(unsigned Reg, raw_ostream &OS,
144 const TargetRegisterInfo *TRI) {
145 // TODO: Print Stack Slots.
146 if (!Reg)
147 OS << '_';
148 else if (TargetRegisterInfo::isVirtualRegister(Reg))
149 OS << '%' << TargetRegisterInfo::virtReg2Index(Reg);
150 else if (Reg < TRI->getNumRegs())
151 OS << '%' << StringRef(TRI->getName(Reg)).lower();
152 else
153 llvm_unreachable("Can't print this kind of register yet");
154}
155
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000156static void printReg(unsigned Reg, yaml::StringValue &Dest,
157 const TargetRegisterInfo *TRI) {
158 raw_string_ostream OS(Dest.Value);
159 printReg(Reg, OS, TRI);
160}
161
Alex Lorenz345c1442015-06-15 23:52:35 +0000162void MIRPrinter::print(const MachineFunction &MF) {
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000163 initRegisterMaskIds(MF);
164
Alex Lorenz345c1442015-06-15 23:52:35 +0000165 yaml::MachineFunction YamlMF;
166 YamlMF.Name = MF.getName();
Alex Lorenz5b5f9752015-06-16 00:10:47 +0000167 YamlMF.Alignment = MF.getAlignment();
168 YamlMF.ExposesReturnsTwice = MF.exposesReturnsTwice();
169 YamlMF.HasInlineAsm = MF.hasInlineAsm();
Alex Lorenz28148ba2015-07-09 22:23:13 +0000170 convert(YamlMF, MF.getRegInfo(), MF.getSubtarget().getRegisterInfo());
Alex Lorenza6f9a372015-07-29 21:09:09 +0000171 ModuleSlotTracker MST(MF.getFunction()->getParent());
172 MST.incorporateFunction(*MF.getFunction());
173 convert(MST, YamlMF.FrameInfo, *MF.getFrameInfo());
Alex Lorenza314d812015-08-18 22:26:26 +0000174 convertStackObjects(YamlMF, *MF.getFrameInfo(), MST,
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000175 MF.getSubtarget().getRegisterInfo());
Alex Lorenzab980492015-07-20 20:51:18 +0000176 if (const auto *ConstantPool = MF.getConstantPool())
177 convert(YamlMF, *ConstantPool);
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000178 if (const auto *JumpTableInfo = MF.getJumpTableInfo())
179 convert(MST, YamlMF.JumpTableInfo, *JumpTableInfo);
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000180 raw_string_ostream StrOS(YamlMF.Body.Value.Value);
181 bool IsNewlineNeeded = false;
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000182 for (const auto &MBB : MF) {
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000183 if (IsNewlineNeeded)
184 StrOS << "\n";
185 MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping)
186 .print(MBB);
187 IsNewlineNeeded = true;
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000188 }
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000189 StrOS.flush();
Alex Lorenz345c1442015-06-15 23:52:35 +0000190 yaml::Output Out(OS);
191 Out << YamlMF;
192}
193
Alex Lorenz54565cf2015-06-24 19:56:10 +0000194void MIRPrinter::convert(yaml::MachineFunction &MF,
Alex Lorenz28148ba2015-07-09 22:23:13 +0000195 const MachineRegisterInfo &RegInfo,
196 const TargetRegisterInfo *TRI) {
Alex Lorenz54565cf2015-06-24 19:56:10 +0000197 MF.IsSSA = RegInfo.isSSA();
198 MF.TracksRegLiveness = RegInfo.tracksLiveness();
199 MF.TracksSubRegLiveness = RegInfo.subRegLivenessEnabled();
Alex Lorenz28148ba2015-07-09 22:23:13 +0000200
201 // Print the virtual register definitions.
202 for (unsigned I = 0, E = RegInfo.getNumVirtRegs(); I < E; ++I) {
203 unsigned Reg = TargetRegisterInfo::index2VirtReg(I);
204 yaml::VirtualRegisterDefinition VReg;
205 VReg.ID = I;
206 VReg.Class =
207 StringRef(TRI->getRegClassName(RegInfo.getRegClass(Reg))).lower();
Alex Lorenzab4cbcf2015-07-24 20:35:40 +0000208 unsigned PreferredReg = RegInfo.getSimpleHint(Reg);
209 if (PreferredReg)
210 printReg(PreferredReg, VReg.PreferredRegister, TRI);
Alex Lorenz28148ba2015-07-09 22:23:13 +0000211 MF.VirtualRegisters.push_back(VReg);
212 }
Alex Lorenz12045a42015-07-27 17:42:45 +0000213
214 // Print the live ins.
215 for (auto I = RegInfo.livein_begin(), E = RegInfo.livein_end(); I != E; ++I) {
216 yaml::MachineFunctionLiveIn LiveIn;
217 printReg(I->first, LiveIn.Register, TRI);
218 if (I->second)
219 printReg(I->second, LiveIn.VirtualRegister, TRI);
220 MF.LiveIns.push_back(LiveIn);
221 }
Alex Lorenzc4838082015-08-11 00:32:49 +0000222 // The used physical register mask is printed as an inverted callee saved
223 // register mask.
224 const BitVector &UsedPhysRegMask = RegInfo.getUsedPhysRegsMask();
225 if (UsedPhysRegMask.none())
226 return;
227 std::vector<yaml::FlowStringValue> CalleeSavedRegisters;
228 for (unsigned I = 0, E = UsedPhysRegMask.size(); I != E; ++I) {
229 if (!UsedPhysRegMask[I]) {
230 yaml::FlowStringValue Reg;
231 printReg(I, Reg, TRI);
232 CalleeSavedRegisters.push_back(Reg);
233 }
234 }
235 MF.CalleeSavedRegisters = CalleeSavedRegisters;
Alex Lorenz54565cf2015-06-24 19:56:10 +0000236}
237
Alex Lorenza6f9a372015-07-29 21:09:09 +0000238void MIRPrinter::convert(ModuleSlotTracker &MST,
239 yaml::MachineFrameInfo &YamlMFI,
Alex Lorenz60541c12015-07-09 19:55:27 +0000240 const MachineFrameInfo &MFI) {
241 YamlMFI.IsFrameAddressTaken = MFI.isFrameAddressTaken();
242 YamlMFI.IsReturnAddressTaken = MFI.isReturnAddressTaken();
243 YamlMFI.HasStackMap = MFI.hasStackMap();
244 YamlMFI.HasPatchPoint = MFI.hasPatchPoint();
245 YamlMFI.StackSize = MFI.getStackSize();
246 YamlMFI.OffsetAdjustment = MFI.getOffsetAdjustment();
247 YamlMFI.MaxAlignment = MFI.getMaxAlignment();
248 YamlMFI.AdjustsStack = MFI.adjustsStack();
249 YamlMFI.HasCalls = MFI.hasCalls();
250 YamlMFI.MaxCallFrameSize = MFI.getMaxCallFrameSize();
251 YamlMFI.HasOpaqueSPAdjustment = MFI.hasOpaqueSPAdjustment();
252 YamlMFI.HasVAStart = MFI.hasVAStart();
253 YamlMFI.HasMustTailInVarArgFunc = MFI.hasMustTailInVarArgFunc();
Alex Lorenza6f9a372015-07-29 21:09:09 +0000254 if (MFI.getSavePoint()) {
255 raw_string_ostream StrOS(YamlMFI.SavePoint.Value);
256 MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping)
257 .printMBBReference(*MFI.getSavePoint());
258 }
259 if (MFI.getRestorePoint()) {
260 raw_string_ostream StrOS(YamlMFI.RestorePoint.Value);
261 MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping)
262 .printMBBReference(*MFI.getRestorePoint());
263 }
Alex Lorenz60541c12015-07-09 19:55:27 +0000264}
265
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000266void MIRPrinter::convertStackObjects(yaml::MachineFunction &MF,
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000267 const MachineFrameInfo &MFI,
Alex Lorenza314d812015-08-18 22:26:26 +0000268 ModuleSlotTracker &MST,
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000269 const TargetRegisterInfo *TRI) {
Alex Lorenzde491f02015-07-13 18:07:26 +0000270 // Process fixed stack objects.
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000271 unsigned ID = 0;
Alex Lorenzde491f02015-07-13 18:07:26 +0000272 for (int I = MFI.getObjectIndexBegin(); I < 0; ++I) {
273 if (MFI.isDeadObjectIndex(I))
274 continue;
275
276 yaml::FixedMachineStackObject YamlObject;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000277 YamlObject.ID = ID;
Alex Lorenzde491f02015-07-13 18:07:26 +0000278 YamlObject.Type = MFI.isSpillSlotObjectIndex(I)
279 ? yaml::FixedMachineStackObject::SpillSlot
280 : yaml::FixedMachineStackObject::DefaultType;
281 YamlObject.Offset = MFI.getObjectOffset(I);
282 YamlObject.Size = MFI.getObjectSize(I);
283 YamlObject.Alignment = MFI.getObjectAlignment(I);
284 YamlObject.IsImmutable = MFI.isImmutableObjectIndex(I);
285 YamlObject.IsAliased = MFI.isAliasedObjectIndex(I);
286 MF.FixedStackObjects.push_back(YamlObject);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000287 StackObjectOperandMapping.insert(
288 std::make_pair(I, FrameIndexOperand::createFixed(ID++)));
Alex Lorenzde491f02015-07-13 18:07:26 +0000289 }
290
291 // Process ordinary stack objects.
292 ID = 0;
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000293 for (int I = 0, E = MFI.getObjectIndexEnd(); I < E; ++I) {
294 if (MFI.isDeadObjectIndex(I))
295 continue;
296
297 yaml::MachineStackObject YamlObject;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000298 YamlObject.ID = ID;
Alex Lorenz37643a02015-07-15 22:14:49 +0000299 if (const auto *Alloca = MFI.getObjectAllocation(I))
300 YamlObject.Name.Value =
301 Alloca->hasName() ? Alloca->getName() : "<unnamed alloca>";
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000302 YamlObject.Type = MFI.isSpillSlotObjectIndex(I)
303 ? yaml::MachineStackObject::SpillSlot
Alex Lorenz418f3ec2015-07-14 00:26:26 +0000304 : MFI.isVariableSizedObjectIndex(I)
305 ? yaml::MachineStackObject::VariableSized
306 : yaml::MachineStackObject::DefaultType;
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000307 YamlObject.Offset = MFI.getObjectOffset(I);
308 YamlObject.Size = MFI.getObjectSize(I);
309 YamlObject.Alignment = MFI.getObjectAlignment(I);
310
311 MF.StackObjects.push_back(YamlObject);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000312 StackObjectOperandMapping.insert(std::make_pair(
313 I, FrameIndexOperand::create(YamlObject.Name.Value, ID++)));
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000314 }
Alex Lorenz1bb48de2015-07-24 22:22:50 +0000315
316 for (const auto &CSInfo : MFI.getCalleeSavedInfo()) {
317 yaml::StringValue Reg;
318 printReg(CSInfo.getReg(), Reg, TRI);
319 auto StackObjectInfo = StackObjectOperandMapping.find(CSInfo.getFrameIdx());
320 assert(StackObjectInfo != StackObjectOperandMapping.end() &&
321 "Invalid stack object index");
322 const FrameIndexOperand &StackObject = StackObjectInfo->second;
323 if (StackObject.IsFixed)
324 MF.FixedStackObjects[StackObject.ID].CalleeSavedRegister = Reg;
325 else
326 MF.StackObjects[StackObject.ID].CalleeSavedRegister = Reg;
327 }
Alex Lorenza56ba6a2015-08-17 22:17:42 +0000328 for (unsigned I = 0, E = MFI.getLocalFrameObjectCount(); I < E; ++I) {
329 auto LocalObject = MFI.getLocalFrameObjectMap(I);
330 auto StackObjectInfo = StackObjectOperandMapping.find(LocalObject.first);
331 assert(StackObjectInfo != StackObjectOperandMapping.end() &&
332 "Invalid stack object index");
333 const FrameIndexOperand &StackObject = StackObjectInfo->second;
334 assert(!StackObject.IsFixed && "Expected a locally mapped stack object");
335 MF.StackObjects[StackObject.ID].LocalOffset = LocalObject.second;
336 }
Alex Lorenza314d812015-08-18 22:26:26 +0000337
338 // Print the stack object references in the frame information class after
339 // converting the stack objects.
340 if (MFI.hasStackProtectorIndex()) {
341 raw_string_ostream StrOS(MF.FrameInfo.StackProtector.Value);
342 MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping)
343 .printStackObjectReference(MFI.getStackProtectorIndex());
344 }
Alex Lorenzf6bc8662015-07-10 18:13:57 +0000345}
346
Alex Lorenzab980492015-07-20 20:51:18 +0000347void MIRPrinter::convert(yaml::MachineFunction &MF,
348 const MachineConstantPool &ConstantPool) {
349 unsigned ID = 0;
350 for (const MachineConstantPoolEntry &Constant : ConstantPool.getConstants()) {
351 // TODO: Serialize target specific constant pool entries.
352 if (Constant.isMachineConstantPoolEntry())
353 llvm_unreachable("Can't print target specific constant pool entries yet");
354
355 yaml::MachineConstantPoolValue YamlConstant;
356 std::string Str;
357 raw_string_ostream StrOS(Str);
358 Constant.Val.ConstVal->printAsOperand(StrOS);
359 YamlConstant.ID = ID++;
360 YamlConstant.Value = StrOS.str();
361 YamlConstant.Alignment = Constant.getAlignment();
362 MF.Constants.push_back(YamlConstant);
363 }
364}
365
Alex Lorenz900b5cb2015-07-07 23:27:53 +0000366void MIRPrinter::convert(ModuleSlotTracker &MST,
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000367 yaml::MachineJumpTable &YamlJTI,
368 const MachineJumpTableInfo &JTI) {
369 YamlJTI.Kind = JTI.getEntryKind();
370 unsigned ID = 0;
371 for (const auto &Table : JTI.getJumpTables()) {
372 std::string Str;
373 yaml::MachineJumpTable::Entry Entry;
374 Entry.ID = ID++;
375 for (const auto *MBB : Table.MBBs) {
376 raw_string_ostream StrOS(Str);
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000377 MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping)
378 .printMBBReference(*MBB);
Alex Lorenz6799e9b2015-07-15 23:31:07 +0000379 Entry.Blocks.push_back(StrOS.str());
380 Str.clear();
381 }
382 YamlJTI.Entries.push_back(Entry);
383 }
384}
385
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000386void MIRPrinter::initRegisterMaskIds(const MachineFunction &MF) {
387 const auto *TRI = MF.getSubtarget().getRegisterInfo();
388 unsigned I = 0;
389 for (const uint32_t *Mask : TRI->getRegMasks())
390 RegisterMaskIds.insert(std::make_pair(Mask, I++));
391}
392
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000393void MIPrinter::print(const MachineBasicBlock &MBB) {
394 assert(MBB.getNumber() >= 0 && "Invalid MBB number");
395 OS << "bb." << MBB.getNumber();
396 bool HasAttributes = false;
397 if (const auto *BB = MBB.getBasicBlock()) {
398 if (BB->hasName()) {
399 OS << "." << BB->getName();
400 } else {
401 HasAttributes = true;
402 OS << " (";
403 int Slot = MST.getLocalSlot(BB);
404 if (Slot == -1)
405 OS << "<ir-block badref>";
406 else
407 OS << (Twine("%ir-block.") + Twine(Slot)).str();
408 }
409 }
410 if (MBB.hasAddressTaken()) {
411 OS << (HasAttributes ? ", " : " (");
412 OS << "address-taken";
413 HasAttributes = true;
414 }
415 if (MBB.isLandingPad()) {
416 OS << (HasAttributes ? ", " : " (");
417 OS << "landing-pad";
418 HasAttributes = true;
419 }
420 if (MBB.getAlignment()) {
421 OS << (HasAttributes ? ", " : " (");
422 OS << "align " << MBB.getAlignment();
423 HasAttributes = true;
424 }
425 if (HasAttributes)
426 OS << ")";
427 OS << ":\n";
428
429 bool HasLineAttributes = false;
430 // Print the successors
431 if (!MBB.succ_empty()) {
432 OS.indent(2) << "successors: ";
433 for (auto I = MBB.succ_begin(), E = MBB.succ_end(); I != E; ++I) {
434 if (I != MBB.succ_begin())
435 OS << ", ";
436 printMBBReference(**I);
437 if (MBB.hasSuccessorWeights())
438 OS << '(' << MBB.getSuccWeight(I) << ')';
439 }
440 OS << "\n";
441 HasLineAttributes = true;
442 }
443
444 // Print the live in registers.
445 const auto *TRI = MBB.getParent()->getSubtarget().getRegisterInfo();
446 assert(TRI && "Expected target register info");
447 if (!MBB.livein_empty()) {
448 OS.indent(2) << "liveins: ";
449 for (auto I = MBB.livein_begin(), E = MBB.livein_end(); I != E; ++I) {
450 if (I != MBB.livein_begin())
451 OS << ", ";
452 printReg(*I, OS, TRI);
453 }
454 OS << "\n";
455 HasLineAttributes = true;
456 }
457
458 if (HasLineAttributes)
459 OS << "\n";
Alex Lorenzf9a2b122015-08-14 18:57:24 +0000460 bool IsInBundle = false;
461 for (auto I = MBB.instr_begin(), E = MBB.instr_end(); I != E; ++I) {
462 const MachineInstr &MI = *I;
463 if (IsInBundle && !MI.isInsideBundle()) {
464 OS.indent(2) << "}\n";
465 IsInBundle = false;
466 }
467 OS.indent(IsInBundle ? 4 : 2);
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000468 print(MI);
Alex Lorenzf9a2b122015-08-14 18:57:24 +0000469 if (!IsInBundle && MI.getFlag(MachineInstr::BundledSucc)) {
470 OS << " {";
471 IsInBundle = true;
472 }
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000473 OS << "\n";
474 }
Alex Lorenzf9a2b122015-08-14 18:57:24 +0000475 if (IsInBundle)
476 OS.indent(2) << "}\n";
Alex Lorenz5022f6b2015-08-13 23:10:16 +0000477}
478
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000479void MIPrinter::print(const MachineInstr &MI) {
480 const auto &SubTarget = MI.getParent()->getParent()->getSubtarget();
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000481 const auto *TRI = SubTarget.getRegisterInfo();
482 assert(TRI && "Expected target register info");
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000483 const auto *TII = SubTarget.getInstrInfo();
484 assert(TII && "Expected target instruction info");
Alex Lorenzf4baeb52015-07-21 22:28:27 +0000485 if (MI.isCFIInstruction())
486 assert(MI.getNumOperands() == 1 && "Expected 1 operand in CFI instruction");
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000487
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000488 unsigned I = 0, E = MI.getNumOperands();
489 for (; I < E && MI.getOperand(I).isReg() && MI.getOperand(I).isDef() &&
490 !MI.getOperand(I).isImplicit();
491 ++I) {
492 if (I)
493 OS << ", ";
494 print(MI.getOperand(I), TRI);
495 }
496
497 if (I)
498 OS << " = ";
Alex Lorenze5a44662015-07-17 00:24:15 +0000499 if (MI.getFlag(MachineInstr::FrameSetup))
500 OS << "frame-setup ";
Alex Lorenz8e0a1b42015-06-22 17:02:30 +0000501 OS << TII->getName(MI.getOpcode());
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000502 if (I < E)
503 OS << ' ';
504
505 bool NeedComma = false;
506 for (; I < E; ++I) {
507 if (NeedComma)
508 OS << ", ";
509 print(MI.getOperand(I), TRI);
510 NeedComma = true;
511 }
Alex Lorenz46d760d2015-07-22 21:15:11 +0000512
513 if (MI.getDebugLoc()) {
514 if (NeedComma)
515 OS << ',';
516 OS << " debug-location ";
517 MI.getDebugLoc()->printAsOperand(OS, MST);
518 }
Alex Lorenz4af7e612015-08-03 23:08:19 +0000519
520 if (!MI.memoperands_empty()) {
521 OS << " :: ";
522 bool NeedComma = false;
523 for (const auto *Op : MI.memoperands()) {
524 if (NeedComma)
525 OS << ", ";
526 print(*Op);
527 NeedComma = true;
528 }
529 }
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000530}
531
Alex Lorenz5d26fa82015-06-30 18:00:16 +0000532void MIPrinter::printMBBReference(const MachineBasicBlock &MBB) {
533 OS << "%bb." << MBB.getNumber();
534 if (const auto *BB = MBB.getBasicBlock()) {
535 if (BB->hasName())
536 OS << '.' << BB->getName();
537 }
538}
539
Alex Lorenzdeb53492015-07-28 17:28:03 +0000540void MIPrinter::printIRBlockReference(const BasicBlock &BB) {
541 OS << "%ir-block.";
542 if (BB.hasName()) {
543 printLLVMNameWithoutPrefix(OS, BB.getName());
544 return;
545 }
Alex Lorenzcba8c5f2015-08-06 23:57:04 +0000546 const Function *F = BB.getParent();
547 int Slot;
548 if (F == MST.getCurrentFunction()) {
549 Slot = MST.getLocalSlot(&BB);
550 } else {
551 ModuleSlotTracker CustomMST(F->getParent(),
552 /*ShouldInitializeAllMetadata=*/false);
553 CustomMST.incorporateFunction(*F);
554 Slot = CustomMST.getLocalSlot(&BB);
555 }
Alex Lorenzdeb53492015-07-28 17:28:03 +0000556 if (Slot == -1)
557 OS << "<badref>";
558 else
559 OS << Slot;
560}
561
Alex Lorenz4af7e612015-08-03 23:08:19 +0000562void MIPrinter::printIRValueReference(const Value &V) {
563 OS << "%ir.";
564 if (V.hasName()) {
565 printLLVMNameWithoutPrefix(OS, V.getName());
566 return;
567 }
568 // TODO: Serialize the unnamed IR value references.
569 OS << "<unserializable ir value>";
570}
571
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000572void MIPrinter::printStackObjectReference(int FrameIndex) {
573 auto ObjectInfo = StackObjectOperandMapping.find(FrameIndex);
574 assert(ObjectInfo != StackObjectOperandMapping.end() &&
575 "Invalid frame index");
576 const FrameIndexOperand &Operand = ObjectInfo->second;
577 if (Operand.IsFixed) {
578 OS << "%fixed-stack." << Operand.ID;
579 return;
580 }
581 OS << "%stack." << Operand.ID;
582 if (!Operand.Name.empty())
583 OS << '.' << Operand.Name;
584}
585
Alex Lorenz5672a892015-08-05 22:26:15 +0000586void MIPrinter::printOffset(int64_t Offset) {
587 if (Offset == 0)
588 return;
589 if (Offset < 0) {
590 OS << " - " << -Offset;
591 return;
592 }
593 OS << " + " << Offset;
594}
595
Alex Lorenz49873a82015-08-06 00:44:07 +0000596static const char *getTargetFlagName(const TargetInstrInfo *TII, unsigned TF) {
597 auto Flags = TII->getSerializableDirectMachineOperandTargetFlags();
598 for (const auto &I : Flags) {
599 if (I.first == TF) {
600 return I.second;
601 }
602 }
603 return nullptr;
604}
605
606void MIPrinter::printTargetFlags(const MachineOperand &Op) {
607 if (!Op.getTargetFlags())
608 return;
609 const auto *TII =
610 Op.getParent()->getParent()->getParent()->getSubtarget().getInstrInfo();
611 assert(TII && "expected instruction info");
612 auto Flags = TII->decomposeMachineOperandsTargetFlags(Op.getTargetFlags());
613 OS << "target-flags(";
614 if (const auto *Name = getTargetFlagName(TII, Flags.first))
615 OS << Name;
616 else
617 OS << "<unknown target flag>";
618 // TODO: Print the target's bit flags.
619 OS << ") ";
620}
621
Alex Lorenzef5c1962015-07-28 23:02:45 +0000622static const char *getTargetIndexName(const MachineFunction &MF, int Index) {
623 const auto *TII = MF.getSubtarget().getInstrInfo();
624 assert(TII && "expected instruction info");
625 auto Indices = TII->getSerializableTargetIndices();
626 for (const auto &I : Indices) {
627 if (I.first == Index) {
628 return I.second;
629 }
630 }
631 return nullptr;
632}
633
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000634void MIPrinter::print(const MachineOperand &Op, const TargetRegisterInfo *TRI) {
Alex Lorenz49873a82015-08-06 00:44:07 +0000635 printTargetFlags(Op);
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000636 switch (Op.getType()) {
637 case MachineOperand::MO_Register:
Alex Lorenz1039fd12015-08-14 19:07:07 +0000638 // FIXME: Serialize the tied register.
Alex Lorenzcb268d42015-07-06 23:07:26 +0000639 if (Op.isImplicit())
640 OS << (Op.isDef() ? "implicit-def " : "implicit ");
Alex Lorenz1039fd12015-08-14 19:07:07 +0000641 if (Op.isInternalRead())
642 OS << "internal ";
Alex Lorenzcbbfd0b2015-07-07 20:34:53 +0000643 if (Op.isDead())
644 OS << "dead ";
Alex Lorenz495ad872015-07-08 21:23:34 +0000645 if (Op.isKill())
646 OS << "killed ";
Alex Lorenz4d026b892015-07-08 23:58:31 +0000647 if (Op.isUndef())
648 OS << "undef ";
Alex Lorenz01c1a5e2015-08-05 17:49:03 +0000649 if (Op.isEarlyClobber())
650 OS << "early-clobber ";
Alex Lorenz90752582015-08-05 17:41:17 +0000651 if (Op.isDebug())
652 OS << "debug-use ";
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000653 printReg(Op.getReg(), OS, TRI);
Alex Lorenz2eacca82015-07-13 23:24:34 +0000654 // Print the sub register.
655 if (Op.getSubReg() != 0)
656 OS << ':' << TRI->getSubRegIndexName(Op.getSubReg());
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000657 break;
Alex Lorenz240fc1e2015-06-23 23:42:28 +0000658 case MachineOperand::MO_Immediate:
659 OS << Op.getImm();
660 break;
Alex Lorenz05e38822015-08-05 18:52:21 +0000661 case MachineOperand::MO_CImmediate:
662 Op.getCImm()->printAsOperand(OS, /*PrintType=*/true, MST);
663 break;
Alex Lorenzad156fb2015-07-31 20:49:21 +0000664 case MachineOperand::MO_FPImmediate:
665 Op.getFPImm()->printAsOperand(OS, /*PrintType=*/true, MST);
666 break;
Alex Lorenz33f0aef2015-06-26 16:46:11 +0000667 case MachineOperand::MO_MachineBasicBlock:
Alex Lorenz5d26fa82015-06-30 18:00:16 +0000668 printMBBReference(*Op.getMBB());
Alex Lorenz33f0aef2015-06-26 16:46:11 +0000669 break;
Alex Lorenz7feaf7c2015-07-16 23:37:45 +0000670 case MachineOperand::MO_FrameIndex:
671 printStackObjectReference(Op.getIndex());
672 break;
Alex Lorenzab980492015-07-20 20:51:18 +0000673 case MachineOperand::MO_ConstantPoolIndex:
674 OS << "%const." << Op.getIndex();
Alex Lorenz5672a892015-08-05 22:26:15 +0000675 printOffset(Op.getOffset());
Alex Lorenzab980492015-07-20 20:51:18 +0000676 break;
Alex Lorenzef5c1962015-07-28 23:02:45 +0000677 case MachineOperand::MO_TargetIndex: {
678 OS << "target-index(";
679 if (const auto *Name = getTargetIndexName(
680 *Op.getParent()->getParent()->getParent(), Op.getIndex()))
681 OS << Name;
682 else
683 OS << "<unknown>";
684 OS << ')';
Alex Lorenz5672a892015-08-05 22:26:15 +0000685 printOffset(Op.getOffset());
Alex Lorenzef5c1962015-07-28 23:02:45 +0000686 break;
687 }
Alex Lorenz31d70682015-07-15 23:38:35 +0000688 case MachineOperand::MO_JumpTableIndex:
689 OS << "%jump-table." << Op.getIndex();
Alex Lorenz31d70682015-07-15 23:38:35 +0000690 break;
Alex Lorenz6ede3742015-07-21 16:59:53 +0000691 case MachineOperand::MO_ExternalSymbol:
692 OS << '$';
693 printLLVMNameWithoutPrefix(OS, Op.getSymbolName());
Alex Lorenz5672a892015-08-05 22:26:15 +0000694 printOffset(Op.getOffset());
Alex Lorenz6ede3742015-07-21 16:59:53 +0000695 break;
Alex Lorenz5d6108e2015-06-26 22:56:48 +0000696 case MachineOperand::MO_GlobalAddress:
Alex Lorenz900b5cb2015-07-07 23:27:53 +0000697 Op.getGlobal()->printAsOperand(OS, /*PrintType=*/false, MST);
Alex Lorenz5672a892015-08-05 22:26:15 +0000698 printOffset(Op.getOffset());
Alex Lorenz5d6108e2015-06-26 22:56:48 +0000699 break;
Alex Lorenzdeb53492015-07-28 17:28:03 +0000700 case MachineOperand::MO_BlockAddress:
701 OS << "blockaddress(";
702 Op.getBlockAddress()->getFunction()->printAsOperand(OS, /*PrintType=*/false,
703 MST);
704 OS << ", ";
705 printIRBlockReference(*Op.getBlockAddress()->getBasicBlock());
706 OS << ')';
Alex Lorenz5672a892015-08-05 22:26:15 +0000707 printOffset(Op.getOffset());
Alex Lorenzdeb53492015-07-28 17:28:03 +0000708 break;
Alex Lorenz8f6f4282015-06-29 16:57:06 +0000709 case MachineOperand::MO_RegisterMask: {
710 auto RegMaskInfo = RegisterMaskIds.find(Op.getRegMask());
711 if (RegMaskInfo != RegisterMaskIds.end())
712 OS << StringRef(TRI->getRegMaskNames()[RegMaskInfo->second]).lower();
713 else
714 llvm_unreachable("Can't print this machine register mask yet.");
715 break;
716 }
Alex Lorenzb97c9ef2015-08-10 23:24:42 +0000717 case MachineOperand::MO_RegisterLiveOut: {
718 const uint32_t *RegMask = Op.getRegLiveOut();
719 OS << "liveout(";
720 bool IsCommaNeeded = false;
721 for (unsigned Reg = 0, E = TRI->getNumRegs(); Reg < E; ++Reg) {
722 if (RegMask[Reg / 32] & (1U << (Reg % 32))) {
723 if (IsCommaNeeded)
724 OS << ", ";
725 printReg(Reg, OS, TRI);
726 IsCommaNeeded = true;
727 }
728 }
729 OS << ")";
730 break;
731 }
Alex Lorenz35e44462015-07-22 17:58:46 +0000732 case MachineOperand::MO_Metadata:
733 Op.getMetadata()->printAsOperand(OS, MST);
734 break;
Alex Lorenzf4baeb52015-07-21 22:28:27 +0000735 case MachineOperand::MO_CFIIndex: {
736 const auto &MMI = Op.getParent()->getParent()->getParent()->getMMI();
Alex Lorenz8cfc6862015-07-23 23:09:07 +0000737 print(MMI.getFrameInstructions()[Op.getCFIIndex()], TRI);
Alex Lorenzf4baeb52015-07-21 22:28:27 +0000738 break;
739 }
Alex Lorenzf3db51de2015-06-23 16:35:26 +0000740 default:
741 // TODO: Print the other machine operands.
742 llvm_unreachable("Can't print this machine operand at the moment");
743 }
Alex Lorenz4f093bf2015-06-19 17:43:07 +0000744}
745
Alex Lorenz4af7e612015-08-03 23:08:19 +0000746void MIPrinter::print(const MachineMemOperand &Op) {
747 OS << '(';
Alex Lorenzdc8de2a2015-08-06 16:55:53 +0000748 // TODO: Print operand's target specific flags.
Alex Lorenza518b792015-08-04 00:24:45 +0000749 if (Op.isVolatile())
750 OS << "volatile ";
Alex Lorenz10fd0382015-08-06 16:49:30 +0000751 if (Op.isNonTemporal())
752 OS << "non-temporal ";
Alex Lorenzdc8de2a2015-08-06 16:55:53 +0000753 if (Op.isInvariant())
754 OS << "invariant ";
Alex Lorenz4af7e612015-08-03 23:08:19 +0000755 if (Op.isLoad())
756 OS << "load ";
757 else {
758 assert(Op.isStore() && "Non load machine operand must be a store");
759 OS << "store ";
760 }
761 OS << Op.getSize() << (Op.isLoad() ? " from " : " into ");
Alex Lorenz91097a32015-08-12 20:33:26 +0000762 if (const Value *Val = Op.getValue()) {
Alex Lorenz4af7e612015-08-03 23:08:19 +0000763 printIRValueReference(*Val);
Alex Lorenz91097a32015-08-12 20:33:26 +0000764 } else {
765 const PseudoSourceValue *PVal = Op.getPseudoValue();
766 assert(PVal && "Expected a pseudo source value");
767 switch (PVal->kind()) {
Alex Lorenz46e95582015-08-12 20:44:16 +0000768 case PseudoSourceValue::Stack:
769 OS << "stack";
770 break;
Alex Lorenzd858f872015-08-12 21:00:22 +0000771 case PseudoSourceValue::GOT:
772 OS << "got";
773 break;
Alex Lorenz4be56e92015-08-12 21:11:08 +0000774 case PseudoSourceValue::JumpTable:
775 OS << "jump-table";
776 break;
Alex Lorenz91097a32015-08-12 20:33:26 +0000777 case PseudoSourceValue::ConstantPool:
778 OS << "constant-pool";
779 break;
Alex Lorenz0cc671b2015-08-12 21:23:17 +0000780 case PseudoSourceValue::FixedStack:
781 printStackObjectReference(
782 cast<FixedStackPseudoSourceValue>(PVal)->getFrameIndex());
783 break;
Alex Lorenz50b826f2015-08-14 21:08:30 +0000784 case PseudoSourceValue::GlobalValueCallEntry:
785 cast<GlobalValuePseudoSourceValue>(PVal)->getValue()->printAsOperand(
786 OS, /*PrintType=*/false, MST);
787 break;
Alex Lorenzc3ba7502015-08-14 21:14:50 +0000788 case PseudoSourceValue::ExternalSymbolCallEntry:
789 OS << '$';
790 printLLVMNameWithoutPrefix(
791 OS, cast<ExternalSymbolPseudoSourceValue>(PVal)->getSymbol());
Alex Lorenz91097a32015-08-12 20:33:26 +0000792 break;
793 }
794 }
Alex Lorenz83127732015-08-07 20:26:52 +0000795 printOffset(Op.getOffset());
Alex Lorenz61420f72015-08-07 20:48:30 +0000796 if (Op.getBaseAlignment() != Op.getSize())
797 OS << ", align " << Op.getBaseAlignment();
Alex Lorenza617c912015-08-17 22:05:15 +0000798 auto AAInfo = Op.getAAInfo();
799 if (AAInfo.TBAA) {
800 OS << ", !tbaa ";
801 AAInfo.TBAA->printAsOperand(OS, MST);
802 }
Alex Lorenza16f6242015-08-17 22:06:40 +0000803 if (AAInfo.Scope) {
804 OS << ", !alias.scope ";
805 AAInfo.Scope->printAsOperand(OS, MST);
806 }
Alex Lorenz03e940d2015-08-17 22:08:02 +0000807 if (AAInfo.NoAlias) {
808 OS << ", !noalias ";
809 AAInfo.NoAlias->printAsOperand(OS, MST);
810 }
Alex Lorenzeb625682015-08-17 22:09:52 +0000811 if (Op.getRanges()) {
812 OS << ", !range ";
813 Op.getRanges()->printAsOperand(OS, MST);
814 }
Alex Lorenz4af7e612015-08-03 23:08:19 +0000815 OS << ')';
816}
817
Alex Lorenz8cfc6862015-07-23 23:09:07 +0000818static void printCFIRegister(unsigned DwarfReg, raw_ostream &OS,
819 const TargetRegisterInfo *TRI) {
820 int Reg = TRI->getLLVMRegNum(DwarfReg, true);
821 if (Reg == -1) {
822 OS << "<badreg>";
823 return;
824 }
825 printReg(Reg, OS, TRI);
826}
827
828void MIPrinter::print(const MCCFIInstruction &CFI,
829 const TargetRegisterInfo *TRI) {
Alex Lorenzf4baeb52015-07-21 22:28:27 +0000830 switch (CFI.getOperation()) {
Alex Lorenz577d2712015-08-14 21:55:58 +0000831 case MCCFIInstruction::OpSameValue:
832 OS << ".cfi_same_value ";
833 if (CFI.getLabel())
834 OS << "<mcsymbol> ";
835 printCFIRegister(CFI.getRegister(), OS, TRI);
836 break;
Alex Lorenz8cfc6862015-07-23 23:09:07 +0000837 case MCCFIInstruction::OpOffset:
838 OS << ".cfi_offset ";
839 if (CFI.getLabel())
840 OS << "<mcsymbol> ";
841 printCFIRegister(CFI.getRegister(), OS, TRI);
842 OS << ", " << CFI.getOffset();
843 break;
Alex Lorenz5b0d5f62015-07-27 20:39:03 +0000844 case MCCFIInstruction::OpDefCfaRegister:
845 OS << ".cfi_def_cfa_register ";
846 if (CFI.getLabel())
847 OS << "<mcsymbol> ";
848 printCFIRegister(CFI.getRegister(), OS, TRI);
849 break;
Alex Lorenzf4baeb52015-07-21 22:28:27 +0000850 case MCCFIInstruction::OpDefCfaOffset:
851 OS << ".cfi_def_cfa_offset ";
852 if (CFI.getLabel())
853 OS << "<mcsymbol> ";
854 OS << CFI.getOffset();
855 break;
Alex Lorenzb1393232015-07-29 18:57:23 +0000856 case MCCFIInstruction::OpDefCfa:
857 OS << ".cfi_def_cfa ";
858 if (CFI.getLabel())
859 OS << "<mcsymbol> ";
860 printCFIRegister(CFI.getRegister(), OS, TRI);
861 OS << ", " << CFI.getOffset();
862 break;
Alex Lorenzf4baeb52015-07-21 22:28:27 +0000863 default:
864 // TODO: Print the other CFI Operations.
865 OS << "<unserializable cfi operation>";
866 break;
867 }
868}
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}