Alex Lorenz | 345c144 | 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 | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 15 | #include "llvm/CodeGen/MIRPrinter.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/DenseMap.h" |
| 17 | #include "llvm/ADT/None.h" |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/STLExtras.h" |
Tim Northover | d28d3cc | 2016-09-12 11:20:10 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SmallBitVector.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/SmallPtrSet.h" |
| 21 | #include "llvm/ADT/SmallVector.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/StringRef.h" |
| 23 | #include "llvm/ADT/Twine.h" |
Quentin Colombet | fab1cfe | 2016-04-08 16:26:22 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/GlobalISel/RegisterBank.h" |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MIRYamlMapping.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/MachineBasicBlock.h" |
Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineConstantPool.h" |
Alex Lorenz | 60541c1 | 2015-07-09 19:55:27 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Quentin Colombet | fab1cfe | 2016-04-08 16:26:22 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/MachineFunction.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/MachineInstr.h" |
| 31 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/MachineMemOperand.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 33 | #include "llvm/CodeGen/MachineOperand.h" |
Alex Lorenz | 54565cf | 2015-06-24 19:56:10 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 35 | #include "llvm/CodeGen/PseudoSourceValue.h" |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 36 | #include "llvm/CodeGen/TargetInstrInfo.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 37 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
| 38 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
Alex Lorenz | 4f093bf | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 39 | #include "llvm/IR/BasicBlock.h" |
Alex Lorenz | deb5349 | 2015-07-28 17:28:03 +0000 | [diff] [blame] | 40 | #include "llvm/IR/Constants.h" |
Reid Kleckner | 2886580 | 2016-04-14 18:29:59 +0000 | [diff] [blame] | 41 | #include "llvm/IR/DebugInfo.h" |
Eugene Zelenko | fb69e66 | 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 | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 45 | #include "llvm/IR/IRPrintingPasses.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 46 | #include "llvm/IR/InstrTypes.h" |
Quentin Colombet | fab1cfe | 2016-04-08 16:26:22 +0000 | [diff] [blame] | 47 | #include "llvm/IR/Instructions.h" |
Tim Northover | 6b3bd61 | 2016-07-29 20:32:59 +0000 | [diff] [blame] | 48 | #include "llvm/IR/Intrinsics.h" |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 49 | #include "llvm/IR/Module.h" |
Alex Lorenz | 900b5cb | 2015-07-07 23:27:53 +0000 | [diff] [blame] | 50 | #include "llvm/IR/ModuleSlotTracker.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 51 | #include "llvm/IR/Value.h" |
| 52 | #include "llvm/MC/LaneBitmask.h" |
| 53 | #include "llvm/MC/MCDwarf.h" |
Alex Lorenz | f22ca8a | 2015-08-21 21:12:44 +0000 | [diff] [blame] | 54 | #include "llvm/MC/MCSymbol.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 55 | #include "llvm/Support/AtomicOrdering.h" |
| 56 | #include "llvm/Support/BranchProbability.h" |
| 57 | #include "llvm/Support/Casting.h" |
| 58 | #include "llvm/Support/CommandLine.h" |
| 59 | #include "llvm/Support/ErrorHandling.h" |
Geoff Berry | b51774a | 2016-11-18 19:37:24 +0000 | [diff] [blame] | 60 | #include "llvm/Support/Format.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 61 | #include "llvm/Support/LowLevelTypeImpl.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 62 | #include "llvm/Support/YAMLTraits.h" |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 63 | #include "llvm/Support/raw_ostream.h" |
Tim Northover | 6b3bd61 | 2016-07-29 20:32:59 +0000 | [diff] [blame] | 64 | #include "llvm/Target/TargetIntrinsicInfo.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 65 | #include "llvm/Target/TargetMachine.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 66 | #include <algorithm> |
| 67 | #include <cassert> |
| 68 | #include <cinttypes> |
| 69 | #include <cstdint> |
| 70 | #include <iterator> |
| 71 | #include <string> |
| 72 | #include <utility> |
| 73 | #include <vector> |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 74 | |
| 75 | using namespace llvm; |
| 76 | |
Zachary Turner | 8065f0b | 2017-12-01 00:53:10 +0000 | [diff] [blame] | 77 | static cl::opt<bool> SimplifyMIR( |
| 78 | "simplify-mir", cl::Hidden, |
Matthias Braun | 8940114 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 79 | cl::desc("Leave out unnecessary information when printing MIR")); |
| 80 | |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 81 | namespace { |
| 82 | |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 83 | /// This structure describes how to print out stack object references. |
| 84 | struct FrameIndexOperand { |
| 85 | std::string Name; |
| 86 | unsigned ID; |
| 87 | bool IsFixed; |
| 88 | |
| 89 | FrameIndexOperand(StringRef Name, unsigned ID, bool IsFixed) |
| 90 | : Name(Name.str()), ID(ID), IsFixed(IsFixed) {} |
| 91 | |
| 92 | /// Return an ordinary stack object reference. |
| 93 | static FrameIndexOperand create(StringRef Name, unsigned ID) { |
| 94 | return FrameIndexOperand(Name, ID, /*IsFixed=*/false); |
| 95 | } |
| 96 | |
| 97 | /// Return a fixed stack object reference. |
| 98 | static FrameIndexOperand createFixed(unsigned ID) { |
| 99 | return FrameIndexOperand("", ID, /*IsFixed=*/true); |
| 100 | } |
| 101 | }; |
| 102 | |
Alex Lorenz | 618b283 | 2015-07-30 16:54:38 +0000 | [diff] [blame] | 103 | } // end anonymous namespace |
| 104 | |
| 105 | namespace llvm { |
| 106 | |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 107 | /// This class prints out the machine functions using the MIR serialization |
| 108 | /// format. |
| 109 | class MIRPrinter { |
| 110 | raw_ostream &OS; |
Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 111 | DenseMap<const uint32_t *, unsigned> RegisterMaskIds; |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 112 | /// Maps from stack object indices to operand indices which will be used when |
| 113 | /// printing frame index machine operands. |
| 114 | DenseMap<int, FrameIndexOperand> StackObjectOperandMapping; |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 115 | |
| 116 | public: |
| 117 | MIRPrinter(raw_ostream &OS) : OS(OS) {} |
| 118 | |
| 119 | void print(const MachineFunction &MF); |
Alex Lorenz | 4f093bf | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 120 | |
Alex Lorenz | 28148ba | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 121 | void convert(yaml::MachineFunction &MF, const MachineRegisterInfo &RegInfo, |
| 122 | const TargetRegisterInfo *TRI); |
Alex Lorenz | a6f9a37 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 123 | void convert(ModuleSlotTracker &MST, yaml::MachineFrameInfo &YamlMFI, |
| 124 | const MachineFrameInfo &MFI); |
Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 125 | void convert(yaml::MachineFunction &MF, |
| 126 | const MachineConstantPool &ConstantPool); |
Alex Lorenz | 6799e9b | 2015-07-15 23:31:07 +0000 | [diff] [blame] | 127 | void convert(ModuleSlotTracker &MST, yaml::MachineJumpTable &YamlJTI, |
| 128 | const MachineJumpTableInfo &JTI); |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 129 | void convertStackObjects(yaml::MachineFunction &YMF, |
| 130 | const MachineFunction &MF, ModuleSlotTracker &MST); |
Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 131 | |
| 132 | private: |
| 133 | void initRegisterMaskIds(const MachineFunction &MF); |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 134 | }; |
| 135 | |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 136 | /// This class prints out the machine instructions using the MIR serialization |
| 137 | /// format. |
| 138 | class MIPrinter { |
| 139 | raw_ostream &OS; |
Alex Lorenz | 900b5cb | 2015-07-07 23:27:53 +0000 | [diff] [blame] | 140 | ModuleSlotTracker &MST; |
Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 141 | const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds; |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 142 | const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping; |
Konstantin Zhuravlyov | bb80d3e | 2017-07-11 22:23:00 +0000 | [diff] [blame] | 143 | /// Synchronization scope names registered with LLVMContext. |
| 144 | SmallVector<StringRef, 8> SSNs; |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 145 | |
Matthias Braun | 8940114 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 146 | bool canPredictBranchProbabilities(const MachineBasicBlock &MBB) const; |
| 147 | bool canPredictSuccessors(const MachineBasicBlock &MBB) const; |
| 148 | |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 149 | public: |
Alex Lorenz | 900b5cb | 2015-07-07 23:27:53 +0000 | [diff] [blame] | 150 | MIPrinter(raw_ostream &OS, ModuleSlotTracker &MST, |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 151 | const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds, |
| 152 | const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping) |
| 153 | : OS(OS), MST(MST), RegisterMaskIds(RegisterMaskIds), |
| 154 | StackObjectOperandMapping(StackObjectOperandMapping) {} |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 155 | |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 156 | void print(const MachineBasicBlock &MBB); |
| 157 | |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 158 | void print(const MachineInstr &MI); |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 159 | void printStackObjectReference(int FrameIndex); |
Bjorn Pettersson | a42ed3e | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 160 | void print(const MachineInstr &MI, unsigned OpIdx, |
| 161 | const TargetRegisterInfo *TRI, bool ShouldPrintRegisterTies, |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 162 | LLT TypeToPrint, bool PrintDef = true); |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 163 | }; |
| 164 | |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 165 | } // end namespace llvm |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 166 | |
| 167 | namespace llvm { |
| 168 | namespace yaml { |
| 169 | |
| 170 | /// This struct serializes the LLVM IR module. |
| 171 | template <> struct BlockScalarTraits<Module> { |
| 172 | static void output(const Module &Mod, void *Ctxt, raw_ostream &OS) { |
| 173 | Mod.print(OS, nullptr); |
| 174 | } |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 175 | |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 176 | static StringRef input(StringRef Str, void *Ctxt, Module &Mod) { |
| 177 | llvm_unreachable("LLVM Module is supposed to be parsed separately"); |
| 178 | return ""; |
| 179 | } |
| 180 | }; |
| 181 | |
| 182 | } // end namespace yaml |
| 183 | } // end namespace llvm |
| 184 | |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 185 | static void printRegMIR(unsigned Reg, yaml::StringValue &Dest, |
| 186 | const TargetRegisterInfo *TRI) { |
Alex Lorenz | ab4cbcf | 2015-07-24 20:35:40 +0000 | [diff] [blame] | 187 | raw_string_ostream OS(Dest.Value); |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 188 | OS << printReg(Reg, TRI); |
Alex Lorenz | ab4cbcf | 2015-07-24 20:35:40 +0000 | [diff] [blame] | 189 | } |
| 190 | |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 191 | void MIRPrinter::print(const MachineFunction &MF) { |
Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 192 | initRegisterMaskIds(MF); |
| 193 | |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 194 | yaml::MachineFunction YamlMF; |
| 195 | YamlMF.Name = MF.getName(); |
Alex Lorenz | 5b5f975 | 2015-06-16 00:10:47 +0000 | [diff] [blame] | 196 | YamlMF.Alignment = MF.getAlignment(); |
| 197 | YamlMF.ExposesReturnsTwice = MF.exposesReturnsTwice(); |
Derek Schuff | ad154c8 | 2016-03-28 17:05:30 +0000 | [diff] [blame] | 198 | |
Ahmed Bougacha | 0d7b0cb | 2016-08-02 15:10:25 +0000 | [diff] [blame] | 199 | YamlMF.Legalized = MF.getProperties().hasProperty( |
| 200 | MachineFunctionProperties::Property::Legalized); |
Ahmed Bougacha | 2471265 | 2016-08-02 16:17:10 +0000 | [diff] [blame] | 201 | YamlMF.RegBankSelected = MF.getProperties().hasProperty( |
| 202 | MachineFunctionProperties::Property::RegBankSelected); |
Ahmed Bougacha | b109d51 | 2016-08-02 16:49:19 +0000 | [diff] [blame] | 203 | YamlMF.Selected = MF.getProperties().hasProperty( |
| 204 | MachineFunctionProperties::Property::Selected); |
Roman Tereshin | 3054ece | 2018-02-28 17:55:45 +0000 | [diff] [blame] | 205 | YamlMF.FailedISel = MF.getProperties().hasProperty( |
| 206 | MachineFunctionProperties::Property::FailedISel); |
Ahmed Bougacha | 0d7b0cb | 2016-08-02 15:10:25 +0000 | [diff] [blame] | 207 | |
Alex Lorenz | 28148ba | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 208 | convert(YamlMF, MF.getRegInfo(), MF.getSubtarget().getRegisterInfo()); |
Matthias Braun | f1caa28 | 2017-12-15 22:22:58 +0000 | [diff] [blame] | 209 | ModuleSlotTracker MST(MF.getFunction().getParent()); |
| 210 | MST.incorporateFunction(MF.getFunction()); |
Matthias Braun | 941a705 | 2016-07-28 18:40:00 +0000 | [diff] [blame] | 211 | convert(MST, YamlMF.FrameInfo, MF.getFrameInfo()); |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 212 | convertStackObjects(YamlMF, MF, MST); |
Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 213 | if (const auto *ConstantPool = MF.getConstantPool()) |
| 214 | convert(YamlMF, *ConstantPool); |
Alex Lorenz | 6799e9b | 2015-07-15 23:31:07 +0000 | [diff] [blame] | 215 | if (const auto *JumpTableInfo = MF.getJumpTableInfo()) |
| 216 | convert(MST, YamlMF.JumpTableInfo, *JumpTableInfo); |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 217 | raw_string_ostream StrOS(YamlMF.Body.Value.Value); |
| 218 | bool IsNewlineNeeded = false; |
Alex Lorenz | 4f093bf | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 219 | for (const auto &MBB : MF) { |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 220 | if (IsNewlineNeeded) |
| 221 | StrOS << "\n"; |
| 222 | MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping) |
| 223 | .print(MBB); |
| 224 | IsNewlineNeeded = true; |
Alex Lorenz | 4f093bf | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 225 | } |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 226 | StrOS.flush(); |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 227 | yaml::Output Out(OS); |
Vivek Pandya | 56d87ef | 2017-06-06 08:16:19 +0000 | [diff] [blame] | 228 | if (!SimplifyMIR) |
| 229 | Out.setWriteDefaultValues(true); |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 230 | Out << YamlMF; |
| 231 | } |
| 232 | |
Oren Ben Simhon | 0ef61ec | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 233 | static void printCustomRegMask(const uint32_t *RegMask, raw_ostream &OS, |
| 234 | const TargetRegisterInfo *TRI) { |
| 235 | assert(RegMask && "Can't print an empty register mask"); |
| 236 | OS << StringRef("CustomRegMask("); |
| 237 | |
| 238 | bool IsRegInRegMaskFound = false; |
| 239 | for (int I = 0, E = TRI->getNumRegs(); I < E; I++) { |
| 240 | // Check whether the register is asserted in regmask. |
| 241 | if (RegMask[I / 32] & (1u << (I % 32))) { |
| 242 | if (IsRegInRegMaskFound) |
| 243 | OS << ','; |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 244 | OS << printReg(I, TRI); |
Oren Ben Simhon | 0ef61ec | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 245 | IsRegInRegMaskFound = true; |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | OS << ')'; |
| 250 | } |
| 251 | |
Justin Bogner | 6c45283 | 2017-10-24 18:04:54 +0000 | [diff] [blame] | 252 | static void printRegClassOrBank(unsigned Reg, yaml::StringValue &Dest, |
| 253 | const MachineRegisterInfo &RegInfo, |
| 254 | const TargetRegisterInfo *TRI) { |
| 255 | raw_string_ostream OS(Dest.Value); |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 256 | OS << printRegClassOrBank(Reg, RegInfo, TRI); |
Justin Bogner | 6c45283 | 2017-10-24 18:04:54 +0000 | [diff] [blame] | 257 | } |
| 258 | |
Francis Visoiu Mistrih | 57fcd34 | 2018-04-25 18:58:06 +0000 | [diff] [blame^] | 259 | template <typename T> |
| 260 | static void |
| 261 | printStackObjectDbgInfo(const MachineFunction::VariableDbgInfo &DebugVar, |
| 262 | T &Object, ModuleSlotTracker &MST) { |
| 263 | std::array<std::string *, 3> Outputs{{&Object.DebugVar.Value, |
| 264 | &Object.DebugExpr.Value, |
| 265 | &Object.DebugLoc.Value}}; |
| 266 | std::array<const Metadata *, 3> Metas{{DebugVar.Var, |
| 267 | DebugVar.Expr, |
| 268 | DebugVar.Loc}}; |
| 269 | for (unsigned i = 0; i < 3; ++i) { |
| 270 | raw_string_ostream StrOS(*Outputs[i]); |
| 271 | Metas[i]->printAsOperand(StrOS, MST); |
| 272 | } |
| 273 | } |
Justin Bogner | 6c45283 | 2017-10-24 18:04:54 +0000 | [diff] [blame] | 274 | |
Alex Lorenz | 54565cf | 2015-06-24 19:56:10 +0000 | [diff] [blame] | 275 | void MIRPrinter::convert(yaml::MachineFunction &MF, |
Alex Lorenz | 28148ba | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 276 | const MachineRegisterInfo &RegInfo, |
| 277 | const TargetRegisterInfo *TRI) { |
Alex Lorenz | 54565cf | 2015-06-24 19:56:10 +0000 | [diff] [blame] | 278 | MF.TracksRegLiveness = RegInfo.tracksLiveness(); |
Alex Lorenz | 28148ba | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 279 | |
| 280 | // Print the virtual register definitions. |
| 281 | for (unsigned I = 0, E = RegInfo.getNumVirtRegs(); I < E; ++I) { |
| 282 | unsigned Reg = TargetRegisterInfo::index2VirtReg(I); |
| 283 | yaml::VirtualRegisterDefinition VReg; |
| 284 | VReg.ID = I; |
Puyan Lotfi | 399b46c | 2018-03-30 18:15:54 +0000 | [diff] [blame] | 285 | if (RegInfo.getVRegName(Reg) != "") |
| 286 | continue; |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 287 | ::printRegClassOrBank(Reg, VReg.Class, RegInfo, TRI); |
Alex Lorenz | ab4cbcf | 2015-07-24 20:35:40 +0000 | [diff] [blame] | 288 | unsigned PreferredReg = RegInfo.getSimpleHint(Reg); |
| 289 | if (PreferredReg) |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 290 | printRegMIR(PreferredReg, VReg.PreferredRegister, TRI); |
Alex Lorenz | 28148ba | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 291 | MF.VirtualRegisters.push_back(VReg); |
| 292 | } |
Alex Lorenz | 12045a4 | 2015-07-27 17:42:45 +0000 | [diff] [blame] | 293 | |
| 294 | // Print the live ins. |
Krzysztof Parzyszek | 72518ea | 2017-10-16 19:08:41 +0000 | [diff] [blame] | 295 | for (std::pair<unsigned, unsigned> LI : RegInfo.liveins()) { |
Alex Lorenz | 12045a4 | 2015-07-27 17:42:45 +0000 | [diff] [blame] | 296 | yaml::MachineFunctionLiveIn LiveIn; |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 297 | printRegMIR(LI.first, LiveIn.Register, TRI); |
Krzysztof Parzyszek | 72518ea | 2017-10-16 19:08:41 +0000 | [diff] [blame] | 298 | if (LI.second) |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 299 | printRegMIR(LI.second, LiveIn.VirtualRegister, TRI); |
Alex Lorenz | 12045a4 | 2015-07-27 17:42:45 +0000 | [diff] [blame] | 300 | MF.LiveIns.push_back(LiveIn); |
| 301 | } |
Oren Ben Simhon | 0ef61ec | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 302 | |
| 303 | // Prints the callee saved registers. |
| 304 | if (RegInfo.isUpdatedCSRsInitialized()) { |
| 305 | const MCPhysReg *CalleeSavedRegs = RegInfo.getCalleeSavedRegs(); |
| 306 | std::vector<yaml::FlowStringValue> CalleeSavedRegisters; |
| 307 | for (const MCPhysReg *I = CalleeSavedRegs; *I; ++I) { |
Alex Lorenz | c483808 | 2015-08-11 00:32:49 +0000 | [diff] [blame] | 308 | yaml::FlowStringValue Reg; |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 309 | printRegMIR(*I, Reg, TRI); |
Alex Lorenz | c483808 | 2015-08-11 00:32:49 +0000 | [diff] [blame] | 310 | CalleeSavedRegisters.push_back(Reg); |
| 311 | } |
Oren Ben Simhon | 0ef61ec | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 312 | MF.CalleeSavedRegisters = CalleeSavedRegisters; |
Alex Lorenz | c483808 | 2015-08-11 00:32:49 +0000 | [diff] [blame] | 313 | } |
Alex Lorenz | 54565cf | 2015-06-24 19:56:10 +0000 | [diff] [blame] | 314 | } |
| 315 | |
Alex Lorenz | a6f9a37 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 316 | void MIRPrinter::convert(ModuleSlotTracker &MST, |
| 317 | yaml::MachineFrameInfo &YamlMFI, |
Alex Lorenz | 60541c1 | 2015-07-09 19:55:27 +0000 | [diff] [blame] | 318 | const MachineFrameInfo &MFI) { |
| 319 | YamlMFI.IsFrameAddressTaken = MFI.isFrameAddressTaken(); |
| 320 | YamlMFI.IsReturnAddressTaken = MFI.isReturnAddressTaken(); |
| 321 | YamlMFI.HasStackMap = MFI.hasStackMap(); |
| 322 | YamlMFI.HasPatchPoint = MFI.hasPatchPoint(); |
| 323 | YamlMFI.StackSize = MFI.getStackSize(); |
| 324 | YamlMFI.OffsetAdjustment = MFI.getOffsetAdjustment(); |
| 325 | YamlMFI.MaxAlignment = MFI.getMaxAlignment(); |
| 326 | YamlMFI.AdjustsStack = MFI.adjustsStack(); |
| 327 | YamlMFI.HasCalls = MFI.hasCalls(); |
Matthias Braun | ab9438c | 2017-05-01 22:32:25 +0000 | [diff] [blame] | 328 | YamlMFI.MaxCallFrameSize = MFI.isMaxCallFrameSizeComputed() |
| 329 | ? MFI.getMaxCallFrameSize() : ~0u; |
Alex Lorenz | 60541c1 | 2015-07-09 19:55:27 +0000 | [diff] [blame] | 330 | YamlMFI.HasOpaqueSPAdjustment = MFI.hasOpaqueSPAdjustment(); |
| 331 | YamlMFI.HasVAStart = MFI.hasVAStart(); |
| 332 | YamlMFI.HasMustTailInVarArgFunc = MFI.hasMustTailInVarArgFunc(); |
Francis Visoiu Mistrih | 537d7ee | 2018-04-06 08:56:25 +0000 | [diff] [blame] | 333 | YamlMFI.LocalFrameSize = MFI.getLocalFrameSize(); |
Alex Lorenz | a6f9a37 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 334 | if (MFI.getSavePoint()) { |
| 335 | raw_string_ostream StrOS(YamlMFI.SavePoint.Value); |
Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 336 | StrOS << printMBBReference(*MFI.getSavePoint()); |
Alex Lorenz | a6f9a37 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 337 | } |
| 338 | if (MFI.getRestorePoint()) { |
| 339 | raw_string_ostream StrOS(YamlMFI.RestorePoint.Value); |
Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 340 | StrOS << printMBBReference(*MFI.getRestorePoint()); |
Alex Lorenz | a6f9a37 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 341 | } |
Alex Lorenz | 60541c1 | 2015-07-09 19:55:27 +0000 | [diff] [blame] | 342 | } |
| 343 | |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 344 | void MIRPrinter::convertStackObjects(yaml::MachineFunction &YMF, |
| 345 | const MachineFunction &MF, |
| 346 | ModuleSlotTracker &MST) { |
| 347 | const MachineFrameInfo &MFI = MF.getFrameInfo(); |
| 348 | const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo(); |
Alex Lorenz | de491f0 | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 349 | // Process fixed stack objects. |
Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 350 | unsigned ID = 0; |
Alex Lorenz | de491f0 | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 351 | for (int I = MFI.getObjectIndexBegin(); I < 0; ++I) { |
| 352 | if (MFI.isDeadObjectIndex(I)) |
| 353 | continue; |
| 354 | |
| 355 | yaml::FixedMachineStackObject YamlObject; |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 356 | YamlObject.ID = ID; |
Alex Lorenz | de491f0 | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 357 | YamlObject.Type = MFI.isSpillSlotObjectIndex(I) |
| 358 | ? yaml::FixedMachineStackObject::SpillSlot |
| 359 | : yaml::FixedMachineStackObject::DefaultType; |
| 360 | YamlObject.Offset = MFI.getObjectOffset(I); |
| 361 | YamlObject.Size = MFI.getObjectSize(I); |
| 362 | YamlObject.Alignment = MFI.getObjectAlignment(I); |
Matt Arsenault | db78273 | 2017-07-20 21:03:45 +0000 | [diff] [blame] | 363 | YamlObject.StackID = MFI.getStackID(I); |
Alex Lorenz | de491f0 | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 364 | YamlObject.IsImmutable = MFI.isImmutableObjectIndex(I); |
| 365 | YamlObject.IsAliased = MFI.isAliasedObjectIndex(I); |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 366 | YMF.FixedStackObjects.push_back(YamlObject); |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 367 | StackObjectOperandMapping.insert( |
| 368 | std::make_pair(I, FrameIndexOperand::createFixed(ID++))); |
Alex Lorenz | de491f0 | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 369 | } |
| 370 | |
| 371 | // Process ordinary stack objects. |
| 372 | ID = 0; |
Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 373 | for (int I = 0, E = MFI.getObjectIndexEnd(); I < E; ++I) { |
| 374 | if (MFI.isDeadObjectIndex(I)) |
| 375 | continue; |
| 376 | |
| 377 | yaml::MachineStackObject YamlObject; |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 378 | YamlObject.ID = ID; |
Alex Lorenz | 37643a0 | 2015-07-15 22:14:49 +0000 | [diff] [blame] | 379 | if (const auto *Alloca = MFI.getObjectAllocation(I)) |
| 380 | YamlObject.Name.Value = |
| 381 | Alloca->hasName() ? Alloca->getName() : "<unnamed alloca>"; |
Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 382 | YamlObject.Type = MFI.isSpillSlotObjectIndex(I) |
| 383 | ? yaml::MachineStackObject::SpillSlot |
Alex Lorenz | 418f3ec | 2015-07-14 00:26:26 +0000 | [diff] [blame] | 384 | : MFI.isVariableSizedObjectIndex(I) |
| 385 | ? yaml::MachineStackObject::VariableSized |
| 386 | : yaml::MachineStackObject::DefaultType; |
Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 387 | YamlObject.Offset = MFI.getObjectOffset(I); |
| 388 | YamlObject.Size = MFI.getObjectSize(I); |
| 389 | YamlObject.Alignment = MFI.getObjectAlignment(I); |
Matt Arsenault | db78273 | 2017-07-20 21:03:45 +0000 | [diff] [blame] | 390 | YamlObject.StackID = MFI.getStackID(I); |
Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 391 | |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 392 | YMF.StackObjects.push_back(YamlObject); |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 393 | StackObjectOperandMapping.insert(std::make_pair( |
| 394 | I, FrameIndexOperand::create(YamlObject.Name.Value, ID++))); |
Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 395 | } |
Alex Lorenz | 1bb48de | 2015-07-24 22:22:50 +0000 | [diff] [blame] | 396 | |
| 397 | for (const auto &CSInfo : MFI.getCalleeSavedInfo()) { |
| 398 | yaml::StringValue Reg; |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 399 | printRegMIR(CSInfo.getReg(), Reg, TRI); |
Alex Lorenz | 1bb48de | 2015-07-24 22:22:50 +0000 | [diff] [blame] | 400 | auto StackObjectInfo = StackObjectOperandMapping.find(CSInfo.getFrameIdx()); |
| 401 | assert(StackObjectInfo != StackObjectOperandMapping.end() && |
| 402 | "Invalid stack object index"); |
| 403 | const FrameIndexOperand &StackObject = StackObjectInfo->second; |
Matthias Braun | 5c3e8a4 | 2017-09-28 18:52:14 +0000 | [diff] [blame] | 404 | if (StackObject.IsFixed) { |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 405 | YMF.FixedStackObjects[StackObject.ID].CalleeSavedRegister = Reg; |
Matthias Braun | 5c3e8a4 | 2017-09-28 18:52:14 +0000 | [diff] [blame] | 406 | YMF.FixedStackObjects[StackObject.ID].CalleeSavedRestored = |
| 407 | CSInfo.isRestored(); |
| 408 | } else { |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 409 | YMF.StackObjects[StackObject.ID].CalleeSavedRegister = Reg; |
Matthias Braun | 5c3e8a4 | 2017-09-28 18:52:14 +0000 | [diff] [blame] | 410 | YMF.StackObjects[StackObject.ID].CalleeSavedRestored = |
| 411 | CSInfo.isRestored(); |
| 412 | } |
Alex Lorenz | 1bb48de | 2015-07-24 22:22:50 +0000 | [diff] [blame] | 413 | } |
Alex Lorenz | a56ba6a | 2015-08-17 22:17:42 +0000 | [diff] [blame] | 414 | for (unsigned I = 0, E = MFI.getLocalFrameObjectCount(); I < E; ++I) { |
| 415 | auto LocalObject = MFI.getLocalFrameObjectMap(I); |
| 416 | auto StackObjectInfo = StackObjectOperandMapping.find(LocalObject.first); |
| 417 | assert(StackObjectInfo != StackObjectOperandMapping.end() && |
| 418 | "Invalid stack object index"); |
| 419 | const FrameIndexOperand &StackObject = StackObjectInfo->second; |
| 420 | assert(!StackObject.IsFixed && "Expected a locally mapped stack object"); |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 421 | YMF.StackObjects[StackObject.ID].LocalOffset = LocalObject.second; |
Alex Lorenz | a56ba6a | 2015-08-17 22:17:42 +0000 | [diff] [blame] | 422 | } |
Alex Lorenz | a314d81 | 2015-08-18 22:26:26 +0000 | [diff] [blame] | 423 | |
| 424 | // Print the stack object references in the frame information class after |
| 425 | // converting the stack objects. |
| 426 | if (MFI.hasStackProtectorIndex()) { |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 427 | raw_string_ostream StrOS(YMF.FrameInfo.StackProtector.Value); |
Alex Lorenz | a314d81 | 2015-08-18 22:26:26 +0000 | [diff] [blame] | 428 | MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping) |
| 429 | .printStackObjectReference(MFI.getStackProtectorIndex()); |
| 430 | } |
Alex Lorenz | df9e3c6 | 2015-08-19 00:13:25 +0000 | [diff] [blame] | 431 | |
| 432 | // Print the debug variable information. |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 433 | for (const MachineFunction::VariableDbgInfo &DebugVar : |
| 434 | MF.getVariableDbgInfo()) { |
Alex Lorenz | df9e3c6 | 2015-08-19 00:13:25 +0000 | [diff] [blame] | 435 | auto StackObjectInfo = StackObjectOperandMapping.find(DebugVar.Slot); |
| 436 | assert(StackObjectInfo != StackObjectOperandMapping.end() && |
| 437 | "Invalid stack object index"); |
| 438 | const FrameIndexOperand &StackObject = StackObjectInfo->second; |
Francis Visoiu Mistrih | 57fcd34 | 2018-04-25 18:58:06 +0000 | [diff] [blame^] | 439 | if (StackObject.IsFixed) { |
| 440 | auto &Object = YMF.FixedStackObjects[StackObject.ID]; |
| 441 | printStackObjectDbgInfo(DebugVar, Object, MST); |
| 442 | } else { |
| 443 | auto &Object = YMF.StackObjects[StackObject.ID]; |
| 444 | printStackObjectDbgInfo(DebugVar, Object, MST); |
Alex Lorenz | df9e3c6 | 2015-08-19 00:13:25 +0000 | [diff] [blame] | 445 | } |
| 446 | } |
Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 447 | } |
| 448 | |
Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 449 | void MIRPrinter::convert(yaml::MachineFunction &MF, |
| 450 | const MachineConstantPool &ConstantPool) { |
| 451 | unsigned ID = 0; |
| 452 | for (const MachineConstantPoolEntry &Constant : ConstantPool.getConstants()) { |
Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 453 | std::string Str; |
| 454 | raw_string_ostream StrOS(Str); |
Diana Picus | d5a00b0 | 2017-08-02 11:09:30 +0000 | [diff] [blame] | 455 | if (Constant.isMachineConstantPoolEntry()) { |
| 456 | Constant.Val.MachineCPVal->print(StrOS); |
| 457 | } else { |
| 458 | Constant.Val.ConstVal->printAsOperand(StrOS); |
| 459 | } |
| 460 | |
| 461 | yaml::MachineConstantPoolValue YamlConstant; |
Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 462 | YamlConstant.ID = ID++; |
| 463 | YamlConstant.Value = StrOS.str(); |
| 464 | YamlConstant.Alignment = Constant.getAlignment(); |
Diana Picus | d5a00b0 | 2017-08-02 11:09:30 +0000 | [diff] [blame] | 465 | YamlConstant.IsTargetSpecific = Constant.isMachineConstantPoolEntry(); |
| 466 | |
Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 467 | MF.Constants.push_back(YamlConstant); |
| 468 | } |
| 469 | } |
| 470 | |
Alex Lorenz | 900b5cb | 2015-07-07 23:27:53 +0000 | [diff] [blame] | 471 | void MIRPrinter::convert(ModuleSlotTracker &MST, |
Alex Lorenz | 6799e9b | 2015-07-15 23:31:07 +0000 | [diff] [blame] | 472 | yaml::MachineJumpTable &YamlJTI, |
| 473 | const MachineJumpTableInfo &JTI) { |
| 474 | YamlJTI.Kind = JTI.getEntryKind(); |
| 475 | unsigned ID = 0; |
| 476 | for (const auto &Table : JTI.getJumpTables()) { |
| 477 | std::string Str; |
| 478 | yaml::MachineJumpTable::Entry Entry; |
| 479 | Entry.ID = ID++; |
| 480 | for (const auto *MBB : Table.MBBs) { |
| 481 | raw_string_ostream StrOS(Str); |
Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 482 | StrOS << printMBBReference(*MBB); |
Alex Lorenz | 6799e9b | 2015-07-15 23:31:07 +0000 | [diff] [blame] | 483 | Entry.Blocks.push_back(StrOS.str()); |
| 484 | Str.clear(); |
| 485 | } |
| 486 | YamlJTI.Entries.push_back(Entry); |
| 487 | } |
| 488 | } |
| 489 | |
Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 490 | void MIRPrinter::initRegisterMaskIds(const MachineFunction &MF) { |
| 491 | const auto *TRI = MF.getSubtarget().getRegisterInfo(); |
| 492 | unsigned I = 0; |
| 493 | for (const uint32_t *Mask : TRI->getRegMasks()) |
| 494 | RegisterMaskIds.insert(std::make_pair(Mask, I++)); |
| 495 | } |
| 496 | |
Matthias Braun | 8940114 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 497 | void llvm::guessSuccessors(const MachineBasicBlock &MBB, |
| 498 | SmallVectorImpl<MachineBasicBlock*> &Result, |
| 499 | bool &IsFallthrough) { |
| 500 | SmallPtrSet<MachineBasicBlock*,8> Seen; |
| 501 | |
| 502 | for (const MachineInstr &MI : MBB) { |
| 503 | if (MI.isPHI()) |
| 504 | continue; |
| 505 | for (const MachineOperand &MO : MI.operands()) { |
| 506 | if (!MO.isMBB()) |
| 507 | continue; |
| 508 | MachineBasicBlock *Succ = MO.getMBB(); |
| 509 | auto RP = Seen.insert(Succ); |
| 510 | if (RP.second) |
| 511 | Result.push_back(Succ); |
| 512 | } |
| 513 | } |
| 514 | MachineBasicBlock::const_iterator I = MBB.getLastNonDebugInstr(); |
| 515 | IsFallthrough = I == MBB.end() || !I->isBarrier(); |
| 516 | } |
| 517 | |
| 518 | bool |
| 519 | MIPrinter::canPredictBranchProbabilities(const MachineBasicBlock &MBB) const { |
| 520 | if (MBB.succ_size() <= 1) |
| 521 | return true; |
| 522 | if (!MBB.hasSuccessorProbabilities()) |
| 523 | return true; |
| 524 | |
| 525 | SmallVector<BranchProbability,8> Normalized(MBB.Probs.begin(), |
| 526 | MBB.Probs.end()); |
| 527 | BranchProbability::normalizeProbabilities(Normalized.begin(), |
| 528 | Normalized.end()); |
| 529 | SmallVector<BranchProbability,8> Equal(Normalized.size()); |
| 530 | BranchProbability::normalizeProbabilities(Equal.begin(), Equal.end()); |
| 531 | |
| 532 | return std::equal(Normalized.begin(), Normalized.end(), Equal.begin()); |
| 533 | } |
| 534 | |
| 535 | bool MIPrinter::canPredictSuccessors(const MachineBasicBlock &MBB) const { |
| 536 | SmallVector<MachineBasicBlock*,8> GuessedSuccs; |
| 537 | bool GuessedFallthrough; |
| 538 | guessSuccessors(MBB, GuessedSuccs, GuessedFallthrough); |
| 539 | if (GuessedFallthrough) { |
| 540 | const MachineFunction &MF = *MBB.getParent(); |
| 541 | MachineFunction::const_iterator NextI = std::next(MBB.getIterator()); |
| 542 | if (NextI != MF.end()) { |
| 543 | MachineBasicBlock *Next = const_cast<MachineBasicBlock*>(&*NextI); |
| 544 | if (!is_contained(GuessedSuccs, Next)) |
| 545 | GuessedSuccs.push_back(Next); |
| 546 | } |
| 547 | } |
| 548 | if (GuessedSuccs.size() != MBB.succ_size()) |
| 549 | return false; |
| 550 | return std::equal(MBB.succ_begin(), MBB.succ_end(), GuessedSuccs.begin()); |
| 551 | } |
| 552 | |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 553 | void MIPrinter::print(const MachineBasicBlock &MBB) { |
| 554 | assert(MBB.getNumber() >= 0 && "Invalid MBB number"); |
| 555 | OS << "bb." << MBB.getNumber(); |
| 556 | bool HasAttributes = false; |
| 557 | if (const auto *BB = MBB.getBasicBlock()) { |
| 558 | if (BB->hasName()) { |
| 559 | OS << "." << BB->getName(); |
| 560 | } else { |
| 561 | HasAttributes = true; |
| 562 | OS << " ("; |
| 563 | int Slot = MST.getLocalSlot(BB); |
| 564 | if (Slot == -1) |
| 565 | OS << "<ir-block badref>"; |
| 566 | else |
| 567 | OS << (Twine("%ir-block.") + Twine(Slot)).str(); |
| 568 | } |
| 569 | } |
| 570 | if (MBB.hasAddressTaken()) { |
| 571 | OS << (HasAttributes ? ", " : " ("); |
| 572 | OS << "address-taken"; |
| 573 | HasAttributes = true; |
| 574 | } |
Reid Kleckner | 0e28823 | 2015-08-27 23:27:47 +0000 | [diff] [blame] | 575 | if (MBB.isEHPad()) { |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 576 | OS << (HasAttributes ? ", " : " ("); |
| 577 | OS << "landing-pad"; |
| 578 | HasAttributes = true; |
| 579 | } |
| 580 | if (MBB.getAlignment()) { |
| 581 | OS << (HasAttributes ? ", " : " ("); |
| 582 | OS << "align " << MBB.getAlignment(); |
| 583 | HasAttributes = true; |
| 584 | } |
| 585 | if (HasAttributes) |
| 586 | OS << ")"; |
| 587 | OS << ":\n"; |
| 588 | |
| 589 | bool HasLineAttributes = false; |
| 590 | // Print the successors |
Matthias Braun | 8940114 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 591 | bool canPredictProbs = canPredictBranchProbabilities(MBB); |
Quentin Colombet | d652aeb | 2017-09-19 23:34:12 +0000 | [diff] [blame] | 592 | // Even if the list of successors is empty, if we cannot guess it, |
| 593 | // we need to print it to tell the parser that the list is empty. |
| 594 | // This is needed, because MI model unreachable as empty blocks |
| 595 | // with an empty successor list. If the parser would see that |
| 596 | // without the successor list, it would guess the code would |
| 597 | // fallthrough. |
| 598 | if ((!MBB.succ_empty() && !SimplifyMIR) || !canPredictProbs || |
| 599 | !canPredictSuccessors(MBB)) { |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 600 | OS.indent(2) << "successors: "; |
| 601 | for (auto I = MBB.succ_begin(), E = MBB.succ_end(); I != E; ++I) { |
| 602 | if (I != MBB.succ_begin()) |
| 603 | OS << ", "; |
Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 604 | OS << printMBBReference(**I); |
Matthias Braun | 8940114 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 605 | if (!SimplifyMIR || !canPredictProbs) |
Geoff Berry | b51774a | 2016-11-18 19:37:24 +0000 | [diff] [blame] | 606 | OS << '(' |
| 607 | << format("0x%08" PRIx32, MBB.getSuccProbability(I).getNumerator()) |
| 608 | << ')'; |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 609 | } |
| 610 | OS << "\n"; |
| 611 | HasLineAttributes = true; |
| 612 | } |
| 613 | |
| 614 | // Print the live in registers. |
Matthias Braun | 1172332 | 2017-01-05 20:01:19 +0000 | [diff] [blame] | 615 | const MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo(); |
| 616 | if (MRI.tracksLiveness() && !MBB.livein_empty()) { |
| 617 | const TargetRegisterInfo &TRI = *MRI.getTargetRegisterInfo(); |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 618 | OS.indent(2) << "liveins: "; |
Matthias Braun | b2b7ef1 | 2015-08-24 22:59:52 +0000 | [diff] [blame] | 619 | bool First = true; |
Matthias Braun | d9da162 | 2015-09-09 18:08:03 +0000 | [diff] [blame] | 620 | for (const auto &LI : MBB.liveins()) { |
Matthias Braun | b2b7ef1 | 2015-08-24 22:59:52 +0000 | [diff] [blame] | 621 | if (!First) |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 622 | OS << ", "; |
Matthias Braun | b2b7ef1 | 2015-08-24 22:59:52 +0000 | [diff] [blame] | 623 | First = false; |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 624 | OS << printReg(LI.PhysReg, &TRI); |
Krzysztof Parzyszek | 91b5cf8 | 2016-12-15 14:36:06 +0000 | [diff] [blame] | 625 | if (!LI.LaneMask.all()) |
Krzysztof Parzyszek | d62669d | 2016-10-12 21:06:45 +0000 | [diff] [blame] | 626 | OS << ":0x" << PrintLaneMask(LI.LaneMask); |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 627 | } |
| 628 | OS << "\n"; |
| 629 | HasLineAttributes = true; |
| 630 | } |
| 631 | |
| 632 | if (HasLineAttributes) |
| 633 | OS << "\n"; |
Alex Lorenz | f9a2b12 | 2015-08-14 18:57:24 +0000 | [diff] [blame] | 634 | bool IsInBundle = false; |
| 635 | for (auto I = MBB.instr_begin(), E = MBB.instr_end(); I != E; ++I) { |
| 636 | const MachineInstr &MI = *I; |
| 637 | if (IsInBundle && !MI.isInsideBundle()) { |
| 638 | OS.indent(2) << "}\n"; |
| 639 | IsInBundle = false; |
| 640 | } |
| 641 | OS.indent(IsInBundle ? 4 : 2); |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 642 | print(MI); |
Alex Lorenz | f9a2b12 | 2015-08-14 18:57:24 +0000 | [diff] [blame] | 643 | if (!IsInBundle && MI.getFlag(MachineInstr::BundledSucc)) { |
| 644 | OS << " {"; |
| 645 | IsInBundle = true; |
| 646 | } |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 647 | OS << "\n"; |
| 648 | } |
Alex Lorenz | f9a2b12 | 2015-08-14 18:57:24 +0000 | [diff] [blame] | 649 | if (IsInBundle) |
| 650 | OS.indent(2) << "}\n"; |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 651 | } |
| 652 | |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 653 | void MIPrinter::print(const MachineInstr &MI) { |
Justin Bogner | fdf9bf4 | 2017-10-10 23:50:49 +0000 | [diff] [blame] | 654 | const auto *MF = MI.getMF(); |
Quentin Colombet | 4e14a49 | 2016-03-07 21:57:52 +0000 | [diff] [blame] | 655 | const auto &MRI = MF->getRegInfo(); |
| 656 | const auto &SubTarget = MF->getSubtarget(); |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 657 | const auto *TRI = SubTarget.getRegisterInfo(); |
| 658 | assert(TRI && "Expected target register info"); |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 659 | const auto *TII = SubTarget.getInstrInfo(); |
| 660 | assert(TII && "Expected target instruction info"); |
Alex Lorenz | f4baeb5 | 2015-07-21 22:28:27 +0000 | [diff] [blame] | 661 | if (MI.isCFIInstruction()) |
| 662 | assert(MI.getNumOperands() == 1 && "Expected 1 operand in CFI instruction"); |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 663 | |
Tim Northover | d28d3cc | 2016-09-12 11:20:10 +0000 | [diff] [blame] | 664 | SmallBitVector PrintedTypes(8); |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 665 | bool ShouldPrintRegisterTies = MI.hasComplexRegisterTies(); |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 666 | unsigned I = 0, E = MI.getNumOperands(); |
| 667 | for (; I < E && MI.getOperand(I).isReg() && MI.getOperand(I).isDef() && |
| 668 | !MI.getOperand(I).isImplicit(); |
| 669 | ++I) { |
| 670 | if (I) |
| 671 | OS << ", "; |
Bjorn Pettersson | a42ed3e | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 672 | print(MI, I, TRI, ShouldPrintRegisterTies, |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 673 | MI.getTypeToPrint(I, PrintedTypes, MRI), |
| 674 | /*PrintDef=*/false); |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 675 | } |
| 676 | |
| 677 | if (I) |
| 678 | OS << " = "; |
Alex Lorenz | e5a4466 | 2015-07-17 00:24:15 +0000 | [diff] [blame] | 679 | if (MI.getFlag(MachineInstr::FrameSetup)) |
| 680 | OS << "frame-setup "; |
Francis Visoiu Mistrih | 3abf0573 | 2018-03-13 19:53:16 +0000 | [diff] [blame] | 681 | if (MI.getFlag(MachineInstr::FrameDestroy)) |
Francis Visoiu Mistrih | dbf2c48 | 2018-01-09 11:33:22 +0000 | [diff] [blame] | 682 | OS << "frame-destroy "; |
| 683 | |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 684 | OS << TII->getName(MI.getOpcode()); |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 685 | if (I < E) |
| 686 | OS << ' '; |
| 687 | |
| 688 | bool NeedComma = false; |
| 689 | for (; I < E; ++I) { |
| 690 | if (NeedComma) |
| 691 | OS << ", "; |
Bjorn Pettersson | a42ed3e | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 692 | print(MI, I, TRI, ShouldPrintRegisterTies, |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 693 | MI.getTypeToPrint(I, PrintedTypes, MRI)); |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 694 | NeedComma = true; |
| 695 | } |
Alex Lorenz | 46d760d | 2015-07-22 21:15:11 +0000 | [diff] [blame] | 696 | |
Francis Visoiu Mistrih | 548add9 | 2018-01-19 11:44:42 +0000 | [diff] [blame] | 697 | if (const DebugLoc &DL = MI.getDebugLoc()) { |
Alex Lorenz | 46d760d | 2015-07-22 21:15:11 +0000 | [diff] [blame] | 698 | if (NeedComma) |
| 699 | OS << ','; |
| 700 | OS << " debug-location "; |
Francis Visoiu Mistrih | 548add9 | 2018-01-19 11:44:42 +0000 | [diff] [blame] | 701 | DL->printAsOperand(OS, MST); |
Alex Lorenz | 46d760d | 2015-07-22 21:15:11 +0000 | [diff] [blame] | 702 | } |
Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 703 | |
| 704 | if (!MI.memoperands_empty()) { |
| 705 | OS << " :: "; |
Matthias Braun | f1caa28 | 2017-12-15 22:22:58 +0000 | [diff] [blame] | 706 | const LLVMContext &Context = MF->getFunction().getContext(); |
Francis Visoiu Mistrih | e85b06d | 2018-03-14 21:52:13 +0000 | [diff] [blame] | 707 | const MachineFrameInfo &MFI = MF->getFrameInfo(); |
Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 708 | bool NeedComma = false; |
| 709 | for (const auto *Op : MI.memoperands()) { |
| 710 | if (NeedComma) |
| 711 | OS << ", "; |
Francis Visoiu Mistrih | e85b06d | 2018-03-14 21:52:13 +0000 | [diff] [blame] | 712 | Op->print(OS, MST, SSNs, Context, &MFI, TII); |
Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 713 | NeedComma = true; |
| 714 | } |
| 715 | } |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 716 | } |
| 717 | |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 718 | void MIPrinter::printStackObjectReference(int FrameIndex) { |
| 719 | auto ObjectInfo = StackObjectOperandMapping.find(FrameIndex); |
| 720 | assert(ObjectInfo != StackObjectOperandMapping.end() && |
| 721 | "Invalid frame index"); |
| 722 | const FrameIndexOperand &Operand = ObjectInfo->second; |
Francis Visoiu Mistrih | 0b5bdce | 2017-12-15 16:33:45 +0000 | [diff] [blame] | 723 | MachineOperand::printStackObjectReference(OS, Operand.ID, Operand.IsFixed, |
| 724 | Operand.Name); |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 725 | } |
| 726 | |
Bjorn Pettersson | a42ed3e | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 727 | void MIPrinter::print(const MachineInstr &MI, unsigned OpIdx, |
| 728 | const TargetRegisterInfo *TRI, |
| 729 | bool ShouldPrintRegisterTies, LLT TypeToPrint, |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 730 | bool PrintDef) { |
Bjorn Pettersson | a42ed3e | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 731 | const MachineOperand &Op = MI.getOperand(OpIdx); |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 732 | switch (Op.getType()) { |
Francis Visoiu Mistrih | 440f69c | 2017-12-08 22:53:21 +0000 | [diff] [blame] | 733 | case MachineOperand::MO_Immediate: |
| 734 | if (MI.isOperandSubregIdx(OpIdx)) { |
Francis Visoiu Mistrih | 5df3bbf | 2017-12-14 10:03:09 +0000 | [diff] [blame] | 735 | MachineOperand::printTargetFlags(OS, Op); |
Francis Visoiu Mistrih | ecd0b83 | 2018-01-16 10:53:11 +0000 | [diff] [blame] | 736 | MachineOperand::printSubRegIdx(OS, Op.getImm(), TRI); |
Francis Visoiu Mistrih | 440f69c | 2017-12-08 22:53:21 +0000 | [diff] [blame] | 737 | break; |
| 738 | } |
| 739 | LLVM_FALLTHROUGH; |
Francis Visoiu Mistrih | 6c4ca71 | 2017-12-08 11:40:06 +0000 | [diff] [blame] | 740 | case MachineOperand::MO_Register: |
Francis Visoiu Mistrih | f4bd295 | 2017-12-08 11:48:02 +0000 | [diff] [blame] | 741 | case MachineOperand::MO_CImmediate: |
Francis Visoiu Mistrih | 3b265c8 | 2017-12-19 21:47:00 +0000 | [diff] [blame] | 742 | case MachineOperand::MO_FPImmediate: |
Francis Visoiu Mistrih | 26ae8a6 | 2017-12-13 10:30:45 +0000 | [diff] [blame] | 743 | case MachineOperand::MO_MachineBasicBlock: |
Francis Visoiu Mistrih | b3a0d51 | 2017-12-13 10:30:51 +0000 | [diff] [blame] | 744 | case MachineOperand::MO_ConstantPoolIndex: |
Francis Visoiu Mistrih | b41dbbe | 2017-12-13 10:30:59 +0000 | [diff] [blame] | 745 | case MachineOperand::MO_TargetIndex: |
Francis Visoiu Mistrih | e76c5fc | 2017-12-14 10:02:58 +0000 | [diff] [blame] | 746 | case MachineOperand::MO_JumpTableIndex: |
Francis Visoiu Mistrih | 5df3bbf | 2017-12-14 10:03:09 +0000 | [diff] [blame] | 747 | case MachineOperand::MO_ExternalSymbol: |
Francis Visoiu Mistrih | bdaf8bf | 2017-12-14 10:03:14 +0000 | [diff] [blame] | 748 | case MachineOperand::MO_GlobalAddress: |
Francis Visoiu Mistrih | 2db5938 | 2017-12-14 10:03:18 +0000 | [diff] [blame] | 749 | case MachineOperand::MO_RegisterLiveOut: |
Francis Visoiu Mistrih | 3c99371 | 2017-12-14 10:03:23 +0000 | [diff] [blame] | 750 | case MachineOperand::MO_Metadata: |
Francis Visoiu Mistrih | 874ae6f | 2017-12-19 16:51:52 +0000 | [diff] [blame] | 751 | case MachineOperand::MO_MCSymbol: |
Francis Visoiu Mistrih | bbd610a | 2017-12-19 21:47:05 +0000 | [diff] [blame] | 752 | case MachineOperand::MO_CFIIndex: |
Francis Visoiu Mistrih | cb2683d | 2017-12-19 21:47:10 +0000 | [diff] [blame] | 753 | case MachineOperand::MO_IntrinsicID: |
Francis Visoiu Mistrih | f81727d | 2017-12-19 21:47:14 +0000 | [diff] [blame] | 754 | case MachineOperand::MO_Predicate: |
| 755 | case MachineOperand::MO_BlockAddress: { |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 756 | unsigned TiedOperandIdx = 0; |
Francis Visoiu Mistrih | 440f69c | 2017-12-08 22:53:21 +0000 | [diff] [blame] | 757 | if (ShouldPrintRegisterTies && Op.isReg() && Op.isTied() && !Op.isDef()) |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 758 | TiedOperandIdx = Op.getParent()->findTiedOperandIdx(OpIdx); |
| 759 | const TargetIntrinsicInfo *TII = MI.getMF()->getTarget().getIntrinsicInfo(); |
Francis Visoiu Mistrih | eb3f76f | 2018-01-18 18:05:15 +0000 | [diff] [blame] | 760 | Op.print(OS, MST, TypeToPrint, PrintDef, /*IsStandalone=*/false, |
Francis Visoiu Mistrih | 378b5f3 | 2018-01-18 17:59:06 +0000 | [diff] [blame] | 761 | ShouldPrintRegisterTies, TiedOperandIdx, TRI, TII); |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 762 | break; |
Justin Bogner | 6c45283 | 2017-10-24 18:04:54 +0000 | [diff] [blame] | 763 | } |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 764 | case MachineOperand::MO_FrameIndex: |
| 765 | printStackObjectReference(Op.getIndex()); |
| 766 | break; |
Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 767 | case MachineOperand::MO_RegisterMask: { |
| 768 | auto RegMaskInfo = RegisterMaskIds.find(Op.getRegMask()); |
| 769 | if (RegMaskInfo != RegisterMaskIds.end()) |
| 770 | OS << StringRef(TRI->getRegMaskNames()[RegMaskInfo->second]).lower(); |
| 771 | else |
Oren Ben Simhon | 0ef61ec | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 772 | printCustomRegMask(Op.getRegMask(), OS, TRI); |
Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 773 | break; |
| 774 | } |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 775 | } |
Alex Lorenz | 4f093bf | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 776 | } |
| 777 | |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 778 | void llvm::printMIR(raw_ostream &OS, const Module &M) { |
| 779 | yaml::Output Out(OS); |
| 780 | Out << const_cast<Module &>(M); |
| 781 | } |
| 782 | |
| 783 | void llvm::printMIR(raw_ostream &OS, const MachineFunction &MF) { |
| 784 | MIRPrinter Printer(OS); |
| 785 | Printer.print(MF); |
| 786 | } |