SelectionDAG: Introduce PersistentID to SDNode for assert builds.
[oota-llvm.git] / lib / CodeGen / SelectionDAG / SelectionDAGDumper.cpp
1 //===-- 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
14 #include "llvm/CodeGen/SelectionDAG.h"
15 #include "ScheduleDAGSDNodes.h"
16 #include "llvm/ADT/StringExtras.h"
17 #include "llvm/CodeGen/MachineConstantPool.h"
18 #include "llvm/CodeGen/MachineFunction.h"
19 #include "llvm/CodeGen/MachineModuleInfo.h"
20 #include "llvm/IR/DebugInfo.h"
21 #include "llvm/IR/Function.h"
22 #include "llvm/IR/Intrinsics.h"
23 #include "llvm/Support/Debug.h"
24 #include "llvm/Support/GraphWriter.h"
25 #include "llvm/Support/raw_ostream.h"
26 #include "llvm/Target/TargetInstrInfo.h"
27 #include "llvm/Target/TargetIntrinsicInfo.h"
28 #include "llvm/Target/TargetMachine.h"
29 #include "llvm/Target/TargetRegisterInfo.h"
30 #include "llvm/Target/TargetSubtargetInfo.h"
31 using namespace llvm;
32
33 std::string SDNode::getOperationName(const SelectionDAG *G) const {
34   switch (getOpcode()) {
35   default:
36     if (getOpcode() < ISD::BUILTIN_OP_END)
37       return "<<Unknown DAG Node>>";
38     if (isMachineOpcode()) {
39       if (G)
40         if (const TargetInstrInfo *TII = G->getSubtarget().getInstrInfo())
41           if (getMachineOpcode() < TII->getNumOpcodes())
42             return TII->getName(getMachineOpcode());
43       return "<<Unknown Machine Node #" + utostr(getOpcode()) + ">>";
44     }
45     if (G) {
46       const TargetLowering &TLI = G->getTargetLoweringInfo();
47       const char *Name = TLI.getTargetNodeName(getOpcode());
48       if (Name) return Name;
49       return "<<Unknown Target Node #" + utostr(getOpcode()) + ">>";
50     }
51     return "<<Unknown Node #" + utostr(getOpcode()) + ">>";
52
53 #ifndef NDEBUG
54   case ISD::DELETED_NODE:               return "<<Deleted Node!>>";
55 #endif
56   case ISD::PREFETCH:                   return "Prefetch";
57   case ISD::ATOMIC_FENCE:               return "AtomicFence";
58   case ISD::ATOMIC_CMP_SWAP:            return "AtomicCmpSwap";
59   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: return "AtomicCmpSwapWithSuccess";
60   case ISD::ATOMIC_SWAP:                return "AtomicSwap";
61   case ISD::ATOMIC_LOAD_ADD:            return "AtomicLoadAdd";
62   case ISD::ATOMIC_LOAD_SUB:            return "AtomicLoadSub";
63   case ISD::ATOMIC_LOAD_AND:            return "AtomicLoadAnd";
64   case ISD::ATOMIC_LOAD_OR:             return "AtomicLoadOr";
65   case ISD::ATOMIC_LOAD_XOR:            return "AtomicLoadXor";
66   case ISD::ATOMIC_LOAD_NAND:           return "AtomicLoadNand";
67   case ISD::ATOMIC_LOAD_MIN:            return "AtomicLoadMin";
68   case ISD::ATOMIC_LOAD_MAX:            return "AtomicLoadMax";
69   case ISD::ATOMIC_LOAD_UMIN:           return "AtomicLoadUMin";
70   case ISD::ATOMIC_LOAD_UMAX:           return "AtomicLoadUMax";
71   case ISD::ATOMIC_LOAD:                return "AtomicLoad";
72   case ISD::ATOMIC_STORE:               return "AtomicStore";
73   case ISD::PCMARKER:                   return "PCMarker";
74   case ISD::READCYCLECOUNTER:           return "ReadCycleCounter";
75   case ISD::SRCVALUE:                   return "SrcValue";
76   case ISD::MDNODE_SDNODE:              return "MDNode";
77   case ISD::EntryToken:                 return "EntryToken";
78   case ISD::TokenFactor:                return "TokenFactor";
79   case ISD::AssertSext:                 return "AssertSext";
80   case ISD::AssertZext:                 return "AssertZext";
81
82   case ISD::BasicBlock:                 return "BasicBlock";
83   case ISD::VALUETYPE:                  return "ValueType";
84   case ISD::Register:                   return "Register";
85   case ISD::RegisterMask:               return "RegisterMask";
86   case ISD::Constant:
87     if (cast<ConstantSDNode>(this)->isOpaque())
88       return "OpaqueConstant";
89     return "Constant";
90   case ISD::ConstantFP:                 return "ConstantFP";
91   case ISD::GlobalAddress:              return "GlobalAddress";
92   case ISD::GlobalTLSAddress:           return "GlobalTLSAddress";
93   case ISD::FrameIndex:                 return "FrameIndex";
94   case ISD::JumpTable:                  return "JumpTable";
95   case ISD::GLOBAL_OFFSET_TABLE:        return "GLOBAL_OFFSET_TABLE";
96   case ISD::RETURNADDR:                 return "RETURNADDR";
97   case ISD::FRAMEADDR:                  return "FRAMEADDR";
98   case ISD::LOCAL_RECOVER:        return "LOCAL_RECOVER";
99   case ISD::READ_REGISTER:              return "READ_REGISTER";
100   case ISD::WRITE_REGISTER:             return "WRITE_REGISTER";
101   case ISD::FRAME_TO_ARGS_OFFSET:       return "FRAME_TO_ARGS_OFFSET";
102   case ISD::EH_RETURN:                  return "EH_RETURN";
103   case ISD::EH_SJLJ_SETJMP:             return "EH_SJLJ_SETJMP";
104   case ISD::EH_SJLJ_LONGJMP:            return "EH_SJLJ_LONGJMP";
105   case ISD::EH_SJLJ_SETUP_DISPATCH:     return "EH_SJLJ_SETUP_DISPATCH";
106   case ISD::ConstantPool:               return "ConstantPool";
107   case ISD::TargetIndex:                return "TargetIndex";
108   case ISD::ExternalSymbol:             return "ExternalSymbol";
109   case ISD::BlockAddress:               return "BlockAddress";
110   case ISD::INTRINSIC_WO_CHAIN:
111   case ISD::INTRINSIC_VOID:
112   case ISD::INTRINSIC_W_CHAIN: {
113     unsigned OpNo = getOpcode() == ISD::INTRINSIC_WO_CHAIN ? 0 : 1;
114     unsigned IID = cast<ConstantSDNode>(getOperand(OpNo))->getZExtValue();
115     if (IID < Intrinsic::num_intrinsics)
116       return Intrinsic::getName((Intrinsic::ID)IID);
117     else if (const TargetIntrinsicInfo *TII = G->getTarget().getIntrinsicInfo())
118       return TII->getName(IID);
119     llvm_unreachable("Invalid intrinsic ID");
120   }
121
122   case ISD::BUILD_VECTOR:               return "BUILD_VECTOR";
123   case ISD::TargetConstant:
124     if (cast<ConstantSDNode>(this)->isOpaque())
125       return "OpaqueTargetConstant";
126     return "TargetConstant";
127   case ISD::TargetConstantFP:           return "TargetConstantFP";
128   case ISD::TargetGlobalAddress:        return "TargetGlobalAddress";
129   case ISD::TargetGlobalTLSAddress:     return "TargetGlobalTLSAddress";
130   case ISD::TargetFrameIndex:           return "TargetFrameIndex";
131   case ISD::TargetJumpTable:            return "TargetJumpTable";
132   case ISD::TargetConstantPool:         return "TargetConstantPool";
133   case ISD::TargetExternalSymbol:       return "TargetExternalSymbol";
134   case ISD::MCSymbol:                   return "MCSymbol";
135   case ISD::TargetBlockAddress:         return "TargetBlockAddress";
136
137   case ISD::CopyToReg:                  return "CopyToReg";
138   case ISD::CopyFromReg:                return "CopyFromReg";
139   case ISD::UNDEF:                      return "undef";
140   case ISD::MERGE_VALUES:               return "merge_values";
141   case ISD::INLINEASM:                  return "inlineasm";
142   case ISD::EH_LABEL:                   return "eh_label";
143   case ISD::HANDLENODE:                 return "handlenode";
144
145   // Unary operators
146   case ISD::FABS:                       return "fabs";
147   case ISD::FMINNUM:                    return "fminnum";
148   case ISD::FMAXNUM:                    return "fmaxnum";
149   case ISD::FMINNAN:                    return "fminnan";
150   case ISD::FMAXNAN:                    return "fmaxnan";
151   case ISD::FNEG:                       return "fneg";
152   case ISD::FSQRT:                      return "fsqrt";
153   case ISD::FSIN:                       return "fsin";
154   case ISD::FCOS:                       return "fcos";
155   case ISD::FSINCOS:                    return "fsincos";
156   case ISD::FTRUNC:                     return "ftrunc";
157   case ISD::FFLOOR:                     return "ffloor";
158   case ISD::FCEIL:                      return "fceil";
159   case ISD::FRINT:                      return "frint";
160   case ISD::FNEARBYINT:                 return "fnearbyint";
161   case ISD::FROUND:                     return "fround";
162   case ISD::FEXP:                       return "fexp";
163   case ISD::FEXP2:                      return "fexp2";
164   case ISD::FLOG:                       return "flog";
165   case ISD::FLOG2:                      return "flog2";
166   case ISD::FLOG10:                     return "flog10";
167
168   // Binary operators
169   case ISD::ADD:                        return "add";
170   case ISD::SUB:                        return "sub";
171   case ISD::MUL:                        return "mul";
172   case ISD::MULHU:                      return "mulhu";
173   case ISD::MULHS:                      return "mulhs";
174   case ISD::SDIV:                       return "sdiv";
175   case ISD::UDIV:                       return "udiv";
176   case ISD::SREM:                       return "srem";
177   case ISD::UREM:                       return "urem";
178   case ISD::SMUL_LOHI:                  return "smul_lohi";
179   case ISD::UMUL_LOHI:                  return "umul_lohi";
180   case ISD::SDIVREM:                    return "sdivrem";
181   case ISD::UDIVREM:                    return "udivrem";
182   case ISD::AND:                        return "and";
183   case ISD::OR:                         return "or";
184   case ISD::XOR:                        return "xor";
185   case ISD::SHL:                        return "shl";
186   case ISD::SRA:                        return "sra";
187   case ISD::SRL:                        return "srl";
188   case ISD::ROTL:                       return "rotl";
189   case ISD::ROTR:                       return "rotr";
190   case ISD::FADD:                       return "fadd";
191   case ISD::FSUB:                       return "fsub";
192   case ISD::FMUL:                       return "fmul";
193   case ISD::FDIV:                       return "fdiv";
194   case ISD::FMA:                        return "fma";
195   case ISD::FMAD:                       return "fmad";
196   case ISD::FREM:                       return "frem";
197   case ISD::FCOPYSIGN:                  return "fcopysign";
198   case ISD::FGETSIGN:                   return "fgetsign";
199   case ISD::FPOW:                       return "fpow";
200   case ISD::SMIN:                       return "smin";
201   case ISD::SMAX:                       return "smax";
202   case ISD::UMIN:                       return "umin";
203   case ISD::UMAX:                       return "umax";
204
205   case ISD::FPOWI:                      return "fpowi";
206   case ISD::SETCC:                      return "setcc";
207   case ISD::SELECT:                     return "select";
208   case ISD::VSELECT:                    return "vselect";
209   case ISD::SELECT_CC:                  return "select_cc";
210   case ISD::INSERT_VECTOR_ELT:          return "insert_vector_elt";
211   case ISD::EXTRACT_VECTOR_ELT:         return "extract_vector_elt";
212   case ISD::CONCAT_VECTORS:             return "concat_vectors";
213   case ISD::INSERT_SUBVECTOR:           return "insert_subvector";
214   case ISD::EXTRACT_SUBVECTOR:          return "extract_subvector";
215   case ISD::SCALAR_TO_VECTOR:           return "scalar_to_vector";
216   case ISD::VECTOR_SHUFFLE:             return "vector_shuffle";
217   case ISD::CARRY_FALSE:                return "carry_false";
218   case ISD::ADDC:                       return "addc";
219   case ISD::ADDE:                       return "adde";
220   case ISD::SADDO:                      return "saddo";
221   case ISD::UADDO:                      return "uaddo";
222   case ISD::SSUBO:                      return "ssubo";
223   case ISD::USUBO:                      return "usubo";
224   case ISD::SMULO:                      return "smulo";
225   case ISD::UMULO:                      return "umulo";
226   case ISD::SUBC:                       return "subc";
227   case ISD::SUBE:                       return "sube";
228   case ISD::SHL_PARTS:                  return "shl_parts";
229   case ISD::SRA_PARTS:                  return "sra_parts";
230   case ISD::SRL_PARTS:                  return "srl_parts";
231   case ISD::UABSDIFF:                   return "uabsdiff";
232   case ISD::SABSDIFF:                   return "sabsdiff";
233
234   // Conversion operators.
235   case ISD::SIGN_EXTEND:                return "sign_extend";
236   case ISD::ZERO_EXTEND:                return "zero_extend";
237   case ISD::ANY_EXTEND:                 return "any_extend";
238   case ISD::SIGN_EXTEND_INREG:          return "sign_extend_inreg";
239   case ISD::ANY_EXTEND_VECTOR_INREG:    return "any_extend_vector_inreg";
240   case ISD::SIGN_EXTEND_VECTOR_INREG:   return "sign_extend_vector_inreg";
241   case ISD::ZERO_EXTEND_VECTOR_INREG:   return "zero_extend_vector_inreg";
242   case ISD::TRUNCATE:                   return "truncate";
243   case ISD::FP_ROUND:                   return "fp_round";
244   case ISD::FLT_ROUNDS_:                return "flt_rounds";
245   case ISD::FP_ROUND_INREG:             return "fp_round_inreg";
246   case ISD::FP_EXTEND:                  return "fp_extend";
247
248   case ISD::SINT_TO_FP:                 return "sint_to_fp";
249   case ISD::UINT_TO_FP:                 return "uint_to_fp";
250   case ISD::FP_TO_SINT:                 return "fp_to_sint";
251   case ISD::FP_TO_UINT:                 return "fp_to_uint";
252   case ISD::BITCAST:                    return "bitcast";
253   case ISD::ADDRSPACECAST:              return "addrspacecast";
254   case ISD::FP16_TO_FP:                 return "fp16_to_fp";
255   case ISD::FP_TO_FP16:                 return "fp_to_fp16";
256
257   case ISD::CONVERT_RNDSAT: {
258     switch (cast<CvtRndSatSDNode>(this)->getCvtCode()) {
259     default: llvm_unreachable("Unknown cvt code!");
260     case ISD::CVT_FF:                   return "cvt_ff";
261     case ISD::CVT_FS:                   return "cvt_fs";
262     case ISD::CVT_FU:                   return "cvt_fu";
263     case ISD::CVT_SF:                   return "cvt_sf";
264     case ISD::CVT_UF:                   return "cvt_uf";
265     case ISD::CVT_SS:                   return "cvt_ss";
266     case ISD::CVT_SU:                   return "cvt_su";
267     case ISD::CVT_US:                   return "cvt_us";
268     case ISD::CVT_UU:                   return "cvt_uu";
269     }
270   }
271
272     // Control flow instructions
273   case ISD::BR:                         return "br";
274   case ISD::BRIND:                      return "brind";
275   case ISD::BR_JT:                      return "br_jt";
276   case ISD::BRCOND:                     return "brcond";
277   case ISD::BR_CC:                      return "br_cc";
278   case ISD::CALLSEQ_START:              return "callseq_start";
279   case ISD::CALLSEQ_END:                return "callseq_end";
280
281     // EH instructions
282   case ISD::CATCHRET:                   return "catchret";
283   case ISD::CLEANUPRET:                 return "cleanupret";
284
285     // Other operators
286   case ISD::LOAD:                       return "load";
287   case ISD::STORE:                      return "store";
288   case ISD::MLOAD:                      return "masked_load";
289   case ISD::MSTORE:                     return "masked_store";
290   case ISD::MGATHER:                    return "masked_gather";
291   case ISD::MSCATTER:                   return "masked_scatter";
292   case ISD::VAARG:                      return "vaarg";
293   case ISD::VACOPY:                     return "vacopy";
294   case ISD::VAEND:                      return "vaend";
295   case ISD::VASTART:                    return "vastart";
296   case ISD::DYNAMIC_STACKALLOC:         return "dynamic_stackalloc";
297   case ISD::EXTRACT_ELEMENT:            return "extract_element";
298   case ISD::BUILD_PAIR:                 return "build_pair";
299   case ISD::STACKSAVE:                  return "stacksave";
300   case ISD::STACKRESTORE:               return "stackrestore";
301   case ISD::TRAP:                       return "trap";
302   case ISD::DEBUGTRAP:                  return "debugtrap";
303   case ISD::LIFETIME_START:             return "lifetime.start";
304   case ISD::LIFETIME_END:               return "lifetime.end";
305   case ISD::GC_TRANSITION_START:        return "gc_transition.start";
306   case ISD::GC_TRANSITION_END:          return "gc_transition.end";
307
308   // Bit manipulation
309   case ISD::BSWAP:                      return "bswap";
310   case ISD::CTPOP:                      return "ctpop";
311   case ISD::CTTZ:                       return "cttz";
312   case ISD::CTTZ_ZERO_UNDEF:            return "cttz_zero_undef";
313   case ISD::CTLZ:                       return "ctlz";
314   case ISD::CTLZ_ZERO_UNDEF:            return "ctlz_zero_undef";
315
316   // Trampolines
317   case ISD::INIT_TRAMPOLINE:            return "init_trampoline";
318   case ISD::ADJUST_TRAMPOLINE:          return "adjust_trampoline";
319
320   case ISD::CONDCODE:
321     switch (cast<CondCodeSDNode>(this)->get()) {
322     default: llvm_unreachable("Unknown setcc condition!");
323     case ISD::SETOEQ:                   return "setoeq";
324     case ISD::SETOGT:                   return "setogt";
325     case ISD::SETOGE:                   return "setoge";
326     case ISD::SETOLT:                   return "setolt";
327     case ISD::SETOLE:                   return "setole";
328     case ISD::SETONE:                   return "setone";
329
330     case ISD::SETO:                     return "seto";
331     case ISD::SETUO:                    return "setuo";
332     case ISD::SETUEQ:                   return "setueq";
333     case ISD::SETUGT:                   return "setugt";
334     case ISD::SETUGE:                   return "setuge";
335     case ISD::SETULT:                   return "setult";
336     case ISD::SETULE:                   return "setule";
337     case ISD::SETUNE:                   return "setune";
338
339     case ISD::SETEQ:                    return "seteq";
340     case ISD::SETGT:                    return "setgt";
341     case ISD::SETGE:                    return "setge";
342     case ISD::SETLT:                    return "setlt";
343     case ISD::SETLE:                    return "setle";
344     case ISD::SETNE:                    return "setne";
345
346     case ISD::SETTRUE:                  return "settrue";
347     case ISD::SETTRUE2:                 return "settrue2";
348     case ISD::SETFALSE:                 return "setfalse";
349     case ISD::SETFALSE2:                return "setfalse2";
350     }
351   }
352 }
353
354 const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
355   switch (AM) {
356   default:              return "";
357   case ISD::PRE_INC:    return "<pre-inc>";
358   case ISD::PRE_DEC:    return "<pre-dec>";
359   case ISD::POST_INC:   return "<post-inc>";
360   case ISD::POST_DEC:   return "<post-dec>";
361   }
362 }
363
364 namespace {
365 class PrintNodeId {
366   const SDNode &Node;
367 public:
368   explicit PrintNodeId(const SDNode &Node)
369       : Node(Node) {}
370   void print(raw_ostream &OS) const {
371 #ifndef NDEBUG
372     OS << 't' << Node.PersistentId;
373 #else
374     OS << (const void*)&Node;
375 #endif
376   }
377 };
378
379 static inline raw_ostream &operator<<(raw_ostream &OS, const PrintNodeId &P) {
380   P.print(OS);
381   return OS;
382 }
383 }
384
385 void SDNode::dump() const { dump(nullptr); }
386 void SDNode::dump(const SelectionDAG *G) const {
387   print(dbgs(), G);
388   dbgs() << '\n';
389 }
390
391 void SDNode::print_types(raw_ostream &OS, const SelectionDAG *G) const {
392   OS << PrintNodeId(*this) << ": ";
393
394   for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
395     if (i) OS << ",";
396     if (getValueType(i) == MVT::Other)
397       OS << "ch";
398     else
399       OS << getValueType(i).getEVTString();
400   }
401   OS << " = " << getOperationName(G);
402 }
403
404 void SDNode::print_details(raw_ostream &OS, const SelectionDAG *G) const {
405   if (const MachineSDNode *MN = dyn_cast<MachineSDNode>(this)) {
406     if (!MN->memoperands_empty()) {
407       OS << "<";
408       OS << "Mem:";
409       for (MachineSDNode::mmo_iterator i = MN->memoperands_begin(),
410            e = MN->memoperands_end(); i != e; ++i) {
411         OS << **i;
412         if (std::next(i) != e)
413           OS << " ";
414       }
415       OS << ">";
416     }
417   } else if (const ShuffleVectorSDNode *SVN =
418                dyn_cast<ShuffleVectorSDNode>(this)) {
419     OS << "<";
420     for (unsigned i = 0, e = ValueList[0].getVectorNumElements(); i != e; ++i) {
421       int Idx = SVN->getMaskElt(i);
422       if (i) OS << ",";
423       if (Idx < 0)
424         OS << "u";
425       else
426         OS << Idx;
427     }
428     OS << ">";
429   } else if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
430     OS << '<' << CSDN->getAPIntValue() << '>';
431   } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
432     if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
433       OS << '<' << CSDN->getValueAPF().convertToFloat() << '>';
434     else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
435       OS << '<' << CSDN->getValueAPF().convertToDouble() << '>';
436     else {
437       OS << "<APFloat(";
438       CSDN->getValueAPF().bitcastToAPInt().dump();
439       OS << ")>";
440     }
441   } else if (const GlobalAddressSDNode *GADN =
442              dyn_cast<GlobalAddressSDNode>(this)) {
443     int64_t offset = GADN->getOffset();
444     OS << '<';
445     GADN->getGlobal()->printAsOperand(OS);
446     OS << '>';
447     if (offset > 0)
448       OS << " + " << offset;
449     else
450       OS << " " << offset;
451     if (unsigned int TF = GADN->getTargetFlags())
452       OS << " [TF=" << TF << ']';
453   } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
454     OS << "<" << FIDN->getIndex() << ">";
455   } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
456     OS << "<" << JTDN->getIndex() << ">";
457     if (unsigned int TF = JTDN->getTargetFlags())
458       OS << " [TF=" << TF << ']';
459   } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
460     int offset = CP->getOffset();
461     if (CP->isMachineConstantPoolEntry())
462       OS << "<" << *CP->getMachineCPVal() << ">";
463     else
464       OS << "<" << *CP->getConstVal() << ">";
465     if (offset > 0)
466       OS << " + " << offset;
467     else
468       OS << " " << offset;
469     if (unsigned int TF = CP->getTargetFlags())
470       OS << " [TF=" << TF << ']';
471   } else if (const TargetIndexSDNode *TI = dyn_cast<TargetIndexSDNode>(this)) {
472     OS << "<" << TI->getIndex() << '+' << TI->getOffset() << ">";
473     if (unsigned TF = TI->getTargetFlags())
474       OS << " [TF=" << TF << ']';
475   } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
476     OS << "<";
477     const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
478     if (LBB)
479       OS << LBB->getName() << " ";
480     OS << (const void*)BBDN->getBasicBlock() << ">";
481   } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
482     OS << ' ' << PrintReg(R->getReg(),
483                           G ? G->getSubtarget().getRegisterInfo() : nullptr);
484   } else if (const ExternalSymbolSDNode *ES =
485              dyn_cast<ExternalSymbolSDNode>(this)) {
486     OS << "'" << ES->getSymbol() << "'";
487     if (unsigned int TF = ES->getTargetFlags())
488       OS << " [TF=" << TF << ']';
489   } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
490     if (M->getValue())
491       OS << "<" << M->getValue() << ">";
492     else
493       OS << "<null>";
494   } else if (const MDNodeSDNode *MD = dyn_cast<MDNodeSDNode>(this)) {
495     if (MD->getMD())
496       OS << "<" << MD->getMD() << ">";
497     else
498       OS << "<null>";
499   } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
500     OS << ":" << N->getVT().getEVTString();
501   }
502   else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
503     OS << "<" << *LD->getMemOperand();
504
505     bool doExt = true;
506     switch (LD->getExtensionType()) {
507     default: doExt = false; break;
508     case ISD::EXTLOAD:  OS << ", anyext"; break;
509     case ISD::SEXTLOAD: OS << ", sext"; break;
510     case ISD::ZEXTLOAD: OS << ", zext"; break;
511     }
512     if (doExt)
513       OS << " from " << LD->getMemoryVT().getEVTString();
514
515     const char *AM = getIndexedModeName(LD->getAddressingMode());
516     if (*AM)
517       OS << ", " << AM;
518
519     OS << ">";
520   } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
521     OS << "<" << *ST->getMemOperand();
522
523     if (ST->isTruncatingStore())
524       OS << ", trunc to " << ST->getMemoryVT().getEVTString();
525
526     const char *AM = getIndexedModeName(ST->getAddressingMode());
527     if (*AM)
528       OS << ", " << AM;
529
530     OS << ">";
531   } else if (const MemSDNode* M = dyn_cast<MemSDNode>(this)) {
532     OS << "<" << *M->getMemOperand() << ">";
533   } else if (const BlockAddressSDNode *BA =
534                dyn_cast<BlockAddressSDNode>(this)) {
535     int64_t offset = BA->getOffset();
536     OS << "<";
537     BA->getBlockAddress()->getFunction()->printAsOperand(OS, false);
538     OS << ", ";
539     BA->getBlockAddress()->getBasicBlock()->printAsOperand(OS, false);
540     OS << ">";
541     if (offset > 0)
542       OS << " + " << offset;
543     else
544       OS << " " << offset;
545     if (unsigned int TF = BA->getTargetFlags())
546       OS << " [TF=" << TF << ']';
547   } else if (const AddrSpaceCastSDNode *ASC =
548                dyn_cast<AddrSpaceCastSDNode>(this)) {
549     OS << '['
550        << ASC->getSrcAddressSpace()
551        << " -> "
552        << ASC->getDestAddressSpace()
553        << ']';
554   }
555
556   if (unsigned Order = getIROrder())
557       OS << " [ORD=" << Order << ']';
558
559   if (getNodeId() != -1)
560     OS << " [ID=" << getNodeId() << ']';
561
562   if (!G)
563     return;
564
565   DILocation *L = getDebugLoc();
566   if (!L)
567     return;
568
569   if (auto *Scope = L->getScope())
570     OS << Scope->getFilename();
571   else
572     OS << "<unknown>";
573   OS << ':' << L->getLine();
574   if (unsigned C = L->getColumn())
575     OS << ':' << C;
576 }
577
578 static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
579   for (const SDValue &Op : N->op_values())
580     if (Op.getNode()->hasOneUse())
581       DumpNodes(Op.getNode(), indent+2, G);
582     else
583       dbgs() << "\n" << std::string(indent+2, ' ')
584              << PrintNodeId(*Op.getNode()) << ": <multiple use>";
585
586   dbgs() << '\n';
587   dbgs().indent(indent);
588   N->dump(G);
589 }
590
591 void SelectionDAG::dump() const {
592   dbgs() << "SelectionDAG has " << AllNodes.size() << " nodes:";
593
594   for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
595        I != E; ++I) {
596     const SDNode *N = I;
597     if (!N->hasOneUse() && N != getRoot().getNode())
598       DumpNodes(N, 2, this);
599   }
600
601   if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this);
602   dbgs() << "\n\n";
603 }
604
605 void SDNode::printr(raw_ostream &OS, const SelectionDAG *G) const {
606   print_types(OS, G);
607   print_details(OS, G);
608 }
609
610 typedef SmallPtrSet<const SDNode *, 128> VisitedSDNodeSet;
611 static void DumpNodesr(raw_ostream &OS, const SDNode *N, unsigned indent,
612                        const SelectionDAG *G, VisitedSDNodeSet &once) {
613   if (!once.insert(N).second) // If we've been here before, return now.
614     return;
615
616   // Dump the current SDNode, but don't end the line yet.
617   OS.indent(indent);
618   N->printr(OS, G);
619
620   // Having printed this SDNode, walk the children:
621   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
622     const SDNode *child = N->getOperand(i).getNode();
623
624     if (i) OS << ",";
625     OS << " ";
626
627     if (child->getNumOperands() == 0) {
628       // This child has no grandchildren; print it inline right here.
629       child->printr(OS, G);
630       once.insert(child);
631     } else {         // Just the address. FIXME: also print the child's opcode.
632       OS << (const void*)child;
633       if (unsigned RN = N->getOperand(i).getResNo())
634         OS << ":" << RN;
635     }
636   }
637
638   OS << "\n";
639
640   // Dump children that have grandchildren on their own line(s).
641   for (const SDValue &Op : N->op_values())
642     DumpNodesr(OS, Op.getNode(), indent+2, G, once);
643 }
644
645 void SDNode::dumpr() const {
646   VisitedSDNodeSet once;
647   DumpNodesr(dbgs(), this, 0, nullptr, once);
648 }
649
650 void SDNode::dumpr(const SelectionDAG *G) const {
651   VisitedSDNodeSet once;
652   DumpNodesr(dbgs(), this, 0, G, once);
653 }
654
655 static void printrWithDepthHelper(raw_ostream &OS, const SDNode *N,
656                                   const SelectionDAG *G, unsigned depth,
657                                   unsigned indent) {
658   if (depth == 0)
659     return;
660
661   OS.indent(indent);
662
663   N->print(OS, G);
664
665   if (depth < 1)
666     return;
667
668   for (const SDValue &Op : N->op_values()) {
669     // Don't follow chain operands.
670     if (Op.getValueType() == MVT::Other)
671       continue;
672     OS << '\n';
673     printrWithDepthHelper(OS, Op.getNode(), G, depth-1, indent+2);
674   }
675 }
676
677 void SDNode::printrWithDepth(raw_ostream &OS, const SelectionDAG *G,
678                             unsigned depth) const {
679   printrWithDepthHelper(OS, this, G, depth, 0);
680 }
681
682 void SDNode::printrFull(raw_ostream &OS, const SelectionDAG *G) const {
683   // Don't print impossibly deep things.
684   printrWithDepth(OS, G, 10);
685 }
686
687 void SDNode::dumprWithDepth(const SelectionDAG *G, unsigned depth) const {
688   printrWithDepth(dbgs(), G, depth);
689 }
690
691 void SDNode::dumprFull(const SelectionDAG *G) const {
692   // Don't print impossibly deep things.
693   dumprWithDepth(G, 10);
694 }
695
696 void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
697   print_types(OS, G);
698   for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
699     if (i) OS << ", "; else OS << " ";
700     const SDValue Operand = getOperand(i);
701     OS << PrintNodeId(*Operand.getNode());
702     if (unsigned RN = Operand.getResNo())
703       OS << ":" << RN;
704   }
705   print_details(OS, G);
706 }