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 "SDNodeDbgValue.h"
14#include "llvm/ADT/APFloat.h"
15#include "llvm/ADT/APInt.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/SelectionDAGTargetInfo.h"
25#include "llvm/CodeGen/TargetInstrInfo.h"
26#include "llvm/CodeGen/TargetLowering.h"
27#include "llvm/CodeGen/TargetRegisterInfo.h"
28#include "llvm/CodeGen/TargetSubtargetInfo.h"
29#include "llvm/CodeGen/ValueTypes.h"
30#include "llvm/CodeGenTypes/MachineValueType.h"
31#include "llvm/Config/llvm-config.h"
32#include "llvm/IR/BasicBlock.h"
33#include "llvm/IR/Constants.h"
34#include "llvm/IR/DebugInfoMetadata.h"
35#include "llvm/IR/DebugLoc.h"
36#include "llvm/IR/Function.h"
37#include "llvm/IR/Intrinsics.h"
38#include "llvm/IR/ModuleSlotTracker.h"
39#include "llvm/IR/Value.h"
40#include "llvm/Support/Casting.h"
41#include "llvm/Support/CommandLine.h"
42#include "llvm/Support/Compiler.h"
43#include "llvm/Support/Debug.h"
44#include "llvm/Support/ErrorHandling.h"
45#include "llvm/Support/Printable.h"
46#include "llvm/Support/raw_ostream.h"
47#include "llvm/Target/TargetMachine.h"
48#include <cstdint>
49#include <iterator>
50
51using namespace llvm;
52
53static cl::opt<bool>
54VerboseDAGDumping("dag-dump-verbose", cl::Hidden,
55 cl::desc("Display more information when dumping selection "
56 "DAG nodes."));
57
58static cl::opt<bool>
59 PrintSDNodeAddrs("print-sdnode-addrs", cl::Hidden,
60 cl::desc("Print addresses of SDNodes when dumping"));
61
62std::string SDNode::getOperationName(const SelectionDAG *G) const {
63 switch (getOpcode()) {
64 default:
65 if (getOpcode() < ISD::BUILTIN_OP_END)
66 return "<<Unknown DAG Node>>";
67 if (isMachineOpcode()) {
68 if (G)
69 if (const TargetInstrInfo *TII = G->getSubtarget().getInstrInfo())
70 if (getMachineOpcode() < TII->getNumOpcodes())
71 return std::string(TII->getName(Opcode: getMachineOpcode()));
72 return "<<Unknown Machine Node #" + utostr(X: getOpcode()) + ">>";
73 }
74 if (G) {
75 const SelectionDAGTargetInfo &TSI = G->getSelectionDAGInfo();
76 if (const char *Name = TSI.getTargetNodeName(Opcode: getOpcode()))
77 return Name;
78 const TargetLowering &TLI = G->getTargetLoweringInfo();
79 const char *Name = TLI.getTargetNodeName(Opcode: getOpcode());
80 if (Name) return Name;
81 return "<<Unknown Target Node #" + utostr(X: getOpcode()) + ">>";
82 }
83 return "<<Unknown Node #" + utostr(X: getOpcode()) + ">>";
84
85 // clang-format off
86#ifndef NDEBUG
87 case ISD::DELETED_NODE: return "<<Deleted Node!>>";
88#endif
89 case ISD::PREFETCH: return "Prefetch";
90 case ISD::MEMBARRIER: return "MemBarrier";
91 case ISD::ATOMIC_FENCE: return "AtomicFence";
92 case ISD::ATOMIC_CMP_SWAP: return "AtomicCmpSwap";
93 case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: return "AtomicCmpSwapWithSuccess";
94 case ISD::ATOMIC_SWAP: return "AtomicSwap";
95 case ISD::ATOMIC_LOAD_ADD: return "AtomicLoadAdd";
96 case ISD::ATOMIC_LOAD_SUB: return "AtomicLoadSub";
97 case ISD::ATOMIC_LOAD_AND: return "AtomicLoadAnd";
98 case ISD::ATOMIC_LOAD_CLR: return "AtomicLoadClr";
99 case ISD::ATOMIC_LOAD_OR: return "AtomicLoadOr";
100 case ISD::ATOMIC_LOAD_XOR: return "AtomicLoadXor";
101 case ISD::ATOMIC_LOAD_NAND: return "AtomicLoadNand";
102 case ISD::ATOMIC_LOAD_MIN: return "AtomicLoadMin";
103 case ISD::ATOMIC_LOAD_MAX: return "AtomicLoadMax";
104 case ISD::ATOMIC_LOAD_UMIN: return "AtomicLoadUMin";
105 case ISD::ATOMIC_LOAD_UMAX: return "AtomicLoadUMax";
106 case ISD::ATOMIC_LOAD_FADD: return "AtomicLoadFAdd";
107 case ISD::ATOMIC_LOAD_FSUB: return "AtomicLoadFSub";
108 case ISD::ATOMIC_LOAD_FMIN: return "AtomicLoadFMin";
109 case ISD::ATOMIC_LOAD_FMAX: return "AtomicLoadFMax";
110 case ISD::ATOMIC_LOAD_FMINIMUM: return "AtomicLoadFMinimum";
111 case ISD::ATOMIC_LOAD_FMAXIMUM: return "AtomicLoadFMaximum";
112 case ISD::ATOMIC_LOAD_UINC_WRAP:
113 return "AtomicLoadUIncWrap";
114 case ISD::ATOMIC_LOAD_UDEC_WRAP:
115 return "AtomicLoadUDecWrap";
116 case ISD::ATOMIC_LOAD_USUB_COND:
117 return "AtomicLoadUSubCond";
118 case ISD::ATOMIC_LOAD_USUB_SAT:
119 return "AtomicLoadUSubSat";
120 case ISD::ATOMIC_LOAD: return "AtomicLoad";
121 case ISD::ATOMIC_STORE: return "AtomicStore";
122 case ISD::PCMARKER: return "PCMarker";
123 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
124 case ISD::READSTEADYCOUNTER: return "ReadSteadyCounter";
125 case ISD::SRCVALUE: return "SrcValue";
126 case ISD::MDNODE_SDNODE: return "MDNode";
127 case ISD::EntryToken: return "EntryToken";
128 case ISD::TokenFactor: return "TokenFactor";
129 case ISD::AssertSext: return "AssertSext";
130 case ISD::AssertZext: return "AssertZext";
131 case ISD::AssertNoFPClass: return "AssertNoFPClass";
132 case ISD::AssertAlign: return "AssertAlign";
133
134 case ISD::BasicBlock: return "BasicBlock";
135 case ISD::VALUETYPE: return "ValueType";
136 case ISD::Register: return "Register";
137 case ISD::RegisterMask: return "RegisterMask";
138 case ISD::Constant:
139 if (cast<ConstantSDNode>(Val: this)->isOpaque())
140 return "OpaqueConstant";
141 return "Constant";
142 case ISD::ConstantFP: return "ConstantFP";
143 case ISD::GlobalAddress: return "GlobalAddress";
144 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
145 case ISD::PtrAuthGlobalAddress: return "PtrAuthGlobalAddress";
146 case ISD::FrameIndex: return "FrameIndex";
147 case ISD::JumpTable: return "JumpTable";
148 case ISD::JUMP_TABLE_DEBUG_INFO:
149 return "JUMP_TABLE_DEBUG_INFO";
150 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
151 case ISD::RETURNADDR: return "RETURNADDR";
152 case ISD::ADDROFRETURNADDR: return "ADDROFRETURNADDR";
153 case ISD::FRAMEADDR: return "FRAMEADDR";
154 case ISD::SPONENTRY: return "SPONENTRY";
155 case ISD::STACKADDRESS: return "STACKADDRESS";
156 case ISD::LOCAL_RECOVER: return "LOCAL_RECOVER";
157 case ISD::READ_REGISTER: return "READ_REGISTER";
158 case ISD::WRITE_REGISTER: return "WRITE_REGISTER";
159 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
160 case ISD::EH_DWARF_CFA: return "EH_DWARF_CFA";
161 case ISD::EH_RETURN: return "EH_RETURN";
162 case ISD::EH_SJLJ_SETJMP: return "EH_SJLJ_SETJMP";
163 case ISD::EH_SJLJ_LONGJMP: return "EH_SJLJ_LONGJMP";
164 case ISD::EH_SJLJ_SETUP_DISPATCH: return "EH_SJLJ_SETUP_DISPATCH";
165 case ISD::ConstantPool: return "ConstantPool";
166 case ISD::TargetIndex: return "TargetIndex";
167 case ISD::ExternalSymbol: return "ExternalSymbol";
168 case ISD::BlockAddress: return "BlockAddress";
169 case ISD::INTRINSIC_WO_CHAIN:
170 case ISD::INTRINSIC_VOID:
171 case ISD::INTRINSIC_W_CHAIN: {
172 unsigned OpNo = getOpcode() == ISD::INTRINSIC_WO_CHAIN ? 0 : 1;
173 unsigned IID = getOperand(Num: OpNo)->getAsZExtVal();
174 if (IID < Intrinsic::num_intrinsics)
175 return Intrinsic::getBaseName(id: (Intrinsic::ID)IID).str();
176 if (!G)
177 return "Unknown intrinsic";
178 llvm_unreachable("Invalid intrinsic ID");
179 }
180
181 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
182 case ISD::TargetConstant:
183 if (cast<ConstantSDNode>(Val: this)->isOpaque())
184 return "OpaqueTargetConstant";
185 return "TargetConstant";
186
187 case ISD::TargetConstantFP: return "TargetConstantFP";
188 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
189 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
190 case ISD::TargetFrameIndex: return "TargetFrameIndex";
191 case ISD::TargetJumpTable: return "TargetJumpTable";
192 case ISD::TargetConstantPool: return "TargetConstantPool";
193 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
194 case ISD::MCSymbol: return "MCSymbol";
195 case ISD::TargetBlockAddress: return "TargetBlockAddress";
196
197 case ISD::CopyToReg: return "CopyToReg";
198 case ISD::CopyFromReg: return "CopyFromReg";
199 case ISD::UNDEF: return "undef";
200 case ISD::POISON: return "poison";
201 case ISD::VSCALE: return "vscale";
202 case ISD::MERGE_VALUES: return "merge_values";
203 case ISD::INLINEASM: return "inlineasm";
204 case ISD::INLINEASM_BR: return "inlineasm_br";
205 case ISD::EH_LABEL: return "eh_label";
206 case ISD::ANNOTATION_LABEL: return "annotation_label";
207 case ISD::HANDLENODE: return "handlenode";
208
209 // Unary operators
210 case ISD::FABS: return "fabs";
211 case ISD::FMINNUM: return "fminnum";
212 case ISD::STRICT_FMINNUM: return "strict_fminnum";
213 case ISD::FMAXNUM: return "fmaxnum";
214 case ISD::STRICT_FMAXNUM: return "strict_fmaxnum";
215 case ISD::FMINNUM_IEEE: return "fminnum_ieee";
216 case ISD::FMAXNUM_IEEE: return "fmaxnum_ieee";
217 case ISD::FMINIMUM: return "fminimum";
218 case ISD::STRICT_FMINIMUM: return "strict_fminimum";
219 case ISD::FMAXIMUM: return "fmaximum";
220 case ISD::STRICT_FMAXIMUM: return "strict_fmaximum";
221 case ISD::FMINIMUMNUM: return "fminimumnum";
222 case ISD::FMAXIMUMNUM: return "fmaximumnum";
223 case ISD::PSEUDO_FMIN: return "pseudo_fmin";
224 case ISD::PSEUDO_FMAX: return "pseudo_fmax";
225 case ISD::STRICT_PSEUDO_FMIN: return "strict_pseudo_fmin";
226 case ISD::STRICT_PSEUDO_FMAX: return "strict_pseudo_fmax";
227 case ISD::FNEG: return "fneg";
228 case ISD::FSQRT: return "fsqrt";
229 case ISD::STRICT_FSQRT: return "strict_fsqrt";
230 case ISD::FCBRT: return "fcbrt";
231 case ISD::FSIN: return "fsin";
232 case ISD::STRICT_FSIN: return "strict_fsin";
233 case ISD::FCOS: return "fcos";
234 case ISD::STRICT_FCOS: return "strict_fcos";
235 case ISD::FSINCOS: return "fsincos";
236 case ISD::FSINCOSPI: return "fsincospi";
237 case ISD::FMODF: return "fmodf";
238 case ISD::FTAN: return "ftan";
239 case ISD::STRICT_FTAN: return "strict_ftan";
240 case ISD::FASIN: return "fasin";
241 case ISD::STRICT_FASIN: return "strict_fasin";
242 case ISD::FACOS: return "facos";
243 case ISD::STRICT_FACOS: return "strict_facos";
244 case ISD::FATAN: return "fatan";
245 case ISD::STRICT_FATAN: return "strict_fatan";
246 case ISD::FATAN2: return "fatan2";
247 case ISD::STRICT_FATAN2: return "strict_fatan2";
248 case ISD::FSINH: return "fsinh";
249 case ISD::STRICT_FSINH: return "strict_fsinh";
250 case ISD::FCOSH: return "fcosh";
251 case ISD::STRICT_FCOSH: return "strict_fcosh";
252 case ISD::FTANH: return "ftanh";
253 case ISD::STRICT_FTANH: return "strict_ftanh";
254 case ISD::FTRUNC: return "ftrunc";
255 case ISD::STRICT_FTRUNC: return "strict_ftrunc";
256 case ISD::FFLOOR: return "ffloor";
257 case ISD::STRICT_FFLOOR: return "strict_ffloor";
258 case ISD::FCEIL: return "fceil";
259 case ISD::STRICT_FCEIL: return "strict_fceil";
260 case ISD::FRINT: return "frint";
261 case ISD::STRICT_FRINT: return "strict_frint";
262 case ISD::FNEARBYINT: return "fnearbyint";
263 case ISD::STRICT_FNEARBYINT: return "strict_fnearbyint";
264 case ISD::FROUND: return "fround";
265 case ISD::STRICT_FROUND: return "strict_fround";
266 case ISD::FROUNDEVEN: return "froundeven";
267 case ISD::STRICT_FROUNDEVEN: return "strict_froundeven";
268 case ISD::FEXP: return "fexp";
269 case ISD::STRICT_FEXP: return "strict_fexp";
270 case ISD::FEXP2: return "fexp2";
271 case ISD::STRICT_FEXP2: return "strict_fexp2";
272 case ISD::FEXP10: return "fexp10";
273 case ISD::FLOG: return "flog";
274 case ISD::STRICT_FLOG: return "strict_flog";
275 case ISD::FLOG2: return "flog2";
276 case ISD::STRICT_FLOG2: return "strict_flog2";
277 case ISD::FLOG10: return "flog10";
278 case ISD::STRICT_FLOG10: return "strict_flog10";
279
280 // Binary operators
281 case ISD::ADD: return "add";
282 case ISD::PTRADD: return "ptradd";
283 case ISD::SUB: return "sub";
284 case ISD::MUL: return "mul";
285 case ISD::MULHU: return "mulhu";
286 case ISD::MULHS: return "mulhs";
287 case ISD::AVGFLOORU: return "avgflooru";
288 case ISD::AVGFLOORS: return "avgfloors";
289 case ISD::AVGCEILU: return "avgceilu";
290 case ISD::AVGCEILS: return "avgceils";
291 case ISD::ABDS: return "abds";
292 case ISD::ABDU: return "abdu";
293 case ISD::SDIV: return "sdiv";
294 case ISD::UDIV: return "udiv";
295 case ISD::SREM: return "srem";
296 case ISD::UREM: return "urem";
297 case ISD::SMUL_LOHI: return "smul_lohi";
298 case ISD::UMUL_LOHI: return "umul_lohi";
299 case ISD::SDIVREM: return "sdivrem";
300 case ISD::UDIVREM: return "udivrem";
301 case ISD::AND: return "and";
302 case ISD::OR: return "or";
303 case ISD::XOR: return "xor";
304 case ISD::SHL: return "shl";
305 case ISD::SRA: return "sra";
306 case ISD::SRL: return "srl";
307 case ISD::ROTL: return "rotl";
308 case ISD::ROTR: return "rotr";
309 case ISD::FSHL: return "fshl";
310 case ISD::FSHR: return "fshr";
311 case ISD::CLMUL: return "clmul";
312 case ISD::CLMULR: return "clmulr";
313 case ISD::CLMULH: return "clmulh";
314 case ISD::PEXT: return "pext";
315 case ISD::PDEP: return "pdep";
316 case ISD::FADD: return "fadd";
317 case ISD::STRICT_FADD: return "strict_fadd";
318 case ISD::FSUB: return "fsub";
319 case ISD::STRICT_FSUB: return "strict_fsub";
320 case ISD::FMUL: return "fmul";
321 case ISD::STRICT_FMUL: return "strict_fmul";
322 case ISD::FDIV: return "fdiv";
323 case ISD::STRICT_FDIV: return "strict_fdiv";
324 case ISD::FMA: return "fma";
325 case ISD::STRICT_FMA: return "strict_fma";
326 case ISD::FMAD: return "fmad";
327 case ISD::FMULADD: return "fmuladd";
328 case ISD::FREM: return "frem";
329 case ISD::STRICT_FREM: return "strict_frem";
330 case ISD::FCOPYSIGN: return "fcopysign";
331 case ISD::FGETSIGN: return "fgetsign";
332 case ISD::FCANONICALIZE: return "fcanonicalize";
333 case ISD::IS_FPCLASS: return "is_fpclass";
334 case ISD::FPOW: return "fpow";
335 case ISD::STRICT_FPOW: return "strict_fpow";
336 case ISD::SMIN: return "smin";
337 case ISD::SMAX: return "smax";
338 case ISD::UMIN: return "umin";
339 case ISD::UMAX: return "umax";
340 case ISD::SCMP: return "scmp";
341 case ISD::UCMP: return "ucmp";
342
343 case ISD::FLDEXP: return "fldexp";
344 case ISD::STRICT_FLDEXP: return "strict_fldexp";
345 case ISD::FFREXP: return "ffrexp";
346 case ISD::FPOWI: return "fpowi";
347 case ISD::STRICT_FPOWI: return "strict_fpowi";
348 case ISD::SETCC: return "setcc";
349 case ISD::SETCCCARRY: return "setcccarry";
350 case ISD::STRICT_FSETCC: return "strict_fsetcc";
351 case ISD::STRICT_FSETCCS: return "strict_fsetccs";
352 case ISD::FPTRUNC_ROUND: return "fptrunc_round";
353 case ISD::SELECT: return "select";
354 case ISD::VSELECT: return "vselect";
355 case ISD::SELECT_CC: return "select_cc";
356 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
357 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
358 case ISD::CONCAT_VECTORS: return "concat_vectors";
359 case ISD::INSERT_SUBVECTOR: return "insert_subvector";
360 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
361 case ISD::VECTOR_DEINTERLEAVE: return "vector_deinterleave";
362 case ISD::VECTOR_INTERLEAVE: return "vector_interleave";
363 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
364 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
365 case ISD::VECTOR_SPLICE_LEFT: return "vector_splice_left";
366 case ISD::VECTOR_SPLICE_RIGHT: return "vector_splice_right";
367 case ISD::SPLAT_VECTOR: return "splat_vector";
368 case ISD::SPLAT_VECTOR_PARTS: return "splat_vector_parts";
369 case ISD::VECTOR_REVERSE: return "vector_reverse";
370 case ISD::STEP_VECTOR: return "step_vector";
371 case ISD::CARRY_FALSE: return "carry_false";
372 case ISD::ADDC: return "addc";
373 case ISD::ADDE: return "adde";
374 case ISD::UADDO_CARRY: return "uaddo_carry";
375 case ISD::SADDO_CARRY: return "saddo_carry";
376 case ISD::SADDO: return "saddo";
377 case ISD::UADDO: return "uaddo";
378 case ISD::SSUBO: return "ssubo";
379 case ISD::USUBO: return "usubo";
380 case ISD::SMULO: return "smulo";
381 case ISD::UMULO: return "umulo";
382 case ISD::SUBC: return "subc";
383 case ISD::SUBE: return "sube";
384 case ISD::USUBO_CARRY: return "usubo_carry";
385 case ISD::SSUBO_CARRY: return "ssubo_carry";
386 case ISD::SHL_PARTS: return "shl_parts";
387 case ISD::SRA_PARTS: return "sra_parts";
388 case ISD::SRL_PARTS: return "srl_parts";
389
390 case ISD::SADDSAT: return "saddsat";
391 case ISD::UADDSAT: return "uaddsat";
392 case ISD::SSUBSAT: return "ssubsat";
393 case ISD::USUBSAT: return "usubsat";
394 case ISD::SSHLSAT: return "sshlsat";
395 case ISD::USHLSAT: return "ushlsat";
396
397 case ISD::SMULFIX: return "smulfix";
398 case ISD::SMULFIXSAT: return "smulfixsat";
399 case ISD::UMULFIX: return "umulfix";
400 case ISD::UMULFIXSAT: return "umulfixsat";
401
402 case ISD::SDIVFIX: return "sdivfix";
403 case ISD::SDIVFIXSAT: return "sdivfixsat";
404 case ISD::UDIVFIX: return "udivfix";
405 case ISD::UDIVFIXSAT: return "udivfixsat";
406
407 // Conversion operators.
408 case ISD::SIGN_EXTEND: return "sign_extend";
409 case ISD::ZERO_EXTEND: return "zero_extend";
410 case ISD::ANY_EXTEND: return "any_extend";
411 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
412 case ISD::ANY_EXTEND_VECTOR_INREG: return "any_extend_vector_inreg";
413 case ISD::SIGN_EXTEND_VECTOR_INREG: return "sign_extend_vector_inreg";
414 case ISD::ZERO_EXTEND_VECTOR_INREG: return "zero_extend_vector_inreg";
415 case ISD::TRUNCATE: return "truncate";
416 case ISD::TRUNCATE_SSAT_S: return "truncate_ssat_s";
417 case ISD::TRUNCATE_SSAT_U: return "truncate_ssat_u";
418 case ISD::TRUNCATE_USAT_U: return "truncate_usat_u";
419 case ISD::FP_ROUND: return "fp_round";
420 case ISD::STRICT_FP_ROUND: return "strict_fp_round";
421 case ISD::FP_EXTEND: return "fp_extend";
422 case ISD::STRICT_FP_EXTEND: return "strict_fp_extend";
423
424 case ISD::SINT_TO_FP: return "sint_to_fp";
425 case ISD::STRICT_SINT_TO_FP: return "strict_sint_to_fp";
426 case ISD::UINT_TO_FP: return "uint_to_fp";
427 case ISD::STRICT_UINT_TO_FP: return "strict_uint_to_fp";
428 case ISD::FP_TO_SINT: return "fp_to_sint";
429 case ISD::STRICT_FP_TO_SINT: return "strict_fp_to_sint";
430 case ISD::FP_TO_UINT: return "fp_to_uint";
431 case ISD::STRICT_FP_TO_UINT: return "strict_fp_to_uint";
432 case ISD::FP_TO_SINT_SAT: return "fp_to_sint_sat";
433 case ISD::FP_TO_UINT_SAT: return "fp_to_uint_sat";
434 case ISD::BITCAST: return "bitcast";
435 case ISD::ADDRSPACECAST: return "addrspacecast";
436 case ISD::FP16_TO_FP: return "fp16_to_fp";
437 case ISD::STRICT_FP16_TO_FP: return "strict_fp16_to_fp";
438 case ISD::FP_TO_FP16: return "fp_to_fp16";
439 case ISD::STRICT_FP_TO_FP16: return "strict_fp_to_fp16";
440 case ISD::BF16_TO_FP: return "bf16_to_fp";
441 case ISD::STRICT_BF16_TO_FP: return "strict_bf16_to_fp";
442 case ISD::FP_TO_BF16: return "fp_to_bf16";
443 case ISD::STRICT_FP_TO_BF16: return "strict_fp_to_bf16";
444 case ISD::CONVERT_FROM_ARBITRARY_FP: return "convert_from_arbitrary_fp";
445 case ISD::CONVERT_TO_ARBITRARY_FP: return "convert_to_arbitrary_fp";
446 case ISD::LROUND: return "lround";
447 case ISD::STRICT_LROUND: return "strict_lround";
448 case ISD::LLROUND: return "llround";
449 case ISD::STRICT_LLROUND: return "strict_llround";
450 case ISD::LRINT: return "lrint";
451 case ISD::STRICT_LRINT: return "strict_lrint";
452 case ISD::LLRINT: return "llrint";
453 case ISD::STRICT_LLRINT: return "strict_llrint";
454
455 // Control flow instructions
456 case ISD::BR: return "br";
457 case ISD::BRIND: return "brind";
458 case ISD::BR_JT: return "br_jt";
459 case ISD::BRCOND: return "brcond";
460 case ISD::BR_CC: return "br_cc";
461 case ISD::CALLSEQ_START: return "callseq_start";
462 case ISD::CALLSEQ_END: return "callseq_end";
463
464 // EH instructions
465 case ISD::CATCHRET: return "catchret";
466 case ISD::CLEANUPRET: return "cleanupret";
467
468 // Other operators
469 case ISD::LOAD: return "load";
470 case ISD::STORE: return "store";
471 case ISD::MLOAD: return "masked_load";
472 case ISD::MSTORE: return "masked_store";
473 case ISD::MGATHER: return "masked_gather";
474 case ISD::MSCATTER: return "masked_scatter";
475 case ISD::VECTOR_COMPRESS: return "vector_compress";
476 case ISD::VAARG: return "vaarg";
477 case ISD::VACOPY: return "vacopy";
478 case ISD::VAEND: return "vaend";
479 case ISD::VASTART: return "vastart";
480 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
481 case ISD::EXTRACT_ELEMENT: return "extract_element";
482 case ISD::BUILD_PAIR: return "build_pair";
483 case ISD::STACKSAVE: return "stacksave";
484 case ISD::STACKRESTORE: return "stackrestore";
485 case ISD::TRAP: return "trap";
486 case ISD::DEBUGTRAP: return "debugtrap";
487 case ISD::UBSANTRAP: return "ubsantrap";
488 case ISD::LIFETIME_START: return "lifetime.start";
489 case ISD::LIFETIME_END: return "lifetime.end";
490 case ISD::FAKE_USE:
491 return "fake_use";
492 case ISD::RELOC_NONE:
493 return "reloc_none";
494 case ISD::COND_LOOP:
495 return "cond_loop";
496 case ISD::PSEUDO_PROBE:
497 return "pseudoprobe";
498 case ISD::GC_TRANSITION_START: return "gc_transition.start";
499 case ISD::GC_TRANSITION_END: return "gc_transition.end";
500 case ISD::GET_DYNAMIC_AREA_OFFSET: return "get.dynamic.area.offset";
501 case ISD::FREEZE: return "freeze";
502 case ISD::PREALLOCATED_SETUP:
503 return "call_setup";
504 case ISD::PREALLOCATED_ARG:
505 return "call_alloc";
506
507 // Floating point environment manipulation
508 case ISD::GET_ROUNDING: return "get_rounding";
509 case ISD::SET_ROUNDING: return "set_rounding";
510 case ISD::GET_FPENV: return "get_fpenv";
511 case ISD::SET_FPENV: return "set_fpenv";
512 case ISD::RESET_FPENV: return "reset_fpenv";
513 case ISD::GET_FPENV_MEM: return "get_fpenv_mem";
514 case ISD::SET_FPENV_MEM: return "set_fpenv_mem";
515 case ISD::GET_FPMODE: return "get_fpmode";
516 case ISD::SET_FPMODE: return "set_fpmode";
517 case ISD::RESET_FPMODE: return "reset_fpmode";
518
519 // Convergence control instructions
520 case ISD::CONVERGENCECTRL_ANCHOR: return "convergencectrl_anchor";
521 case ISD::CONVERGENCECTRL_ENTRY: return "convergencectrl_entry";
522 case ISD::CONVERGENCECTRL_LOOP: return "convergencectrl_loop";
523 case ISD::CONVERGENCECTRL_GLUE: return "convergencectrl_glue";
524
525 // Bit manipulation
526 case ISD::ABS: return "abs";
527 case ISD::ABS_MIN_POISON: return "abs_min_poison";
528 case ISD::BITREVERSE: return "bitreverse";
529 case ISD::BSWAP: return "bswap";
530 case ISD::CTPOP: return "ctpop";
531 case ISD::CTTZ: return "cttz";
532 case ISD::CTTZ_ZERO_POISON: return "cttz_zero_poison";
533 case ISD::CTLZ: return "ctlz";
534 case ISD::CTLZ_ZERO_POISON: return "ctlz_zero_poison";
535 case ISD::CTLS: return "ctls";
536 case ISD::PARITY: return "parity";
537
538 // Trampolines
539 case ISD::INIT_TRAMPOLINE: return "init_trampoline";
540 case ISD::ADJUST_TRAMPOLINE: return "adjust_trampoline";
541
542 // clang-format on
543
544 case ISD::CONDCODE:
545 switch (cast<CondCodeSDNode>(Val: this)->get()) {
546 default: llvm_unreachable("Unknown setcc condition!");
547 case ISD::SETOEQ: return "setoeq";
548 case ISD::SETOGT: return "setogt";
549 case ISD::SETOGE: return "setoge";
550 case ISD::SETOLT: return "setolt";
551 case ISD::SETOLE: return "setole";
552 case ISD::SETONE: return "setone";
553
554 case ISD::SETO: return "seto";
555 case ISD::SETUO: return "setuo";
556 case ISD::SETUEQ: return "setueq";
557 case ISD::SETUGT: return "setugt";
558 case ISD::SETUGE: return "setuge";
559 case ISD::SETULT: return "setult";
560 case ISD::SETULE: return "setule";
561 case ISD::SETUNE: return "setune";
562
563 case ISD::SETEQ: return "seteq";
564 case ISD::SETGT: return "setgt";
565 case ISD::SETGE: return "setge";
566 case ISD::SETLT: return "setlt";
567 case ISD::SETLE: return "setle";
568 case ISD::SETNE: return "setne";
569
570 case ISD::SETTRUE: return "settrue";
571 case ISD::SETTRUE2: return "settrue2";
572 case ISD::SETFALSE: return "setfalse";
573 case ISD::SETFALSE2: return "setfalse2";
574 }
575 case ISD::VECREDUCE_FADD: return "vecreduce_fadd";
576 case ISD::VECREDUCE_SEQ_FADD: return "vecreduce_seq_fadd";
577 case ISD::VECREDUCE_FMUL: return "vecreduce_fmul";
578 case ISD::VECREDUCE_SEQ_FMUL: return "vecreduce_seq_fmul";
579 case ISD::VECREDUCE_ADD: return "vecreduce_add";
580 case ISD::VECREDUCE_MUL: return "vecreduce_mul";
581 case ISD::VECREDUCE_AND: return "vecreduce_and";
582 case ISD::VECREDUCE_OR: return "vecreduce_or";
583 case ISD::VECREDUCE_XOR: return "vecreduce_xor";
584 case ISD::VECREDUCE_SMAX: return "vecreduce_smax";
585 case ISD::VECREDUCE_SMIN: return "vecreduce_smin";
586 case ISD::VECREDUCE_UMAX: return "vecreduce_umax";
587 case ISD::VECREDUCE_UMIN: return "vecreduce_umin";
588 case ISD::VECREDUCE_FMAX: return "vecreduce_fmax";
589 case ISD::VECREDUCE_FMIN: return "vecreduce_fmin";
590 case ISD::VECREDUCE_FMAXIMUM: return "vecreduce_fmaximum";
591 case ISD::VECREDUCE_FMINIMUMNUM:
592 return "vecreduce_fminimumnum";
593 case ISD::VECREDUCE_FMAXIMUMNUM:
594 return "vecreduce_fmaximumnum";
595 case ISD::VECREDUCE_FMINIMUM: return "vecreduce_fminimum";
596 case ISD::STACKMAP:
597 return "stackmap";
598 case ISD::PATCHPOINT:
599 return "patchpoint";
600 case ISD::CLEAR_CACHE:
601 return "clear_cache";
602
603 case ISD::EXPERIMENTAL_VECTOR_HISTOGRAM:
604 return "histogram";
605
606 case ISD::CTTZ_ELTS:
607 return "cttz_elts";
608 case ISD::CTTZ_ELTS_ZERO_POISON:
609 return "cttz_elts_zero_poison";
610
611 case ISD::VECTOR_FIND_LAST_ACTIVE:
612 return "find_last_active";
613
614 case ISD::GET_ACTIVE_LANE_MASK:
615 return "get_active_lane_mask";
616
617 case ISD::VECTOR_MATCH:
618 return "vector_match";
619
620 case ISD::PARTIAL_REDUCE_UMLA:
621 return "partial_reduce_umla";
622 case ISD::PARTIAL_REDUCE_SMLA:
623 return "partial_reduce_smla";
624 case ISD::PARTIAL_REDUCE_SUMLA:
625 return "partial_reduce_sumla";
626 case ISD::PARTIAL_REDUCE_FMLA:
627 return "partial_reduce_fmla";
628 case ISD::LOOP_DEPENDENCE_WAR_MASK:
629 return "loop_dep_war";
630 case ISD::LOOP_DEPENDENCE_RAW_MASK:
631 return "loop_dep_raw";
632 case ISD::MASKED_UDIV:
633 return "masked_udiv";
634 case ISD::MASKED_SDIV:
635 return "masked_sdiv";
636 case ISD::MASKED_UREM:
637 return "masked_urem";
638 case ISD::MASKED_SREM:
639 return "masked_srem";
640
641 // Vector Predication
642#define BEGIN_REGISTER_VP_SDNODE(SDID, LEGALARG, NAME, ...) \
643 case ISD::SDID: \
644 return #NAME;
645#include "llvm/IR/VPIntrinsics.def"
646 }
647}
648
649const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
650 switch (AM) {
651 default: return "";
652 case ISD::PRE_INC: return "<pre-inc>";
653 case ISD::PRE_DEC: return "<pre-dec>";
654 case ISD::POST_INC: return "<post-inc>";
655 case ISD::POST_DEC: return "<post-dec>";
656 }
657}
658
659static Printable PrintNodeId(const SDNode &Node) {
660 return Printable([&Node](raw_ostream &OS) {
661#ifndef NDEBUG
662 static const raw_ostream::Colors Color[] = {
663 raw_ostream::BLACK, raw_ostream::RED, raw_ostream::GREEN,
664 raw_ostream::YELLOW, raw_ostream::BLUE, raw_ostream::MAGENTA,
665 raw_ostream::CYAN,
666 };
667 OS.changeColor(Color[Node.PersistentId % std::size(Color)]);
668 OS << 't' << Node.PersistentId;
669 OS.resetColor();
670#else
671 OS << (const void*)&Node;
672#endif
673 });
674}
675
676// Print the MMO with more information from the SelectionDAG.
677static void printMemOperand(raw_ostream &OS, const MachineMemOperand &MMO,
678 const MachineFunction *MF, const Module *M,
679 const MachineFrameInfo *MFI,
680 const TargetInstrInfo *TII, LLVMContext &Ctx) {
681 ModuleSlotTracker MST(M);
682 if (MF)
683 MST.incorporateFunction(F: MF->getFunction());
684 SmallVector<StringRef, 0> SSNs;
685 MMO.print(OS, MST, SSNs, Context: Ctx, MFI, TII);
686}
687
688static void printMemOperand(raw_ostream &OS, const MachineMemOperand &MMO,
689 const SelectionDAG *G) {
690 if (G) {
691 const MachineFunction *MF = &G->getMachineFunction();
692 return printMemOperand(OS, MMO, MF, M: MF->getFunction().getParent(),
693 MFI: &MF->getFrameInfo(),
694 TII: G->getSubtarget().getInstrInfo(), Ctx&: *G->getContext());
695 }
696
697 LLVMContext Ctx;
698 return printMemOperand(OS, MMO, /*MF=*/nullptr, /*M=*/nullptr,
699 /*MFI=*/nullptr, /*TII=*/nullptr, Ctx);
700}
701
702#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
703LLVM_DUMP_METHOD void SDNode::dump() const { dump(nullptr); }
704
705LLVM_DUMP_METHOD void SDNode::dump(const SelectionDAG *G) const {
706 print(dbgs(), G);
707 dbgs() << '\n';
708}
709#endif
710
711void SDNode::print_types(raw_ostream &OS, const SelectionDAG *G) const {
712 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
713 if (i) OS << ",";
714 if (getValueType(ResNo: i) == MVT::Other)
715 OS << "ch";
716 else
717 OS << getValueType(ResNo: i).getEVTString();
718 }
719}
720
721void SDNode::print_details(raw_ostream &OS, const SelectionDAG *G) const {
722 if (getFlags().hasNoUnsignedWrap())
723 OS << " nuw";
724
725 if (getFlags().hasNoSignedWrap())
726 OS << " nsw";
727
728 if (getFlags().hasExact())
729 OS << " exact";
730
731 if (getFlags().hasDisjoint())
732 OS << " disjoint";
733
734 if (getFlags().hasSameSign())
735 OS << " samesign";
736
737 if (getFlags().hasInBounds())
738 OS << " inbounds";
739
740 if (getFlags().hasNonNeg())
741 OS << " nneg";
742
743 if (getFlags().hasNoNaNs())
744 OS << " nnan";
745
746 if (getFlags().hasNoInfs())
747 OS << " ninf";
748
749 if (getFlags().hasNoSignedZeros())
750 OS << " nsz";
751
752 if (getFlags().hasAllowReciprocal())
753 OS << " arcp";
754
755 if (getFlags().hasAllowContract())
756 OS << " contract";
757
758 if (getFlags().hasApproximateFuncs())
759 OS << " afn";
760
761 if (getFlags().hasAllowReassociation())
762 OS << " reassoc";
763
764 if (getFlags().hasNoFPExcept())
765 OS << " nofpexcept";
766
767 if (getFlags().hasNoConvergent())
768 OS << " noconvergent";
769
770 if (const MachineSDNode *MN = dyn_cast<MachineSDNode>(Val: this)) {
771 if (!MN->memoperands_empty()) {
772 OS << "<";
773 OS << "Mem:";
774 for (MachineSDNode::mmo_iterator i = MN->memoperands_begin(),
775 e = MN->memoperands_end(); i != e; ++i) {
776 printMemOperand(OS, MMO: **i, G);
777 if (std::next(x: i) != e)
778 OS << " ";
779 }
780 OS << ">";
781 }
782 } else if (const ShuffleVectorSDNode *SVN =
783 dyn_cast<ShuffleVectorSDNode>(Val: this)) {
784 OS << "<";
785 for (unsigned i = 0, e = ValueList[0].getVectorNumElements(); i != e; ++i) {
786 int Idx = SVN->getMaskElt(Idx: i);
787 if (i) OS << ",";
788 if (Idx < 0)
789 OS << "u";
790 else
791 OS << Idx;
792 }
793 OS << ">";
794 } else if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(Val: this)) {
795 OS << '<' << CSDN->getAPIntValue() << '>';
796 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(Val: this)) {
797 if (&CSDN->getValueAPF().getSemantics() == &APFloat::IEEEsingle())
798 OS << '<' << CSDN->getValueAPF().convertToFloat() << '>';
799 else if (&CSDN->getValueAPF().getSemantics() == &APFloat::IEEEdouble())
800 OS << '<' << CSDN->getValueAPF().convertToDouble() << '>';
801 else {
802 OS << "<APFloat(";
803 CSDN->getValueAPF().bitcastToAPInt().print(OS, isSigned: false);
804 OS << ")>";
805 }
806 } else if (const GlobalAddressSDNode *GADN =
807 dyn_cast<GlobalAddressSDNode>(Val: this)) {
808 int64_t offset = GADN->getOffset();
809 OS << '<';
810 GADN->getGlobal()->printAsOperand(O&: OS);
811 OS << '>';
812 if (offset > 0)
813 OS << " + " << offset;
814 else
815 OS << " " << offset;
816 if (unsigned int TF = GADN->getTargetFlags())
817 OS << " [TF=" << TF << ']';
818 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(Val: this)) {
819 OS << "<" << FIDN->getIndex() << ">";
820 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(Val: this)) {
821 OS << "<" << JTDN->getIndex() << ">";
822 if (unsigned int TF = JTDN->getTargetFlags())
823 OS << " [TF=" << TF << ']';
824 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Val: this)){
825 int offset = CP->getOffset();
826 if (CP->isMachineConstantPoolEntry())
827 OS << "<" << *CP->getMachineCPVal() << ">";
828 else
829 OS << "<" << *CP->getConstVal() << ">";
830 if (offset > 0)
831 OS << " + " << offset;
832 else
833 OS << " " << offset;
834 if (unsigned int TF = CP->getTargetFlags())
835 OS << " [TF=" << TF << ']';
836 } else if (const TargetIndexSDNode *TI = dyn_cast<TargetIndexSDNode>(Val: this)) {
837 OS << "<" << TI->getIndex() << '+' << TI->getOffset() << ">";
838 if (unsigned TF = TI->getTargetFlags())
839 OS << " [TF=" << TF << ']';
840 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(Val: this)) {
841 OS << "<";
842 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
843 if (LBB)
844 OS << LBB->getName() << " ";
845 OS << (const void*)BBDN->getBasicBlock() << ">";
846 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(Val: this)) {
847 OS << ' ' << printReg(Reg: R->getReg(),
848 TRI: G ? G->getSubtarget().getRegisterInfo() : nullptr);
849 } else if (const ExternalSymbolSDNode *ES =
850 dyn_cast<ExternalSymbolSDNode>(Val: this)) {
851 OS << "'" << ES->getSymbol() << "'";
852 if (unsigned int TF = ES->getTargetFlags())
853 OS << " [TF=" << TF << ']';
854 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(Val: this)) {
855 if (M->getValue())
856 OS << "<" << M->getValue() << ">";
857 else
858 OS << "<null>";
859 } else if (const MDNodeSDNode *MD = dyn_cast<MDNodeSDNode>(Val: this)) {
860 if (MD->getMD())
861 OS << "<" << MD->getMD() << ">";
862 else
863 OS << "<null>";
864 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(Val: this)) {
865 OS << ":" << N->getVT();
866 }
867 else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(Val: this)) {
868 OS << "<";
869
870 printMemOperand(OS, MMO: *LD->getMemOperand(), G);
871
872 bool doExt = true;
873 switch (LD->getExtensionType()) {
874 default: doExt = false; break;
875 case ISD::EXTLOAD: OS << ", anyext"; break;
876 case ISD::SEXTLOAD: OS << ", sext"; break;
877 case ISD::ZEXTLOAD: OS << ", zext"; break;
878 }
879 if (doExt)
880 OS << " from " << LD->getMemoryVT();
881
882 const char *AM = getIndexedModeName(AM: LD->getAddressingMode());
883 if (*AM)
884 OS << ", " << AM;
885
886 OS << ">";
887 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(Val: this)) {
888 OS << "<";
889 printMemOperand(OS, MMO: *ST->getMemOperand(), G);
890
891 if (ST->isTruncatingStore())
892 OS << ", trunc to " << ST->getMemoryVT();
893
894 const char *AM = getIndexedModeName(AM: ST->getAddressingMode());
895 if (*AM)
896 OS << ", " << AM;
897
898 OS << ">";
899 } else if (const MaskedLoadSDNode *MLd = dyn_cast<MaskedLoadSDNode>(Val: this)) {
900 OS << "<";
901
902 printMemOperand(OS, MMO: *MLd->getMemOperand(), G);
903
904 bool doExt = true;
905 switch (MLd->getExtensionType()) {
906 default: doExt = false; break;
907 case ISD::EXTLOAD: OS << ", anyext"; break;
908 case ISD::SEXTLOAD: OS << ", sext"; break;
909 case ISD::ZEXTLOAD: OS << ", zext"; break;
910 }
911 if (doExt)
912 OS << " from " << MLd->getMemoryVT();
913
914 const char *AM = getIndexedModeName(AM: MLd->getAddressingMode());
915 if (*AM)
916 OS << ", " << AM;
917
918 if (MLd->isExpandingLoad())
919 OS << ", expanding";
920
921 OS << ">";
922 } else if (const MaskedStoreSDNode *MSt = dyn_cast<MaskedStoreSDNode>(Val: this)) {
923 OS << "<";
924 printMemOperand(OS, MMO: *MSt->getMemOperand(), G);
925
926 if (MSt->isTruncatingStore())
927 OS << ", trunc to " << MSt->getMemoryVT();
928
929 const char *AM = getIndexedModeName(AM: MSt->getAddressingMode());
930 if (*AM)
931 OS << ", " << AM;
932
933 if (MSt->isCompressingStore())
934 OS << ", compressing";
935
936 OS << ">";
937 } else if (const auto *MGather = dyn_cast<MaskedGatherSDNode>(Val: this)) {
938 OS << "<";
939 printMemOperand(OS, MMO: *MGather->getMemOperand(), G);
940
941 bool doExt = true;
942 switch (MGather->getExtensionType()) {
943 default: doExt = false; break;
944 case ISD::EXTLOAD: OS << ", anyext"; break;
945 case ISD::SEXTLOAD: OS << ", sext"; break;
946 case ISD::ZEXTLOAD: OS << ", zext"; break;
947 }
948 if (doExt)
949 OS << " from " << MGather->getMemoryVT();
950
951 auto Signed = MGather->isIndexSigned() ? "signed" : "unsigned";
952 auto Scaled = MGather->isIndexScaled() ? "scaled" : "unscaled";
953 OS << ", " << Signed << " " << Scaled << " offset";
954
955 OS << ">";
956 } else if (const auto *MScatter = dyn_cast<MaskedScatterSDNode>(Val: this)) {
957 OS << "<";
958 printMemOperand(OS, MMO: *MScatter->getMemOperand(), G);
959
960 if (MScatter->isTruncatingStore())
961 OS << ", trunc to " << MScatter->getMemoryVT();
962
963 auto Signed = MScatter->isIndexSigned() ? "signed" : "unsigned";
964 auto Scaled = MScatter->isIndexScaled() ? "scaled" : "unscaled";
965 OS << ", " << Signed << " " << Scaled << " offset";
966
967 OS << ">";
968 } else if (const MemSDNode *M = dyn_cast<MemSDNode>(Val: this)) {
969 OS << "<";
970 interleaveComma(c: M->memoperands(), os&: OS, each_fn: [&](const MachineMemOperand *MMO) {
971 printMemOperand(OS, MMO: *MMO, G);
972 });
973 if (auto *A = dyn_cast<AtomicSDNode>(Val: M))
974 if (A->getOpcode() == ISD::ATOMIC_LOAD) {
975 bool doExt = true;
976 switch (A->getExtensionType()) {
977 default: doExt = false; break;
978 case ISD::EXTLOAD: OS << ", anyext"; break;
979 case ISD::SEXTLOAD: OS << ", sext"; break;
980 case ISD::ZEXTLOAD: OS << ", zext"; break;
981 }
982 if (doExt)
983 OS << " from " << A->getMemoryVT();
984 }
985 OS << ">";
986 } else if (const BlockAddressSDNode *BA =
987 dyn_cast<BlockAddressSDNode>(Val: this)) {
988 int64_t offset = BA->getOffset();
989 OS << "<";
990 BA->getBlockAddress()->getFunction()->printAsOperand(O&: OS, PrintType: false);
991 OS << ", ";
992 BA->getBlockAddress()->getBasicBlock()->printAsOperand(O&: OS, PrintType: false);
993 OS << ">";
994 if (offset > 0)
995 OS << " + " << offset;
996 else
997 OS << " " << offset;
998 if (unsigned int TF = BA->getTargetFlags())
999 OS << " [TF=" << TF << ']';
1000 } else if (const AddrSpaceCastSDNode *ASC =
1001 dyn_cast<AddrSpaceCastSDNode>(Val: this)) {
1002 OS << '['
1003 << ASC->getSrcAddressSpace()
1004 << " -> "
1005 << ASC->getDestAddressSpace()
1006 << ']';
1007 } else if (const auto *AA = dyn_cast<AssertAlignSDNode>(Val: this)) {
1008 OS << '<' << AA->getAlign().value() << '>';
1009 }
1010
1011 if (VerboseDAGDumping) {
1012 if (unsigned Order = getIROrder())
1013 OS << " [ORD=" << Order << ']';
1014
1015 if (getNodeId() != -1)
1016 OS << " [ID=" << getNodeId() << ']';
1017 if (!(isa<ConstantSDNode>(Val: this) || (isa<ConstantFPSDNode>(Val: this))))
1018 OS << " # D:" << isDivergent();
1019
1020 if (G && !G->GetDbgValues(SD: this).empty()) {
1021 OS << " [NoOfDbgValues=" << G->GetDbgValues(SD: this).size() << ']';
1022 for (SDDbgValue *Dbg : G->GetDbgValues(SD: this))
1023 if (!Dbg->isInvalidated())
1024 Dbg->print(OS);
1025 } else if (getHasDebugValue())
1026 OS << " [NoOfDbgValues>0]";
1027
1028 if (const auto *MD = G ? G->getPCSections(Node: this) : nullptr) {
1029 OS << " [pcsections ";
1030 MD->printAsOperand(OS, M: G->getMachineFunction().getFunction().getParent());
1031 OS << ']';
1032 }
1033
1034 if (MDNode *MMRA = G ? G->getMMRAMetadata(Node: this) : nullptr) {
1035 OS << " [mmra ";
1036 MMRA->printAsOperand(OS,
1037 M: G->getMachineFunction().getFunction().getParent());
1038 OS << ']';
1039 }
1040 }
1041}
1042
1043LLVM_DUMP_METHOD void SDDbgValue::print(raw_ostream &OS) const {
1044 OS << " DbgVal(Order=" << getOrder() << ')';
1045 if (isInvalidated())
1046 OS << "(Invalidated)";
1047 if (isEmitted())
1048 OS << "(Emitted)";
1049 OS << "(";
1050 bool Comma = false;
1051 for (const SDDbgOperand &Op : getLocationOps()) {
1052 if (Comma)
1053 OS << ", ";
1054 switch (Op.getKind()) {
1055 case SDDbgOperand::SDNODE:
1056 if (Op.getSDNode())
1057 OS << "SDNODE=" << PrintNodeId(Node: *Op.getSDNode()) << ':' << Op.getResNo();
1058 else
1059 OS << "SDNODE";
1060 break;
1061 case SDDbgOperand::CONST:
1062 OS << "CONST";
1063 break;
1064 case SDDbgOperand::FRAMEIX:
1065 OS << "FRAMEIX=" << Op.getFrameIx();
1066 break;
1067 case SDDbgOperand::VREG:
1068 OS << "VREG=" << printReg(Reg: Op.getVReg());
1069 break;
1070 }
1071 Comma = true;
1072 }
1073 OS << ")";
1074 if (isIndirect()) OS << "(Indirect)";
1075 if (isVariadic())
1076 OS << "(Variadic)";
1077 OS << ":\"" << Var->getName() << '"';
1078#ifndef NDEBUG
1079 if (Expr->getNumElements())
1080 Expr->dump();
1081#endif
1082}
1083
1084#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1085LLVM_DUMP_METHOD void SDDbgValue::dump() const {
1086 if (isInvalidated())
1087 return;
1088 print(dbgs());
1089 dbgs() << "\n";
1090}
1091#endif
1092
1093/// Return true if this node is so simple that we should just print it inline
1094/// if it appears as an operand.
1095static bool shouldPrintInline(const SDNode &Node, const SelectionDAG *G) {
1096 // Avoid lots of cluttering when inline printing nodes with associated
1097 // DbgValues in verbose mode.
1098 if (VerboseDAGDumping && G && !G->GetDbgValues(SD: &Node).empty())
1099 return false;
1100 if (Node.getOpcode() == ISD::EntryToken)
1101 return false;
1102 return Node.getNumOperands() == 0;
1103}
1104
1105#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1106static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
1107 for (const SDValue &Op : N->op_values()) {
1108 if (shouldPrintInline(*Op.getNode(), G))
1109 continue;
1110 if (Op.getNode()->hasOneUse())
1111 DumpNodes(Op.getNode(), indent+2, G);
1112 }
1113
1114 dbgs().indent(indent);
1115 N->dump(G);
1116}
1117
1118LLVM_DUMP_METHOD void SelectionDAG::dump() const { dump(false); }
1119
1120LLVM_DUMP_METHOD void SelectionDAG::dump(bool Sorted) const {
1121 dbgs() << "SelectionDAG has " << AllNodes.size() << " nodes:\n";
1122
1123 auto dumpEachNode = [this](const SDNode &N) {
1124 if (!N.hasOneUse() && &N != getRoot().getNode() &&
1125 (!shouldPrintInline(N, this) || N.use_empty()))
1126 DumpNodes(&N, 2, this);
1127 };
1128
1129 if (Sorted) {
1130 SmallVector<const SDNode *> SortedNodes;
1131 SortedNodes.reserve(AllNodes.size());
1132 getTopologicallyOrderedNodes(SortedNodes);
1133 for (const SDNode *N : SortedNodes)
1134 dumpEachNode(*N);
1135 } else {
1136 for (const SDNode &N : allnodes())
1137 dumpEachNode(N);
1138 }
1139
1140 if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this);
1141 dbgs() << "\n";
1142
1143 if (VerboseDAGDumping) {
1144 if (DbgBegin() != DbgEnd())
1145 dbgs() << "SDDbgValues:\n";
1146 for (auto *Dbg : make_range(DbgBegin(), DbgEnd()))
1147 Dbg->dump();
1148 if (ByvalParmDbgBegin() != ByvalParmDbgEnd())
1149 dbgs() << "Byval SDDbgValues:\n";
1150 for (auto *Dbg : make_range(ByvalParmDbgBegin(), ByvalParmDbgEnd()))
1151 Dbg->dump();
1152 }
1153 dbgs() << "\n";
1154}
1155#endif
1156
1157void SDNode::printr(raw_ostream &OS, const SelectionDAG *G) const {
1158 OS << PrintNodeId(Node: *this) << ": ";
1159 print_types(OS, G);
1160 OS << " = " << getOperationName(G);
1161 print_details(OS, G);
1162}
1163
1164static bool printOperand(raw_ostream &OS, const SelectionDAG *G,
1165 const SDValue Value) {
1166 if (!Value.getNode()) {
1167 OS << "<null>";
1168 return false;
1169 }
1170
1171 if (shouldPrintInline(Node: *Value.getNode(), G)) {
1172 OS << Value->getOperationName(G) << ':';
1173 Value->print_types(OS, G);
1174 Value->print_details(OS, G);
1175 return true;
1176 }
1177
1178 OS << PrintNodeId(Node: *Value.getNode());
1179 if (unsigned RN = Value.getResNo())
1180 OS << ':' << RN;
1181 return false;
1182}
1183
1184#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1185using VisitedSDNodeSet = SmallPtrSet<const SDNode *, 32>;
1186
1187static void DumpNodesr(raw_ostream &OS, const SDNode *N, unsigned indent,
1188 const SelectionDAG *G, VisitedSDNodeSet &once) {
1189 if (!once.insert(N).second) // If we've been here before, return now.
1190 return;
1191
1192 // Dump the current SDNode, but don't end the line yet.
1193 OS.indent(indent);
1194 N->printr(OS, G);
1195
1196 // Having printed this SDNode, walk the children:
1197 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
1198 if (i) OS << ",";
1199 OS << " ";
1200
1201 const SDValue Op = N->getOperand(i);
1202 bool printedInline = printOperand(OS, G, Op);
1203 if (printedInline)
1204 once.insert(Op.getNode());
1205 }
1206
1207 OS << "\n";
1208
1209 // Dump children that have grandchildren on their own line(s).
1210 for (const SDValue &Op : N->op_values())
1211 DumpNodesr(OS, Op.getNode(), indent+2, G, once);
1212}
1213
1214LLVM_DUMP_METHOD void SDNode::dumpr() const {
1215 VisitedSDNodeSet once;
1216 DumpNodesr(dbgs(), this, 0, nullptr, once);
1217}
1218
1219LLVM_DUMP_METHOD void SDNode::dumpr(const SelectionDAG *G) const {
1220 VisitedSDNodeSet once;
1221 DumpNodesr(dbgs(), this, 0, G, once);
1222}
1223#endif
1224
1225static void printrWithDepthHelper(raw_ostream &OS, const SDNode *N,
1226 const SelectionDAG *G, unsigned depth,
1227 unsigned indent) {
1228 if (depth == 0)
1229 return;
1230
1231 OS.indent(NumSpaces: indent);
1232
1233 N->print(OS, G);
1234
1235 for (const SDValue &Op : N->op_values()) {
1236 // Don't follow chain operands.
1237 if (Op.getValueType() == MVT::Other)
1238 continue;
1239 // Don't print children that were fully rendered inline.
1240 if (shouldPrintInline(Node: *Op.getNode(), G))
1241 continue;
1242 OS << '\n';
1243 printrWithDepthHelper(OS, N: Op.getNode(), G, depth: depth - 1, indent: indent + 2);
1244 }
1245}
1246
1247void SDNode::printrWithDepth(raw_ostream &OS, const SelectionDAG *G,
1248 unsigned depth) const {
1249 printrWithDepthHelper(OS, N: this, G, depth, indent: 0);
1250}
1251
1252void SDNode::printrFull(raw_ostream &OS, const SelectionDAG *G) const {
1253 // Don't print impossibly deep things.
1254 printrWithDepth(OS, G, depth: 10);
1255}
1256
1257#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1258LLVM_DUMP_METHOD
1259void SDNode::dumprWithDepth(const SelectionDAG *G, unsigned depth) const {
1260 printrWithDepth(dbgs(), G, depth);
1261}
1262
1263LLVM_DUMP_METHOD void SDNode::dumprFull(const SelectionDAG *G) const {
1264 // Don't print impossibly deep things.
1265 dumprWithDepth(G, 10);
1266}
1267#endif
1268
1269void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
1270 printr(OS, G);
1271 // Under VerboseDAGDumping divergence will be printed always.
1272 if (isDivergent() && !VerboseDAGDumping)
1273 OS << " # D:1";
1274 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
1275 if (i) OS << ", "; else OS << " ";
1276 printOperand(OS, G, Value: getOperand(Num: i));
1277 }
1278 if (DebugLoc DL = getDebugLoc()) {
1279 OS << ", ";
1280 DL.print(OS);
1281 }
1282 if (PrintSDNodeAddrs)
1283 OS << " ; " << this;
1284}
1285