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