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" |
Konstantin Zhuravlyov | bb80d3e | 2017-07-11 22:23:00 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/StringExtras.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/StringRef.h" |
| 24 | #include "llvm/ADT/Twine.h" |
Quentin Colombet | fab1cfe | 2016-04-08 16:26:22 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/GlobalISel/RegisterBank.h" |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/MIRYamlMapping.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineBasicBlock.h" |
Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineConstantPool.h" |
Alex Lorenz | 60541c1 | 2015-07-09 19:55:27 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Quentin Colombet | fab1cfe | 2016-04-08 16:26:22 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/MachineFunction.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/MachineInstr.h" |
| 32 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 33 | #include "llvm/CodeGen/MachineMemOperand.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/MachineOperand.h" |
Alex Lorenz | 54565cf | 2015-06-24 19:56:10 +0000 | [diff] [blame] | 35 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 36 | #include "llvm/CodeGen/PseudoSourceValue.h" |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 37 | #include "llvm/CodeGen/TargetInstrInfo.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 38 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
| 39 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
Alex Lorenz | 4f093bf | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 40 | #include "llvm/IR/BasicBlock.h" |
Alex Lorenz | deb5349 | 2015-07-28 17:28:03 +0000 | [diff] [blame] | 41 | #include "llvm/IR/Constants.h" |
Reid Kleckner | 2886580 | 2016-04-14 18:29:59 +0000 | [diff] [blame] | 42 | #include "llvm/IR/DebugInfo.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 43 | #include "llvm/IR/DebugLoc.h" |
| 44 | #include "llvm/IR/Function.h" |
| 45 | #include "llvm/IR/GlobalValue.h" |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 46 | #include "llvm/IR/IRPrintingPasses.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 47 | #include "llvm/IR/InstrTypes.h" |
Quentin Colombet | fab1cfe | 2016-04-08 16:26:22 +0000 | [diff] [blame] | 48 | #include "llvm/IR/Instructions.h" |
Tim Northover | 6b3bd61 | 2016-07-29 20:32:59 +0000 | [diff] [blame] | 49 | #include "llvm/IR/Intrinsics.h" |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 50 | #include "llvm/IR/Module.h" |
Alex Lorenz | 900b5cb | 2015-07-07 23:27:53 +0000 | [diff] [blame] | 51 | #include "llvm/IR/ModuleSlotTracker.h" |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 52 | #include "llvm/IR/Value.h" |
| 53 | #include "llvm/MC/LaneBitmask.h" |
| 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); |
Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 132 | |
| 133 | private: |
| 134 | void initRegisterMaskIds(const MachineFunction &MF); |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 135 | }; |
| 136 | |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 137 | /// This class prints out the machine instructions using the MIR serialization |
| 138 | /// format. |
| 139 | class MIPrinter { |
| 140 | raw_ostream &OS; |
Alex Lorenz | 900b5cb | 2015-07-07 23:27:53 +0000 | [diff] [blame] | 141 | ModuleSlotTracker &MST; |
Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 142 | const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds; |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 143 | const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping; |
Konstantin Zhuravlyov | bb80d3e | 2017-07-11 22:23:00 +0000 | [diff] [blame] | 144 | /// Synchronization scope names registered with LLVMContext. |
| 145 | SmallVector<StringRef, 8> SSNs; |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 146 | |
Matthias Braun | 8940114 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 147 | bool canPredictBranchProbabilities(const MachineBasicBlock &MBB) const; |
| 148 | bool canPredictSuccessors(const MachineBasicBlock &MBB) const; |
| 149 | |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 150 | public: |
Alex Lorenz | 900b5cb | 2015-07-07 23:27:53 +0000 | [diff] [blame] | 151 | MIPrinter(raw_ostream &OS, ModuleSlotTracker &MST, |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 152 | const DenseMap<const uint32_t *, unsigned> &RegisterMaskIds, |
| 153 | const DenseMap<int, FrameIndexOperand> &StackObjectOperandMapping) |
| 154 | : OS(OS), MST(MST), RegisterMaskIds(RegisterMaskIds), |
| 155 | StackObjectOperandMapping(StackObjectOperandMapping) {} |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 156 | |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 157 | void print(const MachineBasicBlock &MBB); |
| 158 | |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 159 | void print(const MachineInstr &MI); |
Alex Lorenz | deb5349 | 2015-07-28 17:28:03 +0000 | [diff] [blame] | 160 | void printIRBlockReference(const BasicBlock &BB); |
Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 161 | void printIRValueReference(const Value &V); |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 162 | void printStackObjectReference(int FrameIndex); |
Bjorn Pettersson | a42ed3e | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 163 | void print(const MachineInstr &MI, unsigned OpIdx, |
| 164 | const TargetRegisterInfo *TRI, bool ShouldPrintRegisterTies, |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 165 | LLT TypeToPrint, bool PrintDef = true); |
Geoff Berry | 6748abe | 2017-07-13 02:28:54 +0000 | [diff] [blame] | 166 | void print(const LLVMContext &Context, const TargetInstrInfo &TII, |
| 167 | const MachineMemOperand &Op); |
Konstantin Zhuravlyov | bb80d3e | 2017-07-11 22:23:00 +0000 | [diff] [blame] | 168 | void printSyncScope(const LLVMContext &Context, SyncScope::ID SSID); |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 169 | }; |
| 170 | |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 171 | } // end namespace llvm |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 172 | |
| 173 | namespace llvm { |
| 174 | namespace yaml { |
| 175 | |
| 176 | /// This struct serializes the LLVM IR module. |
| 177 | template <> struct BlockScalarTraits<Module> { |
| 178 | static void output(const Module &Mod, void *Ctxt, raw_ostream &OS) { |
| 179 | Mod.print(OS, nullptr); |
| 180 | } |
Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 181 | |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 182 | static StringRef input(StringRef Str, void *Ctxt, Module &Mod) { |
| 183 | llvm_unreachable("LLVM Module is supposed to be parsed separately"); |
| 184 | return ""; |
| 185 | } |
| 186 | }; |
| 187 | |
| 188 | } // end namespace yaml |
| 189 | } // end namespace llvm |
| 190 | |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 191 | static void printRegMIR(unsigned Reg, yaml::StringValue &Dest, |
| 192 | const TargetRegisterInfo *TRI) { |
Alex Lorenz | ab4cbcf | 2015-07-24 20:35:40 +0000 | [diff] [blame] | 193 | raw_string_ostream OS(Dest.Value); |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 194 | OS << printReg(Reg, TRI); |
Alex Lorenz | ab4cbcf | 2015-07-24 20:35:40 +0000 | [diff] [blame] | 195 | } |
| 196 | |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 197 | void MIRPrinter::print(const MachineFunction &MF) { |
Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 198 | initRegisterMaskIds(MF); |
| 199 | |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 200 | yaml::MachineFunction YamlMF; |
| 201 | YamlMF.Name = MF.getName(); |
Alex Lorenz | 5b5f975 | 2015-06-16 00:10:47 +0000 | [diff] [blame] | 202 | YamlMF.Alignment = MF.getAlignment(); |
| 203 | YamlMF.ExposesReturnsTwice = MF.exposesReturnsTwice(); |
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); |
Ahmed Bougacha | 0d7b0cb | 2016-08-02 15:10:25 +0000 | [diff] [blame] | 211 | |
Alex Lorenz | 28148ba | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 212 | convert(YamlMF, MF.getRegInfo(), MF.getSubtarget().getRegisterInfo()); |
Matthias Braun | f1caa28 | 2017-12-15 22:22:58 +0000 | [diff] [blame] | 213 | ModuleSlotTracker MST(MF.getFunction().getParent()); |
| 214 | MST.incorporateFunction(MF.getFunction()); |
Matthias Braun | 941a705 | 2016-07-28 18:40:00 +0000 | [diff] [blame] | 215 | convert(MST, YamlMF.FrameInfo, MF.getFrameInfo()); |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 216 | convertStackObjects(YamlMF, MF, MST); |
Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 217 | if (const auto *ConstantPool = MF.getConstantPool()) |
| 218 | convert(YamlMF, *ConstantPool); |
Alex Lorenz | 6799e9b | 2015-07-15 23:31:07 +0000 | [diff] [blame] | 219 | if (const auto *JumpTableInfo = MF.getJumpTableInfo()) |
| 220 | convert(MST, YamlMF.JumpTableInfo, *JumpTableInfo); |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 221 | raw_string_ostream StrOS(YamlMF.Body.Value.Value); |
| 222 | bool IsNewlineNeeded = false; |
Alex Lorenz | 4f093bf | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 223 | for (const auto &MBB : MF) { |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 224 | if (IsNewlineNeeded) |
| 225 | StrOS << "\n"; |
| 226 | MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping) |
| 227 | .print(MBB); |
| 228 | IsNewlineNeeded = true; |
Alex Lorenz | 4f093bf | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 229 | } |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 230 | StrOS.flush(); |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 231 | yaml::Output Out(OS); |
Vivek Pandya | 56d87ef | 2017-06-06 08:16:19 +0000 | [diff] [blame] | 232 | if (!SimplifyMIR) |
| 233 | Out.setWriteDefaultValues(true); |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 234 | Out << YamlMF; |
| 235 | } |
| 236 | |
Oren Ben Simhon | 0ef61ec | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 237 | static void printCustomRegMask(const uint32_t *RegMask, raw_ostream &OS, |
| 238 | const TargetRegisterInfo *TRI) { |
| 239 | assert(RegMask && "Can't print an empty register mask"); |
| 240 | OS << StringRef("CustomRegMask("); |
| 241 | |
| 242 | bool IsRegInRegMaskFound = false; |
| 243 | for (int I = 0, E = TRI->getNumRegs(); I < E; I++) { |
| 244 | // Check whether the register is asserted in regmask. |
| 245 | if (RegMask[I / 32] & (1u << (I % 32))) { |
| 246 | if (IsRegInRegMaskFound) |
| 247 | OS << ','; |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 248 | OS << printReg(I, TRI); |
Oren Ben Simhon | 0ef61ec | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 249 | IsRegInRegMaskFound = true; |
| 250 | } |
| 251 | } |
| 252 | |
| 253 | OS << ')'; |
| 254 | } |
| 255 | |
Justin Bogner | 6c45283 | 2017-10-24 18:04:54 +0000 | [diff] [blame] | 256 | static void printRegClassOrBank(unsigned Reg, yaml::StringValue &Dest, |
| 257 | const MachineRegisterInfo &RegInfo, |
| 258 | const TargetRegisterInfo *TRI) { |
| 259 | raw_string_ostream OS(Dest.Value); |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 260 | OS << printRegClassOrBank(Reg, RegInfo, TRI); |
Justin Bogner | 6c45283 | 2017-10-24 18:04:54 +0000 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | |
Alex Lorenz | 54565cf | 2015-06-24 19:56:10 +0000 | [diff] [blame] | 264 | void MIRPrinter::convert(yaml::MachineFunction &MF, |
Alex Lorenz | 28148ba | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 265 | const MachineRegisterInfo &RegInfo, |
| 266 | const TargetRegisterInfo *TRI) { |
Alex Lorenz | 54565cf | 2015-06-24 19:56:10 +0000 | [diff] [blame] | 267 | MF.TracksRegLiveness = RegInfo.tracksLiveness(); |
Alex Lorenz | 28148ba | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 268 | |
| 269 | // Print the virtual register definitions. |
| 270 | for (unsigned I = 0, E = RegInfo.getNumVirtRegs(); I < E; ++I) { |
| 271 | unsigned Reg = TargetRegisterInfo::index2VirtReg(I); |
| 272 | yaml::VirtualRegisterDefinition VReg; |
| 273 | VReg.ID = I; |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 274 | ::printRegClassOrBank(Reg, VReg.Class, RegInfo, TRI); |
Alex Lorenz | ab4cbcf | 2015-07-24 20:35:40 +0000 | [diff] [blame] | 275 | unsigned PreferredReg = RegInfo.getSimpleHint(Reg); |
| 276 | if (PreferredReg) |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 277 | printRegMIR(PreferredReg, VReg.PreferredRegister, TRI); |
Alex Lorenz | 28148ba | 2015-07-09 22:23:13 +0000 | [diff] [blame] | 278 | MF.VirtualRegisters.push_back(VReg); |
| 279 | } |
Alex Lorenz | 12045a4 | 2015-07-27 17:42:45 +0000 | [diff] [blame] | 280 | |
| 281 | // Print the live ins. |
Krzysztof Parzyszek | 72518ea | 2017-10-16 19:08:41 +0000 | [diff] [blame] | 282 | for (std::pair<unsigned, unsigned> LI : RegInfo.liveins()) { |
Alex Lorenz | 12045a4 | 2015-07-27 17:42:45 +0000 | [diff] [blame] | 283 | yaml::MachineFunctionLiveIn LiveIn; |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 284 | printRegMIR(LI.first, LiveIn.Register, TRI); |
Krzysztof Parzyszek | 72518ea | 2017-10-16 19:08:41 +0000 | [diff] [blame] | 285 | if (LI.second) |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 286 | printRegMIR(LI.second, LiveIn.VirtualRegister, TRI); |
Alex Lorenz | 12045a4 | 2015-07-27 17:42:45 +0000 | [diff] [blame] | 287 | MF.LiveIns.push_back(LiveIn); |
| 288 | } |
Oren Ben Simhon | 0ef61ec | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 289 | |
| 290 | // Prints the callee saved registers. |
| 291 | if (RegInfo.isUpdatedCSRsInitialized()) { |
| 292 | const MCPhysReg *CalleeSavedRegs = RegInfo.getCalleeSavedRegs(); |
| 293 | std::vector<yaml::FlowStringValue> CalleeSavedRegisters; |
| 294 | for (const MCPhysReg *I = CalleeSavedRegs; *I; ++I) { |
Alex Lorenz | c483808 | 2015-08-11 00:32:49 +0000 | [diff] [blame] | 295 | yaml::FlowStringValue Reg; |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 296 | printRegMIR(*I, Reg, TRI); |
Alex Lorenz | c483808 | 2015-08-11 00:32:49 +0000 | [diff] [blame] | 297 | CalleeSavedRegisters.push_back(Reg); |
| 298 | } |
Oren Ben Simhon | 0ef61ec | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 299 | MF.CalleeSavedRegisters = CalleeSavedRegisters; |
Alex Lorenz | c483808 | 2015-08-11 00:32:49 +0000 | [diff] [blame] | 300 | } |
Alex Lorenz | 54565cf | 2015-06-24 19:56:10 +0000 | [diff] [blame] | 301 | } |
| 302 | |
Alex Lorenz | a6f9a37 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 303 | void MIRPrinter::convert(ModuleSlotTracker &MST, |
| 304 | yaml::MachineFrameInfo &YamlMFI, |
Alex Lorenz | 60541c1 | 2015-07-09 19:55:27 +0000 | [diff] [blame] | 305 | const MachineFrameInfo &MFI) { |
| 306 | YamlMFI.IsFrameAddressTaken = MFI.isFrameAddressTaken(); |
| 307 | YamlMFI.IsReturnAddressTaken = MFI.isReturnAddressTaken(); |
| 308 | YamlMFI.HasStackMap = MFI.hasStackMap(); |
| 309 | YamlMFI.HasPatchPoint = MFI.hasPatchPoint(); |
| 310 | YamlMFI.StackSize = MFI.getStackSize(); |
| 311 | YamlMFI.OffsetAdjustment = MFI.getOffsetAdjustment(); |
| 312 | YamlMFI.MaxAlignment = MFI.getMaxAlignment(); |
| 313 | YamlMFI.AdjustsStack = MFI.adjustsStack(); |
| 314 | YamlMFI.HasCalls = MFI.hasCalls(); |
Matthias Braun | ab9438c | 2017-05-01 22:32:25 +0000 | [diff] [blame] | 315 | YamlMFI.MaxCallFrameSize = MFI.isMaxCallFrameSizeComputed() |
| 316 | ? MFI.getMaxCallFrameSize() : ~0u; |
Alex Lorenz | 60541c1 | 2015-07-09 19:55:27 +0000 | [diff] [blame] | 317 | YamlMFI.HasOpaqueSPAdjustment = MFI.hasOpaqueSPAdjustment(); |
| 318 | YamlMFI.HasVAStart = MFI.hasVAStart(); |
| 319 | YamlMFI.HasMustTailInVarArgFunc = MFI.hasMustTailInVarArgFunc(); |
Alex Lorenz | a6f9a37 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 320 | if (MFI.getSavePoint()) { |
| 321 | raw_string_ostream StrOS(YamlMFI.SavePoint.Value); |
Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 322 | StrOS << printMBBReference(*MFI.getSavePoint()); |
Alex Lorenz | a6f9a37 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 323 | } |
| 324 | if (MFI.getRestorePoint()) { |
| 325 | raw_string_ostream StrOS(YamlMFI.RestorePoint.Value); |
Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 326 | StrOS << printMBBReference(*MFI.getRestorePoint()); |
Alex Lorenz | a6f9a37 | 2015-07-29 21:09:09 +0000 | [diff] [blame] | 327 | } |
Alex Lorenz | 60541c1 | 2015-07-09 19:55:27 +0000 | [diff] [blame] | 328 | } |
| 329 | |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 330 | void MIRPrinter::convertStackObjects(yaml::MachineFunction &YMF, |
| 331 | const MachineFunction &MF, |
| 332 | ModuleSlotTracker &MST) { |
| 333 | const MachineFrameInfo &MFI = MF.getFrameInfo(); |
| 334 | const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo(); |
Alex Lorenz | de491f0 | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 335 | // Process fixed stack objects. |
Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 336 | unsigned ID = 0; |
Alex Lorenz | de491f0 | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 337 | for (int I = MFI.getObjectIndexBegin(); I < 0; ++I) { |
| 338 | if (MFI.isDeadObjectIndex(I)) |
| 339 | continue; |
| 340 | |
| 341 | yaml::FixedMachineStackObject YamlObject; |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 342 | YamlObject.ID = ID; |
Alex Lorenz | de491f0 | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 343 | YamlObject.Type = MFI.isSpillSlotObjectIndex(I) |
| 344 | ? yaml::FixedMachineStackObject::SpillSlot |
| 345 | : yaml::FixedMachineStackObject::DefaultType; |
| 346 | YamlObject.Offset = MFI.getObjectOffset(I); |
| 347 | YamlObject.Size = MFI.getObjectSize(I); |
| 348 | YamlObject.Alignment = MFI.getObjectAlignment(I); |
Matt Arsenault | db78273 | 2017-07-20 21:03:45 +0000 | [diff] [blame] | 349 | YamlObject.StackID = MFI.getStackID(I); |
Alex Lorenz | de491f0 | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 350 | YamlObject.IsImmutable = MFI.isImmutableObjectIndex(I); |
| 351 | YamlObject.IsAliased = MFI.isAliasedObjectIndex(I); |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 352 | YMF.FixedStackObjects.push_back(YamlObject); |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 353 | StackObjectOperandMapping.insert( |
| 354 | std::make_pair(I, FrameIndexOperand::createFixed(ID++))); |
Alex Lorenz | de491f0 | 2015-07-13 18:07:26 +0000 | [diff] [blame] | 355 | } |
| 356 | |
| 357 | // Process ordinary stack objects. |
| 358 | ID = 0; |
Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 359 | for (int I = 0, E = MFI.getObjectIndexEnd(); I < E; ++I) { |
| 360 | if (MFI.isDeadObjectIndex(I)) |
| 361 | continue; |
| 362 | |
| 363 | yaml::MachineStackObject YamlObject; |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 364 | YamlObject.ID = ID; |
Alex Lorenz | 37643a0 | 2015-07-15 22:14:49 +0000 | [diff] [blame] | 365 | if (const auto *Alloca = MFI.getObjectAllocation(I)) |
| 366 | YamlObject.Name.Value = |
| 367 | Alloca->hasName() ? Alloca->getName() : "<unnamed alloca>"; |
Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 368 | YamlObject.Type = MFI.isSpillSlotObjectIndex(I) |
| 369 | ? yaml::MachineStackObject::SpillSlot |
Alex Lorenz | 418f3ec | 2015-07-14 00:26:26 +0000 | [diff] [blame] | 370 | : MFI.isVariableSizedObjectIndex(I) |
| 371 | ? yaml::MachineStackObject::VariableSized |
| 372 | : yaml::MachineStackObject::DefaultType; |
Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 373 | YamlObject.Offset = MFI.getObjectOffset(I); |
| 374 | YamlObject.Size = MFI.getObjectSize(I); |
| 375 | YamlObject.Alignment = MFI.getObjectAlignment(I); |
Matt Arsenault | db78273 | 2017-07-20 21:03:45 +0000 | [diff] [blame] | 376 | YamlObject.StackID = MFI.getStackID(I); |
Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 377 | |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 378 | YMF.StackObjects.push_back(YamlObject); |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 379 | StackObjectOperandMapping.insert(std::make_pair( |
| 380 | I, FrameIndexOperand::create(YamlObject.Name.Value, ID++))); |
Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 381 | } |
Alex Lorenz | 1bb48de | 2015-07-24 22:22:50 +0000 | [diff] [blame] | 382 | |
| 383 | for (const auto &CSInfo : MFI.getCalleeSavedInfo()) { |
| 384 | yaml::StringValue Reg; |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 385 | printRegMIR(CSInfo.getReg(), Reg, TRI); |
Alex Lorenz | 1bb48de | 2015-07-24 22:22:50 +0000 | [diff] [blame] | 386 | auto StackObjectInfo = StackObjectOperandMapping.find(CSInfo.getFrameIdx()); |
| 387 | assert(StackObjectInfo != StackObjectOperandMapping.end() && |
| 388 | "Invalid stack object index"); |
| 389 | const FrameIndexOperand &StackObject = StackObjectInfo->second; |
Matthias Braun | 5c3e8a4 | 2017-09-28 18:52:14 +0000 | [diff] [blame] | 390 | if (StackObject.IsFixed) { |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 391 | YMF.FixedStackObjects[StackObject.ID].CalleeSavedRegister = Reg; |
Matthias Braun | 5c3e8a4 | 2017-09-28 18:52:14 +0000 | [diff] [blame] | 392 | YMF.FixedStackObjects[StackObject.ID].CalleeSavedRestored = |
| 393 | CSInfo.isRestored(); |
| 394 | } else { |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 395 | YMF.StackObjects[StackObject.ID].CalleeSavedRegister = Reg; |
Matthias Braun | 5c3e8a4 | 2017-09-28 18:52:14 +0000 | [diff] [blame] | 396 | YMF.StackObjects[StackObject.ID].CalleeSavedRestored = |
| 397 | CSInfo.isRestored(); |
| 398 | } |
Alex Lorenz | 1bb48de | 2015-07-24 22:22:50 +0000 | [diff] [blame] | 399 | } |
Alex Lorenz | a56ba6a | 2015-08-17 22:17:42 +0000 | [diff] [blame] | 400 | for (unsigned I = 0, E = MFI.getLocalFrameObjectCount(); I < E; ++I) { |
| 401 | auto LocalObject = MFI.getLocalFrameObjectMap(I); |
| 402 | auto StackObjectInfo = StackObjectOperandMapping.find(LocalObject.first); |
| 403 | assert(StackObjectInfo != StackObjectOperandMapping.end() && |
| 404 | "Invalid stack object index"); |
| 405 | const FrameIndexOperand &StackObject = StackObjectInfo->second; |
| 406 | assert(!StackObject.IsFixed && "Expected a locally mapped stack object"); |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 407 | YMF.StackObjects[StackObject.ID].LocalOffset = LocalObject.second; |
Alex Lorenz | a56ba6a | 2015-08-17 22:17:42 +0000 | [diff] [blame] | 408 | } |
Alex Lorenz | a314d81 | 2015-08-18 22:26:26 +0000 | [diff] [blame] | 409 | |
| 410 | // Print the stack object references in the frame information class after |
| 411 | // converting the stack objects. |
| 412 | if (MFI.hasStackProtectorIndex()) { |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 413 | raw_string_ostream StrOS(YMF.FrameInfo.StackProtector.Value); |
Alex Lorenz | a314d81 | 2015-08-18 22:26:26 +0000 | [diff] [blame] | 414 | MIPrinter(StrOS, MST, RegisterMaskIds, StackObjectOperandMapping) |
| 415 | .printStackObjectReference(MFI.getStackProtectorIndex()); |
| 416 | } |
Alex Lorenz | df9e3c6 | 2015-08-19 00:13:25 +0000 | [diff] [blame] | 417 | |
| 418 | // Print the debug variable information. |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 419 | for (const MachineFunction::VariableDbgInfo &DebugVar : |
| 420 | MF.getVariableDbgInfo()) { |
Alex Lorenz | df9e3c6 | 2015-08-19 00:13:25 +0000 | [diff] [blame] | 421 | auto StackObjectInfo = StackObjectOperandMapping.find(DebugVar.Slot); |
| 422 | assert(StackObjectInfo != StackObjectOperandMapping.end() && |
| 423 | "Invalid stack object index"); |
| 424 | const FrameIndexOperand &StackObject = StackObjectInfo->second; |
| 425 | assert(!StackObject.IsFixed && "Expected a non-fixed stack object"); |
Matthias Braun | ef331ef | 2016-11-30 23:48:50 +0000 | [diff] [blame] | 426 | auto &Object = YMF.StackObjects[StackObject.ID]; |
Alex Lorenz | df9e3c6 | 2015-08-19 00:13:25 +0000 | [diff] [blame] | 427 | { |
| 428 | raw_string_ostream StrOS(Object.DebugVar.Value); |
| 429 | DebugVar.Var->printAsOperand(StrOS, MST); |
| 430 | } |
| 431 | { |
| 432 | raw_string_ostream StrOS(Object.DebugExpr.Value); |
| 433 | DebugVar.Expr->printAsOperand(StrOS, MST); |
| 434 | } |
| 435 | { |
| 436 | raw_string_ostream StrOS(Object.DebugLoc.Value); |
| 437 | DebugVar.Loc->printAsOperand(StrOS, MST); |
| 438 | } |
| 439 | } |
Alex Lorenz | f6bc866 | 2015-07-10 18:13:57 +0000 | [diff] [blame] | 440 | } |
| 441 | |
Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 442 | void MIRPrinter::convert(yaml::MachineFunction &MF, |
| 443 | const MachineConstantPool &ConstantPool) { |
| 444 | unsigned ID = 0; |
| 445 | for (const MachineConstantPoolEntry &Constant : ConstantPool.getConstants()) { |
Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 446 | std::string Str; |
| 447 | raw_string_ostream StrOS(Str); |
Diana Picus | d5a00b0 | 2017-08-02 11:09:30 +0000 | [diff] [blame] | 448 | if (Constant.isMachineConstantPoolEntry()) { |
| 449 | Constant.Val.MachineCPVal->print(StrOS); |
| 450 | } else { |
| 451 | Constant.Val.ConstVal->printAsOperand(StrOS); |
| 452 | } |
| 453 | |
| 454 | yaml::MachineConstantPoolValue YamlConstant; |
Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 455 | YamlConstant.ID = ID++; |
| 456 | YamlConstant.Value = StrOS.str(); |
| 457 | YamlConstant.Alignment = Constant.getAlignment(); |
Diana Picus | d5a00b0 | 2017-08-02 11:09:30 +0000 | [diff] [blame] | 458 | YamlConstant.IsTargetSpecific = Constant.isMachineConstantPoolEntry(); |
| 459 | |
Alex Lorenz | ab98049 | 2015-07-20 20:51:18 +0000 | [diff] [blame] | 460 | MF.Constants.push_back(YamlConstant); |
| 461 | } |
| 462 | } |
| 463 | |
Alex Lorenz | 900b5cb | 2015-07-07 23:27:53 +0000 | [diff] [blame] | 464 | void MIRPrinter::convert(ModuleSlotTracker &MST, |
Alex Lorenz | 6799e9b | 2015-07-15 23:31:07 +0000 | [diff] [blame] | 465 | yaml::MachineJumpTable &YamlJTI, |
| 466 | const MachineJumpTableInfo &JTI) { |
| 467 | YamlJTI.Kind = JTI.getEntryKind(); |
| 468 | unsigned ID = 0; |
| 469 | for (const auto &Table : JTI.getJumpTables()) { |
| 470 | std::string Str; |
| 471 | yaml::MachineJumpTable::Entry Entry; |
| 472 | Entry.ID = ID++; |
| 473 | for (const auto *MBB : Table.MBBs) { |
| 474 | raw_string_ostream StrOS(Str); |
Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 475 | StrOS << printMBBReference(*MBB); |
Alex Lorenz | 6799e9b | 2015-07-15 23:31:07 +0000 | [diff] [blame] | 476 | Entry.Blocks.push_back(StrOS.str()); |
| 477 | Str.clear(); |
| 478 | } |
| 479 | YamlJTI.Entries.push_back(Entry); |
| 480 | } |
| 481 | } |
| 482 | |
Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 483 | void MIRPrinter::initRegisterMaskIds(const MachineFunction &MF) { |
| 484 | const auto *TRI = MF.getSubtarget().getRegisterInfo(); |
| 485 | unsigned I = 0; |
| 486 | for (const uint32_t *Mask : TRI->getRegMasks()) |
| 487 | RegisterMaskIds.insert(std::make_pair(Mask, I++)); |
| 488 | } |
| 489 | |
Matthias Braun | 8940114 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 490 | void llvm::guessSuccessors(const MachineBasicBlock &MBB, |
| 491 | SmallVectorImpl<MachineBasicBlock*> &Result, |
| 492 | bool &IsFallthrough) { |
| 493 | SmallPtrSet<MachineBasicBlock*,8> Seen; |
| 494 | |
| 495 | for (const MachineInstr &MI : MBB) { |
| 496 | if (MI.isPHI()) |
| 497 | continue; |
| 498 | for (const MachineOperand &MO : MI.operands()) { |
| 499 | if (!MO.isMBB()) |
| 500 | continue; |
| 501 | MachineBasicBlock *Succ = MO.getMBB(); |
| 502 | auto RP = Seen.insert(Succ); |
| 503 | if (RP.second) |
| 504 | Result.push_back(Succ); |
| 505 | } |
| 506 | } |
| 507 | MachineBasicBlock::const_iterator I = MBB.getLastNonDebugInstr(); |
| 508 | IsFallthrough = I == MBB.end() || !I->isBarrier(); |
| 509 | } |
| 510 | |
| 511 | bool |
| 512 | MIPrinter::canPredictBranchProbabilities(const MachineBasicBlock &MBB) const { |
| 513 | if (MBB.succ_size() <= 1) |
| 514 | return true; |
| 515 | if (!MBB.hasSuccessorProbabilities()) |
| 516 | return true; |
| 517 | |
| 518 | SmallVector<BranchProbability,8> Normalized(MBB.Probs.begin(), |
| 519 | MBB.Probs.end()); |
| 520 | BranchProbability::normalizeProbabilities(Normalized.begin(), |
| 521 | Normalized.end()); |
| 522 | SmallVector<BranchProbability,8> Equal(Normalized.size()); |
| 523 | BranchProbability::normalizeProbabilities(Equal.begin(), Equal.end()); |
| 524 | |
| 525 | return std::equal(Normalized.begin(), Normalized.end(), Equal.begin()); |
| 526 | } |
| 527 | |
| 528 | bool MIPrinter::canPredictSuccessors(const MachineBasicBlock &MBB) const { |
| 529 | SmallVector<MachineBasicBlock*,8> GuessedSuccs; |
| 530 | bool GuessedFallthrough; |
| 531 | guessSuccessors(MBB, GuessedSuccs, GuessedFallthrough); |
| 532 | if (GuessedFallthrough) { |
| 533 | const MachineFunction &MF = *MBB.getParent(); |
| 534 | MachineFunction::const_iterator NextI = std::next(MBB.getIterator()); |
| 535 | if (NextI != MF.end()) { |
| 536 | MachineBasicBlock *Next = const_cast<MachineBasicBlock*>(&*NextI); |
| 537 | if (!is_contained(GuessedSuccs, Next)) |
| 538 | GuessedSuccs.push_back(Next); |
| 539 | } |
| 540 | } |
| 541 | if (GuessedSuccs.size() != MBB.succ_size()) |
| 542 | return false; |
| 543 | return std::equal(MBB.succ_begin(), MBB.succ_end(), GuessedSuccs.begin()); |
| 544 | } |
| 545 | |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 546 | void MIPrinter::print(const MachineBasicBlock &MBB) { |
| 547 | assert(MBB.getNumber() >= 0 && "Invalid MBB number"); |
| 548 | OS << "bb." << MBB.getNumber(); |
| 549 | bool HasAttributes = false; |
| 550 | if (const auto *BB = MBB.getBasicBlock()) { |
| 551 | if (BB->hasName()) { |
| 552 | OS << "." << BB->getName(); |
| 553 | } else { |
| 554 | HasAttributes = true; |
| 555 | OS << " ("; |
| 556 | int Slot = MST.getLocalSlot(BB); |
| 557 | if (Slot == -1) |
| 558 | OS << "<ir-block badref>"; |
| 559 | else |
| 560 | OS << (Twine("%ir-block.") + Twine(Slot)).str(); |
| 561 | } |
| 562 | } |
| 563 | if (MBB.hasAddressTaken()) { |
| 564 | OS << (HasAttributes ? ", " : " ("); |
| 565 | OS << "address-taken"; |
| 566 | HasAttributes = true; |
| 567 | } |
Reid Kleckner | 0e28823 | 2015-08-27 23:27:47 +0000 | [diff] [blame] | 568 | if (MBB.isEHPad()) { |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 569 | OS << (HasAttributes ? ", " : " ("); |
| 570 | OS << "landing-pad"; |
| 571 | HasAttributes = true; |
| 572 | } |
| 573 | if (MBB.getAlignment()) { |
| 574 | OS << (HasAttributes ? ", " : " ("); |
| 575 | OS << "align " << MBB.getAlignment(); |
| 576 | HasAttributes = true; |
| 577 | } |
| 578 | if (HasAttributes) |
| 579 | OS << ")"; |
| 580 | OS << ":\n"; |
| 581 | |
| 582 | bool HasLineAttributes = false; |
| 583 | // Print the successors |
Matthias Braun | 8940114 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 584 | bool canPredictProbs = canPredictBranchProbabilities(MBB); |
Quentin Colombet | d652aeb | 2017-09-19 23:34:12 +0000 | [diff] [blame] | 585 | // Even if the list of successors is empty, if we cannot guess it, |
| 586 | // we need to print it to tell the parser that the list is empty. |
| 587 | // This is needed, because MI model unreachable as empty blocks |
| 588 | // with an empty successor list. If the parser would see that |
| 589 | // without the successor list, it would guess the code would |
| 590 | // fallthrough. |
| 591 | if ((!MBB.succ_empty() && !SimplifyMIR) || !canPredictProbs || |
| 592 | !canPredictSuccessors(MBB)) { |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 593 | OS.indent(2) << "successors: "; |
| 594 | for (auto I = MBB.succ_begin(), E = MBB.succ_end(); I != E; ++I) { |
| 595 | if (I != MBB.succ_begin()) |
| 596 | OS << ", "; |
Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 597 | OS << printMBBReference(**I); |
Matthias Braun | 8940114 | 2017-05-05 21:09:30 +0000 | [diff] [blame] | 598 | if (!SimplifyMIR || !canPredictProbs) |
Geoff Berry | b51774a | 2016-11-18 19:37:24 +0000 | [diff] [blame] | 599 | OS << '(' |
| 600 | << format("0x%08" PRIx32, MBB.getSuccProbability(I).getNumerator()) |
| 601 | << ')'; |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 602 | } |
| 603 | OS << "\n"; |
| 604 | HasLineAttributes = true; |
| 605 | } |
| 606 | |
| 607 | // Print the live in registers. |
Matthias Braun | 1172332 | 2017-01-05 20:01:19 +0000 | [diff] [blame] | 608 | const MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo(); |
| 609 | if (MRI.tracksLiveness() && !MBB.livein_empty()) { |
| 610 | const TargetRegisterInfo &TRI = *MRI.getTargetRegisterInfo(); |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 611 | OS.indent(2) << "liveins: "; |
Matthias Braun | b2b7ef1 | 2015-08-24 22:59:52 +0000 | [diff] [blame] | 612 | bool First = true; |
Matthias Braun | d9da162 | 2015-09-09 18:08:03 +0000 | [diff] [blame] | 613 | for (const auto &LI : MBB.liveins()) { |
Matthias Braun | b2b7ef1 | 2015-08-24 22:59:52 +0000 | [diff] [blame] | 614 | if (!First) |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 615 | OS << ", "; |
Matthias Braun | b2b7ef1 | 2015-08-24 22:59:52 +0000 | [diff] [blame] | 616 | First = false; |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 617 | OS << printReg(LI.PhysReg, &TRI); |
Krzysztof Parzyszek | 91b5cf8 | 2016-12-15 14:36:06 +0000 | [diff] [blame] | 618 | if (!LI.LaneMask.all()) |
Krzysztof Parzyszek | d62669d | 2016-10-12 21:06:45 +0000 | [diff] [blame] | 619 | OS << ":0x" << PrintLaneMask(LI.LaneMask); |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 620 | } |
| 621 | OS << "\n"; |
| 622 | HasLineAttributes = true; |
| 623 | } |
| 624 | |
| 625 | if (HasLineAttributes) |
| 626 | OS << "\n"; |
Alex Lorenz | f9a2b12 | 2015-08-14 18:57:24 +0000 | [diff] [blame] | 627 | bool IsInBundle = false; |
| 628 | for (auto I = MBB.instr_begin(), E = MBB.instr_end(); I != E; ++I) { |
| 629 | const MachineInstr &MI = *I; |
| 630 | if (IsInBundle && !MI.isInsideBundle()) { |
| 631 | OS.indent(2) << "}\n"; |
| 632 | IsInBundle = false; |
| 633 | } |
| 634 | OS.indent(IsInBundle ? 4 : 2); |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 635 | print(MI); |
Alex Lorenz | f9a2b12 | 2015-08-14 18:57:24 +0000 | [diff] [blame] | 636 | if (!IsInBundle && MI.getFlag(MachineInstr::BundledSucc)) { |
| 637 | OS << " {"; |
| 638 | IsInBundle = true; |
| 639 | } |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 640 | OS << "\n"; |
| 641 | } |
Alex Lorenz | f9a2b12 | 2015-08-14 18:57:24 +0000 | [diff] [blame] | 642 | if (IsInBundle) |
| 643 | OS.indent(2) << "}\n"; |
Alex Lorenz | 5022f6b | 2015-08-13 23:10:16 +0000 | [diff] [blame] | 644 | } |
| 645 | |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 646 | void MIPrinter::print(const MachineInstr &MI) { |
Justin Bogner | fdf9bf4 | 2017-10-10 23:50:49 +0000 | [diff] [blame] | 647 | const auto *MF = MI.getMF(); |
Quentin Colombet | 4e14a49 | 2016-03-07 21:57:52 +0000 | [diff] [blame] | 648 | const auto &MRI = MF->getRegInfo(); |
| 649 | const auto &SubTarget = MF->getSubtarget(); |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 650 | const auto *TRI = SubTarget.getRegisterInfo(); |
| 651 | assert(TRI && "Expected target register info"); |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 652 | const auto *TII = SubTarget.getInstrInfo(); |
| 653 | assert(TII && "Expected target instruction info"); |
Alex Lorenz | f4baeb5 | 2015-07-21 22:28:27 +0000 | [diff] [blame] | 654 | if (MI.isCFIInstruction()) |
| 655 | assert(MI.getNumOperands() == 1 && "Expected 1 operand in CFI instruction"); |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 656 | |
Tim Northover | d28d3cc | 2016-09-12 11:20:10 +0000 | [diff] [blame] | 657 | SmallBitVector PrintedTypes(8); |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 658 | bool ShouldPrintRegisterTies = MI.hasComplexRegisterTies(); |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 659 | unsigned I = 0, E = MI.getNumOperands(); |
| 660 | for (; I < E && MI.getOperand(I).isReg() && MI.getOperand(I).isDef() && |
| 661 | !MI.getOperand(I).isImplicit(); |
| 662 | ++I) { |
| 663 | if (I) |
| 664 | OS << ", "; |
Bjorn Pettersson | a42ed3e | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 665 | print(MI, I, TRI, ShouldPrintRegisterTies, |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 666 | MI.getTypeToPrint(I, PrintedTypes, MRI), |
| 667 | /*PrintDef=*/false); |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 668 | } |
| 669 | |
| 670 | if (I) |
| 671 | OS << " = "; |
Alex Lorenz | e5a4466 | 2015-07-17 00:24:15 +0000 | [diff] [blame] | 672 | if (MI.getFlag(MachineInstr::FrameSetup)) |
| 673 | OS << "frame-setup "; |
Alex Lorenz | 8e0a1b4 | 2015-06-22 17:02:30 +0000 | [diff] [blame] | 674 | OS << TII->getName(MI.getOpcode()); |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 675 | if (I < E) |
| 676 | OS << ' '; |
| 677 | |
| 678 | bool NeedComma = false; |
| 679 | for (; I < E; ++I) { |
| 680 | if (NeedComma) |
| 681 | OS << ", "; |
Bjorn Pettersson | a42ed3e | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 682 | print(MI, I, TRI, ShouldPrintRegisterTies, |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 683 | MI.getTypeToPrint(I, PrintedTypes, MRI)); |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 684 | NeedComma = true; |
| 685 | } |
Alex Lorenz | 46d760d | 2015-07-22 21:15:11 +0000 | [diff] [blame] | 686 | |
| 687 | if (MI.getDebugLoc()) { |
| 688 | if (NeedComma) |
| 689 | OS << ','; |
| 690 | OS << " debug-location "; |
| 691 | MI.getDebugLoc()->printAsOperand(OS, MST); |
| 692 | } |
Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 693 | |
| 694 | if (!MI.memoperands_empty()) { |
| 695 | OS << " :: "; |
Matthias Braun | f1caa28 | 2017-12-15 22:22:58 +0000 | [diff] [blame] | 696 | const LLVMContext &Context = MF->getFunction().getContext(); |
Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 697 | bool NeedComma = false; |
| 698 | for (const auto *Op : MI.memoperands()) { |
| 699 | if (NeedComma) |
| 700 | OS << ", "; |
Geoff Berry | 6748abe | 2017-07-13 02:28:54 +0000 | [diff] [blame] | 701 | print(Context, *TII, *Op); |
Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 702 | NeedComma = true; |
| 703 | } |
| 704 | } |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 705 | } |
| 706 | |
Alex Lorenz | 55dc6f8 | 2015-08-19 23:24:37 +0000 | [diff] [blame] | 707 | static void printIRSlotNumber(raw_ostream &OS, int Slot) { |
| 708 | if (Slot == -1) |
| 709 | OS << "<badref>"; |
| 710 | else |
| 711 | OS << Slot; |
| 712 | } |
| 713 | |
Alex Lorenz | deb5349 | 2015-07-28 17:28:03 +0000 | [diff] [blame] | 714 | void MIPrinter::printIRBlockReference(const BasicBlock &BB) { |
| 715 | OS << "%ir-block."; |
| 716 | if (BB.hasName()) { |
| 717 | printLLVMNameWithoutPrefix(OS, BB.getName()); |
| 718 | return; |
| 719 | } |
Alex Lorenz | cba8c5f | 2015-08-06 23:57:04 +0000 | [diff] [blame] | 720 | const Function *F = BB.getParent(); |
| 721 | int Slot; |
| 722 | if (F == MST.getCurrentFunction()) { |
| 723 | Slot = MST.getLocalSlot(&BB); |
| 724 | } else { |
| 725 | ModuleSlotTracker CustomMST(F->getParent(), |
| 726 | /*ShouldInitializeAllMetadata=*/false); |
| 727 | CustomMST.incorporateFunction(*F); |
| 728 | Slot = CustomMST.getLocalSlot(&BB); |
| 729 | } |
Alex Lorenz | 55dc6f8 | 2015-08-19 23:24:37 +0000 | [diff] [blame] | 730 | printIRSlotNumber(OS, Slot); |
Alex Lorenz | deb5349 | 2015-07-28 17:28:03 +0000 | [diff] [blame] | 731 | } |
| 732 | |
Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 733 | void MIPrinter::printIRValueReference(const Value &V) { |
Alex Lorenz | 36efd38 | 2015-08-20 00:20:03 +0000 | [diff] [blame] | 734 | if (isa<GlobalValue>(V)) { |
| 735 | V.printAsOperand(OS, /*PrintType=*/false, MST); |
| 736 | return; |
| 737 | } |
Alex Lorenz | c1136ef3 | 2015-08-21 21:54:12 +0000 | [diff] [blame] | 738 | if (isa<Constant>(V)) { |
| 739 | // Machine memory operands can load/store to/from constant value pointers. |
| 740 | OS << '`'; |
| 741 | V.printAsOperand(OS, /*PrintType=*/true, MST); |
| 742 | OS << '`'; |
| 743 | return; |
| 744 | } |
Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 745 | OS << "%ir."; |
| 746 | if (V.hasName()) { |
| 747 | printLLVMNameWithoutPrefix(OS, V.getName()); |
| 748 | return; |
| 749 | } |
Alex Lorenz | dd13be0 | 2015-08-19 23:31:05 +0000 | [diff] [blame] | 750 | printIRSlotNumber(OS, MST.getLocalSlot(&V)); |
Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 751 | } |
| 752 | |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 753 | void MIPrinter::printStackObjectReference(int FrameIndex) { |
| 754 | auto ObjectInfo = StackObjectOperandMapping.find(FrameIndex); |
| 755 | assert(ObjectInfo != StackObjectOperandMapping.end() && |
| 756 | "Invalid frame index"); |
| 757 | const FrameIndexOperand &Operand = ObjectInfo->second; |
Francis Visoiu Mistrih | 0b5bdce | 2017-12-15 16:33:45 +0000 | [diff] [blame] | 758 | MachineOperand::printStackObjectReference(OS, Operand.ID, Operand.IsFixed, |
| 759 | Operand.Name); |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 760 | } |
| 761 | |
Bjorn Pettersson | a42ed3e | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 762 | void MIPrinter::print(const MachineInstr &MI, unsigned OpIdx, |
| 763 | const TargetRegisterInfo *TRI, |
| 764 | bool ShouldPrintRegisterTies, LLT TypeToPrint, |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 765 | bool PrintDef) { |
Bjorn Pettersson | a42ed3e | 2017-11-06 21:46:06 +0000 | [diff] [blame] | 766 | const MachineOperand &Op = MI.getOperand(OpIdx); |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 767 | switch (Op.getType()) { |
Francis Visoiu Mistrih | 440f69c | 2017-12-08 22:53:21 +0000 | [diff] [blame] | 768 | case MachineOperand::MO_Immediate: |
| 769 | if (MI.isOperandSubregIdx(OpIdx)) { |
Francis Visoiu Mistrih | 5df3bbf | 2017-12-14 10:03:09 +0000 | [diff] [blame] | 770 | MachineOperand::printTargetFlags(OS, Op); |
Francis Visoiu Mistrih | 440f69c | 2017-12-08 22:53:21 +0000 | [diff] [blame] | 771 | MachineOperand::printSubregIdx(OS, Op.getImm(), TRI); |
| 772 | break; |
| 773 | } |
| 774 | LLVM_FALLTHROUGH; |
Francis Visoiu Mistrih | 6c4ca71 | 2017-12-08 11:40:06 +0000 | [diff] [blame] | 775 | case MachineOperand::MO_Register: |
Francis Visoiu Mistrih | f4bd295 | 2017-12-08 11:48:02 +0000 | [diff] [blame] | 776 | case MachineOperand::MO_CImmediate: |
Francis Visoiu Mistrih | 3b265c8 | 2017-12-19 21:47:00 +0000 | [diff] [blame] | 777 | case MachineOperand::MO_FPImmediate: |
Francis Visoiu Mistrih | 26ae8a6 | 2017-12-13 10:30:45 +0000 | [diff] [blame] | 778 | case MachineOperand::MO_MachineBasicBlock: |
Francis Visoiu Mistrih | b3a0d51 | 2017-12-13 10:30:51 +0000 | [diff] [blame] | 779 | case MachineOperand::MO_ConstantPoolIndex: |
Francis Visoiu Mistrih | b41dbbe | 2017-12-13 10:30:59 +0000 | [diff] [blame] | 780 | case MachineOperand::MO_TargetIndex: |
Francis Visoiu Mistrih | e76c5fc | 2017-12-14 10:02:58 +0000 | [diff] [blame] | 781 | case MachineOperand::MO_JumpTableIndex: |
Francis Visoiu Mistrih | 5df3bbf | 2017-12-14 10:03:09 +0000 | [diff] [blame] | 782 | case MachineOperand::MO_ExternalSymbol: |
Francis Visoiu Mistrih | bdaf8bf | 2017-12-14 10:03:14 +0000 | [diff] [blame] | 783 | case MachineOperand::MO_GlobalAddress: |
Francis Visoiu Mistrih | 2db5938 | 2017-12-14 10:03:18 +0000 | [diff] [blame] | 784 | case MachineOperand::MO_RegisterLiveOut: |
Francis Visoiu Mistrih | 3c99371 | 2017-12-14 10:03:23 +0000 | [diff] [blame] | 785 | case MachineOperand::MO_Metadata: |
Francis Visoiu Mistrih | 874ae6f | 2017-12-19 16:51:52 +0000 | [diff] [blame] | 786 | case MachineOperand::MO_MCSymbol: |
Francis Visoiu Mistrih | bbd610a | 2017-12-19 21:47:05 +0000 | [diff] [blame] | 787 | case MachineOperand::MO_CFIIndex: |
Francis Visoiu Mistrih | cb2683d | 2017-12-19 21:47:10 +0000 | [diff] [blame^] | 788 | case MachineOperand::MO_IntrinsicID: |
| 789 | case MachineOperand::MO_Predicate: { |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 790 | unsigned TiedOperandIdx = 0; |
Francis Visoiu Mistrih | 440f69c | 2017-12-08 22:53:21 +0000 | [diff] [blame] | 791 | if (ShouldPrintRegisterTies && Op.isReg() && Op.isTied() && !Op.isDef()) |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 792 | TiedOperandIdx = Op.getParent()->findTiedOperandIdx(OpIdx); |
| 793 | const TargetIntrinsicInfo *TII = MI.getMF()->getTarget().getIntrinsicInfo(); |
| 794 | Op.print(OS, MST, TypeToPrint, PrintDef, ShouldPrintRegisterTies, |
| 795 | TiedOperandIdx, TRI, TII); |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 796 | break; |
Justin Bogner | 6c45283 | 2017-10-24 18:04:54 +0000 | [diff] [blame] | 797 | } |
Alex Lorenz | 7feaf7c | 2015-07-16 23:37:45 +0000 | [diff] [blame] | 798 | case MachineOperand::MO_FrameIndex: |
| 799 | printStackObjectReference(Op.getIndex()); |
| 800 | break; |
Alex Lorenz | deb5349 | 2015-07-28 17:28:03 +0000 | [diff] [blame] | 801 | case MachineOperand::MO_BlockAddress: |
| 802 | OS << "blockaddress("; |
| 803 | Op.getBlockAddress()->getFunction()->printAsOperand(OS, /*PrintType=*/false, |
| 804 | MST); |
| 805 | OS << ", "; |
| 806 | printIRBlockReference(*Op.getBlockAddress()->getBasicBlock()); |
| 807 | OS << ')'; |
Francis Visoiu Mistrih | 8122660 | 2017-12-19 21:46:55 +0000 | [diff] [blame] | 808 | MachineOperand::printOperandOffset(Op.getOffset()); |
Alex Lorenz | deb5349 | 2015-07-28 17:28:03 +0000 | [diff] [blame] | 809 | break; |
Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 810 | case MachineOperand::MO_RegisterMask: { |
| 811 | auto RegMaskInfo = RegisterMaskIds.find(Op.getRegMask()); |
| 812 | if (RegMaskInfo != RegisterMaskIds.end()) |
| 813 | OS << StringRef(TRI->getRegMaskNames()[RegMaskInfo->second]).lower(); |
| 814 | else |
Oren Ben Simhon | 0ef61ec | 2017-03-19 08:14:18 +0000 | [diff] [blame] | 815 | printCustomRegMask(Op.getRegMask(), OS, TRI); |
Alex Lorenz | 8f6f428 | 2015-06-29 16:57:06 +0000 | [diff] [blame] | 816 | break; |
| 817 | } |
Alex Lorenz | f3db51de | 2015-06-23 16:35:26 +0000 | [diff] [blame] | 818 | } |
Alex Lorenz | 4f093bf | 2015-06-19 17:43:07 +0000 | [diff] [blame] | 819 | } |
| 820 | |
Geoff Berry | 6748abe | 2017-07-13 02:28:54 +0000 | [diff] [blame] | 821 | static const char *getTargetMMOFlagName(const TargetInstrInfo &TII, |
| 822 | unsigned TMMOFlag) { |
| 823 | auto Flags = TII.getSerializableMachineMemOperandTargetFlags(); |
| 824 | for (const auto &I : Flags) { |
| 825 | if (I.first == TMMOFlag) { |
| 826 | return I.second; |
| 827 | } |
| 828 | } |
| 829 | return nullptr; |
| 830 | } |
| 831 | |
| 832 | void MIPrinter::print(const LLVMContext &Context, const TargetInstrInfo &TII, |
| 833 | const MachineMemOperand &Op) { |
Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 834 | OS << '('; |
Alex Lorenz | a518b79 | 2015-08-04 00:24:45 +0000 | [diff] [blame] | 835 | if (Op.isVolatile()) |
| 836 | OS << "volatile "; |
Alex Lorenz | 10fd038 | 2015-08-06 16:49:30 +0000 | [diff] [blame] | 837 | if (Op.isNonTemporal()) |
| 838 | OS << "non-temporal "; |
Justin Lebar | adbf09e | 2016-09-11 01:38:58 +0000 | [diff] [blame] | 839 | if (Op.isDereferenceable()) |
| 840 | OS << "dereferenceable "; |
Alex Lorenz | dc8de2a | 2015-08-06 16:55:53 +0000 | [diff] [blame] | 841 | if (Op.isInvariant()) |
| 842 | OS << "invariant "; |
Geoff Berry | 6748abe | 2017-07-13 02:28:54 +0000 | [diff] [blame] | 843 | if (Op.getFlags() & MachineMemOperand::MOTargetFlag1) |
| 844 | OS << '"' << getTargetMMOFlagName(TII, MachineMemOperand::MOTargetFlag1) |
| 845 | << "\" "; |
| 846 | if (Op.getFlags() & MachineMemOperand::MOTargetFlag2) |
| 847 | OS << '"' << getTargetMMOFlagName(TII, MachineMemOperand::MOTargetFlag2) |
| 848 | << "\" "; |
| 849 | if (Op.getFlags() & MachineMemOperand::MOTargetFlag3) |
| 850 | OS << '"' << getTargetMMOFlagName(TII, MachineMemOperand::MOTargetFlag3) |
| 851 | << "\" "; |
Daniel Sanders | 17d277b | 2017-11-28 18:57:02 +0000 | [diff] [blame] | 852 | |
| 853 | assert((Op.isLoad() || Op.isStore()) && "machine memory operand must be a load or store (or both)"); |
Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 854 | if (Op.isLoad()) |
| 855 | OS << "load "; |
Daniel Sanders | 17d277b | 2017-11-28 18:57:02 +0000 | [diff] [blame] | 856 | if (Op.isStore()) |
Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 857 | OS << "store "; |
Tim Northover | b73e309 | 2017-02-13 22:14:08 +0000 | [diff] [blame] | 858 | |
Konstantin Zhuravlyov | bb80d3e | 2017-07-11 22:23:00 +0000 | [diff] [blame] | 859 | printSyncScope(Context, Op.getSyncScopeID()); |
Tim Northover | b73e309 | 2017-02-13 22:14:08 +0000 | [diff] [blame] | 860 | |
| 861 | if (Op.getOrdering() != AtomicOrdering::NotAtomic) |
| 862 | OS << toIRString(Op.getOrdering()) << ' '; |
| 863 | if (Op.getFailureOrdering() != AtomicOrdering::NotAtomic) |
| 864 | OS << toIRString(Op.getFailureOrdering()) << ' '; |
| 865 | |
Matthias Braun | c25c9cc | 2016-06-04 00:06:31 +0000 | [diff] [blame] | 866 | OS << Op.getSize(); |
Alex Lorenz | 91097a3 | 2015-08-12 20:33:26 +0000 | [diff] [blame] | 867 | if (const Value *Val = Op.getValue()) { |
Daniel Sanders | 17d277b | 2017-11-28 18:57:02 +0000 | [diff] [blame] | 868 | OS << ((Op.isLoad() && Op.isStore()) ? " on " |
| 869 | : Op.isLoad() ? " from " : " into "); |
Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 870 | printIRValueReference(*Val); |
Matthias Braun | c25c9cc | 2016-06-04 00:06:31 +0000 | [diff] [blame] | 871 | } else if (const PseudoSourceValue *PVal = Op.getPseudoValue()) { |
Daniel Sanders | 17d277b | 2017-11-28 18:57:02 +0000 | [diff] [blame] | 872 | OS << ((Op.isLoad() && Op.isStore()) ? " on " |
| 873 | : Op.isLoad() ? " from " : " into "); |
Alex Lorenz | 91097a3 | 2015-08-12 20:33:26 +0000 | [diff] [blame] | 874 | assert(PVal && "Expected a pseudo source value"); |
| 875 | switch (PVal->kind()) { |
Alex Lorenz | 46e9558 | 2015-08-12 20:44:16 +0000 | [diff] [blame] | 876 | case PseudoSourceValue::Stack: |
| 877 | OS << "stack"; |
| 878 | break; |
Alex Lorenz | d858f87 | 2015-08-12 21:00:22 +0000 | [diff] [blame] | 879 | case PseudoSourceValue::GOT: |
| 880 | OS << "got"; |
| 881 | break; |
Alex Lorenz | 4be56e9 | 2015-08-12 21:11:08 +0000 | [diff] [blame] | 882 | case PseudoSourceValue::JumpTable: |
| 883 | OS << "jump-table"; |
| 884 | break; |
Alex Lorenz | 91097a3 | 2015-08-12 20:33:26 +0000 | [diff] [blame] | 885 | case PseudoSourceValue::ConstantPool: |
| 886 | OS << "constant-pool"; |
| 887 | break; |
Alex Lorenz | 0cc671b | 2015-08-12 21:23:17 +0000 | [diff] [blame] | 888 | case PseudoSourceValue::FixedStack: |
| 889 | printStackObjectReference( |
| 890 | cast<FixedStackPseudoSourceValue>(PVal)->getFrameIndex()); |
| 891 | break; |
Alex Lorenz | 50b826f | 2015-08-14 21:08:30 +0000 | [diff] [blame] | 892 | case PseudoSourceValue::GlobalValueCallEntry: |
Alex Lorenz | 0d00964 | 2015-08-20 00:12:57 +0000 | [diff] [blame] | 893 | OS << "call-entry "; |
Alex Lorenz | 50b826f | 2015-08-14 21:08:30 +0000 | [diff] [blame] | 894 | cast<GlobalValuePseudoSourceValue>(PVal)->getValue()->printAsOperand( |
| 895 | OS, /*PrintType=*/false, MST); |
| 896 | break; |
Alex Lorenz | c3ba750 | 2015-08-14 21:14:50 +0000 | [diff] [blame] | 897 | case PseudoSourceValue::ExternalSymbolCallEntry: |
Alex Lorenz | 0d00964 | 2015-08-20 00:12:57 +0000 | [diff] [blame] | 898 | OS << "call-entry $"; |
Alex Lorenz | c3ba750 | 2015-08-14 21:14:50 +0000 | [diff] [blame] | 899 | printLLVMNameWithoutPrefix( |
| 900 | OS, cast<ExternalSymbolPseudoSourceValue>(PVal)->getSymbol()); |
Alex Lorenz | 91097a3 | 2015-08-12 20:33:26 +0000 | [diff] [blame] | 901 | break; |
Tom Stellard | 7761abb | 2016-12-17 04:41:53 +0000 | [diff] [blame] | 902 | case PseudoSourceValue::TargetCustom: |
| 903 | llvm_unreachable("TargetCustom pseudo source values are not supported"); |
| 904 | break; |
Alex Lorenz | 91097a3 | 2015-08-12 20:33:26 +0000 | [diff] [blame] | 905 | } |
| 906 | } |
Francis Visoiu Mistrih | 8122660 | 2017-12-19 21:46:55 +0000 | [diff] [blame] | 907 | MachineOperand::printOperandOffset(OS, Op.getOffset()); |
Alex Lorenz | 61420f7 | 2015-08-07 20:48:30 +0000 | [diff] [blame] | 908 | if (Op.getBaseAlignment() != Op.getSize()) |
| 909 | OS << ", align " << Op.getBaseAlignment(); |
Alex Lorenz | a617c91 | 2015-08-17 22:05:15 +0000 | [diff] [blame] | 910 | auto AAInfo = Op.getAAInfo(); |
| 911 | if (AAInfo.TBAA) { |
| 912 | OS << ", !tbaa "; |
| 913 | AAInfo.TBAA->printAsOperand(OS, MST); |
| 914 | } |
Alex Lorenz | a16f624 | 2015-08-17 22:06:40 +0000 | [diff] [blame] | 915 | if (AAInfo.Scope) { |
| 916 | OS << ", !alias.scope "; |
| 917 | AAInfo.Scope->printAsOperand(OS, MST); |
| 918 | } |
Alex Lorenz | 03e940d | 2015-08-17 22:08:02 +0000 | [diff] [blame] | 919 | if (AAInfo.NoAlias) { |
| 920 | OS << ", !noalias "; |
| 921 | AAInfo.NoAlias->printAsOperand(OS, MST); |
| 922 | } |
Alex Lorenz | eb62568 | 2015-08-17 22:09:52 +0000 | [diff] [blame] | 923 | if (Op.getRanges()) { |
| 924 | OS << ", !range "; |
| 925 | Op.getRanges()->printAsOperand(OS, MST); |
| 926 | } |
Alex Lorenz | 4af7e61 | 2015-08-03 23:08:19 +0000 | [diff] [blame] | 927 | OS << ')'; |
| 928 | } |
| 929 | |
Konstantin Zhuravlyov | bb80d3e | 2017-07-11 22:23:00 +0000 | [diff] [blame] | 930 | void MIPrinter::printSyncScope(const LLVMContext &Context, SyncScope::ID SSID) { |
| 931 | switch (SSID) { |
| 932 | case SyncScope::System: { |
| 933 | break; |
| 934 | } |
| 935 | default: { |
| 936 | if (SSNs.empty()) |
| 937 | Context.getSyncScopeNames(SSNs); |
| 938 | |
| 939 | OS << "syncscope(\""; |
| 940 | PrintEscapedString(SSNs[SSID], OS); |
| 941 | OS << "\") "; |
| 942 | break; |
| 943 | } |
| 944 | } |
| 945 | } |
| 946 | |
Alex Lorenz | 345c144 | 2015-06-15 23:52:35 +0000 | [diff] [blame] | 947 | void llvm::printMIR(raw_ostream &OS, const Module &M) { |
| 948 | yaml::Output Out(OS); |
| 949 | Out << const_cast<Module &>(M); |
| 950 | } |
| 951 | |
| 952 | void llvm::printMIR(raw_ostream &OS, const MachineFunction &MF) { |
| 953 | MIRPrinter Printer(OS); |
| 954 | Printer.print(MF); |
| 955 | } |