1 //===- SelectionDAGDumper.cpp - Implement SelectionDAG::dump() ------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This implements the SelectionDAG::dump method and friends. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "llvm/ADT/APFloat.h" 14 #include "llvm/ADT/APInt.h" 15 #include "llvm/ADT/None.h" 16 #include "llvm/ADT/SmallPtrSet.h" 17 #include "llvm/ADT/StringExtras.h" 18 #include "llvm/CodeGen/ISDOpcodes.h" 19 #include "llvm/CodeGen/MachineBasicBlock.h" 20 #include "llvm/CodeGen/MachineConstantPool.h" 21 #include "llvm/CodeGen/MachineMemOperand.h" 22 #include "llvm/CodeGen/SelectionDAG.h" 23 #include "llvm/CodeGen/SelectionDAGNodes.h" 24 #include "llvm/CodeGen/TargetInstrInfo.h" 25 #include "llvm/CodeGen/TargetLowering.h" 26 #include "llvm/CodeGen/TargetRegisterInfo.h" 27 #include "llvm/CodeGen/TargetSubtargetInfo.h" 28 #include "llvm/CodeGen/ValueTypes.h" 29 #include "llvm/Config/llvm-config.h" 30 #include "llvm/IR/BasicBlock.h" 31 #include "llvm/IR/Constants.h" 32 #include "llvm/IR/DebugInfoMetadata.h" 33 #include "llvm/IR/DebugLoc.h" 34 #include "llvm/IR/Function.h" 35 #include "llvm/IR/Intrinsics.h" 36 #include "llvm/IR/ModuleSlotTracker.h" 37 #include "llvm/IR/Value.h" 38 #include "llvm/Support/Casting.h" 39 #include "llvm/Support/CommandLine.h" 40 #include "llvm/Support/Compiler.h" 41 #include "llvm/Support/Debug.h" 42 #include "llvm/Support/ErrorHandling.h" 43 #include "llvm/Support/MachineValueType.h" 44 #include "llvm/Support/Printable.h" 45 #include "llvm/Support/raw_ostream.h" 46 #include "llvm/Target/TargetIntrinsicInfo.h" 47 #include "llvm/Target/TargetMachine.h" 48 #include "SDNodeDbgValue.h" 49 #include <cstdint> 50 #include <iterator> 51 52 using namespace llvm; 53 54 static cl::opt<bool> 55 VerboseDAGDumping("dag-dump-verbose", cl::Hidden, 56 cl::desc("Display more information when dumping selection " 57 "DAG nodes.")); 58 59 std::string SDNode::getOperationName(const SelectionDAG *G) const { 60 switch (getOpcode()) { 61 default: 62 if (getOpcode() < ISD::BUILTIN_OP_END) 63 return "<<Unknown DAG Node>>"; 64 if (isMachineOpcode()) { 65 if (G) 66 if (const TargetInstrInfo *TII = G->getSubtarget().getInstrInfo()) 67 if (getMachineOpcode() < TII->getNumOpcodes()) 68 return std::string(TII->getName(getMachineOpcode())); 69 return "<<Unknown Machine Node #" + utostr(getOpcode()) + ">>"; 70 } 71 if (G) { 72 const TargetLowering &TLI = G->getTargetLoweringInfo(); 73 const char *Name = TLI.getTargetNodeName(getOpcode()); 74 if (Name) return Name; 75 return "<<Unknown Target Node #" + utostr(getOpcode()) + ">>"; 76 } 77 return "<<Unknown Node #" + utostr(getOpcode()) + ">>"; 78 79 #ifndef NDEBUG 80 case ISD::DELETED_NODE: return "<<Deleted Node!>>"; 81 #endif 82 case ISD::PREFETCH: return "Prefetch"; 83 case ISD::ATOMIC_FENCE: return "AtomicFence"; 84 case ISD::ATOMIC_CMP_SWAP: return "AtomicCmpSwap"; 85 case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: return "AtomicCmpSwapWithSuccess"; 86 case ISD::ATOMIC_SWAP: return "AtomicSwap"; 87 case ISD::ATOMIC_LOAD_ADD: return "AtomicLoadAdd"; 88 case ISD::ATOMIC_LOAD_SUB: return "AtomicLoadSub"; 89 case ISD::ATOMIC_LOAD_AND: return "AtomicLoadAnd"; 90 case ISD::ATOMIC_LOAD_CLR: return "AtomicLoadClr"; 91 case ISD::ATOMIC_LOAD_OR: return "AtomicLoadOr"; 92 case ISD::ATOMIC_LOAD_XOR: return "AtomicLoadXor"; 93 case ISD::ATOMIC_LOAD_NAND: return "AtomicLoadNand"; 94 case ISD::ATOMIC_LOAD_MIN: return "AtomicLoadMin"; 95 case ISD::ATOMIC_LOAD_MAX: return "AtomicLoadMax"; 96 case ISD::ATOMIC_LOAD_UMIN: return "AtomicLoadUMin"; 97 case ISD::ATOMIC_LOAD_UMAX: return "AtomicLoadUMax"; 98 case ISD::ATOMIC_LOAD_FADD: return "AtomicLoadFAdd"; 99 case ISD::ATOMIC_LOAD: return "AtomicLoad"; 100 case ISD::ATOMIC_STORE: return "AtomicStore"; 101 case ISD::PCMARKER: return "PCMarker"; 102 case ISD::READCYCLECOUNTER: return "ReadCycleCounter"; 103 case ISD::SRCVALUE: return "SrcValue"; 104 case ISD::MDNODE_SDNODE: return "MDNode"; 105 case ISD::EntryToken: return "EntryToken"; 106 case ISD::TokenFactor: return "TokenFactor"; 107 case ISD::AssertSext: return "AssertSext"; 108 case ISD::AssertZext: return "AssertZext"; 109 case ISD::AssertAlign: return "AssertAlign"; 110 111 case ISD::BasicBlock: return "BasicBlock"; 112 case ISD::VALUETYPE: return "ValueType"; 113 case ISD::Register: return "Register"; 114 case ISD::RegisterMask: return "RegisterMask"; 115 case ISD::Constant: 116 if (cast<ConstantSDNode>(this)->isOpaque()) 117 return "OpaqueConstant"; 118 return "Constant"; 119 case ISD::ConstantFP: return "ConstantFP"; 120 case ISD::GlobalAddress: return "GlobalAddress"; 121 case ISD::GlobalTLSAddress: return "GlobalTLSAddress"; 122 case ISD::FrameIndex: return "FrameIndex"; 123 case ISD::JumpTable: return "JumpTable"; 124 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE"; 125 case ISD::RETURNADDR: return "RETURNADDR"; 126 case ISD::ADDROFRETURNADDR: return "ADDROFRETURNADDR"; 127 case ISD::FRAMEADDR: return "FRAMEADDR"; 128 case ISD::SPONENTRY: return "SPONENTRY"; 129 case ISD::LOCAL_RECOVER: return "LOCAL_RECOVER"; 130 case ISD::READ_REGISTER: return "READ_REGISTER"; 131 case ISD::WRITE_REGISTER: return "WRITE_REGISTER"; 132 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET"; 133 case ISD::EH_DWARF_CFA: return "EH_DWARF_CFA"; 134 case ISD::EH_RETURN: return "EH_RETURN"; 135 case ISD::EH_SJLJ_SETJMP: return "EH_SJLJ_SETJMP"; 136 case ISD::EH_SJLJ_LONGJMP: return "EH_SJLJ_LONGJMP"; 137 case ISD::EH_SJLJ_SETUP_DISPATCH: return "EH_SJLJ_SETUP_DISPATCH"; 138 case ISD::ConstantPool: return "ConstantPool"; 139 case ISD::TargetIndex: return "TargetIndex"; 140 case ISD::ExternalSymbol: return "ExternalSymbol"; 141 case ISD::BlockAddress: return "BlockAddress"; 142 case ISD::INTRINSIC_WO_CHAIN: 143 case ISD::INTRINSIC_VOID: 144 case ISD::INTRINSIC_W_CHAIN: { 145 unsigned OpNo = getOpcode() == ISD::INTRINSIC_WO_CHAIN ? 0 : 1; 146 unsigned IID = cast<ConstantSDNode>(getOperand(OpNo))->getZExtValue(); 147 if (IID < Intrinsic::num_intrinsics) 148 return Intrinsic::getName((Intrinsic::ID)IID, None); 149 else if (!G) 150 return "Unknown intrinsic"; 151 else if (const TargetIntrinsicInfo *TII = G->getTarget().getIntrinsicInfo()) 152 return TII->getName(IID); 153 llvm_unreachable("Invalid intrinsic ID"); 154 } 155 156 case ISD::BUILD_VECTOR: return "BUILD_VECTOR"; 157 case ISD::TargetConstant: 158 if (cast<ConstantSDNode>(this)->isOpaque()) 159 return "OpaqueTargetConstant"; 160 return "TargetConstant"; 161 case ISD::TargetConstantFP: return "TargetConstantFP"; 162 case ISD::TargetGlobalAddress: return "TargetGlobalAddress"; 163 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress"; 164 case ISD::TargetFrameIndex: return "TargetFrameIndex"; 165 case ISD::TargetJumpTable: return "TargetJumpTable"; 166 case ISD::TargetConstantPool: return "TargetConstantPool"; 167 case ISD::TargetExternalSymbol: return "TargetExternalSymbol"; 168 case ISD::MCSymbol: return "MCSymbol"; 169 case ISD::TargetBlockAddress: return "TargetBlockAddress"; 170 171 case ISD::CopyToReg: return "CopyToReg"; 172 case ISD::CopyFromReg: return "CopyFromReg"; 173 case ISD::UNDEF: return "undef"; 174 case ISD::VSCALE: return "vscale"; 175 case ISD::MERGE_VALUES: return "merge_values"; 176 case ISD::INLINEASM: return "inlineasm"; 177 case ISD::INLINEASM_BR: return "inlineasm_br"; 178 case ISD::EH_LABEL: return "eh_label"; 179 case ISD::ANNOTATION_LABEL: return "annotation_label"; 180 case ISD::HANDLENODE: return "handlenode"; 181 182 // Unary operators 183 case ISD::FABS: return "fabs"; 184 case ISD::FMINNUM: return "fminnum"; 185 case ISD::STRICT_FMINNUM: return "strict_fminnum"; 186 case ISD::FMAXNUM: return "fmaxnum"; 187 case ISD::STRICT_FMAXNUM: return "strict_fmaxnum"; 188 case ISD::FMINNUM_IEEE: return "fminnum_ieee"; 189 case ISD::FMAXNUM_IEEE: return "fmaxnum_ieee"; 190 case ISD::FMINIMUM: return "fminimum"; 191 case ISD::STRICT_FMINIMUM: return "strict_fminimum"; 192 case ISD::FMAXIMUM: return "fmaximum"; 193 case ISD::STRICT_FMAXIMUM: return "strict_fmaximum"; 194 case ISD::FNEG: return "fneg"; 195 case ISD::FSQRT: return "fsqrt"; 196 case ISD::STRICT_FSQRT: return "strict_fsqrt"; 197 case ISD::FCBRT: return "fcbrt"; 198 case ISD::FSIN: return "fsin"; 199 case ISD::STRICT_FSIN: return "strict_fsin"; 200 case ISD::FCOS: return "fcos"; 201 case ISD::STRICT_FCOS: return "strict_fcos"; 202 case ISD::FSINCOS: return "fsincos"; 203 case ISD::FTRUNC: return "ftrunc"; 204 case ISD::STRICT_FTRUNC: return "strict_ftrunc"; 205 case ISD::FFLOOR: return "ffloor"; 206 case ISD::STRICT_FFLOOR: return "strict_ffloor"; 207 case ISD::FCEIL: return "fceil"; 208 case ISD::STRICT_FCEIL: return "strict_fceil"; 209 case ISD::FRINT: return "frint"; 210 case ISD::STRICT_FRINT: return "strict_frint"; 211 case ISD::FNEARBYINT: return "fnearbyint"; 212 case ISD::STRICT_FNEARBYINT: return "strict_fnearbyint"; 213 case ISD::FROUND: return "fround"; 214 case ISD::STRICT_FROUND: return "strict_fround"; 215 case ISD::FROUNDEVEN: return "froundeven"; 216 case ISD::STRICT_FROUNDEVEN: return "strict_froundeven"; 217 case ISD::FEXP: return "fexp"; 218 case ISD::STRICT_FEXP: return "strict_fexp"; 219 case ISD::FEXP2: return "fexp2"; 220 case ISD::STRICT_FEXP2: return "strict_fexp2"; 221 case ISD::FLOG: return "flog"; 222 case ISD::STRICT_FLOG: return "strict_flog"; 223 case ISD::FLOG2: return "flog2"; 224 case ISD::STRICT_FLOG2: return "strict_flog2"; 225 case ISD::FLOG10: return "flog10"; 226 case ISD::STRICT_FLOG10: return "strict_flog10"; 227 228 // Binary operators 229 case ISD::ADD: return "add"; 230 case ISD::SUB: return "sub"; 231 case ISD::MUL: return "mul"; 232 case ISD::MULHU: return "mulhu"; 233 case ISD::MULHS: return "mulhs"; 234 case ISD::SDIV: return "sdiv"; 235 case ISD::UDIV: return "udiv"; 236 case ISD::SREM: return "srem"; 237 case ISD::UREM: return "urem"; 238 case ISD::SMUL_LOHI: return "smul_lohi"; 239 case ISD::UMUL_LOHI: return "umul_lohi"; 240 case ISD::SDIVREM: return "sdivrem"; 241 case ISD::UDIVREM: return "udivrem"; 242 case ISD::AND: return "and"; 243 case ISD::OR: return "or"; 244 case ISD::XOR: return "xor"; 245 case ISD::SHL: return "shl"; 246 case ISD::SRA: return "sra"; 247 case ISD::SRL: return "srl"; 248 case ISD::ROTL: return "rotl"; 249 case ISD::ROTR: return "rotr"; 250 case ISD::FSHL: return "fshl"; 251 case ISD::FSHR: return "fshr"; 252 case ISD::FADD: return "fadd"; 253 case ISD::STRICT_FADD: return "strict_fadd"; 254 case ISD::FSUB: return "fsub"; 255 case ISD::STRICT_FSUB: return "strict_fsub"; 256 case ISD::FMUL: return "fmul"; 257 case ISD::STRICT_FMUL: return "strict_fmul"; 258 case ISD::FDIV: return "fdiv"; 259 case ISD::STRICT_FDIV: return "strict_fdiv"; 260 case ISD::FMA: return "fma"; 261 case ISD::STRICT_FMA: return "strict_fma"; 262 case ISD::FMAD: return "fmad"; 263 case ISD::FREM: return "frem"; 264 case ISD::STRICT_FREM: return "strict_frem"; 265 case ISD::FCOPYSIGN: return "fcopysign"; 266 case ISD::FGETSIGN: return "fgetsign"; 267 case ISD::FCANONICALIZE: return "fcanonicalize"; 268 case ISD::FPOW: return "fpow"; 269 case ISD::STRICT_FPOW: return "strict_fpow"; 270 case ISD::SMIN: return "smin"; 271 case ISD::SMAX: return "smax"; 272 case ISD::UMIN: return "umin"; 273 case ISD::UMAX: return "umax"; 274 275 case ISD::FPOWI: return "fpowi"; 276 case ISD::STRICT_FPOWI: return "strict_fpowi"; 277 case ISD::SETCC: return "setcc"; 278 case ISD::SETCCCARRY: return "setcccarry"; 279 case ISD::STRICT_FSETCC: return "strict_fsetcc"; 280 case ISD::STRICT_FSETCCS: return "strict_fsetccs"; 281 case ISD::SELECT: return "select"; 282 case ISD::VSELECT: return "vselect"; 283 case ISD::SELECT_CC: return "select_cc"; 284 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt"; 285 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt"; 286 case ISD::CONCAT_VECTORS: return "concat_vectors"; 287 case ISD::INSERT_SUBVECTOR: return "insert_subvector"; 288 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector"; 289 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector"; 290 case ISD::VECTOR_SHUFFLE: return "vector_shuffle"; 291 case ISD::SPLAT_VECTOR: return "splat_vector"; 292 case ISD::CARRY_FALSE: return "carry_false"; 293 case ISD::ADDC: return "addc"; 294 case ISD::ADDE: return "adde"; 295 case ISD::ADDCARRY: return "addcarry"; 296 case ISD::SADDO: return "saddo"; 297 case ISD::UADDO: return "uaddo"; 298 case ISD::SSUBO: return "ssubo"; 299 case ISD::USUBO: return "usubo"; 300 case ISD::SMULO: return "smulo"; 301 case ISD::UMULO: return "umulo"; 302 case ISD::SUBC: return "subc"; 303 case ISD::SUBE: return "sube"; 304 case ISD::SUBCARRY: return "subcarry"; 305 case ISD::SHL_PARTS: return "shl_parts"; 306 case ISD::SRA_PARTS: return "sra_parts"; 307 case ISD::SRL_PARTS: return "srl_parts"; 308 309 case ISD::SADDSAT: return "saddsat"; 310 case ISD::UADDSAT: return "uaddsat"; 311 case ISD::SSUBSAT: return "ssubsat"; 312 case ISD::USUBSAT: return "usubsat"; 313 314 case ISD::SMULFIX: return "smulfix"; 315 case ISD::SMULFIXSAT: return "smulfixsat"; 316 case ISD::UMULFIX: return "umulfix"; 317 case ISD::UMULFIXSAT: return "umulfixsat"; 318 319 case ISD::SDIVFIX: return "sdivfix"; 320 case ISD::SDIVFIXSAT: return "sdivfixsat"; 321 case ISD::UDIVFIX: return "udivfix"; 322 case ISD::UDIVFIXSAT: return "udivfixsat"; 323 324 // Conversion operators. 325 case ISD::SIGN_EXTEND: return "sign_extend"; 326 case ISD::ZERO_EXTEND: return "zero_extend"; 327 case ISD::ANY_EXTEND: return "any_extend"; 328 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg"; 329 case ISD::ANY_EXTEND_VECTOR_INREG: return "any_extend_vector_inreg"; 330 case ISD::SIGN_EXTEND_VECTOR_INREG: return "sign_extend_vector_inreg"; 331 case ISD::ZERO_EXTEND_VECTOR_INREG: return "zero_extend_vector_inreg"; 332 case ISD::TRUNCATE: return "truncate"; 333 case ISD::FP_ROUND: return "fp_round"; 334 case ISD::STRICT_FP_ROUND: return "strict_fp_round"; 335 case ISD::FLT_ROUNDS_: return "flt_rounds"; 336 case ISD::FP_EXTEND: return "fp_extend"; 337 case ISD::STRICT_FP_EXTEND: return "strict_fp_extend"; 338 339 case ISD::SINT_TO_FP: return "sint_to_fp"; 340 case ISD::STRICT_SINT_TO_FP: return "strict_sint_to_fp"; 341 case ISD::UINT_TO_FP: return "uint_to_fp"; 342 case ISD::STRICT_UINT_TO_FP: return "strict_uint_to_fp"; 343 case ISD::FP_TO_SINT: return "fp_to_sint"; 344 case ISD::STRICT_FP_TO_SINT: return "strict_fp_to_sint"; 345 case ISD::FP_TO_UINT: return "fp_to_uint"; 346 case ISD::STRICT_FP_TO_UINT: return "strict_fp_to_uint"; 347 case ISD::BITCAST: return "bitcast"; 348 case ISD::ADDRSPACECAST: return "addrspacecast"; 349 case ISD::FP16_TO_FP: return "fp16_to_fp"; 350 case ISD::STRICT_FP16_TO_FP: return "strict_fp16_to_fp"; 351 case ISD::FP_TO_FP16: return "fp_to_fp16"; 352 case ISD::STRICT_FP_TO_FP16: return "strict_fp_to_fp16"; 353 case ISD::LROUND: return "lround"; 354 case ISD::STRICT_LROUND: return "strict_lround"; 355 case ISD::LLROUND: return "llround"; 356 case ISD::STRICT_LLROUND: return "strict_llround"; 357 case ISD::LRINT: return "lrint"; 358 case ISD::STRICT_LRINT: return "strict_lrint"; 359 case ISD::LLRINT: return "llrint"; 360 case ISD::STRICT_LLRINT: return "strict_llrint"; 361 362 // Control flow instructions 363 case ISD::BR: return "br"; 364 case ISD::BRIND: return "brind"; 365 case ISD::BR_JT: return "br_jt"; 366 case ISD::BRCOND: return "brcond"; 367 case ISD::BR_CC: return "br_cc"; 368 case ISD::CALLSEQ_START: return "callseq_start"; 369 case ISD::CALLSEQ_END: return "callseq_end"; 370 371 // EH instructions 372 case ISD::CATCHRET: return "catchret"; 373 case ISD::CLEANUPRET: return "cleanupret"; 374 375 // Other operators 376 case ISD::LOAD: return "load"; 377 case ISD::STORE: return "store"; 378 case ISD::MLOAD: return "masked_load"; 379 case ISD::MSTORE: return "masked_store"; 380 case ISD::MGATHER: return "masked_gather"; 381 case ISD::MSCATTER: return "masked_scatter"; 382 case ISD::VAARG: return "vaarg"; 383 case ISD::VACOPY: return "vacopy"; 384 case ISD::VAEND: return "vaend"; 385 case ISD::VASTART: return "vastart"; 386 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc"; 387 case ISD::EXTRACT_ELEMENT: return "extract_element"; 388 case ISD::BUILD_PAIR: return "build_pair"; 389 case ISD::STACKSAVE: return "stacksave"; 390 case ISD::STACKRESTORE: return "stackrestore"; 391 case ISD::TRAP: return "trap"; 392 case ISD::DEBUGTRAP: return "debugtrap"; 393 case ISD::LIFETIME_START: return "lifetime.start"; 394 case ISD::LIFETIME_END: return "lifetime.end"; 395 case ISD::GC_TRANSITION_START: return "gc_transition.start"; 396 case ISD::GC_TRANSITION_END: return "gc_transition.end"; 397 case ISD::GET_DYNAMIC_AREA_OFFSET: return "get.dynamic.area.offset"; 398 case ISD::FREEZE: return "freeze"; 399 case ISD::PREALLOCATED_SETUP: 400 return "call_setup"; 401 case ISD::PREALLOCATED_ARG: 402 return "call_alloc"; 403 404 // Bit manipulation 405 case ISD::ABS: return "abs"; 406 case ISD::BITREVERSE: return "bitreverse"; 407 case ISD::BSWAP: return "bswap"; 408 case ISD::CTPOP: return "ctpop"; 409 case ISD::CTTZ: return "cttz"; 410 case ISD::CTTZ_ZERO_UNDEF: return "cttz_zero_undef"; 411 case ISD::CTLZ: return "ctlz"; 412 case ISD::CTLZ_ZERO_UNDEF: return "ctlz_zero_undef"; 413 414 // Trampolines 415 case ISD::INIT_TRAMPOLINE: return "init_trampoline"; 416 case ISD::ADJUST_TRAMPOLINE: return "adjust_trampoline"; 417 418 case ISD::CONDCODE: 419 switch (cast<CondCodeSDNode>(this)->get()) { 420 default: llvm_unreachable("Unknown setcc condition!"); 421 case ISD::SETOEQ: return "setoeq"; 422 case ISD::SETOGT: return "setogt"; 423 case ISD::SETOGE: return "setoge"; 424 case ISD::SETOLT: return "setolt"; 425 case ISD::SETOLE: return "setole"; 426 case ISD::SETONE: return "setone"; 427 428 case ISD::SETO: return "seto"; 429 case ISD::SETUO: return "setuo"; 430 case ISD::SETUEQ: return "setueq"; 431 case ISD::SETUGT: return "setugt"; 432 case ISD::SETUGE: return "setuge"; 433 case ISD::SETULT: return "setult"; 434 case ISD::SETULE: return "setule"; 435 case ISD::SETUNE: return "setune"; 436 437 case ISD::SETEQ: return "seteq"; 438 case ISD::SETGT: return "setgt"; 439 case ISD::SETGE: return "setge"; 440 case ISD::SETLT: return "setlt"; 441 case ISD::SETLE: return "setle"; 442 case ISD::SETNE: return "setne"; 443 444 case ISD::SETTRUE: return "settrue"; 445 case ISD::SETTRUE2: return "settrue2"; 446 case ISD::SETFALSE: return "setfalse"; 447 case ISD::SETFALSE2: return "setfalse2"; 448 } 449 case ISD::VECREDUCE_FADD: return "vecreduce_fadd"; 450 case ISD::VECREDUCE_STRICT_FADD: return "vecreduce_strict_fadd"; 451 case ISD::VECREDUCE_FMUL: return "vecreduce_fmul"; 452 case ISD::VECREDUCE_STRICT_FMUL: return "vecreduce_strict_fmul"; 453 case ISD::VECREDUCE_ADD: return "vecreduce_add"; 454 case ISD::VECREDUCE_MUL: return "vecreduce_mul"; 455 case ISD::VECREDUCE_AND: return "vecreduce_and"; 456 case ISD::VECREDUCE_OR: return "vecreduce_or"; 457 case ISD::VECREDUCE_XOR: return "vecreduce_xor"; 458 case ISD::VECREDUCE_SMAX: return "vecreduce_smax"; 459 case ISD::VECREDUCE_SMIN: return "vecreduce_smin"; 460 case ISD::VECREDUCE_UMAX: return "vecreduce_umax"; 461 case ISD::VECREDUCE_UMIN: return "vecreduce_umin"; 462 case ISD::VECREDUCE_FMAX: return "vecreduce_fmax"; 463 case ISD::VECREDUCE_FMIN: return "vecreduce_fmin"; 464 } 465 } 466 467 const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) { 468 switch (AM) { 469 default: return ""; 470 case ISD::PRE_INC: return "<pre-inc>"; 471 case ISD::PRE_DEC: return "<pre-dec>"; 472 case ISD::POST_INC: return "<post-inc>"; 473 case ISD::POST_DEC: return "<post-dec>"; 474 } 475 } 476 477 static Printable PrintNodeId(const SDNode &Node) { 478 return Printable([&Node](raw_ostream &OS) { 479 #ifndef NDEBUG 480 OS << 't' << Node.PersistentId; 481 #else 482 OS << (const void*)&Node; 483 #endif 484 }); 485 } 486 487 // Print the MMO with more information from the SelectionDAG. 488 static void printMemOperand(raw_ostream &OS, const MachineMemOperand &MMO, 489 const MachineFunction *MF, const Module *M, 490 const MachineFrameInfo *MFI, 491 const TargetInstrInfo *TII, LLVMContext &Ctx) { 492 ModuleSlotTracker MST(M); 493 if (MF) 494 MST.incorporateFunction(MF->getFunction()); 495 SmallVector<StringRef, 0> SSNs; 496 MMO.print(OS, MST, SSNs, Ctx, MFI, TII); 497 } 498 499 static void printMemOperand(raw_ostream &OS, const MachineMemOperand &MMO, 500 const SelectionDAG *G) { 501 if (G) { 502 const MachineFunction *MF = &G->getMachineFunction(); 503 return printMemOperand(OS, MMO, MF, MF->getFunction().getParent(), 504 &MF->getFrameInfo(), G->getSubtarget().getInstrInfo(), 505 *G->getContext()); 506 } else { 507 LLVMContext Ctx; 508 return printMemOperand(OS, MMO, /*MF=*/nullptr, /*M=*/nullptr, 509 /*MFI=*/nullptr, /*TII=*/nullptr, Ctx); 510 } 511 } 512 513 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 514 LLVM_DUMP_METHOD void SDNode::dump() const { dump(nullptr); } 515 516 LLVM_DUMP_METHOD void SDNode::dump(const SelectionDAG *G) const { 517 print(dbgs(), G); 518 dbgs() << '\n'; 519 } 520 #endif 521 522 void SDNode::print_types(raw_ostream &OS, const SelectionDAG *G) const { 523 for (unsigned i = 0, e = getNumValues(); i != e; ++i) { 524 if (i) OS << ","; 525 if (getValueType(i) == MVT::Other) 526 OS << "ch"; 527 else 528 OS << getValueType(i).getEVTString(); 529 } 530 } 531 532 void SDNode::print_details(raw_ostream &OS, const SelectionDAG *G) const { 533 if (getFlags().hasNoUnsignedWrap()) 534 OS << " nuw"; 535 536 if (getFlags().hasNoSignedWrap()) 537 OS << " nsw"; 538 539 if (getFlags().hasExact()) 540 OS << " exact"; 541 542 if (getFlags().hasNoNaNs()) 543 OS << " nnan"; 544 545 if (getFlags().hasNoInfs()) 546 OS << " ninf"; 547 548 if (getFlags().hasNoSignedZeros()) 549 OS << " nsz"; 550 551 if (getFlags().hasAllowReciprocal()) 552 OS << " arcp"; 553 554 if (getFlags().hasAllowContract()) 555 OS << " contract"; 556 557 if (getFlags().hasApproximateFuncs()) 558 OS << " afn"; 559 560 if (getFlags().hasAllowReassociation()) 561 OS << " reassoc"; 562 563 if (getFlags().hasNoFPExcept()) 564 OS << " nofpexcept"; 565 566 if (const MachineSDNode *MN = dyn_cast<MachineSDNode>(this)) { 567 if (!MN->memoperands_empty()) { 568 OS << "<"; 569 OS << "Mem:"; 570 for (MachineSDNode::mmo_iterator i = MN->memoperands_begin(), 571 e = MN->memoperands_end(); i != e; ++i) { 572 printMemOperand(OS, **i, G); 573 if (std::next(i) != e) 574 OS << " "; 575 } 576 OS << ">"; 577 } 578 } else if (const ShuffleVectorSDNode *SVN = 579 dyn_cast<ShuffleVectorSDNode>(this)) { 580 OS << "<"; 581 for (unsigned i = 0, e = ValueList[0].getVectorNumElements(); i != e; ++i) { 582 int Idx = SVN->getMaskElt(i); 583 if (i) OS << ","; 584 if (Idx < 0) 585 OS << "u"; 586 else 587 OS << Idx; 588 } 589 OS << ">"; 590 } else if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) { 591 OS << '<' << CSDN->getAPIntValue() << '>'; 592 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) { 593 if (&CSDN->getValueAPF().getSemantics() == &APFloat::IEEEsingle()) 594 OS << '<' << CSDN->getValueAPF().convertToFloat() << '>'; 595 else if (&CSDN->getValueAPF().getSemantics() == &APFloat::IEEEdouble()) 596 OS << '<' << CSDN->getValueAPF().convertToDouble() << '>'; 597 else { 598 OS << "<APFloat("; 599 CSDN->getValueAPF().bitcastToAPInt().print(OS, false); 600 OS << ")>"; 601 } 602 } else if (const GlobalAddressSDNode *GADN = 603 dyn_cast<GlobalAddressSDNode>(this)) { 604 int64_t offset = GADN->getOffset(); 605 OS << '<'; 606 GADN->getGlobal()->printAsOperand(OS); 607 OS << '>'; 608 if (offset > 0) 609 OS << " + " << offset; 610 else 611 OS << " " << offset; 612 if (unsigned int TF = GADN->getTargetFlags()) 613 OS << " [TF=" << TF << ']'; 614 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) { 615 OS << "<" << FIDN->getIndex() << ">"; 616 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) { 617 OS << "<" << JTDN->getIndex() << ">"; 618 if (unsigned int TF = JTDN->getTargetFlags()) 619 OS << " [TF=" << TF << ']'; 620 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){ 621 int offset = CP->getOffset(); 622 if (CP->isMachineConstantPoolEntry()) 623 OS << "<" << *CP->getMachineCPVal() << ">"; 624 else 625 OS << "<" << *CP->getConstVal() << ">"; 626 if (offset > 0) 627 OS << " + " << offset; 628 else 629 OS << " " << offset; 630 if (unsigned int TF = CP->getTargetFlags()) 631 OS << " [TF=" << TF << ']'; 632 } else if (const TargetIndexSDNode *TI = dyn_cast<TargetIndexSDNode>(this)) { 633 OS << "<" << TI->getIndex() << '+' << TI->getOffset() << ">"; 634 if (unsigned TF = TI->getTargetFlags()) 635 OS << " [TF=" << TF << ']'; 636 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) { 637 OS << "<"; 638 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock(); 639 if (LBB) 640 OS << LBB->getName() << " "; 641 OS << (const void*)BBDN->getBasicBlock() << ">"; 642 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) { 643 OS << ' ' << printReg(R->getReg(), 644 G ? G->getSubtarget().getRegisterInfo() : nullptr); 645 } else if (const ExternalSymbolSDNode *ES = 646 dyn_cast<ExternalSymbolSDNode>(this)) { 647 OS << "'" << ES->getSymbol() << "'"; 648 if (unsigned int TF = ES->getTargetFlags()) 649 OS << " [TF=" << TF << ']'; 650 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) { 651 if (M->getValue()) 652 OS << "<" << M->getValue() << ">"; 653 else 654 OS << "<null>"; 655 } else if (const MDNodeSDNode *MD = dyn_cast<MDNodeSDNode>(this)) { 656 if (MD->getMD()) 657 OS << "<" << MD->getMD() << ">"; 658 else 659 OS << "<null>"; 660 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) { 661 OS << ":" << N->getVT().getEVTString(); 662 } 663 else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) { 664 OS << "<"; 665 666 printMemOperand(OS, *LD->getMemOperand(), G); 667 668 bool doExt = true; 669 switch (LD->getExtensionType()) { 670 default: doExt = false; break; 671 case ISD::EXTLOAD: OS << ", anyext"; break; 672 case ISD::SEXTLOAD: OS << ", sext"; break; 673 case ISD::ZEXTLOAD: OS << ", zext"; break; 674 } 675 if (doExt) 676 OS << " from " << LD->getMemoryVT().getEVTString(); 677 678 const char *AM = getIndexedModeName(LD->getAddressingMode()); 679 if (*AM) 680 OS << ", " << AM; 681 682 OS << ">"; 683 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) { 684 OS << "<"; 685 printMemOperand(OS, *ST->getMemOperand(), G); 686 687 if (ST->isTruncatingStore()) 688 OS << ", trunc to " << ST->getMemoryVT().getEVTString(); 689 690 const char *AM = getIndexedModeName(ST->getAddressingMode()); 691 if (*AM) 692 OS << ", " << AM; 693 694 OS << ">"; 695 } else if (const MaskedLoadSDNode *MLd = dyn_cast<MaskedLoadSDNode>(this)) { 696 OS << "<"; 697 698 printMemOperand(OS, *MLd->getMemOperand(), G); 699 700 bool doExt = true; 701 switch (MLd->getExtensionType()) { 702 default: doExt = false; break; 703 case ISD::EXTLOAD: OS << ", anyext"; break; 704 case ISD::SEXTLOAD: OS << ", sext"; break; 705 case ISD::ZEXTLOAD: OS << ", zext"; break; 706 } 707 if (doExt) 708 OS << " from " << MLd->getMemoryVT().getEVTString(); 709 710 const char *AM = getIndexedModeName(MLd->getAddressingMode()); 711 if (*AM) 712 OS << ", " << AM; 713 714 if (MLd->isExpandingLoad()) 715 OS << ", expanding"; 716 717 OS << ">"; 718 } else if (const MaskedStoreSDNode *MSt = dyn_cast<MaskedStoreSDNode>(this)) { 719 OS << "<"; 720 printMemOperand(OS, *MSt->getMemOperand(), G); 721 722 if (MSt->isTruncatingStore()) 723 OS << ", trunc to " << MSt->getMemoryVT().getEVTString(); 724 725 const char *AM = getIndexedModeName(MSt->getAddressingMode()); 726 if (*AM) 727 OS << ", " << AM; 728 729 if (MSt->isCompressingStore()) 730 OS << ", compressing"; 731 732 OS << ">"; 733 } else if (const MemSDNode* M = dyn_cast<MemSDNode>(this)) { 734 OS << "<"; 735 printMemOperand(OS, *M->getMemOperand(), G); 736 OS << ">"; 737 } else if (const BlockAddressSDNode *BA = 738 dyn_cast<BlockAddressSDNode>(this)) { 739 int64_t offset = BA->getOffset(); 740 OS << "<"; 741 BA->getBlockAddress()->getFunction()->printAsOperand(OS, false); 742 OS << ", "; 743 BA->getBlockAddress()->getBasicBlock()->printAsOperand(OS, false); 744 OS << ">"; 745 if (offset > 0) 746 OS << " + " << offset; 747 else 748 OS << " " << offset; 749 if (unsigned int TF = BA->getTargetFlags()) 750 OS << " [TF=" << TF << ']'; 751 } else if (const AddrSpaceCastSDNode *ASC = 752 dyn_cast<AddrSpaceCastSDNode>(this)) { 753 OS << '[' 754 << ASC->getSrcAddressSpace() 755 << " -> " 756 << ASC->getDestAddressSpace() 757 << ']'; 758 } else if (const LifetimeSDNode *LN = dyn_cast<LifetimeSDNode>(this)) { 759 if (LN->hasOffset()) 760 OS << "<" << LN->getOffset() << " to " << LN->getOffset() + LN->getSize() << ">"; 761 } 762 763 if (VerboseDAGDumping) { 764 if (unsigned Order = getIROrder()) 765 OS << " [ORD=" << Order << ']'; 766 767 if (getNodeId() != -1) 768 OS << " [ID=" << getNodeId() << ']'; 769 if (!(isa<ConstantSDNode>(this) || (isa<ConstantFPSDNode>(this)))) 770 OS << " # D:" << isDivergent(); 771 772 if (G && !G->GetDbgValues(this).empty()) { 773 OS << " [NoOfDbgValues=" << G->GetDbgValues(this).size() << ']'; 774 for (SDDbgValue *Dbg : G->GetDbgValues(this)) 775 if (!Dbg->isInvalidated()) 776 Dbg->print(OS); 777 } else if (getHasDebugValue()) 778 OS << " [NoOfDbgValues>0]"; 779 } 780 } 781 782 LLVM_DUMP_METHOD void SDDbgValue::print(raw_ostream &OS) const { 783 OS << " DbgVal(Order=" << getOrder() << ')'; 784 if (isInvalidated()) OS << "(Invalidated)"; 785 if (isEmitted()) OS << "(Emitted)"; 786 switch (getKind()) { 787 case SDNODE: 788 if (getSDNode()) 789 OS << "(SDNODE=" << PrintNodeId(*getSDNode()) << ':' << getResNo() << ')'; 790 else 791 OS << "(SDNODE)"; 792 break; 793 case CONST: 794 OS << "(CONST)"; 795 break; 796 case FRAMEIX: 797 OS << "(FRAMEIX=" << getFrameIx() << ')'; 798 break; 799 case VREG: 800 OS << "(VREG=" << getVReg() << ')'; 801 break; 802 } 803 if (isIndirect()) OS << "(Indirect)"; 804 OS << ":\"" << Var->getName() << '"'; 805 #ifndef NDEBUG 806 if (Expr->getNumElements()) 807 Expr->dump(); 808 #endif 809 } 810 811 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 812 LLVM_DUMP_METHOD void SDDbgValue::dump() const { 813 if (isInvalidated()) 814 return; 815 print(dbgs()); 816 dbgs() << "\n"; 817 } 818 #endif 819 820 /// Return true if this node is so simple that we should just print it inline 821 /// if it appears as an operand. 822 static bool shouldPrintInline(const SDNode &Node, const SelectionDAG *G) { 823 // Avoid lots of cluttering when inline printing nodes with associated 824 // DbgValues in verbose mode. 825 if (VerboseDAGDumping && G && !G->GetDbgValues(&Node).empty()) 826 return false; 827 if (Node.getOpcode() == ISD::EntryToken) 828 return false; 829 return Node.getNumOperands() == 0; 830 } 831 832 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 833 static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) { 834 for (const SDValue &Op : N->op_values()) { 835 if (shouldPrintInline(*Op.getNode(), G)) 836 continue; 837 if (Op.getNode()->hasOneUse()) 838 DumpNodes(Op.getNode(), indent+2, G); 839 } 840 841 dbgs().indent(indent); 842 N->dump(G); 843 } 844 845 LLVM_DUMP_METHOD void SelectionDAG::dump() const { 846 dbgs() << "SelectionDAG has " << AllNodes.size() << " nodes:\n"; 847 848 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end(); 849 I != E; ++I) { 850 const SDNode *N = &*I; 851 if (!N->hasOneUse() && N != getRoot().getNode() && 852 (!shouldPrintInline(*N, this) || N->use_empty())) 853 DumpNodes(N, 2, this); 854 } 855 856 if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this); 857 dbgs() << "\n"; 858 859 if (VerboseDAGDumping) { 860 if (DbgBegin() != DbgEnd()) 861 dbgs() << "SDDbgValues:\n"; 862 for (auto *Dbg : make_range(DbgBegin(), DbgEnd())) 863 Dbg->dump(); 864 if (ByvalParmDbgBegin() != ByvalParmDbgEnd()) 865 dbgs() << "Byval SDDbgValues:\n"; 866 for (auto *Dbg : make_range(ByvalParmDbgBegin(), ByvalParmDbgEnd())) 867 Dbg->dump(); 868 } 869 dbgs() << "\n"; 870 } 871 #endif 872 873 void SDNode::printr(raw_ostream &OS, const SelectionDAG *G) const { 874 OS << PrintNodeId(*this) << ": "; 875 print_types(OS, G); 876 OS << " = " << getOperationName(G); 877 print_details(OS, G); 878 } 879 880 static bool printOperand(raw_ostream &OS, const SelectionDAG *G, 881 const SDValue Value) { 882 if (!Value.getNode()) { 883 OS << "<null>"; 884 return false; 885 } else if (shouldPrintInline(*Value.getNode(), G)) { 886 OS << Value->getOperationName(G) << ':'; 887 Value->print_types(OS, G); 888 Value->print_details(OS, G); 889 return true; 890 } else { 891 OS << PrintNodeId(*Value.getNode()); 892 if (unsigned RN = Value.getResNo()) 893 OS << ':' << RN; 894 return false; 895 } 896 } 897 898 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 899 using VisitedSDNodeSet = SmallPtrSet<const SDNode *, 32>; 900 901 static void DumpNodesr(raw_ostream &OS, const SDNode *N, unsigned indent, 902 const SelectionDAG *G, VisitedSDNodeSet &once) { 903 if (!once.insert(N).second) // If we've been here before, return now. 904 return; 905 906 // Dump the current SDNode, but don't end the line yet. 907 OS.indent(indent); 908 N->printr(OS, G); 909 910 // Having printed this SDNode, walk the children: 911 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) { 912 if (i) OS << ","; 913 OS << " "; 914 915 const SDValue Op = N->getOperand(i); 916 bool printedInline = printOperand(OS, G, Op); 917 if (printedInline) 918 once.insert(Op.getNode()); 919 } 920 921 OS << "\n"; 922 923 // Dump children that have grandchildren on their own line(s). 924 for (const SDValue &Op : N->op_values()) 925 DumpNodesr(OS, Op.getNode(), indent+2, G, once); 926 } 927 928 LLVM_DUMP_METHOD void SDNode::dumpr() const { 929 VisitedSDNodeSet once; 930 DumpNodesr(dbgs(), this, 0, nullptr, once); 931 } 932 933 LLVM_DUMP_METHOD void SDNode::dumpr(const SelectionDAG *G) const { 934 VisitedSDNodeSet once; 935 DumpNodesr(dbgs(), this, 0, G, once); 936 } 937 #endif 938 939 static void printrWithDepthHelper(raw_ostream &OS, const SDNode *N, 940 const SelectionDAG *G, unsigned depth, 941 unsigned indent) { 942 if (depth == 0) 943 return; 944 945 OS.indent(indent); 946 947 N->print(OS, G); 948 949 if (depth < 1) 950 return; 951 952 for (const SDValue &Op : N->op_values()) { 953 // Don't follow chain operands. 954 if (Op.getValueType() == MVT::Other) 955 continue; 956 OS << '\n'; 957 printrWithDepthHelper(OS, Op.getNode(), G, depth-1, indent+2); 958 } 959 } 960 961 void SDNode::printrWithDepth(raw_ostream &OS, const SelectionDAG *G, 962 unsigned depth) const { 963 printrWithDepthHelper(OS, this, G, depth, 0); 964 } 965 966 void SDNode::printrFull(raw_ostream &OS, const SelectionDAG *G) const { 967 // Don't print impossibly deep things. 968 printrWithDepth(OS, G, 10); 969 } 970 971 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 972 LLVM_DUMP_METHOD 973 void SDNode::dumprWithDepth(const SelectionDAG *G, unsigned depth) const { 974 printrWithDepth(dbgs(), G, depth); 975 } 976 977 LLVM_DUMP_METHOD void SDNode::dumprFull(const SelectionDAG *G) const { 978 // Don't print impossibly deep things. 979 dumprWithDepth(G, 10); 980 } 981 #endif 982 983 void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const { 984 printr(OS, G); 985 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { 986 if (i) OS << ", "; else OS << " "; 987 printOperand(OS, G, getOperand(i)); 988 } 989 if (DebugLoc DL = getDebugLoc()) { 990 OS << ", "; 991 DL.print(OS); 992 } 993 } 994