blob: 541cb3679028cfe00dca42706278dda99bd634f2 [file] [log] [blame]
Bill Wendling508a3e52012-03-13 05:47:27 +00001//===-- SelectionDAGDumper.cpp - Implement SelectionDAG::dump() -----------===//
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 implements the SelectionDAG::dump method and friends.
11//
12//===----------------------------------------------------------------------===//
13
Bill Wendling508a3e52012-03-13 05:47:27 +000014#include "llvm/CodeGen/SelectionDAG.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "ScheduleDAGSDNodes.h"
16#include "llvm/ADT/StringExtras.h"
Bill Wendling508a3e52012-03-13 05:47:27 +000017#include "llvm/CodeGen/MachineConstantPool.h"
18#include "llvm/CodeGen/MachineFunction.h"
19#include "llvm/CodeGen/MachineModuleInfo.h"
Chandler Carruth9a4c9e52014-03-06 00:46:21 +000020#include "llvm/IR/DebugInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000021#include "llvm/IR/Function.h"
22#include "llvm/IR/Intrinsics.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000023#include "llvm/Support/Debug.h"
24#include "llvm/Support/GraphWriter.h"
25#include "llvm/Support/raw_ostream.h"
Bill Wendling508a3e52012-03-13 05:47:27 +000026#include "llvm/Target/TargetInstrInfo.h"
27#include "llvm/Target/TargetIntrinsicInfo.h"
28#include "llvm/Target/TargetMachine.h"
29#include "llvm/Target/TargetRegisterInfo.h"
Eric Christopherd9134482014-08-04 21:25:23 +000030#include "llvm/Target/TargetSubtargetInfo.h"
Bill Wendling508a3e52012-03-13 05:47:27 +000031using namespace llvm;
32
Matthias Braunf89b7c72015-09-18 17:57:28 +000033static cl::opt<bool>
34VerboseDAGDumping("dag-dump-verbose", cl::Hidden,
35 cl::desc("Display more information when dumping selection "
36 "DAG nodes."));
37
Bill Wendling508a3e52012-03-13 05:47:27 +000038std::string SDNode::getOperationName(const SelectionDAG *G) const {
39 switch (getOpcode()) {
40 default:
41 if (getOpcode() < ISD::BUILTIN_OP_END)
42 return "<<Unknown DAG Node>>";
43 if (isMachineOpcode()) {
44 if (G)
Eric Christopherfc6de422014-08-05 02:39:49 +000045 if (const TargetInstrInfo *TII = G->getSubtarget().getInstrInfo())
Bill Wendling508a3e52012-03-13 05:47:27 +000046 if (getMachineOpcode() < TII->getNumOpcodes())
47 return TII->getName(getMachineOpcode());
48 return "<<Unknown Machine Node #" + utostr(getOpcode()) + ">>";
49 }
50 if (G) {
51 const TargetLowering &TLI = G->getTargetLoweringInfo();
52 const char *Name = TLI.getTargetNodeName(getOpcode());
53 if (Name) return Name;
54 return "<<Unknown Target Node #" + utostr(getOpcode()) + ">>";
55 }
56 return "<<Unknown Node #" + utostr(getOpcode()) + ">>";
57
58#ifndef NDEBUG
59 case ISD::DELETED_NODE: return "<<Deleted Node!>>";
60#endif
61 case ISD::PREFETCH: return "Prefetch";
Bill Wendling508a3e52012-03-13 05:47:27 +000062 case ISD::ATOMIC_FENCE: return "AtomicFence";
63 case ISD::ATOMIC_CMP_SWAP: return "AtomicCmpSwap";
Tim Northover420a2162014-06-13 14:24:07 +000064 case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: return "AtomicCmpSwapWithSuccess";
Bill Wendling508a3e52012-03-13 05:47:27 +000065 case ISD::ATOMIC_SWAP: return "AtomicSwap";
66 case ISD::ATOMIC_LOAD_ADD: return "AtomicLoadAdd";
67 case ISD::ATOMIC_LOAD_SUB: return "AtomicLoadSub";
68 case ISD::ATOMIC_LOAD_AND: return "AtomicLoadAnd";
69 case ISD::ATOMIC_LOAD_OR: return "AtomicLoadOr";
70 case ISD::ATOMIC_LOAD_XOR: return "AtomicLoadXor";
71 case ISD::ATOMIC_LOAD_NAND: return "AtomicLoadNand";
72 case ISD::ATOMIC_LOAD_MIN: return "AtomicLoadMin";
73 case ISD::ATOMIC_LOAD_MAX: return "AtomicLoadMax";
74 case ISD::ATOMIC_LOAD_UMIN: return "AtomicLoadUMin";
75 case ISD::ATOMIC_LOAD_UMAX: return "AtomicLoadUMax";
76 case ISD::ATOMIC_LOAD: return "AtomicLoad";
77 case ISD::ATOMIC_STORE: return "AtomicStore";
78 case ISD::PCMARKER: return "PCMarker";
79 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
80 case ISD::SRCVALUE: return "SrcValue";
81 case ISD::MDNODE_SDNODE: return "MDNode";
82 case ISD::EntryToken: return "EntryToken";
83 case ISD::TokenFactor: return "TokenFactor";
84 case ISD::AssertSext: return "AssertSext";
85 case ISD::AssertZext: return "AssertZext";
86
87 case ISD::BasicBlock: return "BasicBlock";
88 case ISD::VALUETYPE: return "ValueType";
89 case ISD::Register: return "Register";
90 case ISD::RegisterMask: return "RegisterMask";
Juergen Ributzkaf26beda2014-01-25 02:02:55 +000091 case ISD::Constant:
92 if (cast<ConstantSDNode>(this)->isOpaque())
93 return "OpaqueConstant";
94 return "Constant";
Bill Wendling508a3e52012-03-13 05:47:27 +000095 case ISD::ConstantFP: return "ConstantFP";
96 case ISD::GlobalAddress: return "GlobalAddress";
97 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
98 case ISD::FrameIndex: return "FrameIndex";
99 case ISD::JumpTable: return "JumpTable";
100 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
101 case ISD::RETURNADDR: return "RETURNADDR";
102 case ISD::FRAMEADDR: return "FRAMEADDR";
Reid Kleckner60381792015-07-07 22:25:32 +0000103 case ISD::LOCAL_RECOVER: return "LOCAL_RECOVER";
Renato Golinc7aea402014-05-06 16:51:25 +0000104 case ISD::READ_REGISTER: return "READ_REGISTER";
105 case ISD::WRITE_REGISTER: return "WRITE_REGISTER";
Bill Wendling508a3e52012-03-13 05:47:27 +0000106 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
Bill Wendling508a3e52012-03-13 05:47:27 +0000107 case ISD::EH_RETURN: return "EH_RETURN";
108 case ISD::EH_SJLJ_SETJMP: return "EH_SJLJ_SETJMP";
109 case ISD::EH_SJLJ_LONGJMP: return "EH_SJLJ_LONGJMP";
Matthias Braun3cd00c12015-07-16 22:34:16 +0000110 case ISD::EH_SJLJ_SETUP_DISPATCH: return "EH_SJLJ_SETUP_DISPATCH";
Bill Wendling508a3e52012-03-13 05:47:27 +0000111 case ISD::ConstantPool: return "ConstantPool";
Jakob Stoklund Olesen505715d2012-08-07 22:37:05 +0000112 case ISD::TargetIndex: return "TargetIndex";
Bill Wendling508a3e52012-03-13 05:47:27 +0000113 case ISD::ExternalSymbol: return "ExternalSymbol";
114 case ISD::BlockAddress: return "BlockAddress";
115 case ISD::INTRINSIC_WO_CHAIN:
116 case ISD::INTRINSIC_VOID:
117 case ISD::INTRINSIC_W_CHAIN: {
118 unsigned OpNo = getOpcode() == ISD::INTRINSIC_WO_CHAIN ? 0 : 1;
119 unsigned IID = cast<ConstantSDNode>(getOperand(OpNo))->getZExtValue();
120 if (IID < Intrinsic::num_intrinsics)
121 return Intrinsic::getName((Intrinsic::ID)IID);
122 else if (const TargetIntrinsicInfo *TII = G->getTarget().getIntrinsicInfo())
123 return TII->getName(IID);
124 llvm_unreachable("Invalid intrinsic ID");
125 }
126
127 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000128 case ISD::TargetConstant:
129 if (cast<ConstantSDNode>(this)->isOpaque())
130 return "OpaqueTargetConstant";
131 return "TargetConstant";
Bill Wendling508a3e52012-03-13 05:47:27 +0000132 case ISD::TargetConstantFP: return "TargetConstantFP";
133 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
134 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
135 case ISD::TargetFrameIndex: return "TargetFrameIndex";
136 case ISD::TargetJumpTable: return "TargetJumpTable";
137 case ISD::TargetConstantPool: return "TargetConstantPool";
138 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Rafael Espindola36b718f2015-06-22 17:46:53 +0000139 case ISD::MCSymbol: return "MCSymbol";
Bill Wendling508a3e52012-03-13 05:47:27 +0000140 case ISD::TargetBlockAddress: return "TargetBlockAddress";
141
142 case ISD::CopyToReg: return "CopyToReg";
143 case ISD::CopyFromReg: return "CopyFromReg";
144 case ISD::UNDEF: return "undef";
145 case ISD::MERGE_VALUES: return "merge_values";
146 case ISD::INLINEASM: return "inlineasm";
147 case ISD::EH_LABEL: return "eh_label";
148 case ISD::HANDLENODE: return "handlenode";
149
150 // Unary operators
151 case ISD::FABS: return "fabs";
Matt Arsenault7c936902014-10-21 23:01:01 +0000152 case ISD::FMINNUM: return "fminnum";
153 case ISD::FMAXNUM: return "fmaxnum";
James Molloy01cdecc2015-08-11 09:13:05 +0000154 case ISD::FMINNAN: return "fminnan";
155 case ISD::FMAXNAN: return "fmaxnan";
Bill Wendling508a3e52012-03-13 05:47:27 +0000156 case ISD::FNEG: return "fneg";
157 case ISD::FSQRT: return "fsqrt";
158 case ISD::FSIN: return "fsin";
159 case ISD::FCOS: return "fcos";
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000160 case ISD::FSINCOS: return "fsincos";
Bill Wendling508a3e52012-03-13 05:47:27 +0000161 case ISD::FTRUNC: return "ftrunc";
162 case ISD::FFLOOR: return "ffloor";
163 case ISD::FCEIL: return "fceil";
164 case ISD::FRINT: return "frint";
165 case ISD::FNEARBYINT: return "fnearbyint";
Hal Finkel171817e2013-08-07 22:49:12 +0000166 case ISD::FROUND: return "fround";
Bill Wendling508a3e52012-03-13 05:47:27 +0000167 case ISD::FEXP: return "fexp";
168 case ISD::FEXP2: return "fexp2";
169 case ISD::FLOG: return "flog";
170 case ISD::FLOG2: return "flog2";
171 case ISD::FLOG10: return "flog10";
172
173 // Binary operators
174 case ISD::ADD: return "add";
175 case ISD::SUB: return "sub";
176 case ISD::MUL: return "mul";
177 case ISD::MULHU: return "mulhu";
178 case ISD::MULHS: return "mulhs";
179 case ISD::SDIV: return "sdiv";
180 case ISD::UDIV: return "udiv";
181 case ISD::SREM: return "srem";
182 case ISD::UREM: return "urem";
183 case ISD::SMUL_LOHI: return "smul_lohi";
184 case ISD::UMUL_LOHI: return "umul_lohi";
185 case ISD::SDIVREM: return "sdivrem";
186 case ISD::UDIVREM: return "udivrem";
187 case ISD::AND: return "and";
188 case ISD::OR: return "or";
189 case ISD::XOR: return "xor";
190 case ISD::SHL: return "shl";
191 case ISD::SRA: return "sra";
192 case ISD::SRL: return "srl";
193 case ISD::ROTL: return "rotl";
194 case ISD::ROTR: return "rotr";
195 case ISD::FADD: return "fadd";
196 case ISD::FSUB: return "fsub";
197 case ISD::FMUL: return "fmul";
198 case ISD::FDIV: return "fdiv";
199 case ISD::FMA: return "fma";
Matt Arsenault0dc54c42015-02-20 22:10:33 +0000200 case ISD::FMAD: return "fmad";
Bill Wendling508a3e52012-03-13 05:47:27 +0000201 case ISD::FREM: return "frem";
202 case ISD::FCOPYSIGN: return "fcopysign";
203 case ISD::FGETSIGN: return "fgetsign";
204 case ISD::FPOW: return "fpow";
James Molloy7e9776b2015-05-15 09:03:15 +0000205 case ISD::SMIN: return "smin";
206 case ISD::SMAX: return "smax";
207 case ISD::UMIN: return "umin";
208 case ISD::UMAX: return "umax";
Bill Wendling508a3e52012-03-13 05:47:27 +0000209
210 case ISD::FPOWI: return "fpowi";
211 case ISD::SETCC: return "setcc";
212 case ISD::SELECT: return "select";
213 case ISD::VSELECT: return "vselect";
214 case ISD::SELECT_CC: return "select_cc";
215 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
216 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
217 case ISD::CONCAT_VECTORS: return "concat_vectors";
218 case ISD::INSERT_SUBVECTOR: return "insert_subvector";
219 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
220 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
221 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
222 case ISD::CARRY_FALSE: return "carry_false";
223 case ISD::ADDC: return "addc";
224 case ISD::ADDE: return "adde";
225 case ISD::SADDO: return "saddo";
226 case ISD::UADDO: return "uaddo";
227 case ISD::SSUBO: return "ssubo";
228 case ISD::USUBO: return "usubo";
229 case ISD::SMULO: return "smulo";
230 case ISD::UMULO: return "umulo";
231 case ISD::SUBC: return "subc";
232 case ISD::SUBE: return "sube";
233 case ISD::SHL_PARTS: return "shl_parts";
234 case ISD::SRA_PARTS: return "sra_parts";
235 case ISD::SRL_PARTS: return "srl_parts";
James Molloy7395a812015-07-16 15:22:46 +0000236 case ISD::UABSDIFF: return "uabsdiff";
237 case ISD::SABSDIFF: return "sabsdiff";
Bill Wendling508a3e52012-03-13 05:47:27 +0000238
239 // Conversion operators.
240 case ISD::SIGN_EXTEND: return "sign_extend";
241 case ISD::ZERO_EXTEND: return "zero_extend";
242 case ISD::ANY_EXTEND: return "any_extend";
243 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chandler Carruth0b666e02014-07-10 12:32:32 +0000244 case ISD::ANY_EXTEND_VECTOR_INREG: return "any_extend_vector_inreg";
245 case ISD::SIGN_EXTEND_VECTOR_INREG: return "sign_extend_vector_inreg";
Chandler Carruthafe4b252014-07-09 10:58:18 +0000246 case ISD::ZERO_EXTEND_VECTOR_INREG: return "zero_extend_vector_inreg";
Bill Wendling508a3e52012-03-13 05:47:27 +0000247 case ISD::TRUNCATE: return "truncate";
248 case ISD::FP_ROUND: return "fp_round";
249 case ISD::FLT_ROUNDS_: return "flt_rounds";
250 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
251 case ISD::FP_EXTEND: return "fp_extend";
252
253 case ISD::SINT_TO_FP: return "sint_to_fp";
254 case ISD::UINT_TO_FP: return "uint_to_fp";
255 case ISD::FP_TO_SINT: return "fp_to_sint";
256 case ISD::FP_TO_UINT: return "fp_to_uint";
257 case ISD::BITCAST: return "bitcast";
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +0000258 case ISD::ADDRSPACECAST: return "addrspacecast";
Tim Northoverfd7e4242014-07-17 10:51:23 +0000259 case ISD::FP16_TO_FP: return "fp16_to_fp";
260 case ISD::FP_TO_FP16: return "fp_to_fp16";
Bill Wendling508a3e52012-03-13 05:47:27 +0000261
262 case ISD::CONVERT_RNDSAT: {
263 switch (cast<CvtRndSatSDNode>(this)->getCvtCode()) {
264 default: llvm_unreachable("Unknown cvt code!");
265 case ISD::CVT_FF: return "cvt_ff";
266 case ISD::CVT_FS: return "cvt_fs";
267 case ISD::CVT_FU: return "cvt_fu";
268 case ISD::CVT_SF: return "cvt_sf";
269 case ISD::CVT_UF: return "cvt_uf";
270 case ISD::CVT_SS: return "cvt_ss";
271 case ISD::CVT_SU: return "cvt_su";
272 case ISD::CVT_US: return "cvt_us";
273 case ISD::CVT_UU: return "cvt_uu";
274 }
275 }
276
277 // Control flow instructions
278 case ISD::BR: return "br";
279 case ISD::BRIND: return "brind";
280 case ISD::BR_JT: return "br_jt";
281 case ISD::BRCOND: return "brcond";
282 case ISD::BR_CC: return "br_cc";
283 case ISD::CALLSEQ_START: return "callseq_start";
284 case ISD::CALLSEQ_END: return "callseq_end";
285
Reid Kleckner0e288232015-08-27 23:27:47 +0000286 // EH instructions
287 case ISD::CATCHRET: return "catchret";
288 case ISD::CLEANUPRET: return "cleanupret";
289
Bill Wendling508a3e52012-03-13 05:47:27 +0000290 // Other operators
291 case ISD::LOAD: return "load";
292 case ISD::STORE: return "store";
Elena Demikhovskyf1de34b2014-12-04 09:40:44 +0000293 case ISD::MLOAD: return "masked_load";
294 case ISD::MSTORE: return "masked_store";
Elena Demikhovskye1eda8a2015-04-30 08:38:48 +0000295 case ISD::MGATHER: return "masked_gather";
296 case ISD::MSCATTER: return "masked_scatter";
Bill Wendling508a3e52012-03-13 05:47:27 +0000297 case ISD::VAARG: return "vaarg";
298 case ISD::VACOPY: return "vacopy";
299 case ISD::VAEND: return "vaend";
300 case ISD::VASTART: return "vastart";
301 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
302 case ISD::EXTRACT_ELEMENT: return "extract_element";
303 case ISD::BUILD_PAIR: return "build_pair";
304 case ISD::STACKSAVE: return "stacksave";
305 case ISD::STACKRESTORE: return "stackrestore";
306 case ISD::TRAP: return "trap";
Dan Gohman164fe182012-05-14 18:58:10 +0000307 case ISD::DEBUGTRAP: return "debugtrap";
Nadav Rotem7c277da2012-09-06 09:17:37 +0000308 case ISD::LIFETIME_START: return "lifetime.start";
309 case ISD::LIFETIME_END: return "lifetime.end";
Pat Gavlincc0431d2015-05-08 18:07:42 +0000310 case ISD::GC_TRANSITION_START: return "gc_transition.start";
311 case ISD::GC_TRANSITION_END: return "gc_transition.end";
Bill Wendling508a3e52012-03-13 05:47:27 +0000312
313 // Bit manipulation
James Molloy90111f72015-11-12 12:29:09 +0000314 case ISD::BITREVERSE: return "bitreverse";
Bill Wendling508a3e52012-03-13 05:47:27 +0000315 case ISD::BSWAP: return "bswap";
316 case ISD::CTPOP: return "ctpop";
317 case ISD::CTTZ: return "cttz";
318 case ISD::CTTZ_ZERO_UNDEF: return "cttz_zero_undef";
319 case ISD::CTLZ: return "ctlz";
320 case ISD::CTLZ_ZERO_UNDEF: return "ctlz_zero_undef";
James Molloy90111f72015-11-12 12:29:09 +0000321
Bill Wendling508a3e52012-03-13 05:47:27 +0000322 // Trampolines
323 case ISD::INIT_TRAMPOLINE: return "init_trampoline";
324 case ISD::ADJUST_TRAMPOLINE: return "adjust_trampoline";
325
326 case ISD::CONDCODE:
327 switch (cast<CondCodeSDNode>(this)->get()) {
328 default: llvm_unreachable("Unknown setcc condition!");
329 case ISD::SETOEQ: return "setoeq";
330 case ISD::SETOGT: return "setogt";
331 case ISD::SETOGE: return "setoge";
332 case ISD::SETOLT: return "setolt";
333 case ISD::SETOLE: return "setole";
334 case ISD::SETONE: return "setone";
335
336 case ISD::SETO: return "seto";
337 case ISD::SETUO: return "setuo";
JF Bastien0cf74522015-08-11 21:10:07 +0000338 case ISD::SETUEQ: return "setueq";
Bill Wendling508a3e52012-03-13 05:47:27 +0000339 case ISD::SETUGT: return "setugt";
340 case ISD::SETUGE: return "setuge";
341 case ISD::SETULT: return "setult";
342 case ISD::SETULE: return "setule";
343 case ISD::SETUNE: return "setune";
344
345 case ISD::SETEQ: return "seteq";
346 case ISD::SETGT: return "setgt";
347 case ISD::SETGE: return "setge";
348 case ISD::SETLT: return "setlt";
349 case ISD::SETLE: return "setle";
350 case ISD::SETNE: return "setne";
351
352 case ISD::SETTRUE: return "settrue";
353 case ISD::SETTRUE2: return "settrue2";
354 case ISD::SETFALSE: return "setfalse";
355 case ISD::SETFALSE2: return "setfalse2";
356 }
357 }
358}
359
360const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
361 switch (AM) {
362 default: return "";
363 case ISD::PRE_INC: return "<pre-inc>";
364 case ISD::PRE_DEC: return "<pre-dec>";
365 case ISD::POST_INC: return "<post-inc>";
366 case ISD::POST_DEC: return "<post-dec>";
367 }
368}
369
Matthias Braun0b7d6c12015-09-18 17:41:00 +0000370namespace {
371class PrintNodeId {
372 const SDNode &Node;
373public:
374 explicit PrintNodeId(const SDNode &Node)
375 : Node(Node) {}
376 void print(raw_ostream &OS) const {
377#ifndef NDEBUG
378 OS << 't' << Node.PersistentId;
379#else
380 OS << (const void*)&Node;
381#endif
382 }
383};
384
385static inline raw_ostream &operator<<(raw_ostream &OS, const PrintNodeId &P) {
386 P.print(OS);
387 return OS;
388}
389}
390
Craig Topperc0196b12014-04-14 00:51:57 +0000391void SDNode::dump() const { dump(nullptr); }
Bill Wendling508a3e52012-03-13 05:47:27 +0000392void SDNode::dump(const SelectionDAG *G) const {
393 print(dbgs(), G);
394 dbgs() << '\n';
395}
396
397void SDNode::print_types(raw_ostream &OS, const SelectionDAG *G) const {
Bill Wendling508a3e52012-03-13 05:47:27 +0000398 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
399 if (i) OS << ",";
400 if (getValueType(i) == MVT::Other)
401 OS << "ch";
402 else
403 OS << getValueType(i).getEVTString();
404 }
Bill Wendling508a3e52012-03-13 05:47:27 +0000405}
406
407void SDNode::print_details(raw_ostream &OS, const SelectionDAG *G) const {
408 if (const MachineSDNode *MN = dyn_cast<MachineSDNode>(this)) {
409 if (!MN->memoperands_empty()) {
410 OS << "<";
411 OS << "Mem:";
412 for (MachineSDNode::mmo_iterator i = MN->memoperands_begin(),
413 e = MN->memoperands_end(); i != e; ++i) {
414 OS << **i;
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000415 if (std::next(i) != e)
Bill Wendling508a3e52012-03-13 05:47:27 +0000416 OS << " ";
417 }
418 OS << ">";
419 }
420 } else if (const ShuffleVectorSDNode *SVN =
421 dyn_cast<ShuffleVectorSDNode>(this)) {
422 OS << "<";
423 for (unsigned i = 0, e = ValueList[0].getVectorNumElements(); i != e; ++i) {
424 int Idx = SVN->getMaskElt(i);
425 if (i) OS << ",";
426 if (Idx < 0)
427 OS << "u";
428 else
429 OS << Idx;
430 }
431 OS << ">";
432 } else if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
433 OS << '<' << CSDN->getAPIntValue() << '>';
434 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
435 if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
436 OS << '<' << CSDN->getValueAPF().convertToFloat() << '>';
437 else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
438 OS << '<' << CSDN->getValueAPF().convertToDouble() << '>';
439 else {
440 OS << "<APFloat(";
441 CSDN->getValueAPF().bitcastToAPInt().dump();
442 OS << ")>";
443 }
444 } else if (const GlobalAddressSDNode *GADN =
445 dyn_cast<GlobalAddressSDNode>(this)) {
446 int64_t offset = GADN->getOffset();
447 OS << '<';
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000448 GADN->getGlobal()->printAsOperand(OS);
Bill Wendling508a3e52012-03-13 05:47:27 +0000449 OS << '>';
450 if (offset > 0)
451 OS << " + " << offset;
452 else
453 OS << " " << offset;
454 if (unsigned int TF = GADN->getTargetFlags())
455 OS << " [TF=" << TF << ']';
456 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
457 OS << "<" << FIDN->getIndex() << ">";
458 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
459 OS << "<" << JTDN->getIndex() << ">";
460 if (unsigned int TF = JTDN->getTargetFlags())
461 OS << " [TF=" << TF << ']';
462 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
463 int offset = CP->getOffset();
464 if (CP->isMachineConstantPoolEntry())
465 OS << "<" << *CP->getMachineCPVal() << ">";
466 else
467 OS << "<" << *CP->getConstVal() << ">";
468 if (offset > 0)
469 OS << " + " << offset;
470 else
471 OS << " " << offset;
472 if (unsigned int TF = CP->getTargetFlags())
473 OS << " [TF=" << TF << ']';
Jakob Stoklund Olesen505715d2012-08-07 22:37:05 +0000474 } else if (const TargetIndexSDNode *TI = dyn_cast<TargetIndexSDNode>(this)) {
475 OS << "<" << TI->getIndex() << '+' << TI->getOffset() << ">";
476 if (unsigned TF = TI->getTargetFlags())
477 OS << " [TF=" << TF << ']';
Bill Wendling508a3e52012-03-13 05:47:27 +0000478 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
479 OS << "<";
480 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
481 if (LBB)
482 OS << LBB->getName() << " ";
483 OS << (const void*)BBDN->getBasicBlock() << ">";
484 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Eric Christopherfc6de422014-08-05 02:39:49 +0000485 OS << ' ' << PrintReg(R->getReg(),
486 G ? G->getSubtarget().getRegisterInfo() : nullptr);
Bill Wendling508a3e52012-03-13 05:47:27 +0000487 } else if (const ExternalSymbolSDNode *ES =
488 dyn_cast<ExternalSymbolSDNode>(this)) {
489 OS << "'" << ES->getSymbol() << "'";
490 if (unsigned int TF = ES->getTargetFlags())
491 OS << " [TF=" << TF << ']';
492 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
493 if (M->getValue())
494 OS << "<" << M->getValue() << ">";
495 else
496 OS << "<null>";
497 } else if (const MDNodeSDNode *MD = dyn_cast<MDNodeSDNode>(this)) {
498 if (MD->getMD())
499 OS << "<" << MD->getMD() << ">";
500 else
501 OS << "<null>";
502 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
503 OS << ":" << N->getVT().getEVTString();
504 }
505 else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
506 OS << "<" << *LD->getMemOperand();
507
508 bool doExt = true;
509 switch (LD->getExtensionType()) {
510 default: doExt = false; break;
511 case ISD::EXTLOAD: OS << ", anyext"; break;
512 case ISD::SEXTLOAD: OS << ", sext"; break;
513 case ISD::ZEXTLOAD: OS << ", zext"; break;
514 }
515 if (doExt)
516 OS << " from " << LD->getMemoryVT().getEVTString();
517
518 const char *AM = getIndexedModeName(LD->getAddressingMode());
519 if (*AM)
520 OS << ", " << AM;
521
522 OS << ">";
523 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
524 OS << "<" << *ST->getMemOperand();
525
526 if (ST->isTruncatingStore())
527 OS << ", trunc to " << ST->getMemoryVT().getEVTString();
528
529 const char *AM = getIndexedModeName(ST->getAddressingMode());
530 if (*AM)
531 OS << ", " << AM;
532
533 OS << ">";
534 } else if (const MemSDNode* M = dyn_cast<MemSDNode>(this)) {
535 OS << "<" << *M->getMemOperand() << ">";
536 } else if (const BlockAddressSDNode *BA =
537 dyn_cast<BlockAddressSDNode>(this)) {
Michael Liaoabb87d42012-09-12 21:43:09 +0000538 int64_t offset = BA->getOffset();
Bill Wendling508a3e52012-03-13 05:47:27 +0000539 OS << "<";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000540 BA->getBlockAddress()->getFunction()->printAsOperand(OS, false);
Bill Wendling508a3e52012-03-13 05:47:27 +0000541 OS << ", ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000542 BA->getBlockAddress()->getBasicBlock()->printAsOperand(OS, false);
Bill Wendling508a3e52012-03-13 05:47:27 +0000543 OS << ">";
Michael Liaoabb87d42012-09-12 21:43:09 +0000544 if (offset > 0)
545 OS << " + " << offset;
546 else
547 OS << " " << offset;
Bill Wendling508a3e52012-03-13 05:47:27 +0000548 if (unsigned int TF = BA->getTargetFlags())
549 OS << " [TF=" << TF << ']';
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +0000550 } else if (const AddrSpaceCastSDNode *ASC =
551 dyn_cast<AddrSpaceCastSDNode>(this)) {
552 OS << '['
553 << ASC->getSrcAddressSpace()
554 << " -> "
555 << ASC->getDestAddressSpace()
556 << ']';
Bill Wendling508a3e52012-03-13 05:47:27 +0000557 }
558
Matthias Braunf89b7c72015-09-18 17:57:28 +0000559 if (VerboseDAGDumping) {
560 if (unsigned Order = getIROrder())
561 OS << " [ORD=" << Order << ']';
Bill Wendling508a3e52012-03-13 05:47:27 +0000562
Matthias Braunf89b7c72015-09-18 17:57:28 +0000563 if (getNodeId() != -1)
564 OS << " [ID=" << getNodeId() << ']';
Bill Wendling508a3e52012-03-13 05:47:27 +0000565
Matthias Braunf89b7c72015-09-18 17:57:28 +0000566 if (!G)
567 return;
Duncan P. N. Exon Smithb525e1c2015-03-30 18:23:28 +0000568
Matthias Braunf89b7c72015-09-18 17:57:28 +0000569 DILocation *L = getDebugLoc();
570 if (!L)
571 return;
Duncan P. N. Exon Smithb525e1c2015-03-30 18:23:28 +0000572
Matthias Braunf89b7c72015-09-18 17:57:28 +0000573 if (auto *Scope = L->getScope())
574 OS << Scope->getFilename();
575 else
576 OS << "<unknown>";
577 OS << ':' << L->getLine();
578 if (unsigned C = L->getColumn())
579 OS << ':' << C;
580 }
Bill Wendling508a3e52012-03-13 05:47:27 +0000581}
582
Matthias Brauna3b701f2015-09-25 22:27:02 +0000583/// Return true if this node is so simple that we should just print it inline
584/// if it appears as an operand.
585static bool shouldPrintInline(const SDNode &Node) {
586 if (Node.getOpcode() == ISD::EntryToken)
587 return false;
588 return Node.getNumOperands() == 0;
589}
590
Bill Wendling508a3e52012-03-13 05:47:27 +0000591static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Matthias Brauna3b701f2015-09-25 22:27:02 +0000592 for (const SDValue &Op : N->op_values()) {
593 if (shouldPrintInline(*Op.getNode()))
594 continue;
Pete Cooper485d1142015-06-26 19:37:02 +0000595 if (Op.getNode()->hasOneUse())
596 DumpNodes(Op.getNode(), indent+2, G);
Matthias Brauna3b701f2015-09-25 22:27:02 +0000597 }
Bill Wendling508a3e52012-03-13 05:47:27 +0000598
Bill Wendling508a3e52012-03-13 05:47:27 +0000599 dbgs().indent(indent);
600 N->dump(G);
601}
602
603void SelectionDAG::dump() const {
Matthias Braunbab3fb42015-09-18 17:57:31 +0000604 dbgs() << "SelectionDAG has " << AllNodes.size() << " nodes:\n";
Bill Wendling508a3e52012-03-13 05:47:27 +0000605
606 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
607 I != E; ++I) {
Duncan P. N. Exon Smithe400a7d2015-10-13 19:47:46 +0000608 const SDNode *N = &*I;
Matthias Brauna3b701f2015-09-25 22:27:02 +0000609 if (!N->hasOneUse() && N != getRoot().getNode() &&
610 (!shouldPrintInline(*N) || N->use_empty()))
Bill Wendling508a3e52012-03-13 05:47:27 +0000611 DumpNodes(N, 2, this);
612 }
613
614 if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this);
615 dbgs() << "\n\n";
616}
617
618void SDNode::printr(raw_ostream &OS, const SelectionDAG *G) const {
Matthias Brauna3b701f2015-09-25 22:27:02 +0000619 OS << PrintNodeId(*this) << ": ";
Bill Wendling508a3e52012-03-13 05:47:27 +0000620 print_types(OS, G);
Matthias Brauna3b701f2015-09-25 22:27:02 +0000621 OS << " = " << getOperationName(G);
Bill Wendling508a3e52012-03-13 05:47:27 +0000622 print_details(OS, G);
623}
624
Matthias Brauna3b701f2015-09-25 22:27:02 +0000625static bool printOperand(raw_ostream &OS, const SelectionDAG *G,
626 const SDValue Value) {
627 if (shouldPrintInline(*Value.getNode())) {
628 OS << Value->getOperationName(G) << ':';
629 Value->print_types(OS, G);
630 Value->print_details(OS, G);
631 return true;
632 } else {
633 OS << PrintNodeId(*Value.getNode());
634 if (unsigned RN = Value.getResNo())
635 OS << ':' << RN;
636 return false;
637 }
638}
639
Bill Wendling508a3e52012-03-13 05:47:27 +0000640typedef SmallPtrSet<const SDNode *, 128> VisitedSDNodeSet;
641static void DumpNodesr(raw_ostream &OS, const SDNode *N, unsigned indent,
642 const SelectionDAG *G, VisitedSDNodeSet &once) {
David Blaikie70573dc2014-11-19 07:49:26 +0000643 if (!once.insert(N).second) // If we've been here before, return now.
Bill Wendling508a3e52012-03-13 05:47:27 +0000644 return;
645
646 // Dump the current SDNode, but don't end the line yet.
647 OS.indent(indent);
648 N->printr(OS, G);
649
650 // Having printed this SDNode, walk the children:
651 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Bill Wendling508a3e52012-03-13 05:47:27 +0000652 if (i) OS << ",";
653 OS << " ";
654
Matthias Brauna3b701f2015-09-25 22:27:02 +0000655 const SDValue Op = N->getOperand(i);
656 bool printedInline = printOperand(OS, G, Op);
657 if (printedInline)
658 once.insert(Op.getNode());
Bill Wendling508a3e52012-03-13 05:47:27 +0000659 }
660
661 OS << "\n";
662
663 // Dump children that have grandchildren on their own line(s).
Pete Cooper485d1142015-06-26 19:37:02 +0000664 for (const SDValue &Op : N->op_values())
665 DumpNodesr(OS, Op.getNode(), indent+2, G, once);
Bill Wendling508a3e52012-03-13 05:47:27 +0000666}
667
668void SDNode::dumpr() const {
669 VisitedSDNodeSet once;
Craig Topperc0196b12014-04-14 00:51:57 +0000670 DumpNodesr(dbgs(), this, 0, nullptr, once);
Bill Wendling508a3e52012-03-13 05:47:27 +0000671}
672
673void SDNode::dumpr(const SelectionDAG *G) const {
674 VisitedSDNodeSet once;
675 DumpNodesr(dbgs(), this, 0, G, once);
676}
677
678static void printrWithDepthHelper(raw_ostream &OS, const SDNode *N,
679 const SelectionDAG *G, unsigned depth,
680 unsigned indent) {
681 if (depth == 0)
682 return;
683
684 OS.indent(indent);
685
686 N->print(OS, G);
687
688 if (depth < 1)
689 return;
690
Pete Cooper485d1142015-06-26 19:37:02 +0000691 for (const SDValue &Op : N->op_values()) {
Bill Wendling508a3e52012-03-13 05:47:27 +0000692 // Don't follow chain operands.
Pete Cooper485d1142015-06-26 19:37:02 +0000693 if (Op.getValueType() == MVT::Other)
Bill Wendling508a3e52012-03-13 05:47:27 +0000694 continue;
695 OS << '\n';
Pete Cooper485d1142015-06-26 19:37:02 +0000696 printrWithDepthHelper(OS, Op.getNode(), G, depth-1, indent+2);
Bill Wendling508a3e52012-03-13 05:47:27 +0000697 }
698}
699
700void SDNode::printrWithDepth(raw_ostream &OS, const SelectionDAG *G,
701 unsigned depth) const {
702 printrWithDepthHelper(OS, this, G, depth, 0);
703}
704
705void SDNode::printrFull(raw_ostream &OS, const SelectionDAG *G) const {
706 // Don't print impossibly deep things.
707 printrWithDepth(OS, G, 10);
708}
709
710void SDNode::dumprWithDepth(const SelectionDAG *G, unsigned depth) const {
711 printrWithDepth(dbgs(), G, depth);
712}
713
714void SDNode::dumprFull(const SelectionDAG *G) const {
715 // Don't print impossibly deep things.
716 dumprWithDepth(G, 10);
717}
718
719void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
Matthias Brauna3b701f2015-09-25 22:27:02 +0000720 printr(OS, G);
Bill Wendling508a3e52012-03-13 05:47:27 +0000721 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
722 if (i) OS << ", "; else OS << " ";
Matthias Brauna3b701f2015-09-25 22:27:02 +0000723 printOperand(OS, G, getOperand(i));
Bill Wendling508a3e52012-03-13 05:47:27 +0000724 }
Bill Wendling508a3e52012-03-13 05:47:27 +0000725}