Alex Lorenz | b3607cd | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 1 | //===- MIRPrinter.cpp - MIR serialization format printer ------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the class that prints out the LLVM IR and machine |
| 11 | // functions using the MIR serialization format. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
David Blaikie | 4831923 | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 15 | #include "llvm/CodeGen/MIRPrinter.h" |
Eugene Zelenko | e74c436 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/DenseMap.h" |
| 17 | #include "llvm/ADT/None.h" |
David Blaikie | 4831923 | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/STLExtras.h" |
Tim Northover | 7a92e73 | 2016-09-12 11:20:10 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SmallBitVector.h" |
Eugene Zelenko | e74c436 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/SmallPtrSet.h" |
| 21 | #include "llvm/ADT/SmallVector.h" |
Eugene Zelenko | e74c436 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/StringRef.h" |
| 23 | #include "llvm/ADT/Twine.h" |
Quentin Colombet | b246969 | 2016-04-08 16:26:22 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/GlobalISel/RegisterBank.h" |
David Blaikie | 4831923 | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MIRYamlMapping.h" |
Eugene Zelenko | e74c436 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/MachineBasicBlock.h" |
Alex Lorenz | 0e4484f | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineConstantPool.h" |
Alex Lorenz | 7c6ad33 | 2015-07-09 19:55:27 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Quentin Colombet | b246969 | 2016-04-08 16:26:22 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/MachineFunction.h" |
Eugene Zelenko | e74c436 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/MachineInstr.h" |
| 31 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
Alex Lorenz | 3db44ce | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/MachineMemOperand.h" |
Eugene Zelenko | e74c436 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 33 | #include "llvm/CodeGen/MachineOperand.h" |
Alex Lorenz | c9a4f3d | 2015-06-24 19:56:10 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Eugene Zelenko | e74c436 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 35 | #include "llvm/CodeGen/PseudoSourceValue.h" |
David Blaikie | 4831923 | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 36 | #include "llvm/CodeGen/TargetInstrInfo.h" |
David Blaikie | e3a9b4c | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 37 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
| 38 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
Alex Lorenz | 2603664 | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 39 | #include "llvm/IR/BasicBlock.h" |
Alex Lorenz | 6d0376c | 2015-07-28 17:28:03 +0000 | [diff] [blame] | 40 | #include "llvm/IR/Constants.h" |
Reid Kleckner | 13fb5a3 | 2016-04-14 18:29:59 +0000 | [diff] [blame] | 41 | #include "llvm/IR/DebugInfo.h" |
Eugene Zelenko | e74c436 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 42 | #include "llvm/IR/DebugLoc.h" |
| 43 | #include "llvm/IR/Function.h" |
| 44 | #include "llvm/IR/GlobalValue.h" |
David Blaikie | 4831923 | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 45 | #include "llvm/IR/IRPrintingPasses.h" |
Eugene Zelenko | e74c436 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 46 | #include "llvm/IR/InstrTypes.h" |
Quentin Colombet | b246969 | 2016-04-08 16:26:22 +0000 | [diff] [blame] | 47 | #include "llvm/IR/Instructions.h" |
Tim Northover | 9c9955b | 2016-07-29 20:32:59 +0000 | [diff] [blame] | 48 | #include "llvm/IR/Intrinsics.h" |
Alex Lorenz | b3607cd | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 49 | #include "llvm/IR/Module.h" |
Alex Lorenz | aa0d6db | 2015-07-07 23:27:53 +0000 | [diff] [blame] | 50 | #include "llvm/IR/ModuleSlotTracker.h" |
Eugene Zelenko | e74c436 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 51 | #include "llvm/IR/Value.h" |
| 52 | #include "llvm/MC/LaneBitmask.h" |
Chandler Carruth | e90d440 | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 53 | #include "llvm/MC/MCContext.h" |
Eugene Zelenko | e74c436 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 54 | #include "llvm/MC/MCDwarf.h" |
Alex Lorenz | 62b84e2 | 2015-08-21 21:12:44 +0000 | [diff] [blame] | 55 | #include "llvm/MC/MCSymbol.h" |
Eugene Zelenko | e74c436 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 56 | #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 Berry | 181c24a | 2016-11-18 19:37:24 +0000 | [diff] [blame] | 61 | #include "llvm/Support/Format.h" |
Eugene Zelenko | e74c436 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 62 | #include "llvm/Support/LowLevelTypeImpl.h" |
Eugene Zelenko | e74c436 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 63 | #include "llvm/Support/YAMLTraits.h" |
David Blaikie | 4831923 | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 64 | #include "llvm/Support/raw_ostream.h" |
Tim Northover | 9c9955b | 2016-07-29 20:32:59 +0000 | [diff] [blame] | 65 | #include "llvm/Target/TargetIntrinsicInfo.h" |
Eugene Zelenko | e74c436 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 66 | #include "llvm/Target/TargetMachine.h" |
Eugene Zelenko | e74c436 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 67 | #include <algorithm> |
| 68 | #include <cassert> |
| 69 | #include <cinttypes> |
| 70 | #include <cstdint> |
| 71 | #include <iterator> |
| 72 | #include <string> |
| 73 | #include <utility> |
| 74 | #include <vector> |
Alex Lorenz | b3607cd | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 75 | |
| 76 | using namespace llvm; |
| 77 | |
Zachary Turner | 9a4e15c | 2017-12-01 00:53:10 +0000 | [diff] [blame] | 78 | static cl::opt<bool> SimplifyMIR( |
| 79 | "simplify-mir", cl::Hidden, |
Matthias Braun | 0cb25a2 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 80 | cl::desc("Leave out unnecessary information when printing MIR")); |
| 81 | |
Alex Lorenz | b3607cd | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 82 | namespace { |
| 83 | |
Alex Lorenz | ed2032f | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 84 | /// This structure describes how to print out stack object references. |
| 85 | struct 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 Lorenz | fbd9479 | 2015-07-30 16:54:38 +0000 | [diff] [blame] | 104 | } // end anonymous namespace |
| 105 | |
| 106 | namespace llvm { |
| 107 | |
Alex Lorenz | b3607cd | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 108 | /// This class prints out the machine functions using the MIR serialization |
| 109 | /// format. |
| 110 | class MIRPrinter { |
| 111 | raw_ostream &OS; |
Alex Lorenz | 1a4def3 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 112 | DenseMap<const uint32_t *, unsigned> RegisterMaskIds; |
Alex Lorenz | ed2032f | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 113 | /// 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 Lorenz | b3607cd | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 116 | |
| 117 | public: |
| 118 | MIRPrinter(raw_ostream &OS) : OS(OS) {} |
| 119 | |
| 120 | void print(const MachineFunction &MF); |
Alex Lorenz | 2603664 | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 121 | |
Alex Lorenz | ad6702e | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 122 | void convert(yaml::MachineFunction &MF, const MachineRegisterInfo &RegInfo, |
| 123 | const TargetRegisterInfo *TRI); |
Alex Lorenz | 81474d3 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 124 | void convert(ModuleSlotTracker &MST, yaml::MachineFrameInfo &YamlMFI, |
| 125 | const MachineFrameInfo &MFI); |
Alex Lorenz | 0e4484f | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 126 | void convert(yaml::MachineFunction &MF, |
| 127 | const MachineConstantPool &ConstantPool); |
Alex Lorenz | 81bef8c | 2015-07-15 23:31:07 +0000 | [diff] [blame] | 128 | void convert(ModuleSlotTracker &MST, yaml::MachineJumpTable &YamlJTI, |
| 129 | const MachineJumpTableInfo &JTI); |
Matthias Braun | 40485c2 | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 130 | void convertStackObjects(yaml::MachineFunction &YMF, |
| 131 | const MachineFunction &MF, ModuleSlotTracker &MST); |
Alex Lorenz | 1a4def3 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 132 | |
| 133 | private: |
| 134 | void initRegisterMaskIds(const MachineFunction &MF); |
Alex Lorenz | b3607cd | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 135 | }; |
| 136 | |
Alex Lorenz | 2f801fa | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 137 | /// This class prints out the machine instructions using the MIR serialization |
| 138 | /// format. |
| 139 | class MIPrinter { |
| 140 | raw_ostream &OS; |
Alex Lorenz | aa0d6db | 2015-07-07 23:27:53 +0000 | [diff] [blame] | 141 | ModuleSlotTracker &MST; |
Alex Lorenz | 1a4def3 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 142 | const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds; |
Alex Lorenz | ed2032f | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 143 | const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping; |
Konstantin Zhuravlyov | 8f85685 | 2017-07-11 22:23:00 +0000 | [diff] [blame] | 144 | /// Synchronization scope names registered with LLVMContext. |
| 145 | SmallVector<StringRef, 8> SSNs; |
Alex Lorenz | 2f801fa | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 146 | |
Matthias Braun | 0cb25a2 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 147 | bool canPredictBranchProbabilities(const MachineBasicBlock &MBB) const; |
| 148 | bool canPredictSuccessors(const MachineBasicBlock &MBB) const; |
| 149 | |
Alex Lorenz | 2f801fa | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 150 | public: |
Alex Lorenz | aa0d6db | 2015-07-07 23:27:53 +0000 | [diff] [blame] | 151 | MIPrinter(raw_ostream &OS, ModuleSlotTracker &MST, |
Alex Lorenz | ed2032f | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 152 | const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds, |
| 153 | const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping) |
| 154 | : OS(OS), MST(MST), RegisterMaskIds(RegisterMaskIds), |
| 155 | StackObjectOperandMapping(StackObjectOperandMapping) {} |
Alex Lorenz | 2f801fa | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 156 | |
Alex Lorenz | 5d09c2f | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 157 | void print(const MachineBasicBlock &MBB); |
| 158 | |
Alex Lorenz | 2f801fa | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 159 | void print(const MachineInstr &MI); |
Alex Lorenz | ed2032f | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 160 | void printStackObjectReference(int FrameIndex); |
Bjorn Pettersson | 4cbab70 | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 161 | void print(const MachineInstr &MI, unsigned OpIdx, |
| 162 | const TargetRegisterInfo *TRI, bool ShouldPrintRegisterTies, |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 163 | LLT TypeToPrint, bool PrintDef = true); |
Alex Lorenz | 2f801fa | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 164 | }; |
| 165 | |
Alex Lorenz | 5d09c2f | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 166 | } // end namespace llvm |
Alex Lorenz | b3607cd | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 167 | |
| 168 | namespace llvm { |
| 169 | namespace yaml { |
| 170 | |
| 171 | /// This struct serializes the LLVM IR module. |
| 172 | template <> struct BlockScalarTraits<Module> { |
| 173 | static void output(const Module &Mod, void *Ctxt, raw_ostream &OS) { |
| 174 | Mod.print(OS, nullptr); |
| 175 | } |
Eugene Zelenko | e74c436 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 176 | |
Alex Lorenz | b3607cd | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 177 | static StringRef input(StringRef Str, void *Ctxt, Module &Mod) { |
| 178 | llvm_unreachable("LLVM Module is supposed to be parsed separately"); |
| 179 | return ""; |
| 180 | } |
| 181 | }; |
| 182 | |
| 183 | } // end namespace yaml |
| 184 | } // end namespace llvm |
| 185 | |
Francis Visoiu Mistrih | accb337 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 186 | static void printRegMIR(unsigned Reg, yaml::StringValue &Dest, |
| 187 | const TargetRegisterInfo *TRI) { |
Alex Lorenz | dfe0e53 | 2015-07-24 20:35:40 +0000 | [diff] [blame] | 188 | raw_string_ostream OS(Dest.Value); |
Francis Visoiu Mistrih | e6b8991 | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 189 | OS << printReg(Reg, TRI); |
Alex Lorenz | dfe0e53 | 2015-07-24 20:35:40 +0000 | [diff] [blame] | 190 | } |
| 191 | |
Alex Lorenz | b3607cd | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 192 | void MIRPrinter::print(const MachineFunction &MF) { |
Alex Lorenz | 1a4def3 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 193 | initRegisterMaskIds(MF); |
| 194 | |
Alex Lorenz | b3607cd | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 195 | yaml::MachineFunction YamlMF; |
| 196 | YamlMF.Name = MF.getName(); |
Alex Lorenz | 00b6413 | 2015-06-16 00:10:47 +0000 | [diff] [blame] | 197 | YamlMF.Alignment = MF.getAlignment(); |
| 198 | YamlMF.ExposesReturnsTwice = MF.exposesReturnsTwice(); |
Sanjin Sijaric | b8895a8 | 2018-10-24 21:07:38 +0000 | [diff] [blame] | 199 | YamlMF.HasWinCFI = MF.hasWinCFI(); |
Derek Schuff | fadd113 | 2016-03-28 17:05:30 +0000 | [diff] [blame] | 200 | |
Ahmed Bougacha | 46fe427 | 2016-08-02 15:10:25 +0000 | [diff] [blame] | 201 | YamlMF.Legalized = MF.getProperties().hasProperty( |
| 202 | MachineFunctionProperties::Property::Legalized); |
Ahmed Bougacha | 31c3e4f | 2016-08-02 16:17:10 +0000 | [diff] [blame] | 203 | YamlMF.RegBankSelected = MF.getProperties().hasProperty( |
| 204 | MachineFunctionProperties::Property::RegBankSelected); |
Ahmed Bougacha | fc114db | 2016-08-02 16:49:19 +0000 | [diff] [blame] | 205 | YamlMF.Selected = MF.getProperties().hasProperty( |
| 206 | MachineFunctionProperties::Property::Selected); |
Roman Tereshin | 8e63a83 | 2018-02-28 17:55:45 +0000 | [diff] [blame] | 207 | YamlMF.FailedISel = MF.getProperties().hasProperty( |
| 208 | MachineFunctionProperties::Property::FailedISel); |
Ahmed Bougacha | 46fe427 | 2016-08-02 15:10:25 +0000 | [diff] [blame] | 209 | |
Alex Lorenz | ad6702e | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 210 | convert(YamlMF, MF.getRegInfo(), MF.getSubtarget().getRegisterInfo()); |
Matthias Braun | d318139 | 2017-12-15 22:22:58 +0000 | [diff] [blame] | 211 | ModuleSlotTracker MST(MF.getFunction().getParent()); |
| 212 | MST.incorporateFunction(MF.getFunction()); |
Matthias Braun | f79c57a | 2016-07-28 18:40:00 +0000 | [diff] [blame] | 213 | convert(MST, YamlMF.FrameInfo, MF.getFrameInfo()); |
Matthias Braun | 40485c2 | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 214 | convertStackObjects(YamlMF, MF, MST); |
Alex Lorenz | 0e4484f | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 215 | if (const auto *ConstantPool = MF.getConstantPool()) |
| 216 | convert(YamlMF, *ConstantPool); |
Alex Lorenz | 81bef8c | 2015-07-15 23:31:07 +0000 | [diff] [blame] | 217 | if (const auto *JumpTableInfo = MF.getJumpTableInfo()) |
| 218 | convert(MST, YamlMF.JumpTableInfo, *JumpTableInfo); |
Alex Lorenz | 5d09c2f | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 219 | raw_string_ostream StrOS(YamlMF.Body.Value.Value); |
| 220 | bool IsNewlineNeeded = false; |
Alex Lorenz | 2603664 | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 221 | for (const auto &MBB : MF) { |
Alex Lorenz | 5d09c2f | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 222 | if (IsNewlineNeeded) |
| 223 | StrOS << "\n"; |
| 224 | MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping) |
| 225 | .print(MBB); |
| 226 | IsNewlineNeeded = true; |
Alex Lorenz | 2603664 | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 227 | } |
Alex Lorenz | 5d09c2f | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 228 | StrOS.flush(); |
Alex Lorenz | b3607cd | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 229 | yaml::Output Out(OS); |
Vivek Pandya | de22782 | 2017-06-06 08:16:19 +0000 | [diff] [blame] | 230 | if (!SimplifyMIR) |
| 231 | Out.setWriteDefaultValues(true); |
Alex Lorenz | b3607cd | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 232 | Out << YamlMF; |
| 233 | } |
| 234 | |
Oren Ben Simhon | 05383db | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 235 | static void printCustomRegMask(const uint32_t *RegMask, raw_ostream &OS, |
| 236 | const TargetRegisterInfo *TRI) { |
| 237 | assert(RegMask && "Can't print an empty register mask"); |
| 238 | OS << StringRef("CustomRegMask("); |
| 239 | |
| 240 | bool IsRegInRegMaskFound = false; |
| 241 | for (int I = 0, E = TRI->getNumRegs(); I < E; I++) { |
| 242 | // Check whether the register is asserted in regmask. |
| 243 | if (RegMask[I / 32] & (1u << (I % 32))) { |
| 244 | if (IsRegInRegMaskFound) |
| 245 | OS << ','; |
Francis Visoiu Mistrih | e6b8991 | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 246 | OS << printReg(I, TRI); |
Oren Ben Simhon | 05383db | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 247 | IsRegInRegMaskFound = true; |
| 248 | } |
| 249 | } |
| 250 | |
| 251 | OS << ')'; |
| 252 | } |
| 253 | |
Justin Bogner | edab757 | 2017-10-24 18:04:54 +0000 | [diff] [blame] | 254 | static void printRegClassOrBank(unsigned Reg, yaml::StringValue &Dest, |
| 255 | const MachineRegisterInfo &RegInfo, |
| 256 | const TargetRegisterInfo *TRI) { |
| 257 | raw_string_ostream OS(Dest.Value); |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 258 | OS << printRegClassOrBank(Reg, RegInfo, TRI); |
Justin Bogner | edab757 | 2017-10-24 18:04:54 +0000 | [diff] [blame] | 259 | } |
| 260 | |
Francis Visoiu Mistrih | bea0f24 | 2018-04-25 18:58:06 +0000 | [diff] [blame] | 261 | template <typename T> |
| 262 | static void |
| 263 | printStackObjectDbgInfo(const MachineFunction::VariableDbgInfo &DebugVar, |
| 264 | T &Object, ModuleSlotTracker &MST) { |
| 265 | std::array<std::string *, 3> Outputs{{&Object.DebugVar.Value, |
| 266 | &Object.DebugExpr.Value, |
| 267 | &Object.DebugLoc.Value}}; |
| 268 | std::array<const Metadata *, 3> Metas{{DebugVar.Var, |
| 269 | DebugVar.Expr, |
| 270 | DebugVar.Loc}}; |
| 271 | for (unsigned i = 0; i < 3; ++i) { |
| 272 | raw_string_ostream StrOS(*Outputs[i]); |
| 273 | Metas[i]->printAsOperand(StrOS, MST); |
| 274 | } |
| 275 | } |
Justin Bogner | edab757 | 2017-10-24 18:04:54 +0000 | [diff] [blame] | 276 | |
Alex Lorenz | c9a4f3d | 2015-06-24 19:56:10 +0000 | [diff] [blame] | 277 | void MIRPrinter::convert(yaml::MachineFunction &MF, |
Alex Lorenz | ad6702e | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 278 | const MachineRegisterInfo &RegInfo, |
| 279 | const TargetRegisterInfo *TRI) { |
Alex Lorenz | c9a4f3d | 2015-06-24 19:56:10 +0000 | [diff] [blame] | 280 | MF.TracksRegLiveness = RegInfo.tracksLiveness(); |
Alex Lorenz | ad6702e | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 281 | |
| 282 | // Print the virtual register definitions. |
| 283 | for (unsigned I = 0, E = RegInfo.getNumVirtRegs(); I < E; ++I) { |
| 284 | unsigned Reg = TargetRegisterInfo::index2VirtReg(I); |
| 285 | yaml::VirtualRegisterDefinition VReg; |
| 286 | VReg.ID = I; |
Puyan Lotfi | eed988e | 2018-03-30 18:15:54 +0000 | [diff] [blame] | 287 | if (RegInfo.getVRegName(Reg) != "") |
| 288 | continue; |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 289 | ::printRegClassOrBank(Reg, VReg.Class, RegInfo, TRI); |
Alex Lorenz | dfe0e53 | 2015-07-24 20:35:40 +0000 | [diff] [blame] | 290 | unsigned PreferredReg = RegInfo.getSimpleHint(Reg); |
| 291 | if (PreferredReg) |
Francis Visoiu Mistrih | accb337 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 292 | printRegMIR(PreferredReg, VReg.PreferredRegister, TRI); |
Alex Lorenz | ad6702e | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 293 | MF.VirtualRegisters.push_back(VReg); |
| 294 | } |
Alex Lorenz | a5da4f1 | 2015-07-27 17:42:45 +0000 | [diff] [blame] | 295 | |
| 296 | // Print the live ins. |
Krzysztof Parzyszek | 7b72f39 | 2017-10-16 19:08:41 +0000 | [diff] [blame] | 297 | for (std::pair<unsigned, unsigned> LI : RegInfo.liveins()) { |
Alex Lorenz | a5da4f1 | 2015-07-27 17:42:45 +0000 | [diff] [blame] | 298 | yaml::MachineFunctionLiveIn LiveIn; |
Francis Visoiu Mistrih | accb337 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 299 | printRegMIR(LI.first, LiveIn.Register, TRI); |
Krzysztof Parzyszek | 7b72f39 | 2017-10-16 19:08:41 +0000 | [diff] [blame] | 300 | if (LI.second) |
Francis Visoiu Mistrih | accb337 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 301 | printRegMIR(LI.second, LiveIn.VirtualRegister, TRI); |
Alex Lorenz | a5da4f1 | 2015-07-27 17:42:45 +0000 | [diff] [blame] | 302 | MF.LiveIns.push_back(LiveIn); |
| 303 | } |
Oren Ben Simhon | 05383db | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 304 | |
| 305 | // Prints the callee saved registers. |
| 306 | if (RegInfo.isUpdatedCSRsInitialized()) { |
| 307 | const MCPhysReg *CalleeSavedRegs = RegInfo.getCalleeSavedRegs(); |
| 308 | std::vector<yaml::FlowStringValue> CalleeSavedRegisters; |
| 309 | for (const MCPhysReg *I = CalleeSavedRegs; *I; ++I) { |
Alex Lorenz | 2a04c76 | 2015-08-11 00:32:49 +0000 | [diff] [blame] | 310 | yaml::FlowStringValue Reg; |
Francis Visoiu Mistrih | accb337 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 311 | printRegMIR(*I, Reg, TRI); |
Alex Lorenz | 2a04c76 | 2015-08-11 00:32:49 +0000 | [diff] [blame] | 312 | CalleeSavedRegisters.push_back(Reg); |
| 313 | } |
Oren Ben Simhon | 05383db | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 314 | MF.CalleeSavedRegisters = CalleeSavedRegisters; |
Alex Lorenz | 2a04c76 | 2015-08-11 00:32:49 +0000 | [diff] [blame] | 315 | } |
Alex Lorenz | c9a4f3d | 2015-06-24 19:56:10 +0000 | [diff] [blame] | 316 | } |
| 317 | |
Alex Lorenz | 81474d3 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 318 | void MIRPrinter::convert(ModuleSlotTracker &MST, |
| 319 | yaml::MachineFrameInfo &YamlMFI, |
Alex Lorenz | 7c6ad33 | 2015-07-09 19:55:27 +0000 | [diff] [blame] | 320 | const MachineFrameInfo &MFI) { |
| 321 | YamlMFI.IsFrameAddressTaken = MFI.isFrameAddressTaken(); |
| 322 | YamlMFI.IsReturnAddressTaken = MFI.isReturnAddressTaken(); |
| 323 | YamlMFI.HasStackMap = MFI.hasStackMap(); |
| 324 | YamlMFI.HasPatchPoint = MFI.hasPatchPoint(); |
| 325 | YamlMFI.StackSize = MFI.getStackSize(); |
| 326 | YamlMFI.OffsetAdjustment = MFI.getOffsetAdjustment(); |
| 327 | YamlMFI.MaxAlignment = MFI.getMaxAlignment(); |
| 328 | YamlMFI.AdjustsStack = MFI.adjustsStack(); |
| 329 | YamlMFI.HasCalls = MFI.hasCalls(); |
Matthias Braun | 5927be1 | 2017-05-01 22:32:25 +0000 | [diff] [blame] | 330 | YamlMFI.MaxCallFrameSize = MFI.isMaxCallFrameSizeComputed() |
| 331 | ? MFI.getMaxCallFrameSize() : ~0u; |
Reid Kleckner | 6d4c271 | 2018-10-01 21:59:45 +0000 | [diff] [blame] | 332 | YamlMFI.CVBytesOfCalleeSavedRegisters = |
| 333 | MFI.getCVBytesOfCalleeSavedRegisters(); |
Alex Lorenz | 7c6ad33 | 2015-07-09 19:55:27 +0000 | [diff] [blame] | 334 | YamlMFI.HasOpaqueSPAdjustment = MFI.hasOpaqueSPAdjustment(); |
| 335 | YamlMFI.HasVAStart = MFI.hasVAStart(); |
| 336 | YamlMFI.HasMustTailInVarArgFunc = MFI.hasMustTailInVarArgFunc(); |
Francis Visoiu Mistrih | 995c80d | 2018-04-06 08:56:25 +0000 | [diff] [blame] | 337 | YamlMFI.LocalFrameSize = MFI.getLocalFrameSize(); |
Alex Lorenz | 81474d3 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 338 | if (MFI.getSavePoint()) { |
| 339 | raw_string_ostream StrOS(YamlMFI.SavePoint.Value); |
Francis Visoiu Mistrih | ca0df55 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 340 | StrOS << printMBBReference(*MFI.getSavePoint()); |
Alex Lorenz | 81474d3 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 341 | } |
| 342 | if (MFI.getRestorePoint()) { |
| 343 | raw_string_ostream StrOS(YamlMFI.RestorePoint.Value); |
Francis Visoiu Mistrih | ca0df55 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 344 | StrOS << printMBBReference(*MFI.getRestorePoint()); |
Alex Lorenz | 81474d3 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 345 | } |
Alex Lorenz | 7c6ad33 | 2015-07-09 19:55:27 +0000 | [diff] [blame] | 346 | } |
| 347 | |
Matthias Braun | 40485c2 | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 348 | void MIRPrinter::convertStackObjects(yaml::MachineFunction &YMF, |
| 349 | const MachineFunction &MF, |
| 350 | ModuleSlotTracker &MST) { |
| 351 | const MachineFrameInfo &MFI = MF.getFrameInfo(); |
| 352 | const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo(); |
Alex Lorenz | ad7556d | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 353 | // Process fixed stack objects. |
Alex Lorenz | b838969 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 354 | unsigned ID = 0; |
Alex Lorenz | ad7556d | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 355 | for (int I = MFI.getObjectIndexBegin(); I < 0; ++I) { |
| 356 | if (MFI.isDeadObjectIndex(I)) |
| 357 | continue; |
| 358 | |
| 359 | yaml::FixedMachineStackObject YamlObject; |
Alex Lorenz | ed2032f | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 360 | YamlObject.ID = ID; |
Alex Lorenz | ad7556d | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 361 | YamlObject.Type = MFI.isSpillSlotObjectIndex(I) |
| 362 | ? yaml::FixedMachineStackObject::SpillSlot |
| 363 | : yaml::FixedMachineStackObject::DefaultType; |
| 364 | YamlObject.Offset = MFI.getObjectOffset(I); |
| 365 | YamlObject.Size = MFI.getObjectSize(I); |
| 366 | YamlObject.Alignment = MFI.getObjectAlignment(I); |
Matt Arsenault | 20f8334 | 2017-07-20 21:03:45 +0000 | [diff] [blame] | 367 | YamlObject.StackID = MFI.getStackID(I); |
Alex Lorenz | ad7556d | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 368 | YamlObject.IsImmutable = MFI.isImmutableObjectIndex(I); |
| 369 | YamlObject.IsAliased = MFI.isAliasedObjectIndex(I); |
Matthias Braun | 40485c2 | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 370 | YMF.FixedStackObjects.push_back(YamlObject); |
Alex Lorenz | ed2032f | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 371 | StackObjectOperandMapping.insert( |
| 372 | std::make_pair(I, FrameIndexOperand::createFixed(ID++))); |
Alex Lorenz | ad7556d | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | // Process ordinary stack objects. |
| 376 | ID = 0; |
Alex Lorenz | b838969 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 377 | for (int I = 0, E = MFI.getObjectIndexEnd(); I < E; ++I) { |
| 378 | if (MFI.isDeadObjectIndex(I)) |
| 379 | continue; |
| 380 | |
| 381 | yaml::MachineStackObject YamlObject; |
Alex Lorenz | ed2032f | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 382 | YamlObject.ID = ID; |
Alex Lorenz | 71da363 | 2015-07-15 22:14:49 +0000 | [diff] [blame] | 383 | if (const auto *Alloca = MFI.getObjectAllocation(I)) |
| 384 | YamlObject.Name.Value = |
| 385 | Alloca->hasName() ? Alloca->getName() : "<unnamed alloca>"; |
Alex Lorenz | b838969 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 386 | YamlObject.Type = MFI.isSpillSlotObjectIndex(I) |
| 387 | ? yaml::MachineStackObject::SpillSlot |
Alex Lorenz | dee03ee | 2015-07-14 00:26:26 +0000 | [diff] [blame] | 388 | : MFI.isVariableSizedObjectIndex(I) |
| 389 | ? yaml::MachineStackObject::VariableSized |
| 390 | : yaml::MachineStackObject::DefaultType; |
Alex Lorenz | b838969 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 391 | YamlObject.Offset = MFI.getObjectOffset(I); |
| 392 | YamlObject.Size = MFI.getObjectSize(I); |
| 393 | YamlObject.Alignment = MFI.getObjectAlignment(I); |
Matt Arsenault | 20f8334 | 2017-07-20 21:03:45 +0000 | [diff] [blame] | 394 | YamlObject.StackID = MFI.getStackID(I); |
Alex Lorenz | b838969 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 395 | |
Matthias Braun | 40485c2 | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 396 | YMF.StackObjects.push_back(YamlObject); |
Alex Lorenz | ed2032f | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 397 | StackObjectOperandMapping.insert(std::make_pair( |
| 398 | I, FrameIndexOperand::create(YamlObject.Name.Value, ID++))); |
Alex Lorenz | b838969 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 399 | } |
Alex Lorenz | 3a8b87d | 2015-07-24 22:22:50 +0000 | [diff] [blame] | 400 | |
| 401 | for (const auto &CSInfo : MFI.getCalleeSavedInfo()) { |
| 402 | yaml::StringValue Reg; |
Francis Visoiu Mistrih | accb337 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 403 | printRegMIR(CSInfo.getReg(), Reg, TRI); |
Zaara Syeda | 7bade9c | 2018-11-09 16:36:24 +0000 | [diff] [blame] | 404 | if (!CSInfo.isSpilledToReg()) { |
| 405 | auto StackObjectInfo = StackObjectOperandMapping.find(CSInfo.getFrameIdx()); |
| 406 | assert(StackObjectInfo != StackObjectOperandMapping.end() && |
| 407 | "Invalid stack object index"); |
| 408 | const FrameIndexOperand &StackObject = StackObjectInfo->second; |
| 409 | if (StackObject.IsFixed) { |
| 410 | YMF.FixedStackObjects[StackObject.ID].CalleeSavedRegister = Reg; |
| 411 | YMF.FixedStackObjects[StackObject.ID].CalleeSavedRestored = |
| 412 | CSInfo.isRestored(); |
| 413 | } else { |
| 414 | YMF.StackObjects[StackObject.ID].CalleeSavedRegister = Reg; |
| 415 | YMF.StackObjects[StackObject.ID].CalleeSavedRestored = |
| 416 | CSInfo.isRestored(); |
| 417 | } |
Matthias Braun | d44b0da | 2017-09-28 18:52:14 +0000 | [diff] [blame] | 418 | } |
Alex Lorenz | 3a8b87d | 2015-07-24 22:22:50 +0000 | [diff] [blame] | 419 | } |
Alex Lorenz | fb764b7 | 2015-08-17 22:17:42 +0000 | [diff] [blame] | 420 | for (unsigned I = 0, E = MFI.getLocalFrameObjectCount(); I < E; ++I) { |
| 421 | auto LocalObject = MFI.getLocalFrameObjectMap(I); |
| 422 | auto StackObjectInfo = StackObjectOperandMapping.find(LocalObject.first); |
| 423 | assert(StackObjectInfo != StackObjectOperandMapping.end() && |
| 424 | "Invalid stack object index"); |
| 425 | const FrameIndexOperand &StackObject = StackObjectInfo->second; |
| 426 | assert(!StackObject.IsFixed && "Expected a locally mapped stack object"); |
Matthias Braun | 40485c2 | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 427 | YMF.StackObjects[StackObject.ID].LocalOffset = LocalObject.second; |
Alex Lorenz | fb764b7 | 2015-08-17 22:17:42 +0000 | [diff] [blame] | 428 | } |
Alex Lorenz | 07c6bd8 | 2015-08-18 22:26:26 +0000 | [diff] [blame] | 429 | |
| 430 | // Print the stack object references in the frame information class after |
| 431 | // converting the stack objects. |
| 432 | if (MFI.hasStackProtectorIndex()) { |
Matthias Braun | 40485c2 | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 433 | raw_string_ostream StrOS(YMF.FrameInfo.StackProtector.Value); |
Alex Lorenz | 07c6bd8 | 2015-08-18 22:26:26 +0000 | [diff] [blame] | 434 | MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping) |
| 435 | .printStackObjectReference(MFI.getStackProtectorIndex()); |
| 436 | } |
Alex Lorenz | a80c044 | 2015-08-19 00:13:25 +0000 | [diff] [blame] | 437 | |
| 438 | // Print the debug variable information. |
Matthias Braun | 40485c2 | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 439 | for (const MachineFunction::VariableDbgInfo &DebugVar : |
| 440 | MF.getVariableDbgInfo()) { |
Alex Lorenz | a80c044 | 2015-08-19 00:13:25 +0000 | [diff] [blame] | 441 | auto StackObjectInfo = StackObjectOperandMapping.find(DebugVar.Slot); |
| 442 | assert(StackObjectInfo != StackObjectOperandMapping.end() && |
| 443 | "Invalid stack object index"); |
| 444 | const FrameIndexOperand &StackObject = StackObjectInfo->second; |
Francis Visoiu Mistrih | bea0f24 | 2018-04-25 18:58:06 +0000 | [diff] [blame] | 445 | if (StackObject.IsFixed) { |
| 446 | auto &Object = YMF.FixedStackObjects[StackObject.ID]; |
| 447 | printStackObjectDbgInfo(DebugVar, Object, MST); |
| 448 | } else { |
| 449 | auto &Object = YMF.StackObjects[StackObject.ID]; |
| 450 | printStackObjectDbgInfo(DebugVar, Object, MST); |
Alex Lorenz | a80c044 | 2015-08-19 00:13:25 +0000 | [diff] [blame] | 451 | } |
| 452 | } |
Alex Lorenz | b838969 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 453 | } |
| 454 | |
Alex Lorenz | 0e4484f | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 455 | void MIRPrinter::convert(yaml::MachineFunction &MF, |
| 456 | const MachineConstantPool &ConstantPool) { |
| 457 | unsigned ID = 0; |
| 458 | for (const MachineConstantPoolEntry &Constant : ConstantPool.getConstants()) { |
Alex Lorenz | 0e4484f | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 459 | std::string Str; |
| 460 | raw_string_ostream StrOS(Str); |
Diana Picus | bb326e2 | 2017-08-02 11:09:30 +0000 | [diff] [blame] | 461 | if (Constant.isMachineConstantPoolEntry()) { |
| 462 | Constant.Val.MachineCPVal->print(StrOS); |
| 463 | } else { |
| 464 | Constant.Val.ConstVal->printAsOperand(StrOS); |
| 465 | } |
| 466 | |
| 467 | yaml::MachineConstantPoolValue YamlConstant; |
Alex Lorenz | 0e4484f | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 468 | YamlConstant.ID = ID++; |
| 469 | YamlConstant.Value = StrOS.str(); |
| 470 | YamlConstant.Alignment = Constant.getAlignment(); |
Diana Picus | bb326e2 | 2017-08-02 11:09:30 +0000 | [diff] [blame] | 471 | YamlConstant.IsTargetSpecific = Constant.isMachineConstantPoolEntry(); |
| 472 | |
Alex Lorenz | 0e4484f | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 473 | MF.Constants.push_back(YamlConstant); |
| 474 | } |
| 475 | } |
| 476 | |
Alex Lorenz | aa0d6db | 2015-07-07 23:27:53 +0000 | [diff] [blame] | 477 | void MIRPrinter::convert(ModuleSlotTracker &MST, |
Alex Lorenz | 81bef8c | 2015-07-15 23:31:07 +0000 | [diff] [blame] | 478 | yaml::MachineJumpTable &YamlJTI, |
| 479 | const MachineJumpTableInfo &JTI) { |
| 480 | YamlJTI.Kind = JTI.getEntryKind(); |
| 481 | unsigned ID = 0; |
| 482 | for (const auto &Table : JTI.getJumpTables()) { |
| 483 | std::string Str; |
| 484 | yaml::MachineJumpTable::Entry Entry; |
| 485 | Entry.ID = ID++; |
| 486 | for (const auto *MBB : Table.MBBs) { |
| 487 | raw_string_ostream StrOS(Str); |
Francis Visoiu Mistrih | ca0df55 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 488 | StrOS << printMBBReference(*MBB); |
Alex Lorenz | 81bef8c | 2015-07-15 23:31:07 +0000 | [diff] [blame] | 489 | Entry.Blocks.push_back(StrOS.str()); |
| 490 | Str.clear(); |
| 491 | } |
| 492 | YamlJTI.Entries.push_back(Entry); |
| 493 | } |
| 494 | } |
| 495 | |
Alex Lorenz | 1a4def3 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 496 | void MIRPrinter::initRegisterMaskIds(const MachineFunction &MF) { |
| 497 | const auto *TRI = MF.getSubtarget().getRegisterInfo(); |
| 498 | unsigned I = 0; |
| 499 | for (const uint32_t *Mask : TRI->getRegMasks()) |
| 500 | RegisterMaskIds.insert(std::make_pair(Mask, I++)); |
| 501 | } |
| 502 | |
Matthias Braun | 0cb25a2 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 503 | void llvm::guessSuccessors(const MachineBasicBlock &MBB, |
| 504 | SmallVectorImpl<MachineBasicBlock*> &Result, |
| 505 | bool &IsFallthrough) { |
| 506 | SmallPtrSet<MachineBasicBlock*,8> Seen; |
| 507 | |
| 508 | for (const MachineInstr &MI : MBB) { |
| 509 | if (MI.isPHI()) |
| 510 | continue; |
| 511 | for (const MachineOperand &MO : MI.operands()) { |
| 512 | if (!MO.isMBB()) |
| 513 | continue; |
| 514 | MachineBasicBlock *Succ = MO.getMBB(); |
| 515 | auto RP = Seen.insert(Succ); |
| 516 | if (RP.second) |
| 517 | Result.push_back(Succ); |
| 518 | } |
| 519 | } |
| 520 | MachineBasicBlock::const_iterator I = MBB.getLastNonDebugInstr(); |
| 521 | IsFallthrough = I == MBB.end() || !I->isBarrier(); |
| 522 | } |
| 523 | |
| 524 | bool |
| 525 | MIPrinter::canPredictBranchProbabilities(const MachineBasicBlock &MBB) const { |
| 526 | if (MBB.succ_size() <= 1) |
| 527 | return true; |
| 528 | if (!MBB.hasSuccessorProbabilities()) |
| 529 | return true; |
| 530 | |
| 531 | SmallVector<BranchProbability,8> Normalized(MBB.Probs.begin(), |
| 532 | MBB.Probs.end()); |
| 533 | BranchProbability::normalizeProbabilities(Normalized.begin(), |
| 534 | Normalized.end()); |
| 535 | SmallVector<BranchProbability,8> Equal(Normalized.size()); |
| 536 | BranchProbability::normalizeProbabilities(Equal.begin(), Equal.end()); |
| 537 | |
| 538 | return std::equal(Normalized.begin(), Normalized.end(), Equal.begin()); |
| 539 | } |
| 540 | |
| 541 | bool MIPrinter::canPredictSuccessors(const MachineBasicBlock &MBB) const { |
| 542 | SmallVector<MachineBasicBlock*,8> GuessedSuccs; |
| 543 | bool GuessedFallthrough; |
| 544 | guessSuccessors(MBB, GuessedSuccs, GuessedFallthrough); |
| 545 | if (GuessedFallthrough) { |
| 546 | const MachineFunction &MF = *MBB.getParent(); |
| 547 | MachineFunction::const_iterator NextI = std::next(MBB.getIterator()); |
| 548 | if (NextI != MF.end()) { |
| 549 | MachineBasicBlock *Next = const_cast<MachineBasicBlock*>(&*NextI); |
| 550 | if (!is_contained(GuessedSuccs, Next)) |
| 551 | GuessedSuccs.push_back(Next); |
| 552 | } |
| 553 | } |
| 554 | if (GuessedSuccs.size() != MBB.succ_size()) |
| 555 | return false; |
| 556 | return std::equal(MBB.succ_begin(), MBB.succ_end(), GuessedSuccs.begin()); |
| 557 | } |
| 558 | |
Alex Lorenz | 5d09c2f | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 559 | void MIPrinter::print(const MachineBasicBlock &MBB) { |
| 560 | assert(MBB.getNumber() >= 0 && "Invalid MBB number"); |
| 561 | OS << "bb." << MBB.getNumber(); |
| 562 | bool HasAttributes = false; |
| 563 | if (const auto *BB = MBB.getBasicBlock()) { |
| 564 | if (BB->hasName()) { |
| 565 | OS << "." << BB->getName(); |
| 566 | } else { |
| 567 | HasAttributes = true; |
| 568 | OS << " ("; |
| 569 | int Slot = MST.getLocalSlot(BB); |
| 570 | if (Slot == -1) |
| 571 | OS << "<ir-block badref>"; |
| 572 | else |
| 573 | OS << (Twine("%ir-block.") + Twine(Slot)).str(); |
| 574 | } |
| 575 | } |
| 576 | if (MBB.hasAddressTaken()) { |
| 577 | OS << (HasAttributes ? ", " : " ("); |
| 578 | OS << "address-taken"; |
| 579 | HasAttributes = true; |
| 580 | } |
Reid Kleckner | c0e64ad | 2015-08-27 23:27:47 +0000 | [diff] [blame] | 581 | if (MBB.isEHPad()) { |
Alex Lorenz | 5d09c2f | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 582 | OS << (HasAttributes ? ", " : " ("); |
| 583 | OS << "landing-pad"; |
| 584 | HasAttributes = true; |
| 585 | } |
| 586 | if (MBB.getAlignment()) { |
| 587 | OS << (HasAttributes ? ", " : " ("); |
| 588 | OS << "align " << MBB.getAlignment(); |
| 589 | HasAttributes = true; |
| 590 | } |
| 591 | if (HasAttributes) |
| 592 | OS << ")"; |
| 593 | OS << ":\n"; |
| 594 | |
| 595 | bool HasLineAttributes = false; |
| 596 | // Print the successors |
Matthias Braun | 0cb25a2 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 597 | bool canPredictProbs = canPredictBranchProbabilities(MBB); |
Quentin Colombet | 8726dc5 | 2017-09-19 23:34:12 +0000 | [diff] [blame] | 598 | // Even if the list of successors is empty, if we cannot guess it, |
| 599 | // we need to print it to tell the parser that the list is empty. |
| 600 | // This is needed, because MI model unreachable as empty blocks |
| 601 | // with an empty successor list. If the parser would see that |
| 602 | // without the successor list, it would guess the code would |
| 603 | // fallthrough. |
| 604 | if ((!MBB.succ_empty() && !SimplifyMIR) || !canPredictProbs || |
| 605 | !canPredictSuccessors(MBB)) { |
Alex Lorenz | 5d09c2f | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 606 | OS.indent(2) << "successors: "; |
| 607 | for (auto I = MBB.succ_begin(), E = MBB.succ_end(); I != E; ++I) { |
| 608 | if (I != MBB.succ_begin()) |
| 609 | OS << ", "; |
Francis Visoiu Mistrih | ca0df55 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 610 | OS << printMBBReference(**I); |
Matthias Braun | 0cb25a2 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 611 | if (!SimplifyMIR || !canPredictProbs) |
Geoff Berry | 181c24a | 2016-11-18 19:37:24 +0000 | [diff] [blame] | 612 | OS << '(' |
| 613 | << format("0x%08" PRIx32, MBB.getSuccProbability(I).getNumerator()) |
| 614 | << ')'; |
Alex Lorenz | 5d09c2f | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 615 | } |
| 616 | OS << "\n"; |
| 617 | HasLineAttributes = true; |
| 618 | } |
| 619 | |
| 620 | // Print the live in registers. |
Matthias Braun | 4700463 | 2017-01-05 20:01:19 +0000 | [diff] [blame] | 621 | const MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo(); |
| 622 | if (MRI.tracksLiveness() && !MBB.livein_empty()) { |
| 623 | const TargetRegisterInfo &TRI = *MRI.getTargetRegisterInfo(); |
Alex Lorenz | 5d09c2f | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 624 | OS.indent(2) << "liveins: "; |
Matthias Braun | 56dd2d0 | 2015-08-24 22:59:52 +0000 | [diff] [blame] | 625 | bool First = true; |
Matthias Braun | af5ff60 | 2015-09-09 18:08:03 +0000 | [diff] [blame] | 626 | for (const auto &LI : MBB.liveins()) { |
Matthias Braun | 56dd2d0 | 2015-08-24 22:59:52 +0000 | [diff] [blame] | 627 | if (!First) |
Alex Lorenz | 5d09c2f | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 628 | OS << ", "; |
Matthias Braun | 56dd2d0 | 2015-08-24 22:59:52 +0000 | [diff] [blame] | 629 | First = false; |
Francis Visoiu Mistrih | e6b8991 | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 630 | OS << printReg(LI.PhysReg, &TRI); |
Krzysztof Parzyszek | d6ca3f0 | 2016-12-15 14:36:06 +0000 | [diff] [blame] | 631 | if (!LI.LaneMask.all()) |
Krzysztof Parzyszek | b15c258 | 2016-10-12 21:06:45 +0000 | [diff] [blame] | 632 | OS << ":0x" << PrintLaneMask(LI.LaneMask); |
Alex Lorenz | 5d09c2f | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 633 | } |
| 634 | OS << "\n"; |
| 635 | HasLineAttributes = true; |
| 636 | } |
| 637 | |
| 638 | if (HasLineAttributes) |
| 639 | OS << "\n"; |
Alex Lorenz | 46d5ea6 | 2015-08-14 18:57:24 +0000 | [diff] [blame] | 640 | bool IsInBundle = false; |
| 641 | for (auto I = MBB.instr_begin(), E = MBB.instr_end(); I != E; ++I) { |
| 642 | const MachineInstr &MI = *I; |
| 643 | if (IsInBundle && !MI.isInsideBundle()) { |
| 644 | OS.indent(2) << "}\n"; |
| 645 | IsInBundle = false; |
| 646 | } |
| 647 | OS.indent(IsInBundle ? 4 : 2); |
Alex Lorenz | 5d09c2f | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 648 | print(MI); |
Alex Lorenz | 46d5ea6 | 2015-08-14 18:57:24 +0000 | [diff] [blame] | 649 | if (!IsInBundle && MI.getFlag(MachineInstr::BundledSucc)) { |
| 650 | OS << " {"; |
| 651 | IsInBundle = true; |
| 652 | } |
Alex Lorenz | 5d09c2f | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 653 | OS << "\n"; |
| 654 | } |
Alex Lorenz | 46d5ea6 | 2015-08-14 18:57:24 +0000 | [diff] [blame] | 655 | if (IsInBundle) |
| 656 | OS.indent(2) << "}\n"; |
Alex Lorenz | 5d09c2f | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 657 | } |
| 658 | |
Alex Lorenz | 2f801fa | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 659 | void MIPrinter::print(const MachineInstr &MI) { |
Justin Bogner | 1842f4a | 2017-10-10 23:50:49 +0000 | [diff] [blame] | 660 | const auto *MF = MI.getMF(); |
Quentin Colombet | 6266be0 | 2016-03-07 21:57:52 +0000 | [diff] [blame] | 661 | const auto &MRI = MF->getRegInfo(); |
| 662 | const auto &SubTarget = MF->getSubtarget(); |
Alex Lorenz | 9982d6f | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 663 | const auto *TRI = SubTarget.getRegisterInfo(); |
| 664 | assert(TRI && "Expected target register info"); |
Alex Lorenz | 2f801fa | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 665 | const auto *TII = SubTarget.getInstrInfo(); |
| 666 | assert(TII && "Expected target instruction info"); |
Alex Lorenz | 1b75dd2 | 2015-07-21 22:28:27 +0000 | [diff] [blame] | 667 | if (MI.isCFIInstruction()) |
| 668 | assert(MI.getNumOperands() == 1 && "Expected 1 operand in CFI instruction"); |
Alex Lorenz | 2f801fa | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 669 | |
Tim Northover | 7a92e73 | 2016-09-12 11:20:10 +0000 | [diff] [blame] | 670 | SmallBitVector PrintedTypes(8); |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 671 | bool ShouldPrintRegisterTies = MI.hasComplexRegisterTies(); |
Alex Lorenz | 9982d6f | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 672 | unsigned I = 0, E = MI.getNumOperands(); |
| 673 | for (; I < E && MI.getOperand(I).isReg() && MI.getOperand(I).isDef() && |
| 674 | !MI.getOperand(I).isImplicit(); |
| 675 | ++I) { |
| 676 | if (I) |
| 677 | OS << ", "; |
Bjorn Pettersson | 4cbab70 | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 678 | print(MI, I, TRI, ShouldPrintRegisterTies, |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 679 | MI.getTypeToPrint(I, PrintedTypes, MRI), |
| 680 | /*PrintDef=*/false); |
Alex Lorenz | 9982d6f | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 681 | } |
| 682 | |
| 683 | if (I) |
| 684 | OS << " = "; |
Alex Lorenz | 2744189 | 2015-07-17 00:24:15 +0000 | [diff] [blame] | 685 | if (MI.getFlag(MachineInstr::FrameSetup)) |
| 686 | OS << "frame-setup "; |
Francis Visoiu Mistrih | 12d5807 | 2018-03-13 19:53:16 +0000 | [diff] [blame] | 687 | if (MI.getFlag(MachineInstr::FrameDestroy)) |
Francis Visoiu Mistrih | 4e1cf66 | 2018-01-09 11:33:22 +0000 | [diff] [blame] | 688 | OS << "frame-destroy "; |
Michael Berg | ecfd97d | 2018-05-03 00:07:56 +0000 | [diff] [blame] | 689 | if (MI.getFlag(MachineInstr::FmNoNans)) |
| 690 | OS << "nnan "; |
| 691 | if (MI.getFlag(MachineInstr::FmNoInfs)) |
| 692 | OS << "ninf "; |
| 693 | if (MI.getFlag(MachineInstr::FmNsz)) |
| 694 | OS << "nsz "; |
| 695 | if (MI.getFlag(MachineInstr::FmArcp)) |
| 696 | OS << "arcp "; |
| 697 | if (MI.getFlag(MachineInstr::FmContract)) |
| 698 | OS << "contract "; |
| 699 | if (MI.getFlag(MachineInstr::FmAfn)) |
| 700 | OS << "afn "; |
| 701 | if (MI.getFlag(MachineInstr::FmReassoc)) |
| 702 | OS << "reassoc "; |
Michael Berg | 87d1f82 | 2018-09-11 21:35:32 +0000 | [diff] [blame] | 703 | if (MI.getFlag(MachineInstr::NoUWrap)) |
| 704 | OS << "nuw "; |
| 705 | if (MI.getFlag(MachineInstr::NoSWrap)) |
| 706 | OS << "nsw "; |
| 707 | if (MI.getFlag(MachineInstr::IsExact)) |
| 708 | OS << "exact "; |
Francis Visoiu Mistrih | 4e1cf66 | 2018-01-09 11:33:22 +0000 | [diff] [blame] | 709 | |
Alex Lorenz | 2f801fa | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 710 | OS << TII->getName(MI.getOpcode()); |
Alex Lorenz | 9982d6f | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 711 | if (I < E) |
| 712 | OS << ' '; |
| 713 | |
| 714 | bool NeedComma = false; |
| 715 | for (; I < E; ++I) { |
| 716 | if (NeedComma) |
| 717 | OS << ", "; |
Bjorn Pettersson | 4cbab70 | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 718 | print(MI, I, TRI, ShouldPrintRegisterTies, |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 719 | MI.getTypeToPrint(I, PrintedTypes, MRI)); |
Alex Lorenz | 9982d6f | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 720 | NeedComma = true; |
| 721 | } |
Alex Lorenz | 6f3ab8d | 2015-07-22 21:15:11 +0000 | [diff] [blame] | 722 | |
Chandler Carruth | e90d440 | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 723 | // Print any optional symbols attached to this instruction as-if they were |
| 724 | // operands. |
| 725 | if (MCSymbol *PreInstrSymbol = MI.getPreInstrSymbol()) { |
| 726 | if (NeedComma) |
| 727 | OS << ','; |
| 728 | OS << " pre-instr-symbol "; |
| 729 | MachineOperand::printSymbol(OS, *PreInstrSymbol); |
| 730 | NeedComma = true; |
| 731 | } |
| 732 | if (MCSymbol *PostInstrSymbol = MI.getPostInstrSymbol()) { |
| 733 | if (NeedComma) |
| 734 | OS << ','; |
| 735 | OS << " post-instr-symbol "; |
| 736 | MachineOperand::printSymbol(OS, *PostInstrSymbol); |
| 737 | NeedComma = true; |
| 738 | } |
| 739 | |
Francis Visoiu Mistrih | e97eca6 | 2018-01-19 11:44:42 +0000 | [diff] [blame] | 740 | if (const DebugLoc &DL = MI.getDebugLoc()) { |
Alex Lorenz | 6f3ab8d | 2015-07-22 21:15:11 +0000 | [diff] [blame] | 741 | if (NeedComma) |
| 742 | OS << ','; |
| 743 | OS << " debug-location "; |
Francis Visoiu Mistrih | e97eca6 | 2018-01-19 11:44:42 +0000 | [diff] [blame] | 744 | DL->printAsOperand(OS, MST); |
Alex Lorenz | 6f3ab8d | 2015-07-22 21:15:11 +0000 | [diff] [blame] | 745 | } |
Alex Lorenz | 3db44ce | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 746 | |
| 747 | if (!MI.memoperands_empty()) { |
| 748 | OS << " :: "; |
Matthias Braun | d318139 | 2017-12-15 22:22:58 +0000 | [diff] [blame] | 749 | const LLVMContext &Context = MF->getFunction().getContext(); |
Francis Visoiu Mistrih | 0d758f3 | 2018-03-14 21:52:13 +0000 | [diff] [blame] | 750 | const MachineFrameInfo &MFI = MF->getFrameInfo(); |
Alex Lorenz | 3db44ce | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 751 | bool NeedComma = false; |
| 752 | for (const auto *Op : MI.memoperands()) { |
| 753 | if (NeedComma) |
| 754 | OS << ", "; |
Francis Visoiu Mistrih | 0d758f3 | 2018-03-14 21:52:13 +0000 | [diff] [blame] | 755 | Op->print(OS, MST, SSNs, Context, &MFI, TII); |
Alex Lorenz | 3db44ce | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 756 | NeedComma = true; |
| 757 | } |
| 758 | } |
Alex Lorenz | 9982d6f | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 759 | } |
| 760 | |
Alex Lorenz | ed2032f | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 761 | void MIPrinter::printStackObjectReference(int FrameIndex) { |
| 762 | auto ObjectInfo = StackObjectOperandMapping.find(FrameIndex); |
| 763 | assert(ObjectInfo != StackObjectOperandMapping.end() && |
| 764 | "Invalid frame index"); |
| 765 | const FrameIndexOperand &Operand = ObjectInfo->second; |
Francis Visoiu Mistrih | 38e881d | 2017-12-15 16:33:45 +0000 | [diff] [blame] | 766 | MachineOperand::printStackObjectReference(OS, Operand.ID, Operand.IsFixed, |
| 767 | Operand.Name); |
Alex Lorenz | ed2032f | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 768 | } |
| 769 | |
Bjorn Pettersson | 4cbab70 | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 770 | void MIPrinter::print(const MachineInstr &MI, unsigned OpIdx, |
| 771 | const TargetRegisterInfo *TRI, |
| 772 | bool ShouldPrintRegisterTies, LLT TypeToPrint, |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 773 | bool PrintDef) { |
Bjorn Pettersson | 4cbab70 | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 774 | const MachineOperand &Op = MI.getOperand(OpIdx); |
Alex Lorenz | 9982d6f | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 775 | switch (Op.getType()) { |
Francis Visoiu Mistrih | e28484a | 2017-12-08 22:53:21 +0000 | [diff] [blame] | 776 | case MachineOperand::MO_Immediate: |
| 777 | if (MI.isOperandSubregIdx(OpIdx)) { |
Francis Visoiu Mistrih | 3f63013f | 2017-12-14 10:03:09 +0000 | [diff] [blame] | 778 | MachineOperand::printTargetFlags(OS, Op); |
Francis Visoiu Mistrih | 19988dd | 2018-01-16 10:53:11 +0000 | [diff] [blame] | 779 | MachineOperand::printSubRegIdx(OS, Op.getImm(), TRI); |
Francis Visoiu Mistrih | e28484a | 2017-12-08 22:53:21 +0000 | [diff] [blame] | 780 | break; |
| 781 | } |
| 782 | LLVM_FALLTHROUGH; |
Francis Visoiu Mistrih | ab9bb80 | 2017-12-08 11:40:06 +0000 | [diff] [blame] | 783 | case MachineOperand::MO_Register: |
Francis Visoiu Mistrih | a72ab5b | 2017-12-08 11:48:02 +0000 | [diff] [blame] | 784 | case MachineOperand::MO_CImmediate: |
Francis Visoiu Mistrih | 30e8e01 | 2017-12-19 21:47:00 +0000 | [diff] [blame] | 785 | case MachineOperand::MO_FPImmediate: |
Francis Visoiu Mistrih | c846909 | 2017-12-13 10:30:45 +0000 | [diff] [blame] | 786 | case MachineOperand::MO_MachineBasicBlock: |
Francis Visoiu Mistrih | 2b16863 | 2017-12-13 10:30:51 +0000 | [diff] [blame] | 787 | case MachineOperand::MO_ConstantPoolIndex: |
Francis Visoiu Mistrih | d347e97 | 2017-12-13 10:30:59 +0000 | [diff] [blame] | 788 | case MachineOperand::MO_TargetIndex: |
Francis Visoiu Mistrih | d398775 | 2017-12-14 10:02:58 +0000 | [diff] [blame] | 789 | case MachineOperand::MO_JumpTableIndex: |
Francis Visoiu Mistrih | 3f63013f | 2017-12-14 10:03:09 +0000 | [diff] [blame] | 790 | case MachineOperand::MO_ExternalSymbol: |
Francis Visoiu Mistrih | f6cd582 | 2017-12-14 10:03:14 +0000 | [diff] [blame] | 791 | case MachineOperand::MO_GlobalAddress: |
Francis Visoiu Mistrih | f726bec | 2017-12-14 10:03:18 +0000 | [diff] [blame] | 792 | case MachineOperand::MO_RegisterLiveOut: |
Francis Visoiu Mistrih | ee30ab7 | 2017-12-14 10:03:23 +0000 | [diff] [blame] | 793 | case MachineOperand::MO_Metadata: |
Francis Visoiu Mistrih | fcfc7b2 | 2017-12-19 16:51:52 +0000 | [diff] [blame] | 794 | case MachineOperand::MO_MCSymbol: |
Francis Visoiu Mistrih | 43c2ba7 | 2017-12-19 21:47:05 +0000 | [diff] [blame] | 795 | case MachineOperand::MO_CFIIndex: |
Francis Visoiu Mistrih | 234b36e | 2017-12-19 21:47:10 +0000 | [diff] [blame] | 796 | case MachineOperand::MO_IntrinsicID: |
Francis Visoiu Mistrih | 235e856 | 2017-12-19 21:47:14 +0000 | [diff] [blame] | 797 | case MachineOperand::MO_Predicate: |
| 798 | case MachineOperand::MO_BlockAddress: { |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 799 | unsigned TiedOperandIdx = 0; |
Francis Visoiu Mistrih | e28484a | 2017-12-08 22:53:21 +0000 | [diff] [blame] | 800 | if (ShouldPrintRegisterTies && Op.isReg() && Op.isTied() && !Op.isDef()) |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 801 | TiedOperandIdx = Op.getParent()->findTiedOperandIdx(OpIdx); |
| 802 | const TargetIntrinsicInfo *TII = MI.getMF()->getTarget().getIntrinsicInfo(); |
Francis Visoiu Mistrih | 7bee1ce | 2018-01-18 18:05:15 +0000 | [diff] [blame] | 803 | Op.print(OS, MST, TypeToPrint, PrintDef, /*IsStandalone=*/false, |
Francis Visoiu Mistrih | 96ed12f | 2018-01-18 17:59:06 +0000 | [diff] [blame] | 804 | ShouldPrintRegisterTies, TiedOperandIdx, TRI, TII); |
Alex Lorenz | 9982d6f | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 805 | break; |
Justin Bogner | edab757 | 2017-10-24 18:04:54 +0000 | [diff] [blame] | 806 | } |
Alex Lorenz | ed2032f | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 807 | case MachineOperand::MO_FrameIndex: |
| 808 | printStackObjectReference(Op.getIndex()); |
| 809 | break; |
Alex Lorenz | 1a4def3 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 810 | case MachineOperand::MO_RegisterMask: { |
| 811 | auto RegMaskInfo = RegisterMaskIds.find(Op.getRegMask()); |
| 812 | if (RegMaskInfo != RegisterMaskIds.end()) |
| 813 | OS << StringRef(TRI->getRegMaskNames()[RegMaskInfo->second]).lower(); |
| 814 | else |
Oren Ben Simhon | 05383db | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 815 | printCustomRegMask(Op.getRegMask(), OS, TRI); |
Alex Lorenz | 1a4def3 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 816 | break; |
| 817 | } |
Alex Lorenz | 9982d6f | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 818 | } |
Alex Lorenz | 2603664 | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 819 | } |
| 820 | |
Alex Lorenz | b3607cd | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 821 | void llvm::printMIR(raw_ostream &OS, const Module &M) { |
| 822 | yaml::Output Out(OS); |
| 823 | Out << const_cast<Module &>(M); |
| 824 | } |
| 825 | |
| 826 | void llvm::printMIR(raw_ostream &OS, const MachineFunction &MF) { |
| 827 | MIRPrinter Printer(OS); |
| 828 | Printer.print(MF); |
| 829 | } |