| Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 1 | //===- MIRPrinter.cpp - MIR serialization format printer ------------------===// |
| 2 | // |
| Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file implements the class that prints out the LLVM IR and machine |
| 10 | // functions using the MIR serialization format. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 14 | #include "llvm/CodeGen/MIRPrinter.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/DenseMap.h" |
| 16 | #include "llvm/ADT/None.h" |
| David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/STLExtras.h" |
| Tim Northover | d28d3cc | 2016-09-12 11:20:10 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/SmallBitVector.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SmallPtrSet.h" |
| 20 | #include "llvm/ADT/SmallVector.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/StringRef.h" |
| 22 | #include "llvm/ADT/Twine.h" |
| Quentin Colombet | fab1cfe | 2016-04-08 16:26:22 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/GlobalISel/RegisterBank.h" |
| David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MIRYamlMapping.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineBasicBlock.h" |
| Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/MachineConstantPool.h" |
| Alex Lorenz | 60541c1 | 2015-07-09 19:55:27 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| Quentin Colombet | fab1cfe | 2016-04-08 16:26:22 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineFunction.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/MachineInstr.h" |
| 30 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
| Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/MachineMemOperand.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/MachineOperand.h" |
| Alex Lorenz | 54565cf | 2015-06-24 19:56:10 +0000 | [diff] [blame] | 33 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/PseudoSourceValue.h" |
| David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 35 | #include "llvm/CodeGen/TargetInstrInfo.h" |
| David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 36 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
| 37 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
| Sander de Smalen | 5d6ee76 | 2019-06-17 09:13:29 +0000 | [diff] [blame] | 38 | #include "llvm/CodeGen/TargetFrameLowering.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" |
| Chandler Carruth | 75ca6be | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 53 | #include "llvm/MC/MCContext.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 54 | #include "llvm/MC/MCDwarf.h" |
| Alex Lorenz | f22ca8a | 2015-08-21 21:12:44 +0000 | [diff] [blame] | 55 | #include "llvm/MC/MCSymbol.h" |
| Eugene Zelenko | fb69e66 | 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 | b51774a | 2016-11-18 19:37:24 +0000 | [diff] [blame] | 61 | #include "llvm/Support/Format.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 62 | #include "llvm/Support/LowLevelTypeImpl.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 63 | #include "llvm/Support/YAMLTraits.h" |
| David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 64 | #include "llvm/Support/raw_ostream.h" |
| Tim Northover | 6b3bd61 | 2016-07-29 20:32:59 +0000 | [diff] [blame] | 65 | #include "llvm/Target/TargetIntrinsicInfo.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 66 | #include "llvm/Target/TargetMachine.h" |
| Eugene Zelenko | fb69e66 | 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 | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 75 | |
| 76 | using namespace llvm; |
| 77 | |
| Zachary Turner | 8065f0b | 2017-12-01 00:53:10 +0000 | [diff] [blame] | 78 | static cl::opt<bool> SimplifyMIR( |
| 79 | "simplify-mir", cl::Hidden, |
| Matthias Braun | 8940114 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 80 | cl::desc("Leave out unnecessary information when printing MIR")); |
| 81 | |
| Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 82 | namespace { |
| 83 | |
| Alex Lorenz | 7feaf7c | 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 | 618b283 | 2015-07-30 16:54:38 +0000 | [diff] [blame] | 104 | } // end anonymous namespace |
| 105 | |
| 106 | namespace llvm { |
| 107 | |
| Alex Lorenz | 345c144 | 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 | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 112 | DenseMap<const uint32_t *, unsigned> RegisterMaskIds; |
| Alex Lorenz | 7feaf7c | 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 | 345c144 | 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 | 4f093bf | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 121 | |
| Alex Lorenz | 28148ba | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 122 | void convert(yaml::MachineFunction &MF, const MachineRegisterInfo &RegInfo, |
| 123 | const TargetRegisterInfo *TRI); |
| Alex Lorenz | a6f9a37 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 124 | void convert(ModuleSlotTracker &MST, yaml::MachineFrameInfo &YamlMFI, |
| 125 | const MachineFrameInfo &MFI); |
| Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 126 | void convert(yaml::MachineFunction &MF, |
| 127 | const MachineConstantPool &ConstantPool); |
| Alex Lorenz | 6799e9b | 2015-07-15 23:31:07 +0000 | [diff] [blame] | 128 | void convert(ModuleSlotTracker &MST, yaml::MachineJumpTable &YamlJTI, |
| 129 | const MachineJumpTableInfo &JTI); |
| Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 130 | void convertStackObjects(yaml::MachineFunction &YMF, |
| 131 | const MachineFunction &MF, ModuleSlotTracker &MST); |
| Djordje Todorovic | a7cde10 | 2019-06-27 07:48:06 +0000 | [diff] [blame] | 132 | void convertCallSiteObjects(yaml::MachineFunction &YMF, |
| 133 | const MachineFunction &MF, |
| 134 | ModuleSlotTracker &MST); |
| Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 135 | |
| 136 | private: |
| 137 | void initRegisterMaskIds(const MachineFunction &MF); |
| Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 138 | }; |
| 139 | |
| Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 140 | /// This class prints out the machine instructions using the MIR serialization |
| 141 | /// format. |
| 142 | class MIPrinter { |
| 143 | raw_ostream &OS; |
| Alex Lorenz | 900b5cb | 2015-07-07 23:27:53 +0000 | [diff] [blame] | 144 | ModuleSlotTracker &MST; |
| Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 145 | const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds; |
| Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 146 | const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping; |
| Konstantin Zhuravlyov | bb80d3e | 2017-07-11 22:23:00 +0000 | [diff] [blame] | 147 | /// Synchronization scope names registered with LLVMContext. |
| 148 | SmallVector<StringRef, 8> SSNs; |
| Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 149 | |
| Matthias Braun | 8940114 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 150 | bool canPredictBranchProbabilities(const MachineBasicBlock &MBB) const; |
| 151 | bool canPredictSuccessors(const MachineBasicBlock &MBB) const; |
| 152 | |
| Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 153 | public: |
| Alex Lorenz | 900b5cb | 2015-07-07 23:27:53 +0000 | [diff] [blame] | 154 | MIPrinter(raw_ostream &OS, ModuleSlotTracker &MST, |
| Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 155 | const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds, |
| 156 | const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping) |
| 157 | : OS(OS), MST(MST), RegisterMaskIds(RegisterMaskIds), |
| 158 | StackObjectOperandMapping(StackObjectOperandMapping) {} |
| Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 159 | |
| Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 160 | void print(const MachineBasicBlock &MBB); |
| 161 | |
| Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 162 | void print(const MachineInstr &MI); |
| Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 163 | void printStackObjectReference(int FrameIndex); |
| Bjorn Pettersson | a42ed3e | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 164 | void print(const MachineInstr &MI, unsigned OpIdx, |
| Sjoerd Meijer | 7efabe5 | 2020-02-24 14:19:21 +0000 | [diff] [blame] | 165 | const TargetRegisterInfo *TRI, const TargetInstrInfo *TII, |
| 166 | bool ShouldPrintRegisterTies, LLT TypeToPrint, |
| 167 | bool PrintDef = true); |
| Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 168 | }; |
| 169 | |
| Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 170 | } // end namespace llvm |
| Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 171 | |
| 172 | namespace llvm { |
| 173 | namespace yaml { |
| 174 | |
| 175 | /// This struct serializes the LLVM IR module. |
| 176 | template <> struct BlockScalarTraits<Module> { |
| 177 | static void output(const Module &Mod, void *Ctxt, raw_ostream &OS) { |
| 178 | Mod.print(OS, nullptr); |
| 179 | } |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 180 | |
| Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 181 | static StringRef input(StringRef Str, void *Ctxt, Module &Mod) { |
| 182 | llvm_unreachable("LLVM Module is supposed to be parsed separately"); |
| 183 | return ""; |
| 184 | } |
| 185 | }; |
| 186 | |
| 187 | } // end namespace yaml |
| 188 | } // end namespace llvm |
| 189 | |
| Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 190 | static void printRegMIR(unsigned Reg, yaml::StringValue &Dest, |
| 191 | const TargetRegisterInfo *TRI) { |
| Alex Lorenz | ab4cbcf | 2015-07-24 20:35:40 +0000 | [diff] [blame] | 192 | raw_string_ostream OS(Dest.Value); |
| Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 193 | OS << printReg(Reg, TRI); |
| Alex Lorenz | ab4cbcf | 2015-07-24 20:35:40 +0000 | [diff] [blame] | 194 | } |
| 195 | |
| Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 196 | void MIRPrinter::print(const MachineFunction &MF) { |
| Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 197 | initRegisterMaskIds(MF); |
| 198 | |
| Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 199 | yaml::MachineFunction YamlMF; |
| 200 | YamlMF.Name = MF.getName(); |
| Guillaume Chatelet | 48904e9 | 2019-09-11 11:16:48 +0000 | [diff] [blame] | 201 | YamlMF.Alignment = MF.getAlignment().value(); |
| Alex Lorenz | 5b5f975 | 2015-06-16 00:10:47 +0000 | [diff] [blame] | 202 | YamlMF.ExposesReturnsTwice = MF.exposesReturnsTwice(); |
| Sanjin Sijaric | 625d08e | 2018-10-24 21:07:38 +0000 | [diff] [blame] | 203 | YamlMF.HasWinCFI = MF.hasWinCFI(); |
| Derek Schuff | ad154c8 | 2016-03-28 17:05:30 +0000 | [diff] [blame] | 204 | |
| Ahmed Bougacha | 0d7b0cb | 2016-08-02 15:10:25 +0000 | [diff] [blame] | 205 | YamlMF.Legalized = MF.getProperties().hasProperty( |
| 206 | MachineFunctionProperties::Property::Legalized); |
| Ahmed Bougacha | 2471265 | 2016-08-02 16:17:10 +0000 | [diff] [blame] | 207 | YamlMF.RegBankSelected = MF.getProperties().hasProperty( |
| 208 | MachineFunctionProperties::Property::RegBankSelected); |
| Ahmed Bougacha | b109d51 | 2016-08-02 16:49:19 +0000 | [diff] [blame] | 209 | YamlMF.Selected = MF.getProperties().hasProperty( |
| 210 | MachineFunctionProperties::Property::Selected); |
| Roman Tereshin | 3054ece | 2018-02-28 17:55:45 +0000 | [diff] [blame] | 211 | YamlMF.FailedISel = MF.getProperties().hasProperty( |
| 212 | MachineFunctionProperties::Property::FailedISel); |
| Ahmed Bougacha | 0d7b0cb | 2016-08-02 15:10:25 +0000 | [diff] [blame] | 213 | |
| Alex Lorenz | 28148ba | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 214 | convert(YamlMF, MF.getRegInfo(), MF.getSubtarget().getRegisterInfo()); |
| Matthias Braun | f1caa28 | 2017-12-15 22:22:58 +0000 | [diff] [blame] | 215 | ModuleSlotTracker MST(MF.getFunction().getParent()); |
| 216 | MST.incorporateFunction(MF.getFunction()); |
| Matthias Braun | 941a705 | 2016-07-28 18:40:00 +0000 | [diff] [blame] | 217 | convert(MST, YamlMF.FrameInfo, MF.getFrameInfo()); |
| Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 218 | convertStackObjects(YamlMF, MF, MST); |
| Djordje Todorovic | a7cde10 | 2019-06-27 07:48:06 +0000 | [diff] [blame] | 219 | convertCallSiteObjects(YamlMF, MF, MST); |
| Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 220 | if (const auto *ConstantPool = MF.getConstantPool()) |
| 221 | convert(YamlMF, *ConstantPool); |
| Alex Lorenz | 6799e9b | 2015-07-15 23:31:07 +0000 | [diff] [blame] | 222 | if (const auto *JumpTableInfo = MF.getJumpTableInfo()) |
| 223 | convert(MST, YamlMF.JumpTableInfo, *JumpTableInfo); |
| Matt Arsenault | bc6d07c | 2019-03-14 22:54:43 +0000 | [diff] [blame] | 224 | |
| 225 | const TargetMachine &TM = MF.getTarget(); |
| 226 | YamlMF.MachineFuncInfo = |
| 227 | std::unique_ptr<yaml::MachineFunctionInfo>(TM.convertFuncInfoToYAML(MF)); |
| 228 | |
| Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 229 | raw_string_ostream StrOS(YamlMF.Body.Value.Value); |
| 230 | bool IsNewlineNeeded = false; |
| Alex Lorenz | 4f093bf | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 231 | for (const auto &MBB : MF) { |
| Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 232 | if (IsNewlineNeeded) |
| 233 | StrOS << "\n"; |
| 234 | MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping) |
| 235 | .print(MBB); |
| 236 | IsNewlineNeeded = true; |
| Alex Lorenz | 4f093bf | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 237 | } |
| Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 238 | StrOS.flush(); |
| Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 239 | yaml::Output Out(OS); |
| Vivek Pandya | 56d87ef | 2017-06-06 08:16:19 +0000 | [diff] [blame] | 240 | if (!SimplifyMIR) |
| 241 | Out.setWriteDefaultValues(true); |
| Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 242 | Out << YamlMF; |
| 243 | } |
| 244 | |
| Oren Ben Simhon | 0ef61ec | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 245 | static void printCustomRegMask(const uint32_t *RegMask, raw_ostream &OS, |
| 246 | const TargetRegisterInfo *TRI) { |
| 247 | assert(RegMask && "Can't print an empty register mask"); |
| 248 | OS << StringRef("CustomRegMask("); |
| 249 | |
| 250 | bool IsRegInRegMaskFound = false; |
| 251 | for (int I = 0, E = TRI->getNumRegs(); I < E; I++) { |
| 252 | // Check whether the register is asserted in regmask. |
| 253 | if (RegMask[I / 32] & (1u << (I % 32))) { |
| 254 | if (IsRegInRegMaskFound) |
| 255 | OS << ','; |
| Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 256 | OS << printReg(I, TRI); |
| Oren Ben Simhon | 0ef61ec | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 257 | IsRegInRegMaskFound = true; |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | OS << ')'; |
| 262 | } |
| 263 | |
| Justin Bogner | 6c45283 | 2017-10-24 18:04:54 +0000 | [diff] [blame] | 264 | static void printRegClassOrBank(unsigned Reg, yaml::StringValue &Dest, |
| 265 | const MachineRegisterInfo &RegInfo, |
| 266 | const TargetRegisterInfo *TRI) { |
| 267 | raw_string_ostream OS(Dest.Value); |
| Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 268 | OS << printRegClassOrBank(Reg, RegInfo, TRI); |
| Justin Bogner | 6c45283 | 2017-10-24 18:04:54 +0000 | [diff] [blame] | 269 | } |
| 270 | |
| Francis Visoiu Mistrih | 57fcd34 | 2018-04-25 18:58:06 +0000 | [diff] [blame] | 271 | template <typename T> |
| 272 | static void |
| 273 | printStackObjectDbgInfo(const MachineFunction::VariableDbgInfo &DebugVar, |
| 274 | T &Object, ModuleSlotTracker &MST) { |
| 275 | std::array<std::string *, 3> Outputs{{&Object.DebugVar.Value, |
| 276 | &Object.DebugExpr.Value, |
| 277 | &Object.DebugLoc.Value}}; |
| 278 | std::array<const Metadata *, 3> Metas{{DebugVar.Var, |
| 279 | DebugVar.Expr, |
| 280 | DebugVar.Loc}}; |
| 281 | for (unsigned i = 0; i < 3; ++i) { |
| 282 | raw_string_ostream StrOS(*Outputs[i]); |
| 283 | Metas[i]->printAsOperand(StrOS, MST); |
| 284 | } |
| 285 | } |
| Justin Bogner | 6c45283 | 2017-10-24 18:04:54 +0000 | [diff] [blame] | 286 | |
| Alex Lorenz | 54565cf | 2015-06-24 19:56:10 +0000 | [diff] [blame] | 287 | void MIRPrinter::convert(yaml::MachineFunction &MF, |
| Alex Lorenz | 28148ba | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 288 | const MachineRegisterInfo &RegInfo, |
| 289 | const TargetRegisterInfo *TRI) { |
| Alex Lorenz | 54565cf | 2015-06-24 19:56:10 +0000 | [diff] [blame] | 290 | MF.TracksRegLiveness = RegInfo.tracksLiveness(); |
| Alex Lorenz | 28148ba | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 291 | |
| 292 | // Print the virtual register definitions. |
| 293 | for (unsigned I = 0, E = RegInfo.getNumVirtRegs(); I < E; ++I) { |
| Daniel Sanders | 2bea69b | 2019-08-01 23:27:28 +0000 | [diff] [blame] | 294 | unsigned Reg = Register::index2VirtReg(I); |
| Alex Lorenz | 28148ba | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 295 | yaml::VirtualRegisterDefinition VReg; |
| 296 | VReg.ID = I; |
| Puyan Lotfi | 399b46c | 2018-03-30 18:15:54 +0000 | [diff] [blame] | 297 | if (RegInfo.getVRegName(Reg) != "") |
| 298 | continue; |
| Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 299 | ::printRegClassOrBank(Reg, VReg.Class, RegInfo, TRI); |
| Alex Lorenz | ab4cbcf | 2015-07-24 20:35:40 +0000 | [diff] [blame] | 300 | unsigned PreferredReg = RegInfo.getSimpleHint(Reg); |
| 301 | if (PreferredReg) |
| Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 302 | printRegMIR(PreferredReg, VReg.PreferredRegister, TRI); |
| Alex Lorenz | 28148ba | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 303 | MF.VirtualRegisters.push_back(VReg); |
| 304 | } |
| Alex Lorenz | 12045a4 | 2015-07-27 17:42:45 +0000 | [diff] [blame] | 305 | |
| 306 | // Print the live ins. |
| Krzysztof Parzyszek | 72518ea | 2017-10-16 19:08:41 +0000 | [diff] [blame] | 307 | for (std::pair<unsigned, unsigned> LI : RegInfo.liveins()) { |
| Alex Lorenz | 12045a4 | 2015-07-27 17:42:45 +0000 | [diff] [blame] | 308 | yaml::MachineFunctionLiveIn LiveIn; |
| Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 309 | printRegMIR(LI.first, LiveIn.Register, TRI); |
| Krzysztof Parzyszek | 72518ea | 2017-10-16 19:08:41 +0000 | [diff] [blame] | 310 | if (LI.second) |
| Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 311 | printRegMIR(LI.second, LiveIn.VirtualRegister, TRI); |
| Alex Lorenz | 12045a4 | 2015-07-27 17:42:45 +0000 | [diff] [blame] | 312 | MF.LiveIns.push_back(LiveIn); |
| 313 | } |
| Oren Ben Simhon | 0ef61ec | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 314 | |
| 315 | // Prints the callee saved registers. |
| 316 | if (RegInfo.isUpdatedCSRsInitialized()) { |
| 317 | const MCPhysReg *CalleeSavedRegs = RegInfo.getCalleeSavedRegs(); |
| 318 | std::vector<yaml::FlowStringValue> CalleeSavedRegisters; |
| 319 | for (const MCPhysReg *I = CalleeSavedRegs; *I; ++I) { |
| Alex Lorenz | c483808 | 2015-08-11 00:32:49 +0000 | [diff] [blame] | 320 | yaml::FlowStringValue Reg; |
| Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 321 | printRegMIR(*I, Reg, TRI); |
| Alex Lorenz | c483808 | 2015-08-11 00:32:49 +0000 | [diff] [blame] | 322 | CalleeSavedRegisters.push_back(Reg); |
| 323 | } |
| Oren Ben Simhon | 0ef61ec | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 324 | MF.CalleeSavedRegisters = CalleeSavedRegisters; |
| Alex Lorenz | c483808 | 2015-08-11 00:32:49 +0000 | [diff] [blame] | 325 | } |
| Alex Lorenz | 54565cf | 2015-06-24 19:56:10 +0000 | [diff] [blame] | 326 | } |
| 327 | |
| Alex Lorenz | a6f9a37 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 328 | void MIRPrinter::convert(ModuleSlotTracker &MST, |
| 329 | yaml::MachineFrameInfo &YamlMFI, |
| Alex Lorenz | 60541c1 | 2015-07-09 19:55:27 +0000 | [diff] [blame] | 330 | const MachineFrameInfo &MFI) { |
| 331 | YamlMFI.IsFrameAddressTaken = MFI.isFrameAddressTaken(); |
| 332 | YamlMFI.IsReturnAddressTaken = MFI.isReturnAddressTaken(); |
| 333 | YamlMFI.HasStackMap = MFI.hasStackMap(); |
| 334 | YamlMFI.HasPatchPoint = MFI.hasPatchPoint(); |
| 335 | YamlMFI.StackSize = MFI.getStackSize(); |
| 336 | YamlMFI.OffsetAdjustment = MFI.getOffsetAdjustment(); |
| 337 | YamlMFI.MaxAlignment = MFI.getMaxAlignment(); |
| 338 | YamlMFI.AdjustsStack = MFI.adjustsStack(); |
| 339 | YamlMFI.HasCalls = MFI.hasCalls(); |
| Matthias Braun | ab9438c | 2017-05-01 22:32:25 +0000 | [diff] [blame] | 340 | YamlMFI.MaxCallFrameSize = MFI.isMaxCallFrameSizeComputed() |
| 341 | ? MFI.getMaxCallFrameSize() : ~0u; |
| Reid Kleckner | 9ea2c01 | 2018-10-01 21:59:45 +0000 | [diff] [blame] | 342 | YamlMFI.CVBytesOfCalleeSavedRegisters = |
| 343 | MFI.getCVBytesOfCalleeSavedRegisters(); |
| Alex Lorenz | 60541c1 | 2015-07-09 19:55:27 +0000 | [diff] [blame] | 344 | YamlMFI.HasOpaqueSPAdjustment = MFI.hasOpaqueSPAdjustment(); |
| 345 | YamlMFI.HasVAStart = MFI.hasVAStart(); |
| 346 | YamlMFI.HasMustTailInVarArgFunc = MFI.hasMustTailInVarArgFunc(); |
| Francis Visoiu Mistrih | 537d7ee | 2018-04-06 08:56:25 +0000 | [diff] [blame] | 347 | YamlMFI.LocalFrameSize = MFI.getLocalFrameSize(); |
| Alex Lorenz | a6f9a37 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 348 | if (MFI.getSavePoint()) { |
| 349 | raw_string_ostream StrOS(YamlMFI.SavePoint.Value); |
| Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 350 | StrOS << printMBBReference(*MFI.getSavePoint()); |
| Alex Lorenz | a6f9a37 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 351 | } |
| 352 | if (MFI.getRestorePoint()) { |
| 353 | raw_string_ostream StrOS(YamlMFI.RestorePoint.Value); |
| Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 354 | StrOS << printMBBReference(*MFI.getRestorePoint()); |
| Alex Lorenz | a6f9a37 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 355 | } |
| Alex Lorenz | 60541c1 | 2015-07-09 19:55:27 +0000 | [diff] [blame] | 356 | } |
| 357 | |
| Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 358 | void MIRPrinter::convertStackObjects(yaml::MachineFunction &YMF, |
| 359 | const MachineFunction &MF, |
| 360 | ModuleSlotTracker &MST) { |
| 361 | const MachineFrameInfo &MFI = MF.getFrameInfo(); |
| 362 | const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo(); |
| Alex Lorenz | de491f0 | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 363 | // Process fixed stack objects. |
| Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 364 | unsigned ID = 0; |
| Matt Arsenault | 7b55066 | 2019-02-22 19:30:38 +0000 | [diff] [blame] | 365 | for (int I = MFI.getObjectIndexBegin(); I < 0; ++I, ++ID) { |
| Alex Lorenz | de491f0 | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 366 | if (MFI.isDeadObjectIndex(I)) |
| 367 | continue; |
| 368 | |
| 369 | yaml::FixedMachineStackObject YamlObject; |
| Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 370 | YamlObject.ID = ID; |
| Alex Lorenz | de491f0 | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 371 | YamlObject.Type = MFI.isSpillSlotObjectIndex(I) |
| 372 | ? yaml::FixedMachineStackObject::SpillSlot |
| 373 | : yaml::FixedMachineStackObject::DefaultType; |
| 374 | YamlObject.Offset = MFI.getObjectOffset(I); |
| 375 | YamlObject.Size = MFI.getObjectSize(I); |
| 376 | YamlObject.Alignment = MFI.getObjectAlignment(I); |
| Sander de Smalen | 5d6ee76 | 2019-06-17 09:13:29 +0000 | [diff] [blame] | 377 | YamlObject.StackID = (TargetStackID::Value)MFI.getStackID(I); |
| Alex Lorenz | de491f0 | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 378 | YamlObject.IsImmutable = MFI.isImmutableObjectIndex(I); |
| 379 | YamlObject.IsAliased = MFI.isAliasedObjectIndex(I); |
| Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 380 | YMF.FixedStackObjects.push_back(YamlObject); |
| Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 381 | StackObjectOperandMapping.insert( |
| Matt Arsenault | 7b55066 | 2019-02-22 19:30:38 +0000 | [diff] [blame] | 382 | std::make_pair(I, FrameIndexOperand::createFixed(ID))); |
| Alex Lorenz | de491f0 | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 383 | } |
| 384 | |
| 385 | // Process ordinary stack objects. |
| 386 | ID = 0; |
| Matt Arsenault | 7b55066 | 2019-02-22 19:30:38 +0000 | [diff] [blame] | 387 | for (int I = 0, E = MFI.getObjectIndexEnd(); I < E; ++I, ++ID) { |
| Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 388 | if (MFI.isDeadObjectIndex(I)) |
| 389 | continue; |
| 390 | |
| 391 | yaml::MachineStackObject YamlObject; |
| Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 392 | YamlObject.ID = ID; |
| Alex Lorenz | 37643a0 | 2015-07-15 22:14:49 +0000 | [diff] [blame] | 393 | if (const auto *Alloca = MFI.getObjectAllocation(I)) |
| Benjamin Kramer | adcd026 | 2020-01-28 20:23:46 +0100 | [diff] [blame] | 394 | YamlObject.Name.Value = std::string( |
| 395 | Alloca->hasName() ? Alloca->getName() : "<unnamed alloca>"); |
| Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 396 | YamlObject.Type = MFI.isSpillSlotObjectIndex(I) |
| 397 | ? yaml::MachineStackObject::SpillSlot |
| Alex Lorenz | 418f3ec | 2015-07-14 00:26:26 +0000 | [diff] [blame] | 398 | : MFI.isVariableSizedObjectIndex(I) |
| 399 | ? yaml::MachineStackObject::VariableSized |
| 400 | : yaml::MachineStackObject::DefaultType; |
| Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 401 | YamlObject.Offset = MFI.getObjectOffset(I); |
| 402 | YamlObject.Size = MFI.getObjectSize(I); |
| 403 | YamlObject.Alignment = MFI.getObjectAlignment(I); |
| Sander de Smalen | 5d6ee76 | 2019-06-17 09:13:29 +0000 | [diff] [blame] | 404 | YamlObject.StackID = (TargetStackID::Value)MFI.getStackID(I); |
| Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 405 | |
| Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 406 | YMF.StackObjects.push_back(YamlObject); |
| Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 407 | StackObjectOperandMapping.insert(std::make_pair( |
| Matt Arsenault | 7b55066 | 2019-02-22 19:30:38 +0000 | [diff] [blame] | 408 | I, FrameIndexOperand::create(YamlObject.Name.Value, ID))); |
| Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 409 | } |
| Alex Lorenz | 1bb48de | 2015-07-24 22:22:50 +0000 | [diff] [blame] | 410 | |
| 411 | for (const auto &CSInfo : MFI.getCalleeSavedInfo()) { |
| Matt Arsenault | d3ed418 | 2019-05-28 13:08:31 +0000 | [diff] [blame] | 412 | if (!CSInfo.isSpilledToReg() && MFI.isDeadObjectIndex(CSInfo.getFrameIdx())) |
| 413 | continue; |
| 414 | |
| Alex Lorenz | 1bb48de | 2015-07-24 22:22:50 +0000 | [diff] [blame] | 415 | yaml::StringValue Reg; |
| Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 416 | printRegMIR(CSInfo.getReg(), Reg, TRI); |
| Zaara Syeda | 5c179bf | 2018-11-09 16:36:24 +0000 | [diff] [blame] | 417 | if (!CSInfo.isSpilledToReg()) { |
| 418 | auto StackObjectInfo = StackObjectOperandMapping.find(CSInfo.getFrameIdx()); |
| 419 | assert(StackObjectInfo != StackObjectOperandMapping.end() && |
| 420 | "Invalid stack object index"); |
| 421 | const FrameIndexOperand &StackObject = StackObjectInfo->second; |
| 422 | if (StackObject.IsFixed) { |
| 423 | YMF.FixedStackObjects[StackObject.ID].CalleeSavedRegister = Reg; |
| 424 | YMF.FixedStackObjects[StackObject.ID].CalleeSavedRestored = |
| 425 | CSInfo.isRestored(); |
| 426 | } else { |
| 427 | YMF.StackObjects[StackObject.ID].CalleeSavedRegister = Reg; |
| 428 | YMF.StackObjects[StackObject.ID].CalleeSavedRestored = |
| 429 | CSInfo.isRestored(); |
| 430 | } |
| Matthias Braun | 5c3e8a4 | 2017-09-28 18:52:14 +0000 | [diff] [blame] | 431 | } |
| Alex Lorenz | 1bb48de | 2015-07-24 22:22:50 +0000 | [diff] [blame] | 432 | } |
| Alex Lorenz | a56ba6a | 2015-08-17 22:17:42 +0000 | [diff] [blame] | 433 | for (unsigned I = 0, E = MFI.getLocalFrameObjectCount(); I < E; ++I) { |
| 434 | auto LocalObject = MFI.getLocalFrameObjectMap(I); |
| 435 | auto StackObjectInfo = StackObjectOperandMapping.find(LocalObject.first); |
| 436 | assert(StackObjectInfo != StackObjectOperandMapping.end() && |
| 437 | "Invalid stack object index"); |
| 438 | const FrameIndexOperand &StackObject = StackObjectInfo->second; |
| 439 | assert(!StackObject.IsFixed && "Expected a locally mapped stack object"); |
| Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 440 | YMF.StackObjects[StackObject.ID].LocalOffset = LocalObject.second; |
| Alex Lorenz | a56ba6a | 2015-08-17 22:17:42 +0000 | [diff] [blame] | 441 | } |
| Alex Lorenz | a314d81 | 2015-08-18 22:26:26 +0000 | [diff] [blame] | 442 | |
| 443 | // Print the stack object references in the frame information class after |
| 444 | // converting the stack objects. |
| 445 | if (MFI.hasStackProtectorIndex()) { |
| Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 446 | raw_string_ostream StrOS(YMF.FrameInfo.StackProtector.Value); |
| Alex Lorenz | a314d81 | 2015-08-18 22:26:26 +0000 | [diff] [blame] | 447 | MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping) |
| 448 | .printStackObjectReference(MFI.getStackProtectorIndex()); |
| 449 | } |
| Alex Lorenz | df9e3c6 | 2015-08-19 00:13:25 +0000 | [diff] [blame] | 450 | |
| 451 | // Print the debug variable information. |
| Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 452 | for (const MachineFunction::VariableDbgInfo &DebugVar : |
| 453 | MF.getVariableDbgInfo()) { |
| Alex Lorenz | df9e3c6 | 2015-08-19 00:13:25 +0000 | [diff] [blame] | 454 | auto StackObjectInfo = StackObjectOperandMapping.find(DebugVar.Slot); |
| 455 | assert(StackObjectInfo != StackObjectOperandMapping.end() && |
| 456 | "Invalid stack object index"); |
| 457 | const FrameIndexOperand &StackObject = StackObjectInfo->second; |
| Francis Visoiu Mistrih | 57fcd34 | 2018-04-25 18:58:06 +0000 | [diff] [blame] | 458 | if (StackObject.IsFixed) { |
| 459 | auto &Object = YMF.FixedStackObjects[StackObject.ID]; |
| 460 | printStackObjectDbgInfo(DebugVar, Object, MST); |
| 461 | } else { |
| 462 | auto &Object = YMF.StackObjects[StackObject.ID]; |
| 463 | printStackObjectDbgInfo(DebugVar, Object, MST); |
| Alex Lorenz | df9e3c6 | 2015-08-19 00:13:25 +0000 | [diff] [blame] | 464 | } |
| 465 | } |
| Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 466 | } |
| 467 | |
| Djordje Todorovic | a7cde10 | 2019-06-27 07:48:06 +0000 | [diff] [blame] | 468 | void MIRPrinter::convertCallSiteObjects(yaml::MachineFunction &YMF, |
| 469 | const MachineFunction &MF, |
| 470 | ModuleSlotTracker &MST) { |
| 471 | const auto *TRI = MF.getSubtarget().getRegisterInfo(); |
| 472 | for (auto CSInfo : MF.getCallSitesInfo()) { |
| 473 | yaml::CallSiteInfo YmlCS; |
| 474 | yaml::CallSiteInfo::MachineInstrLoc CallLocation; |
| 475 | |
| 476 | // Prepare instruction position. |
| David Stenberg | 88df53e | 2019-08-19 12:41:22 +0000 | [diff] [blame] | 477 | MachineBasicBlock::const_instr_iterator CallI = CSInfo.first->getIterator(); |
| Djordje Todorovic | a7cde10 | 2019-06-27 07:48:06 +0000 | [diff] [blame] | 478 | CallLocation.BlockNum = CallI->getParent()->getNumber(); |
| 479 | // Get call instruction offset from the beginning of block. |
| David Stenberg | 88df53e | 2019-08-19 12:41:22 +0000 | [diff] [blame] | 480 | CallLocation.Offset = |
| 481 | std::distance(CallI->getParent()->instr_begin(), CallI); |
| Djordje Todorovic | a7cde10 | 2019-06-27 07:48:06 +0000 | [diff] [blame] | 482 | YmlCS.CallLocation = CallLocation; |
| 483 | // Construct call arguments and theirs forwarding register info. |
| 484 | for (auto ArgReg : CSInfo.second) { |
| 485 | yaml::CallSiteInfo::ArgRegPair YmlArgReg; |
| 486 | YmlArgReg.ArgNo = ArgReg.ArgNo; |
| 487 | printRegMIR(ArgReg.Reg, YmlArgReg.Reg, TRI); |
| 488 | YmlCS.ArgForwardingRegs.emplace_back(YmlArgReg); |
| 489 | } |
| 490 | YMF.CallSitesInfo.push_back(YmlCS); |
| 491 | } |
| 492 | |
| 493 | // Sort call info by position of call instructions. |
| 494 | llvm::sort(YMF.CallSitesInfo.begin(), YMF.CallSitesInfo.end(), |
| 495 | [](yaml::CallSiteInfo A, yaml::CallSiteInfo B) { |
| 496 | if (A.CallLocation.BlockNum == B.CallLocation.BlockNum) |
| 497 | return A.CallLocation.Offset < B.CallLocation.Offset; |
| 498 | return A.CallLocation.BlockNum < B.CallLocation.BlockNum; |
| 499 | }); |
| 500 | } |
| 501 | |
| Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 502 | void MIRPrinter::convert(yaml::MachineFunction &MF, |
| 503 | const MachineConstantPool &ConstantPool) { |
| 504 | unsigned ID = 0; |
| 505 | for (const MachineConstantPoolEntry &Constant : ConstantPool.getConstants()) { |
| Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 506 | std::string Str; |
| 507 | raw_string_ostream StrOS(Str); |
| Diana Picus | d5a00b0 | 2017-08-02 11:09:30 +0000 | [diff] [blame] | 508 | if (Constant.isMachineConstantPoolEntry()) { |
| 509 | Constant.Val.MachineCPVal->print(StrOS); |
| 510 | } else { |
| 511 | Constant.Val.ConstVal->printAsOperand(StrOS); |
| 512 | } |
| 513 | |
| 514 | yaml::MachineConstantPoolValue YamlConstant; |
| Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 515 | YamlConstant.ID = ID++; |
| 516 | YamlConstant.Value = StrOS.str(); |
| 517 | YamlConstant.Alignment = Constant.getAlignment(); |
| Diana Picus | d5a00b0 | 2017-08-02 11:09:30 +0000 | [diff] [blame] | 518 | YamlConstant.IsTargetSpecific = Constant.isMachineConstantPoolEntry(); |
| 519 | |
| Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 520 | MF.Constants.push_back(YamlConstant); |
| 521 | } |
| 522 | } |
| 523 | |
| Alex Lorenz | 900b5cb | 2015-07-07 23:27:53 +0000 | [diff] [blame] | 524 | void MIRPrinter::convert(ModuleSlotTracker &MST, |
| Alex Lorenz | 6799e9b | 2015-07-15 23:31:07 +0000 | [diff] [blame] | 525 | yaml::MachineJumpTable &YamlJTI, |
| 526 | const MachineJumpTableInfo &JTI) { |
| 527 | YamlJTI.Kind = JTI.getEntryKind(); |
| 528 | unsigned ID = 0; |
| 529 | for (const auto &Table : JTI.getJumpTables()) { |
| 530 | std::string Str; |
| 531 | yaml::MachineJumpTable::Entry Entry; |
| 532 | Entry.ID = ID++; |
| 533 | for (const auto *MBB : Table.MBBs) { |
| 534 | raw_string_ostream StrOS(Str); |
| Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 535 | StrOS << printMBBReference(*MBB); |
| Alex Lorenz | 6799e9b | 2015-07-15 23:31:07 +0000 | [diff] [blame] | 536 | Entry.Blocks.push_back(StrOS.str()); |
| 537 | Str.clear(); |
| 538 | } |
| 539 | YamlJTI.Entries.push_back(Entry); |
| 540 | } |
| 541 | } |
| 542 | |
| Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 543 | void MIRPrinter::initRegisterMaskIds(const MachineFunction &MF) { |
| 544 | const auto *TRI = MF.getSubtarget().getRegisterInfo(); |
| 545 | unsigned I = 0; |
| 546 | for (const uint32_t *Mask : TRI->getRegMasks()) |
| 547 | RegisterMaskIds.insert(std::make_pair(Mask, I++)); |
| 548 | } |
| 549 | |
| Matthias Braun | 8940114 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 550 | void llvm::guessSuccessors(const MachineBasicBlock &MBB, |
| 551 | SmallVectorImpl<MachineBasicBlock*> &Result, |
| 552 | bool &IsFallthrough) { |
| 553 | SmallPtrSet<MachineBasicBlock*,8> Seen; |
| 554 | |
| 555 | for (const MachineInstr &MI : MBB) { |
| 556 | if (MI.isPHI()) |
| 557 | continue; |
| 558 | for (const MachineOperand &MO : MI.operands()) { |
| 559 | if (!MO.isMBB()) |
| 560 | continue; |
| 561 | MachineBasicBlock *Succ = MO.getMBB(); |
| 562 | auto RP = Seen.insert(Succ); |
| 563 | if (RP.second) |
| 564 | Result.push_back(Succ); |
| 565 | } |
| 566 | } |
| 567 | MachineBasicBlock::const_iterator I = MBB.getLastNonDebugInstr(); |
| 568 | IsFallthrough = I == MBB.end() || !I->isBarrier(); |
| 569 | } |
| 570 | |
| 571 | bool |
| 572 | MIPrinter::canPredictBranchProbabilities(const MachineBasicBlock &MBB) const { |
| 573 | if (MBB.succ_size() <= 1) |
| 574 | return true; |
| 575 | if (!MBB.hasSuccessorProbabilities()) |
| 576 | return true; |
| 577 | |
| 578 | SmallVector<BranchProbability,8> Normalized(MBB.Probs.begin(), |
| 579 | MBB.Probs.end()); |
| 580 | BranchProbability::normalizeProbabilities(Normalized.begin(), |
| 581 | Normalized.end()); |
| 582 | SmallVector<BranchProbability,8> Equal(Normalized.size()); |
| 583 | BranchProbability::normalizeProbabilities(Equal.begin(), Equal.end()); |
| 584 | |
| 585 | return std::equal(Normalized.begin(), Normalized.end(), Equal.begin()); |
| 586 | } |
| 587 | |
| 588 | bool MIPrinter::canPredictSuccessors(const MachineBasicBlock &MBB) const { |
| 589 | SmallVector<MachineBasicBlock*,8> GuessedSuccs; |
| 590 | bool GuessedFallthrough; |
| 591 | guessSuccessors(MBB, GuessedSuccs, GuessedFallthrough); |
| 592 | if (GuessedFallthrough) { |
| 593 | const MachineFunction &MF = *MBB.getParent(); |
| 594 | MachineFunction::const_iterator NextI = std::next(MBB.getIterator()); |
| 595 | if (NextI != MF.end()) { |
| 596 | MachineBasicBlock *Next = const_cast<MachineBasicBlock*>(&*NextI); |
| 597 | if (!is_contained(GuessedSuccs, Next)) |
| 598 | GuessedSuccs.push_back(Next); |
| 599 | } |
| 600 | } |
| 601 | if (GuessedSuccs.size() != MBB.succ_size()) |
| 602 | return false; |
| 603 | return std::equal(MBB.succ_begin(), MBB.succ_end(), GuessedSuccs.begin()); |
| 604 | } |
| 605 | |
| Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 606 | void MIPrinter::print(const MachineBasicBlock &MBB) { |
| 607 | assert(MBB.getNumber() >= 0 && "Invalid MBB number"); |
| 608 | OS << "bb." << MBB.getNumber(); |
| 609 | bool HasAttributes = false; |
| 610 | if (const auto *BB = MBB.getBasicBlock()) { |
| 611 | if (BB->hasName()) { |
| 612 | OS << "." << BB->getName(); |
| 613 | } else { |
| 614 | HasAttributes = true; |
| 615 | OS << " ("; |
| 616 | int Slot = MST.getLocalSlot(BB); |
| 617 | if (Slot == -1) |
| 618 | OS << "<ir-block badref>"; |
| 619 | else |
| 620 | OS << (Twine("%ir-block.") + Twine(Slot)).str(); |
| 621 | } |
| 622 | } |
| 623 | if (MBB.hasAddressTaken()) { |
| 624 | OS << (HasAttributes ? ", " : " ("); |
| 625 | OS << "address-taken"; |
| 626 | HasAttributes = true; |
| 627 | } |
| Reid Kleckner | 0e28823 | 2015-08-27 23:27:47 +0000 | [diff] [blame] | 628 | if (MBB.isEHPad()) { |
| Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 629 | OS << (HasAttributes ? ", " : " ("); |
| 630 | OS << "landing-pad"; |
| 631 | HasAttributes = true; |
| 632 | } |
| Guillaume Chatelet | 805c157 | 2020-01-21 15:00:04 +0100 | [diff] [blame] | 633 | if (MBB.getAlignment() != Align(1)) { |
| Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 634 | OS << (HasAttributes ? ", " : " ("); |
| Guillaume Chatelet | d4c4671 | 2019-09-18 15:49:49 +0000 | [diff] [blame] | 635 | OS << "align " << MBB.getAlignment().value(); |
| Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 636 | HasAttributes = true; |
| 637 | } |
| 638 | if (HasAttributes) |
| 639 | OS << ")"; |
| 640 | OS << ":\n"; |
| 641 | |
| 642 | bool HasLineAttributes = false; |
| 643 | // Print the successors |
| Matthias Braun | 8940114 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 644 | bool canPredictProbs = canPredictBranchProbabilities(MBB); |
| Quentin Colombet | d652aeb | 2017-09-19 23:34:12 +0000 | [diff] [blame] | 645 | // Even if the list of successors is empty, if we cannot guess it, |
| 646 | // we need to print it to tell the parser that the list is empty. |
| 647 | // This is needed, because MI model unreachable as empty blocks |
| 648 | // with an empty successor list. If the parser would see that |
| 649 | // without the successor list, it would guess the code would |
| 650 | // fallthrough. |
| 651 | if ((!MBB.succ_empty() && !SimplifyMIR) || !canPredictProbs || |
| 652 | !canPredictSuccessors(MBB)) { |
| Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 653 | OS.indent(2) << "successors: "; |
| 654 | for (auto I = MBB.succ_begin(), E = MBB.succ_end(); I != E; ++I) { |
| 655 | if (I != MBB.succ_begin()) |
| 656 | OS << ", "; |
| Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 657 | OS << printMBBReference(**I); |
| Matthias Braun | 8940114 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 658 | if (!SimplifyMIR || !canPredictProbs) |
| Geoff Berry | b51774a | 2016-11-18 19:37:24 +0000 | [diff] [blame] | 659 | OS << '(' |
| 660 | << format("0x%08" PRIx32, MBB.getSuccProbability(I).getNumerator()) |
| 661 | << ')'; |
| Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 662 | } |
| 663 | OS << "\n"; |
| 664 | HasLineAttributes = true; |
| 665 | } |
| 666 | |
| 667 | // Print the live in registers. |
| Matthias Braun | 1172332 | 2017-01-05 20:01:19 +0000 | [diff] [blame] | 668 | const MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo(); |
| 669 | if (MRI.tracksLiveness() && !MBB.livein_empty()) { |
| 670 | const TargetRegisterInfo &TRI = *MRI.getTargetRegisterInfo(); |
| Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 671 | OS.indent(2) << "liveins: "; |
| Matthias Braun | b2b7ef1 | 2015-08-24 22:59:52 +0000 | [diff] [blame] | 672 | bool First = true; |
| Matthias Braun | d9da162 | 2015-09-09 18:08:03 +0000 | [diff] [blame] | 673 | for (const auto &LI : MBB.liveins()) { |
| Matthias Braun | b2b7ef1 | 2015-08-24 22:59:52 +0000 | [diff] [blame] | 674 | if (!First) |
| Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 675 | OS << ", "; |
| Matthias Braun | b2b7ef1 | 2015-08-24 22:59:52 +0000 | [diff] [blame] | 676 | First = false; |
| Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 677 | OS << printReg(LI.PhysReg, &TRI); |
| Krzysztof Parzyszek | 91b5cf8 | 2016-12-15 14:36:06 +0000 | [diff] [blame] | 678 | if (!LI.LaneMask.all()) |
| Krzysztof Parzyszek | d62669d | 2016-10-12 21:06:45 +0000 | [diff] [blame] | 679 | OS << ":0x" << PrintLaneMask(LI.LaneMask); |
| Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 680 | } |
| 681 | OS << "\n"; |
| 682 | HasLineAttributes = true; |
| 683 | } |
| 684 | |
| 685 | if (HasLineAttributes) |
| 686 | OS << "\n"; |
| Alex Lorenz | f9a2b12 | 2015-08-14 18:57:24 +0000 | [diff] [blame] | 687 | bool IsInBundle = false; |
| 688 | for (auto I = MBB.instr_begin(), E = MBB.instr_end(); I != E; ++I) { |
| 689 | const MachineInstr &MI = *I; |
| 690 | if (IsInBundle && !MI.isInsideBundle()) { |
| 691 | OS.indent(2) << "}\n"; |
| 692 | IsInBundle = false; |
| 693 | } |
| 694 | OS.indent(IsInBundle ? 4 : 2); |
| Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 695 | print(MI); |
| Alex Lorenz | f9a2b12 | 2015-08-14 18:57:24 +0000 | [diff] [blame] | 696 | if (!IsInBundle && MI.getFlag(MachineInstr::BundledSucc)) { |
| 697 | OS << " {"; |
| 698 | IsInBundle = true; |
| 699 | } |
| Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 700 | OS << "\n"; |
| 701 | } |
| Alex Lorenz | f9a2b12 | 2015-08-14 18:57:24 +0000 | [diff] [blame] | 702 | if (IsInBundle) |
| 703 | OS.indent(2) << "}\n"; |
| Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 704 | } |
| 705 | |
| Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 706 | void MIPrinter::print(const MachineInstr &MI) { |
| Justin Bogner | fdf9bf4 | 2017-10-10 23:50:49 +0000 | [diff] [blame] | 707 | const auto *MF = MI.getMF(); |
| Quentin Colombet | 4e14a49 | 2016-03-07 21:57:52 +0000 | [diff] [blame] | 708 | const auto &MRI = MF->getRegInfo(); |
| 709 | const auto &SubTarget = MF->getSubtarget(); |
| Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 710 | const auto *TRI = SubTarget.getRegisterInfo(); |
| 711 | assert(TRI && "Expected target register info"); |
| Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 712 | const auto *TII = SubTarget.getInstrInfo(); |
| 713 | assert(TII && "Expected target instruction info"); |
| Alex Lorenz | f4baeb5 | 2015-07-21 22:28:27 +0000 | [diff] [blame] | 714 | if (MI.isCFIInstruction()) |
| 715 | assert(MI.getNumOperands() == 1 && "Expected 1 operand in CFI instruction"); |
| Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 716 | |
| Tim Northover | d28d3cc | 2016-09-12 11:20:10 +0000 | [diff] [blame] | 717 | SmallBitVector PrintedTypes(8); |
| Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 718 | bool ShouldPrintRegisterTies = MI.hasComplexRegisterTies(); |
| Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 719 | unsigned I = 0, E = MI.getNumOperands(); |
| 720 | for (; I < E && MI.getOperand(I).isReg() && MI.getOperand(I).isDef() && |
| 721 | !MI.getOperand(I).isImplicit(); |
| 722 | ++I) { |
| 723 | if (I) |
| 724 | OS << ", "; |
| Sjoerd Meijer | 7efabe5 | 2020-02-24 14:19:21 +0000 | [diff] [blame] | 725 | print(MI, I, TRI, TII, ShouldPrintRegisterTies, |
| Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 726 | MI.getTypeToPrint(I, PrintedTypes, MRI), |
| 727 | /*PrintDef=*/false); |
| Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 728 | } |
| 729 | |
| 730 | if (I) |
| 731 | OS << " = "; |
| Alex Lorenz | e5a4466 | 2015-07-17 00:24:15 +0000 | [diff] [blame] | 732 | if (MI.getFlag(MachineInstr::FrameSetup)) |
| 733 | OS << "frame-setup "; |
| Francis Visoiu Mistrih | 3abf0573 | 2018-03-13 19:53:16 +0000 | [diff] [blame] | 734 | if (MI.getFlag(MachineInstr::FrameDestroy)) |
| Francis Visoiu Mistrih | dbf2c48 | 2018-01-09 11:33:22 +0000 | [diff] [blame] | 735 | OS << "frame-destroy "; |
| Michael Berg | 7d1b25d | 2018-05-03 00:07:56 +0000 | [diff] [blame] | 736 | if (MI.getFlag(MachineInstr::FmNoNans)) |
| 737 | OS << "nnan "; |
| 738 | if (MI.getFlag(MachineInstr::FmNoInfs)) |
| 739 | OS << "ninf "; |
| 740 | if (MI.getFlag(MachineInstr::FmNsz)) |
| 741 | OS << "nsz "; |
| 742 | if (MI.getFlag(MachineInstr::FmArcp)) |
| 743 | OS << "arcp "; |
| 744 | if (MI.getFlag(MachineInstr::FmContract)) |
| 745 | OS << "contract "; |
| 746 | if (MI.getFlag(MachineInstr::FmAfn)) |
| 747 | OS << "afn "; |
| 748 | if (MI.getFlag(MachineInstr::FmReassoc)) |
| 749 | OS << "reassoc "; |
| Michael Berg | c72a725 | 2018-09-11 21:35:32 +0000 | [diff] [blame] | 750 | if (MI.getFlag(MachineInstr::NoUWrap)) |
| 751 | OS << "nuw "; |
| 752 | if (MI.getFlag(MachineInstr::NoSWrap)) |
| 753 | OS << "nsw "; |
| 754 | if (MI.getFlag(MachineInstr::IsExact)) |
| 755 | OS << "exact "; |
| Ulrich Weigand | f0fd11d | 2020-01-10 15:31:10 +0100 | [diff] [blame] | 756 | if (MI.getFlag(MachineInstr::NoFPExcept)) |
| 757 | OS << "nofpexcept "; |
| Francis Visoiu Mistrih | dbf2c48 | 2018-01-09 11:33:22 +0000 | [diff] [blame] | 758 | |
| Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 759 | OS << TII->getName(MI.getOpcode()); |
| Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 760 | if (I < E) |
| 761 | OS << ' '; |
| 762 | |
| 763 | bool NeedComma = false; |
| 764 | for (; I < E; ++I) { |
| 765 | if (NeedComma) |
| 766 | OS << ", "; |
| Sjoerd Meijer | 7efabe5 | 2020-02-24 14:19:21 +0000 | [diff] [blame] | 767 | print(MI, I, TRI, TII, ShouldPrintRegisterTies, |
| Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 768 | MI.getTypeToPrint(I, PrintedTypes, MRI)); |
| Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 769 | NeedComma = true; |
| 770 | } |
| Alex Lorenz | 46d760d | 2015-07-22 21:15:11 +0000 | [diff] [blame] | 771 | |
| Chandler Carruth | 75ca6be | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 772 | // Print any optional symbols attached to this instruction as-if they were |
| 773 | // operands. |
| 774 | if (MCSymbol *PreInstrSymbol = MI.getPreInstrSymbol()) { |
| 775 | if (NeedComma) |
| 776 | OS << ','; |
| 777 | OS << " pre-instr-symbol "; |
| 778 | MachineOperand::printSymbol(OS, *PreInstrSymbol); |
| 779 | NeedComma = true; |
| 780 | } |
| 781 | if (MCSymbol *PostInstrSymbol = MI.getPostInstrSymbol()) { |
| 782 | if (NeedComma) |
| 783 | OS << ','; |
| 784 | OS << " post-instr-symbol "; |
| 785 | MachineOperand::printSymbol(OS, *PostInstrSymbol); |
| 786 | NeedComma = true; |
| 787 | } |
| Amy Huang | a078c77 | 2019-11-05 10:54:50 -0800 | [diff] [blame] | 788 | if (MDNode *HeapAllocMarker = MI.getHeapAllocMarker()) { |
| 789 | if (NeedComma) |
| 790 | OS << ','; |
| 791 | OS << " heap-alloc-marker "; |
| 792 | HeapAllocMarker->printAsOperand(OS, MST); |
| 793 | NeedComma = true; |
| 794 | } |
| Chandler Carruth | 75ca6be | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 795 | |
| Francis Visoiu Mistrih | 548add9 | 2018-01-19 11:44:42 +0000 | [diff] [blame] | 796 | if (const DebugLoc &DL = MI.getDebugLoc()) { |
| Alex Lorenz | 46d760d | 2015-07-22 21:15:11 +0000 | [diff] [blame] | 797 | if (NeedComma) |
| 798 | OS << ','; |
| 799 | OS << " debug-location "; |
| Francis Visoiu Mistrih | 548add9 | 2018-01-19 11:44:42 +0000 | [diff] [blame] | 800 | DL->printAsOperand(OS, MST); |
| Alex Lorenz | 46d760d | 2015-07-22 21:15:11 +0000 | [diff] [blame] | 801 | } |
| Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 802 | |
| 803 | if (!MI.memoperands_empty()) { |
| 804 | OS << " :: "; |
| Matthias Braun | f1caa28 | 2017-12-15 22:22:58 +0000 | [diff] [blame] | 805 | const LLVMContext &Context = MF->getFunction().getContext(); |
| Francis Visoiu Mistrih | e85b06d | 2018-03-14 21:52:13 +0000 | [diff] [blame] | 806 | const MachineFrameInfo &MFI = MF->getFrameInfo(); |
| Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 807 | bool NeedComma = false; |
| 808 | for (const auto *Op : MI.memoperands()) { |
| 809 | if (NeedComma) |
| 810 | OS << ", "; |
| Peng Guo | cfd8498 | 2020-01-10 11:18:11 +0100 | [diff] [blame] | 811 | Op->print(OS, MST, SSNs, Context, &MFI, TII); |
| Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 812 | NeedComma = true; |
| 813 | } |
| 814 | } |
| Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 815 | } |
| 816 | |
| Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 817 | void MIPrinter::printStackObjectReference(int FrameIndex) { |
| 818 | auto ObjectInfo = StackObjectOperandMapping.find(FrameIndex); |
| 819 | assert(ObjectInfo != StackObjectOperandMapping.end() && |
| 820 | "Invalid frame index"); |
| 821 | const FrameIndexOperand &Operand = ObjectInfo->second; |
| Francis Visoiu Mistrih | 0b5bdce | 2017-12-15 16:33:45 +0000 | [diff] [blame] | 822 | MachineOperand::printStackObjectReference(OS, Operand.ID, Operand.IsFixed, |
| 823 | Operand.Name); |
| Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 824 | } |
| 825 | |
| Sjoerd Meijer | 7efabe5 | 2020-02-24 14:19:21 +0000 | [diff] [blame] | 826 | static std::string formatOperandComment(std::string Comment) { |
| 827 | if (Comment.empty()) |
| 828 | return Comment; |
| 829 | return std::string(" /* " + Comment + " */"); |
| 830 | } |
| 831 | |
| Bjorn Pettersson | a42ed3e | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 832 | void MIPrinter::print(const MachineInstr &MI, unsigned OpIdx, |
| 833 | const TargetRegisterInfo *TRI, |
| Sjoerd Meijer | 7efabe5 | 2020-02-24 14:19:21 +0000 | [diff] [blame] | 834 | const TargetInstrInfo *TII, |
| Bjorn Pettersson | a42ed3e | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 835 | bool ShouldPrintRegisterTies, LLT TypeToPrint, |
| Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 836 | bool PrintDef) { |
| Bjorn Pettersson | a42ed3e | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 837 | const MachineOperand &Op = MI.getOperand(OpIdx); |
| Sjoerd Meijer | 7efabe5 | 2020-02-24 14:19:21 +0000 | [diff] [blame] | 838 | std::string MOComment = TII->createMIROperandComment(MI, Op, OpIdx); |
| 839 | |
| Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 840 | switch (Op.getType()) { |
| Francis Visoiu Mistrih | 440f69c | 2017-12-08 22:53:21 +0000 | [diff] [blame] | 841 | case MachineOperand::MO_Immediate: |
| 842 | if (MI.isOperandSubregIdx(OpIdx)) { |
| Francis Visoiu Mistrih | 5df3bbf | 2017-12-14 10:03:09 +0000 | [diff] [blame] | 843 | MachineOperand::printTargetFlags(OS, Op); |
| Francis Visoiu Mistrih | ecd0b83 | 2018-01-16 10:53:11 +0000 | [diff] [blame] | 844 | MachineOperand::printSubRegIdx(OS, Op.getImm(), TRI); |
| Francis Visoiu Mistrih | 440f69c | 2017-12-08 22:53:21 +0000 | [diff] [blame] | 845 | break; |
| 846 | } |
| 847 | LLVM_FALLTHROUGH; |
| Francis Visoiu Mistrih | 6c4ca71 | 2017-12-08 11:40:06 +0000 | [diff] [blame] | 848 | case MachineOperand::MO_Register: |
| Francis Visoiu Mistrih | f4bd295 | 2017-12-08 11:48:02 +0000 | [diff] [blame] | 849 | case MachineOperand::MO_CImmediate: |
| Francis Visoiu Mistrih | 3b265c8 | 2017-12-19 21:47:00 +0000 | [diff] [blame] | 850 | case MachineOperand::MO_FPImmediate: |
| Francis Visoiu Mistrih | 26ae8a6 | 2017-12-13 10:30:45 +0000 | [diff] [blame] | 851 | case MachineOperand::MO_MachineBasicBlock: |
| Francis Visoiu Mistrih | b3a0d51 | 2017-12-13 10:30:51 +0000 | [diff] [blame] | 852 | case MachineOperand::MO_ConstantPoolIndex: |
| Francis Visoiu Mistrih | b41dbbe | 2017-12-13 10:30:59 +0000 | [diff] [blame] | 853 | case MachineOperand::MO_TargetIndex: |
| Francis Visoiu Mistrih | e76c5fc | 2017-12-14 10:02:58 +0000 | [diff] [blame] | 854 | case MachineOperand::MO_JumpTableIndex: |
| Francis Visoiu Mistrih | 5df3bbf | 2017-12-14 10:03:09 +0000 | [diff] [blame] | 855 | case MachineOperand::MO_ExternalSymbol: |
| Francis Visoiu Mistrih | bdaf8bf | 2017-12-14 10:03:14 +0000 | [diff] [blame] | 856 | case MachineOperand::MO_GlobalAddress: |
| Francis Visoiu Mistrih | 2db5938 | 2017-12-14 10:03:18 +0000 | [diff] [blame] | 857 | case MachineOperand::MO_RegisterLiveOut: |
| Francis Visoiu Mistrih | 3c99371 | 2017-12-14 10:03:23 +0000 | [diff] [blame] | 858 | case MachineOperand::MO_Metadata: |
| Francis Visoiu Mistrih | 874ae6f | 2017-12-19 16:51:52 +0000 | [diff] [blame] | 859 | case MachineOperand::MO_MCSymbol: |
| Francis Visoiu Mistrih | bbd610a | 2017-12-19 21:47:05 +0000 | [diff] [blame] | 860 | case MachineOperand::MO_CFIIndex: |
| Francis Visoiu Mistrih | cb2683d | 2017-12-19 21:47:10 +0000 | [diff] [blame] | 861 | case MachineOperand::MO_IntrinsicID: |
| Francis Visoiu Mistrih | f81727d | 2017-12-19 21:47:14 +0000 | [diff] [blame] | 862 | case MachineOperand::MO_Predicate: |
| Matt Arsenault | 5af9cf0 | 2019-08-13 15:34:38 +0000 | [diff] [blame] | 863 | case MachineOperand::MO_BlockAddress: |
| 864 | case MachineOperand::MO_ShuffleMask: { |
| Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 865 | unsigned TiedOperandIdx = 0; |
| Francis Visoiu Mistrih | 440f69c | 2017-12-08 22:53:21 +0000 | [diff] [blame] | 866 | if (ShouldPrintRegisterTies && Op.isReg() && Op.isTied() && !Op.isDef()) |
| Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 867 | TiedOperandIdx = Op.getParent()->findTiedOperandIdx(OpIdx); |
| 868 | const TargetIntrinsicInfo *TII = MI.getMF()->getTarget().getIntrinsicInfo(); |
| Daniel Sanders | de3d0ee | 2020-01-08 20:02:37 -0800 | [diff] [blame] | 869 | Op.print(OS, MST, TypeToPrint, OpIdx, PrintDef, /*IsStandalone=*/false, |
| Francis Visoiu Mistrih | 378b5f3 | 2018-01-18 17:59:06 +0000 | [diff] [blame] | 870 | ShouldPrintRegisterTies, TiedOperandIdx, TRI, TII); |
| Sjoerd Meijer | 7efabe5 | 2020-02-24 14:19:21 +0000 | [diff] [blame] | 871 | OS << formatOperandComment(MOComment); |
| Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 872 | break; |
| Justin Bogner | 6c45283 | 2017-10-24 18:04:54 +0000 | [diff] [blame] | 873 | } |
| Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 874 | case MachineOperand::MO_FrameIndex: |
| 875 | printStackObjectReference(Op.getIndex()); |
| 876 | break; |
| Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 877 | case MachineOperand::MO_RegisterMask: { |
| 878 | auto RegMaskInfo = RegisterMaskIds.find(Op.getRegMask()); |
| 879 | if (RegMaskInfo != RegisterMaskIds.end()) |
| 880 | OS << StringRef(TRI->getRegMaskNames()[RegMaskInfo->second]).lower(); |
| 881 | else |
| Oren Ben Simhon | 0ef61ec | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 882 | printCustomRegMask(Op.getRegMask(), OS, TRI); |
| Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 883 | break; |
| 884 | } |
| Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 885 | } |
| Alex Lorenz | 4f093bf | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 886 | } |
| 887 | |
| Daniel Sanders | de3d0ee | 2020-01-08 20:02:37 -0800 | [diff] [blame] | 888 | void MIRFormatter::printIRValue(raw_ostream &OS, const Value &V, |
| 889 | ModuleSlotTracker &MST) { |
| 890 | if (isa<GlobalValue>(V)) { |
| 891 | V.printAsOperand(OS, /*PrintType=*/false, MST); |
| 892 | return; |
| 893 | } |
| 894 | if (isa<Constant>(V)) { |
| 895 | // Machine memory operands can load/store to/from constant value pointers. |
| 896 | OS << '`'; |
| 897 | V.printAsOperand(OS, /*PrintType=*/true, MST); |
| 898 | OS << '`'; |
| 899 | return; |
| 900 | } |
| 901 | OS << "%ir."; |
| 902 | if (V.hasName()) { |
| 903 | printLLVMNameWithoutPrefix(OS, V.getName()); |
| 904 | return; |
| 905 | } |
| 906 | int Slot = MST.getCurrentFunction() ? MST.getLocalSlot(&V) : -1; |
| 907 | MachineOperand::printIRSlotNumber(OS, Slot); |
| 908 | } |
| 909 | |
| Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 910 | void llvm::printMIR(raw_ostream &OS, const Module &M) { |
| 911 | yaml::Output Out(OS); |
| 912 | Out << const_cast<Module &>(M); |
| 913 | } |
| 914 | |
| 915 | void llvm::printMIR(raw_ostream &OS, const MachineFunction &MF) { |
| 916 | MIRPrinter Printer(OS); |
| 917 | Printer.print(MF); |
| 918 | } |