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