Add minnum / maxnum codegen
[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::READ_REGISTER:              return "READ_REGISTER";
99   case ISD::WRITE_REGISTER:             return "WRITE_REGISTER";
100   case ISD::FRAME_TO_ARGS_OFFSET:       return "FRAME_TO_ARGS_OFFSET";
101   case ISD::EH_RETURN:                  return "EH_RETURN";
102   case ISD::EH_SJLJ_SETJMP:             return "EH_SJLJ_SETJMP";
103   case ISD::EH_SJLJ_LONGJMP:            return "EH_SJLJ_LONGJMP";
104   case ISD::ConstantPool:               return "ConstantPool";
105   case ISD::TargetIndex:                return "TargetIndex";
106   case ISD::ExternalSymbol:             return "ExternalSymbol";
107   case ISD::BlockAddress:               return "BlockAddress";
108   case ISD::INTRINSIC_WO_CHAIN:
109   case ISD::INTRINSIC_VOID:
110   case ISD::INTRINSIC_W_CHAIN: {
111     unsigned OpNo = getOpcode() == ISD::INTRINSIC_WO_CHAIN ? 0 : 1;
112     unsigned IID = cast<ConstantSDNode>(getOperand(OpNo))->getZExtValue();
113     if (IID < Intrinsic::num_intrinsics)
114       return Intrinsic::getName((Intrinsic::ID)IID);
115     else if (const TargetIntrinsicInfo *TII = G->getTarget().getIntrinsicInfo())
116       return TII->getName(IID);
117     llvm_unreachable("Invalid intrinsic ID");
118   }
119
120   case ISD::BUILD_VECTOR:               return "BUILD_VECTOR";
121   case ISD::TargetConstant:
122     if (cast<ConstantSDNode>(this)->isOpaque())
123       return "OpaqueTargetConstant";
124     return "TargetConstant";
125   case ISD::TargetConstantFP:           return "TargetConstantFP";
126   case ISD::TargetGlobalAddress:        return "TargetGlobalAddress";
127   case ISD::TargetGlobalTLSAddress:     return "TargetGlobalTLSAddress";
128   case ISD::TargetFrameIndex:           return "TargetFrameIndex";
129   case ISD::TargetJumpTable:            return "TargetJumpTable";
130   case ISD::TargetConstantPool:         return "TargetConstantPool";
131   case ISD::TargetExternalSymbol:       return "TargetExternalSymbol";
132   case ISD::TargetBlockAddress:         return "TargetBlockAddress";
133
134   case ISD::CopyToReg:                  return "CopyToReg";
135   case ISD::CopyFromReg:                return "CopyFromReg";
136   case ISD::UNDEF:                      return "undef";
137   case ISD::MERGE_VALUES:               return "merge_values";
138   case ISD::INLINEASM:                  return "inlineasm";
139   case ISD::EH_LABEL:                   return "eh_label";
140   case ISD::HANDLENODE:                 return "handlenode";
141
142   // Unary operators
143   case ISD::FABS:                       return "fabs";
144   case ISD::FMINNUM:                    return "fminnum";
145   case ISD::FMAXNUM:                    return "fmaxnum";
146   case ISD::FNEG:                       return "fneg";
147   case ISD::FSQRT:                      return "fsqrt";
148   case ISD::FSIN:                       return "fsin";
149   case ISD::FCOS:                       return "fcos";
150   case ISD::FSINCOS:                    return "fsincos";
151   case ISD::FTRUNC:                     return "ftrunc";
152   case ISD::FFLOOR:                     return "ffloor";
153   case ISD::FCEIL:                      return "fceil";
154   case ISD::FRINT:                      return "frint";
155   case ISD::FNEARBYINT:                 return "fnearbyint";
156   case ISD::FROUND:                     return "fround";
157   case ISD::FEXP:                       return "fexp";
158   case ISD::FEXP2:                      return "fexp2";
159   case ISD::FLOG:                       return "flog";
160   case ISD::FLOG2:                      return "flog2";
161   case ISD::FLOG10:                     return "flog10";
162
163   // Binary operators
164   case ISD::ADD:                        return "add";
165   case ISD::SUB:                        return "sub";
166   case ISD::MUL:                        return "mul";
167   case ISD::MULHU:                      return "mulhu";
168   case ISD::MULHS:                      return "mulhs";
169   case ISD::SDIV:                       return "sdiv";
170   case ISD::UDIV:                       return "udiv";
171   case ISD::SREM:                       return "srem";
172   case ISD::UREM:                       return "urem";
173   case ISD::SMUL_LOHI:                  return "smul_lohi";
174   case ISD::UMUL_LOHI:                  return "umul_lohi";
175   case ISD::SDIVREM:                    return "sdivrem";
176   case ISD::UDIVREM:                    return "udivrem";
177   case ISD::AND:                        return "and";
178   case ISD::OR:                         return "or";
179   case ISD::XOR:                        return "xor";
180   case ISD::SHL:                        return "shl";
181   case ISD::SRA:                        return "sra";
182   case ISD::SRL:                        return "srl";
183   case ISD::ROTL:                       return "rotl";
184   case ISD::ROTR:                       return "rotr";
185   case ISD::FADD:                       return "fadd";
186   case ISD::FSUB:                       return "fsub";
187   case ISD::FMUL:                       return "fmul";
188   case ISD::FDIV:                       return "fdiv";
189   case ISD::FMA:                        return "fma";
190   case ISD::FREM:                       return "frem";
191   case ISD::FCOPYSIGN:                  return "fcopysign";
192   case ISD::FGETSIGN:                   return "fgetsign";
193   case ISD::FPOW:                       return "fpow";
194
195   case ISD::FPOWI:                      return "fpowi";
196   case ISD::SETCC:                      return "setcc";
197   case ISD::SELECT:                     return "select";
198   case ISD::VSELECT:                    return "vselect";
199   case ISD::SELECT_CC:                  return "select_cc";
200   case ISD::INSERT_VECTOR_ELT:          return "insert_vector_elt";
201   case ISD::EXTRACT_VECTOR_ELT:         return "extract_vector_elt";
202   case ISD::CONCAT_VECTORS:             return "concat_vectors";
203   case ISD::INSERT_SUBVECTOR:           return "insert_subvector";
204   case ISD::EXTRACT_SUBVECTOR:          return "extract_subvector";
205   case ISD::SCALAR_TO_VECTOR:           return "scalar_to_vector";
206   case ISD::VECTOR_SHUFFLE:             return "vector_shuffle";
207   case ISD::CARRY_FALSE:                return "carry_false";
208   case ISD::ADDC:                       return "addc";
209   case ISD::ADDE:                       return "adde";
210   case ISD::SADDO:                      return "saddo";
211   case ISD::UADDO:                      return "uaddo";
212   case ISD::SSUBO:                      return "ssubo";
213   case ISD::USUBO:                      return "usubo";
214   case ISD::SMULO:                      return "smulo";
215   case ISD::UMULO:                      return "umulo";
216   case ISD::SUBC:                       return "subc";
217   case ISD::SUBE:                       return "sube";
218   case ISD::SHL_PARTS:                  return "shl_parts";
219   case ISD::SRA_PARTS:                  return "sra_parts";
220   case ISD::SRL_PARTS:                  return "srl_parts";
221
222   // Conversion operators.
223   case ISD::SIGN_EXTEND:                return "sign_extend";
224   case ISD::ZERO_EXTEND:                return "zero_extend";
225   case ISD::ANY_EXTEND:                 return "any_extend";
226   case ISD::SIGN_EXTEND_INREG:          return "sign_extend_inreg";
227   case ISD::ANY_EXTEND_VECTOR_INREG:    return "any_extend_vector_inreg";
228   case ISD::SIGN_EXTEND_VECTOR_INREG:   return "sign_extend_vector_inreg";
229   case ISD::ZERO_EXTEND_VECTOR_INREG:   return "zero_extend_vector_inreg";
230   case ISD::TRUNCATE:                   return "truncate";
231   case ISD::FP_ROUND:                   return "fp_round";
232   case ISD::FLT_ROUNDS_:                return "flt_rounds";
233   case ISD::FP_ROUND_INREG:             return "fp_round_inreg";
234   case ISD::FP_EXTEND:                  return "fp_extend";
235
236   case ISD::SINT_TO_FP:                 return "sint_to_fp";
237   case ISD::UINT_TO_FP:                 return "uint_to_fp";
238   case ISD::FP_TO_SINT:                 return "fp_to_sint";
239   case ISD::FP_TO_UINT:                 return "fp_to_uint";
240   case ISD::BITCAST:                    return "bitcast";
241   case ISD::ADDRSPACECAST:              return "addrspacecast";
242   case ISD::FP16_TO_FP:                 return "fp16_to_fp";
243   case ISD::FP_TO_FP16:                 return "fp_to_fp16";
244
245   case ISD::CONVERT_RNDSAT: {
246     switch (cast<CvtRndSatSDNode>(this)->getCvtCode()) {
247     default: llvm_unreachable("Unknown cvt code!");
248     case ISD::CVT_FF:                   return "cvt_ff";
249     case ISD::CVT_FS:                   return "cvt_fs";
250     case ISD::CVT_FU:                   return "cvt_fu";
251     case ISD::CVT_SF:                   return "cvt_sf";
252     case ISD::CVT_UF:                   return "cvt_uf";
253     case ISD::CVT_SS:                   return "cvt_ss";
254     case ISD::CVT_SU:                   return "cvt_su";
255     case ISD::CVT_US:                   return "cvt_us";
256     case ISD::CVT_UU:                   return "cvt_uu";
257     }
258   }
259
260     // Control flow instructions
261   case ISD::BR:                         return "br";
262   case ISD::BRIND:                      return "brind";
263   case ISD::BR_JT:                      return "br_jt";
264   case ISD::BRCOND:                     return "brcond";
265   case ISD::BR_CC:                      return "br_cc";
266   case ISD::CALLSEQ_START:              return "callseq_start";
267   case ISD::CALLSEQ_END:                return "callseq_end";
268
269     // Other operators
270   case ISD::LOAD:                       return "load";
271   case ISD::STORE:                      return "store";
272   case ISD::VAARG:                      return "vaarg";
273   case ISD::VACOPY:                     return "vacopy";
274   case ISD::VAEND:                      return "vaend";
275   case ISD::VASTART:                    return "vastart";
276   case ISD::DYNAMIC_STACKALLOC:         return "dynamic_stackalloc";
277   case ISD::EXTRACT_ELEMENT:            return "extract_element";
278   case ISD::BUILD_PAIR:                 return "build_pair";
279   case ISD::STACKSAVE:                  return "stacksave";
280   case ISD::STACKRESTORE:               return "stackrestore";
281   case ISD::TRAP:                       return "trap";
282   case ISD::DEBUGTRAP:                  return "debugtrap";
283   case ISD::LIFETIME_START:             return "lifetime.start";
284   case ISD::LIFETIME_END:               return "lifetime.end";
285
286   // Bit manipulation
287   case ISD::BSWAP:                      return "bswap";
288   case ISD::CTPOP:                      return "ctpop";
289   case ISD::CTTZ:                       return "cttz";
290   case ISD::CTTZ_ZERO_UNDEF:            return "cttz_zero_undef";
291   case ISD::CTLZ:                       return "ctlz";
292   case ISD::CTLZ_ZERO_UNDEF:            return "ctlz_zero_undef";
293
294   // Trampolines
295   case ISD::INIT_TRAMPOLINE:            return "init_trampoline";
296   case ISD::ADJUST_TRAMPOLINE:          return "adjust_trampoline";
297
298   case ISD::CONDCODE:
299     switch (cast<CondCodeSDNode>(this)->get()) {
300     default: llvm_unreachable("Unknown setcc condition!");
301     case ISD::SETOEQ:                   return "setoeq";
302     case ISD::SETOGT:                   return "setogt";
303     case ISD::SETOGE:                   return "setoge";
304     case ISD::SETOLT:                   return "setolt";
305     case ISD::SETOLE:                   return "setole";
306     case ISD::SETONE:                   return "setone";
307
308     case ISD::SETO:                     return "seto";
309     case ISD::SETUO:                    return "setuo";
310     case ISD::SETUEQ:                   return "setue";
311     case ISD::SETUGT:                   return "setugt";
312     case ISD::SETUGE:                   return "setuge";
313     case ISD::SETULT:                   return "setult";
314     case ISD::SETULE:                   return "setule";
315     case ISD::SETUNE:                   return "setune";
316
317     case ISD::SETEQ:                    return "seteq";
318     case ISD::SETGT:                    return "setgt";
319     case ISD::SETGE:                    return "setge";
320     case ISD::SETLT:                    return "setlt";
321     case ISD::SETLE:                    return "setle";
322     case ISD::SETNE:                    return "setne";
323
324     case ISD::SETTRUE:                  return "settrue";
325     case ISD::SETTRUE2:                 return "settrue2";
326     case ISD::SETFALSE:                 return "setfalse";
327     case ISD::SETFALSE2:                return "setfalse2";
328     }
329   }
330 }
331
332 const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
333   switch (AM) {
334   default:              return "";
335   case ISD::PRE_INC:    return "<pre-inc>";
336   case ISD::PRE_DEC:    return "<pre-dec>";
337   case ISD::POST_INC:   return "<post-inc>";
338   case ISD::POST_DEC:   return "<post-dec>";
339   }
340 }
341
342 void SDNode::dump() const { dump(nullptr); }
343 void SDNode::dump(const SelectionDAG *G) const {
344   print(dbgs(), G);
345   dbgs() << '\n';
346 }
347
348 void SDNode::print_types(raw_ostream &OS, const SelectionDAG *G) const {
349   OS << (const void*)this << ": ";
350
351   for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
352     if (i) OS << ",";
353     if (getValueType(i) == MVT::Other)
354       OS << "ch";
355     else
356       OS << getValueType(i).getEVTString();
357   }
358   OS << " = " << getOperationName(G);
359 }
360
361 void SDNode::print_details(raw_ostream &OS, const SelectionDAG *G) const {
362   if (const MachineSDNode *MN = dyn_cast<MachineSDNode>(this)) {
363     if (!MN->memoperands_empty()) {
364       OS << "<";
365       OS << "Mem:";
366       for (MachineSDNode::mmo_iterator i = MN->memoperands_begin(),
367            e = MN->memoperands_end(); i != e; ++i) {
368         OS << **i;
369         if (std::next(i) != e)
370           OS << " ";
371       }
372       OS << ">";
373     }
374   } else if (const ShuffleVectorSDNode *SVN =
375                dyn_cast<ShuffleVectorSDNode>(this)) {
376     OS << "<";
377     for (unsigned i = 0, e = ValueList[0].getVectorNumElements(); i != e; ++i) {
378       int Idx = SVN->getMaskElt(i);
379       if (i) OS << ",";
380       if (Idx < 0)
381         OS << "u";
382       else
383         OS << Idx;
384     }
385     OS << ">";
386   } else if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
387     OS << '<' << CSDN->getAPIntValue() << '>';
388   } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
389     if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
390       OS << '<' << CSDN->getValueAPF().convertToFloat() << '>';
391     else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
392       OS << '<' << CSDN->getValueAPF().convertToDouble() << '>';
393     else {
394       OS << "<APFloat(";
395       CSDN->getValueAPF().bitcastToAPInt().dump();
396       OS << ")>";
397     }
398   } else if (const GlobalAddressSDNode *GADN =
399              dyn_cast<GlobalAddressSDNode>(this)) {
400     int64_t offset = GADN->getOffset();
401     OS << '<';
402     GADN->getGlobal()->printAsOperand(OS);
403     OS << '>';
404     if (offset > 0)
405       OS << " + " << offset;
406     else
407       OS << " " << offset;
408     if (unsigned int TF = GADN->getTargetFlags())
409       OS << " [TF=" << TF << ']';
410   } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
411     OS << "<" << FIDN->getIndex() << ">";
412   } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
413     OS << "<" << JTDN->getIndex() << ">";
414     if (unsigned int TF = JTDN->getTargetFlags())
415       OS << " [TF=" << TF << ']';
416   } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
417     int offset = CP->getOffset();
418     if (CP->isMachineConstantPoolEntry())
419       OS << "<" << *CP->getMachineCPVal() << ">";
420     else
421       OS << "<" << *CP->getConstVal() << ">";
422     if (offset > 0)
423       OS << " + " << offset;
424     else
425       OS << " " << offset;
426     if (unsigned int TF = CP->getTargetFlags())
427       OS << " [TF=" << TF << ']';
428   } else if (const TargetIndexSDNode *TI = dyn_cast<TargetIndexSDNode>(this)) {
429     OS << "<" << TI->getIndex() << '+' << TI->getOffset() << ">";
430     if (unsigned TF = TI->getTargetFlags())
431       OS << " [TF=" << TF << ']';
432   } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
433     OS << "<";
434     const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
435     if (LBB)
436       OS << LBB->getName() << " ";
437     OS << (const void*)BBDN->getBasicBlock() << ">";
438   } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
439     OS << ' ' << PrintReg(R->getReg(),
440                           G ? G->getSubtarget().getRegisterInfo() : nullptr);
441   } else if (const ExternalSymbolSDNode *ES =
442              dyn_cast<ExternalSymbolSDNode>(this)) {
443     OS << "'" << ES->getSymbol() << "'";
444     if (unsigned int TF = ES->getTargetFlags())
445       OS << " [TF=" << TF << ']';
446   } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
447     if (M->getValue())
448       OS << "<" << M->getValue() << ">";
449     else
450       OS << "<null>";
451   } else if (const MDNodeSDNode *MD = dyn_cast<MDNodeSDNode>(this)) {
452     if (MD->getMD())
453       OS << "<" << MD->getMD() << ">";
454     else
455       OS << "<null>";
456   } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
457     OS << ":" << N->getVT().getEVTString();
458   }
459   else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
460     OS << "<" << *LD->getMemOperand();
461
462     bool doExt = true;
463     switch (LD->getExtensionType()) {
464     default: doExt = false; break;
465     case ISD::EXTLOAD:  OS << ", anyext"; break;
466     case ISD::SEXTLOAD: OS << ", sext"; break;
467     case ISD::ZEXTLOAD: OS << ", zext"; break;
468     }
469     if (doExt)
470       OS << " from " << LD->getMemoryVT().getEVTString();
471
472     const char *AM = getIndexedModeName(LD->getAddressingMode());
473     if (*AM)
474       OS << ", " << AM;
475
476     OS << ">";
477   } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
478     OS << "<" << *ST->getMemOperand();
479
480     if (ST->isTruncatingStore())
481       OS << ", trunc to " << ST->getMemoryVT().getEVTString();
482
483     const char *AM = getIndexedModeName(ST->getAddressingMode());
484     if (*AM)
485       OS << ", " << AM;
486
487     OS << ">";
488   } else if (const MemSDNode* M = dyn_cast<MemSDNode>(this)) {
489     OS << "<" << *M->getMemOperand() << ">";
490   } else if (const BlockAddressSDNode *BA =
491                dyn_cast<BlockAddressSDNode>(this)) {
492     int64_t offset = BA->getOffset();
493     OS << "<";
494     BA->getBlockAddress()->getFunction()->printAsOperand(OS, false);
495     OS << ", ";
496     BA->getBlockAddress()->getBasicBlock()->printAsOperand(OS, false);
497     OS << ">";
498     if (offset > 0)
499       OS << " + " << offset;
500     else
501       OS << " " << offset;
502     if (unsigned int TF = BA->getTargetFlags())
503       OS << " [TF=" << TF << ']';
504   } else if (const AddrSpaceCastSDNode *ASC =
505                dyn_cast<AddrSpaceCastSDNode>(this)) {
506     OS << '['
507        << ASC->getSrcAddressSpace()
508        << " -> "
509        << ASC->getDestAddressSpace()
510        << ']';
511   }
512
513   if (unsigned Order = getIROrder())
514       OS << " [ORD=" << Order << ']';
515
516   if (getNodeId() != -1)
517     OS << " [ID=" << getNodeId() << ']';
518
519   DebugLoc dl = getDebugLoc();
520   if (G && !dl.isUnknown()) {
521     DIScope
522       Scope(dl.getScope(G->getMachineFunction().getFunction()->getContext()));
523     OS << " dbg:";
524     assert((!Scope || Scope.isScope()) &&
525       "Scope of a DebugLoc should be null or a DIScope.");
526     // Omit the directory, since it's usually long and uninteresting.
527     if (Scope)
528       OS << Scope.getFilename();
529     else
530       OS << "<unknown>";
531     OS << ':' << dl.getLine();
532     if (dl.getCol() != 0)
533       OS << ':' << dl.getCol();
534   }
535 }
536
537 static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
538   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
539     if (N->getOperand(i).getNode()->hasOneUse())
540       DumpNodes(N->getOperand(i).getNode(), indent+2, G);
541     else
542       dbgs() << "\n" << std::string(indent+2, ' ')
543              << (void*)N->getOperand(i).getNode() << ": <multiple use>";
544
545   dbgs() << '\n';
546   dbgs().indent(indent);
547   N->dump(G);
548 }
549
550 void SelectionDAG::dump() const {
551   dbgs() << "SelectionDAG has " << AllNodes.size() << " nodes:";
552
553   for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
554        I != E; ++I) {
555     const SDNode *N = I;
556     if (!N->hasOneUse() && N != getRoot().getNode())
557       DumpNodes(N, 2, this);
558   }
559
560   if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this);
561   dbgs() << "\n\n";
562 }
563
564 void SDNode::printr(raw_ostream &OS, const SelectionDAG *G) const {
565   print_types(OS, G);
566   print_details(OS, G);
567 }
568
569 typedef SmallPtrSet<const SDNode *, 128> VisitedSDNodeSet;
570 static void DumpNodesr(raw_ostream &OS, const SDNode *N, unsigned indent,
571                        const SelectionDAG *G, VisitedSDNodeSet &once) {
572   if (!once.insert(N))          // If we've been here before, return now.
573     return;
574
575   // Dump the current SDNode, but don't end the line yet.
576   OS.indent(indent);
577   N->printr(OS, G);
578
579   // Having printed this SDNode, walk the children:
580   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
581     const SDNode *child = N->getOperand(i).getNode();
582
583     if (i) OS << ",";
584     OS << " ";
585
586     if (child->getNumOperands() == 0) {
587       // This child has no grandchildren; print it inline right here.
588       child->printr(OS, G);
589       once.insert(child);
590     } else {         // Just the address. FIXME: also print the child's opcode.
591       OS << (const void*)child;
592       if (unsigned RN = N->getOperand(i).getResNo())
593         OS << ":" << RN;
594     }
595   }
596
597   OS << "\n";
598
599   // Dump children that have grandchildren on their own line(s).
600   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
601     const SDNode *child = N->getOperand(i).getNode();
602     DumpNodesr(OS, child, indent+2, G, once);
603   }
604 }
605
606 void SDNode::dumpr() const {
607   VisitedSDNodeSet once;
608   DumpNodesr(dbgs(), this, 0, nullptr, once);
609 }
610
611 void SDNode::dumpr(const SelectionDAG *G) const {
612   VisitedSDNodeSet once;
613   DumpNodesr(dbgs(), this, 0, G, once);
614 }
615
616 static void printrWithDepthHelper(raw_ostream &OS, const SDNode *N,
617                                   const SelectionDAG *G, unsigned depth,
618                                   unsigned indent) {
619   if (depth == 0)
620     return;
621
622   OS.indent(indent);
623
624   N->print(OS, G);
625
626   if (depth < 1)
627     return;
628
629   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
630     // Don't follow chain operands.
631     if (N->getOperand(i).getValueType() == MVT::Other)
632       continue;
633     OS << '\n';
634     printrWithDepthHelper(OS, N->getOperand(i).getNode(), G, depth-1, indent+2);
635   }
636 }
637
638 void SDNode::printrWithDepth(raw_ostream &OS, const SelectionDAG *G,
639                             unsigned depth) const {
640   printrWithDepthHelper(OS, this, G, depth, 0);
641 }
642
643 void SDNode::printrFull(raw_ostream &OS, const SelectionDAG *G) const {
644   // Don't print impossibly deep things.
645   printrWithDepth(OS, G, 10);
646 }
647
648 void SDNode::dumprWithDepth(const SelectionDAG *G, unsigned depth) const {
649   printrWithDepth(dbgs(), G, depth);
650 }
651
652 void SDNode::dumprFull(const SelectionDAG *G) const {
653   // Don't print impossibly deep things.
654   dumprWithDepth(G, 10);
655 }
656
657 void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
658   print_types(OS, G);
659   for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
660     if (i) OS << ", "; else OS << " ";
661     OS << (void*)getOperand(i).getNode();
662     if (unsigned RN = getOperand(i).getResNo())
663       OS << ":" << RN;
664   }
665   print_details(OS, G);
666 }