LLVM 24.0.0git
SelectionDAGDumper.cpp
Go to the documentation of this file.
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"
31#include "llvm/Config/llvm-config.h"
32#include "llvm/IR/BasicBlock.h"
33#include "llvm/IR/Constants.h"
35#include "llvm/IR/DebugLoc.h"
36#include "llvm/IR/Function.h"
37#include "llvm/IR/Intrinsics.h"
39#include "llvm/IR/Value.h"
43#include "llvm/Support/Debug.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:
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(getMachineOpcode()));
72 return "<<Unknown Machine Node #" + utostr(getOpcode()) + ">>";
73 }
74 if (G) {
75 const SelectionDAGTargetInfo &TSI = G->getSelectionDAGInfo();
76 if (const char *Name = TSI.getTargetNodeName(getOpcode()))
77 return Name;
78 const TargetLowering &TLI = G->getTargetLoweringInfo();
79 const char *Name = TLI.getTargetNodeName(getOpcode());
80 if (Name) return Name;
81 return "<<Unknown Target Node #" + utostr(getOpcode()) + ">>";
82 }
83 return "<<Unknown Node #" + utostr(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::ARITH_FENCE: return "ArithFence";
91 case ISD::MEMBARRIER: return "MemBarrier";
92 case ISD::ATOMIC_FENCE: return "AtomicFence";
93 case ISD::ATOMIC_CMP_SWAP: return "AtomicCmpSwap";
94 case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: return "AtomicCmpSwapWithSuccess";
95 case ISD::ATOMIC_SWAP: return "AtomicSwap";
96 case ISD::ATOMIC_LOAD_ADD: return "AtomicLoadAdd";
97 case ISD::ATOMIC_LOAD_SUB: return "AtomicLoadSub";
98 case ISD::ATOMIC_LOAD_AND: return "AtomicLoadAnd";
99 case ISD::ATOMIC_LOAD_CLR: return "AtomicLoadClr";
100 case ISD::ATOMIC_LOAD_OR: return "AtomicLoadOr";
101 case ISD::ATOMIC_LOAD_XOR: return "AtomicLoadXor";
102 case ISD::ATOMIC_LOAD_NAND: return "AtomicLoadNand";
103 case ISD::ATOMIC_LOAD_MIN: return "AtomicLoadMin";
104 case ISD::ATOMIC_LOAD_MAX: return "AtomicLoadMax";
105 case ISD::ATOMIC_LOAD_UMIN: return "AtomicLoadUMin";
106 case ISD::ATOMIC_LOAD_UMAX: return "AtomicLoadUMax";
107 case ISD::ATOMIC_LOAD_FADD: return "AtomicLoadFAdd";
108 case ISD::ATOMIC_LOAD_FSUB: return "AtomicLoadFSub";
109 case ISD::ATOMIC_LOAD_FMIN: return "AtomicLoadFMin";
110 case ISD::ATOMIC_LOAD_FMAX: return "AtomicLoadFMax";
111 case ISD::ATOMIC_LOAD_FMINIMUM: return "AtomicLoadFMinimum";
112 case ISD::ATOMIC_LOAD_FMAXIMUM: return "AtomicLoadFMaximum";
114 return "AtomicLoadUIncWrap";
116 return "AtomicLoadUDecWrap";
118 return "AtomicLoadUSubCond";
120 return "AtomicLoadUSubSat";
121 case ISD::ATOMIC_LOAD: return "AtomicLoad";
122 case ISD::ATOMIC_STORE: return "AtomicStore";
123 case ISD::PCMARKER: return "PCMarker";
124 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
125 case ISD::READSTEADYCOUNTER: return "ReadSteadyCounter";
126 case ISD::SRCVALUE: return "SrcValue";
127 case ISD::MDNODE_SDNODE: return "MDNode";
128 case ISD::EntryToken: return "EntryToken";
129 case ISD::TokenFactor: return "TokenFactor";
130 case ISD::AssertSext: return "AssertSext";
131 case ISD::AssertZext: return "AssertZext";
132 case ISD::AssertNoFPClass: return "AssertNoFPClass";
133 case ISD::AssertAlign: return "AssertAlign";
134
135 case ISD::BasicBlock: return "BasicBlock";
136 case ISD::VALUETYPE: return "ValueType";
137 case ISD::Register: return "Register";
138 case ISD::RegisterMask: return "RegisterMask";
139 case ISD::Constant:
140 if (cast<ConstantSDNode>(this)->isOpaque())
141 return "OpaqueConstant";
142 return "Constant";
143 case ISD::ConstantFP: return "ConstantFP";
144 case ISD::GlobalAddress: return "GlobalAddress";
145 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
146 case ISD::PtrAuthGlobalAddress: return "PtrAuthGlobalAddress";
147 case ISD::FrameIndex: return "FrameIndex";
148 case ISD::JumpTable: return "JumpTable";
150 return "JUMP_TABLE_DEBUG_INFO";
151 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
152 case ISD::RETURNADDR: return "RETURNADDR";
153 case ISD::ADDROFRETURNADDR: return "ADDROFRETURNADDR";
154 case ISD::FRAMEADDR: return "FRAMEADDR";
155 case ISD::SPONENTRY: return "SPONENTRY";
156 case ISD::STACKADDRESS: return "STACKADDRESS";
157 case ISD::LOCAL_RECOVER: return "LOCAL_RECOVER";
158 case ISD::READ_REGISTER: return "READ_REGISTER";
159 case ISD::WRITE_REGISTER: return "WRITE_REGISTER";
160 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
161 case ISD::EH_DWARF_CFA: return "EH_DWARF_CFA";
162 case ISD::EH_RETURN: return "EH_RETURN";
163 case ISD::EH_SJLJ_SETJMP: return "EH_SJLJ_SETJMP";
164 case ISD::EH_SJLJ_LONGJMP: return "EH_SJLJ_LONGJMP";
165 case ISD::EH_SJLJ_SETUP_DISPATCH: return "EH_SJLJ_SETUP_DISPATCH";
166 case ISD::ConstantPool: return "ConstantPool";
167 case ISD::TargetIndex: return "TargetIndex";
168 case ISD::ExternalSymbol: return "ExternalSymbol";
169 case ISD::BlockAddress: return "BlockAddress";
173 unsigned OpNo = getOpcode() == ISD::INTRINSIC_WO_CHAIN ? 0 : 1;
174 unsigned IID = getOperand(OpNo)->getAsZExtVal();
175 if (IID < Intrinsic::num_intrinsics)
177 if (!G)
178 return "Unknown intrinsic";
179 llvm_unreachable("Invalid intrinsic ID");
180 }
181
182 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
184 if (cast<ConstantSDNode>(this)->isOpaque())
185 return "OpaqueTargetConstant";
186 return "TargetConstant";
187
188 case ISD::TargetConstantFP: return "TargetConstantFP";
189 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
190 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
191 case ISD::TargetFrameIndex: return "TargetFrameIndex";
192 case ISD::TargetJumpTable: return "TargetJumpTable";
193 case ISD::TargetConstantPool: return "TargetConstantPool";
194 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
195 case ISD::MCSymbol: return "MCSymbol";
196 case ISD::TargetBlockAddress: return "TargetBlockAddress";
197
198 case ISD::CopyToReg: return "CopyToReg";
199 case ISD::CopyFromReg: return "CopyFromReg";
200 case ISD::UNDEF: return "undef";
201 case ISD::POISON: return "poison";
202 case ISD::VSCALE: return "vscale";
203 case ISD::MERGE_VALUES: return "merge_values";
204 case ISD::INLINEASM: return "inlineasm";
205 case ISD::INLINEASM_BR: return "inlineasm_br";
206 case ISD::EH_LABEL: return "eh_label";
207 case ISD::ANNOTATION_LABEL: return "annotation_label";
208 case ISD::HANDLENODE: return "handlenode";
209
210 // Unary operators
211 case ISD::FABS: return "fabs";
212 case ISD::FMINNUM: return "fminnum";
213 case ISD::STRICT_FMINNUM: return "strict_fminnum";
214 case ISD::FMAXNUM: return "fmaxnum";
215 case ISD::STRICT_FMAXNUM: return "strict_fmaxnum";
216 case ISD::FMINNUM_IEEE: return "fminnum_ieee";
217 case ISD::FMAXNUM_IEEE: return "fmaxnum_ieee";
218 case ISD::FMINIMUM: return "fminimum";
219 case ISD::STRICT_FMINIMUM: return "strict_fminimum";
220 case ISD::FMAXIMUM: return "fmaximum";
221 case ISD::STRICT_FMAXIMUM: return "strict_fmaximum";
222 case ISD::FMINIMUMNUM: return "fminimumnum";
223 case ISD::FMAXIMUMNUM: return "fmaximumnum";
224 case ISD::PSEUDO_FMIN: return "pseudo_fmin";
225 case ISD::PSEUDO_FMAX: return "pseudo_fmax";
226 case ISD::STRICT_PSEUDO_FMIN: return "strict_pseudo_fmin";
227 case ISD::STRICT_PSEUDO_FMAX: return "strict_pseudo_fmax";
228 case ISD::FNEG: return "fneg";
229 case ISD::FSQRT: return "fsqrt";
230 case ISD::STRICT_FSQRT: return "strict_fsqrt";
231 case ISD::FCBRT: return "fcbrt";
232 case ISD::FSIN: return "fsin";
233 case ISD::STRICT_FSIN: return "strict_fsin";
234 case ISD::FCOS: return "fcos";
235 case ISD::STRICT_FCOS: return "strict_fcos";
236 case ISD::FSINCOS: return "fsincos";
237 case ISD::FSINCOSPI: return "fsincospi";
238 case ISD::FMODF: return "fmodf";
239 case ISD::FTAN: return "ftan";
240 case ISD::STRICT_FTAN: return "strict_ftan";
241 case ISD::FASIN: return "fasin";
242 case ISD::STRICT_FASIN: return "strict_fasin";
243 case ISD::FACOS: return "facos";
244 case ISD::STRICT_FACOS: return "strict_facos";
245 case ISD::FATAN: return "fatan";
246 case ISD::STRICT_FATAN: return "strict_fatan";
247 case ISD::FATAN2: return "fatan2";
248 case ISD::STRICT_FATAN2: return "strict_fatan2";
249 case ISD::FSINH: return "fsinh";
250 case ISD::STRICT_FSINH: return "strict_fsinh";
251 case ISD::FCOSH: return "fcosh";
252 case ISD::STRICT_FCOSH: return "strict_fcosh";
253 case ISD::FTANH: return "ftanh";
254 case ISD::STRICT_FTANH: return "strict_ftanh";
255 case ISD::FTRUNC: return "ftrunc";
256 case ISD::STRICT_FTRUNC: return "strict_ftrunc";
257 case ISD::FFLOOR: return "ffloor";
258 case ISD::STRICT_FFLOOR: return "strict_ffloor";
259 case ISD::FCEIL: return "fceil";
260 case ISD::STRICT_FCEIL: return "strict_fceil";
261 case ISD::FRINT: return "frint";
262 case ISD::STRICT_FRINT: return "strict_frint";
263 case ISD::FNEARBYINT: return "fnearbyint";
264 case ISD::STRICT_FNEARBYINT: return "strict_fnearbyint";
265 case ISD::FROUND: return "fround";
266 case ISD::STRICT_FROUND: return "strict_fround";
267 case ISD::FROUNDEVEN: return "froundeven";
268 case ISD::STRICT_FROUNDEVEN: return "strict_froundeven";
269 case ISD::FEXP: return "fexp";
270 case ISD::STRICT_FEXP: return "strict_fexp";
271 case ISD::FEXP2: return "fexp2";
272 case ISD::STRICT_FEXP2: return "strict_fexp2";
273 case ISD::FEXP10: return "fexp10";
274 case ISD::FLOG: return "flog";
275 case ISD::STRICT_FLOG: return "strict_flog";
276 case ISD::FLOG2: return "flog2";
277 case ISD::STRICT_FLOG2: return "strict_flog2";
278 case ISD::FLOG10: return "flog10";
279 case ISD::STRICT_FLOG10: return "strict_flog10";
280
281 // Binary operators
282 case ISD::ADD: return "add";
283 case ISD::PTRADD: return "ptradd";
284 case ISD::SUB: return "sub";
285 case ISD::MUL: return "mul";
286 case ISD::MULHU: return "mulhu";
287 case ISD::MULHS: return "mulhs";
288 case ISD::AVGFLOORU: return "avgflooru";
289 case ISD::AVGFLOORS: return "avgfloors";
290 case ISD::AVGCEILU: return "avgceilu";
291 case ISD::AVGCEILS: return "avgceils";
292 case ISD::ABDS: return "abds";
293 case ISD::ABDU: return "abdu";
294 case ISD::SDIV: return "sdiv";
295 case ISD::UDIV: return "udiv";
296 case ISD::SREM: return "srem";
297 case ISD::UREM: return "urem";
298 case ISD::SMUL_LOHI: return "smul_lohi";
299 case ISD::UMUL_LOHI: return "umul_lohi";
300 case ISD::SDIVREM: return "sdivrem";
301 case ISD::UDIVREM: return "udivrem";
302 case ISD::AND: return "and";
303 case ISD::OR: return "or";
304 case ISD::XOR: return "xor";
305 case ISD::SHL: return "shl";
306 case ISD::SRA: return "sra";
307 case ISD::SRL: return "srl";
308 case ISD::ROTL: return "rotl";
309 case ISD::ROTR: return "rotr";
310 case ISD::FSHL: return "fshl";
311 case ISD::FSHR: return "fshr";
312 case ISD::CLMUL: return "clmul";
313 case ISD::CLMULR: return "clmulr";
314 case ISD::CLMULH: return "clmulh";
315 case ISD::PEXT: return "pext";
316 case ISD::PDEP: return "pdep";
317 case ISD::FADD: return "fadd";
318 case ISD::STRICT_FADD: return "strict_fadd";
319 case ISD::FSUB: return "fsub";
320 case ISD::STRICT_FSUB: return "strict_fsub";
321 case ISD::FMUL: return "fmul";
322 case ISD::STRICT_FMUL: return "strict_fmul";
323 case ISD::FDIV: return "fdiv";
324 case ISD::STRICT_FDIV: return "strict_fdiv";
325 case ISD::FMA: return "fma";
326 case ISD::STRICT_FMA: return "strict_fma";
327 case ISD::FMAD: return "fmad";
328 case ISD::FMULADD: return "fmuladd";
329 case ISD::FREM: return "frem";
330 case ISD::STRICT_FREM: return "strict_frem";
331 case ISD::FCOPYSIGN: return "fcopysign";
332 case ISD::FGETSIGN: return "fgetsign";
333 case ISD::FCANONICALIZE: return "fcanonicalize";
334 case ISD::IS_FPCLASS: return "is_fpclass";
335 case ISD::FPOW: return "fpow";
336 case ISD::STRICT_FPOW: return "strict_fpow";
337 case ISD::SMIN: return "smin";
338 case ISD::SMAX: return "smax";
339 case ISD::UMIN: return "umin";
340 case ISD::UMAX: return "umax";
341 case ISD::SCMP: return "scmp";
342 case ISD::UCMP: return "ucmp";
343
344 case ISD::FLDEXP: return "fldexp";
345 case ISD::STRICT_FLDEXP: return "strict_fldexp";
346 case ISD::FFREXP: return "ffrexp";
347 case ISD::FPOWI: return "fpowi";
348 case ISD::STRICT_FPOWI: return "strict_fpowi";
349 case ISD::SETCC: return "setcc";
350 case ISD::SETCCCARRY: return "setcccarry";
351 case ISD::STRICT_FSETCC: return "strict_fsetcc";
352 case ISD::STRICT_FSETCCS: return "strict_fsetccs";
353 case ISD::FPTRUNC_ROUND: return "fptrunc_round";
354 case ISD::SELECT: return "select";
355 case ISD::VSELECT: return "vselect";
356 case ISD::SELECT_CC: return "select_cc";
357 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
358 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
359 case ISD::CONCAT_VECTORS: return "concat_vectors";
360 case ISD::INSERT_SUBVECTOR: return "insert_subvector";
361 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
362 case ISD::VECTOR_DEINTERLEAVE: return "vector_deinterleave";
363 case ISD::VECTOR_INTERLEAVE: return "vector_interleave";
364 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
365 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
366 case ISD::VECTOR_SPLICE_LEFT: return "vector_splice_left";
367 case ISD::VECTOR_SPLICE_RIGHT: return "vector_splice_right";
368 case ISD::SPLAT_VECTOR: return "splat_vector";
369 case ISD::SPLAT_VECTOR_PARTS: return "splat_vector_parts";
370 case ISD::VECTOR_REVERSE: return "vector_reverse";
371 case ISD::STEP_VECTOR: return "step_vector";
372 case ISD::CARRY_FALSE: return "carry_false";
373 case ISD::ADDC: return "addc";
374 case ISD::ADDE: return "adde";
375 case ISD::UADDO_CARRY: return "uaddo_carry";
376 case ISD::SADDO_CARRY: return "saddo_carry";
377 case ISD::SADDO: return "saddo";
378 case ISD::UADDO: return "uaddo";
379 case ISD::SSUBO: return "ssubo";
380 case ISD::USUBO: return "usubo";
381 case ISD::SMULO: return "smulo";
382 case ISD::UMULO: return "umulo";
383 case ISD::SUBC: return "subc";
384 case ISD::SUBE: return "sube";
385 case ISD::USUBO_CARRY: return "usubo_carry";
386 case ISD::SSUBO_CARRY: return "ssubo_carry";
387 case ISD::SHL_PARTS: return "shl_parts";
388 case ISD::SRA_PARTS: return "sra_parts";
389 case ISD::SRL_PARTS: return "srl_parts";
390
391 case ISD::SADDSAT: return "saddsat";
392 case ISD::UADDSAT: return "uaddsat";
393 case ISD::SSUBSAT: return "ssubsat";
394 case ISD::USUBSAT: return "usubsat";
395 case ISD::SSHLSAT: return "sshlsat";
396 case ISD::USHLSAT: return "ushlsat";
397
398 case ISD::SMULFIX: return "smulfix";
399 case ISD::SMULFIXSAT: return "smulfixsat";
400 case ISD::UMULFIX: return "umulfix";
401 case ISD::UMULFIXSAT: return "umulfixsat";
402
403 case ISD::SDIVFIX: return "sdivfix";
404 case ISD::SDIVFIXSAT: return "sdivfixsat";
405 case ISD::UDIVFIX: return "udivfix";
406 case ISD::UDIVFIXSAT: return "udivfixsat";
407
408 // Conversion operators.
409 case ISD::SIGN_EXTEND: return "sign_extend";
410 case ISD::ZERO_EXTEND: return "zero_extend";
411 case ISD::ANY_EXTEND: return "any_extend";
412 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
413 case ISD::ANY_EXTEND_VECTOR_INREG: return "any_extend_vector_inreg";
414 case ISD::SIGN_EXTEND_VECTOR_INREG: return "sign_extend_vector_inreg";
415 case ISD::ZERO_EXTEND_VECTOR_INREG: return "zero_extend_vector_inreg";
416 case ISD::TRUNCATE: return "truncate";
417 case ISD::TRUNCATE_SSAT_S: return "truncate_ssat_s";
418 case ISD::TRUNCATE_SSAT_U: return "truncate_ssat_u";
419 case ISD::TRUNCATE_USAT_U: return "truncate_usat_u";
420 case ISD::FP_ROUND: return "fp_round";
421 case ISD::STRICT_FP_ROUND: return "strict_fp_round";
422 case ISD::FP_EXTEND: return "fp_extend";
423 case ISD::STRICT_FP_EXTEND: return "strict_fp_extend";
424
425 case ISD::SINT_TO_FP: return "sint_to_fp";
426 case ISD::STRICT_SINT_TO_FP: return "strict_sint_to_fp";
427 case ISD::UINT_TO_FP: return "uint_to_fp";
428 case ISD::STRICT_UINT_TO_FP: return "strict_uint_to_fp";
429 case ISD::FP_TO_SINT: return "fp_to_sint";
430 case ISD::STRICT_FP_TO_SINT: return "strict_fp_to_sint";
431 case ISD::FP_TO_UINT: return "fp_to_uint";
432 case ISD::STRICT_FP_TO_UINT: return "strict_fp_to_uint";
433 case ISD::FP_TO_SINT_SAT: return "fp_to_sint_sat";
434 case ISD::FP_TO_UINT_SAT: return "fp_to_uint_sat";
435 case ISD::BITCAST: return "bitcast";
436 case ISD::ADDRSPACECAST: return "addrspacecast";
437 case ISD::FP16_TO_FP: return "fp16_to_fp";
438 case ISD::STRICT_FP16_TO_FP: return "strict_fp16_to_fp";
439 case ISD::FP_TO_FP16: return "fp_to_fp16";
440 case ISD::STRICT_FP_TO_FP16: return "strict_fp_to_fp16";
441 case ISD::BF16_TO_FP: return "bf16_to_fp";
442 case ISD::STRICT_BF16_TO_FP: return "strict_bf16_to_fp";
443 case ISD::FP_TO_BF16: return "fp_to_bf16";
444 case ISD::STRICT_FP_TO_BF16: return "strict_fp_to_bf16";
445 case ISD::CONVERT_FROM_ARBITRARY_FP: return "convert_from_arbitrary_fp";
446 case ISD::CONVERT_TO_ARBITRARY_FP: return "convert_to_arbitrary_fp";
447 case ISD::LROUND: return "lround";
448 case ISD::STRICT_LROUND: return "strict_lround";
449 case ISD::LLROUND: return "llround";
450 case ISD::STRICT_LLROUND: return "strict_llround";
451 case ISD::LRINT: return "lrint";
452 case ISD::STRICT_LRINT: return "strict_lrint";
453 case ISD::LLRINT: return "llrint";
454 case ISD::STRICT_LLRINT: return "strict_llrint";
455
456 // Control flow instructions
457 case ISD::BR: return "br";
458 case ISD::BRIND: return "brind";
459 case ISD::BR_JT: return "br_jt";
460 case ISD::BRCOND: return "brcond";
461 case ISD::BR_CC: return "br_cc";
462 case ISD::CALLSEQ_START: return "callseq_start";
463 case ISD::CALLSEQ_END: return "callseq_end";
464
465 // EH instructions
466 case ISD::CATCHRET: return "catchret";
467 case ISD::CLEANUPRET: return "cleanupret";
468
469 // Other operators
470 case ISD::LOAD: return "load";
471 case ISD::STORE: return "store";
472 case ISD::MLOAD: return "masked_load";
473 case ISD::MSTORE: return "masked_store";
474 case ISD::MGATHER: return "masked_gather";
475 case ISD::MSCATTER: return "masked_scatter";
476 case ISD::VECTOR_COMPRESS: return "vector_compress";
477 case ISD::VAARG: return "vaarg";
478 case ISD::VACOPY: return "vacopy";
479 case ISD::VAEND: return "vaend";
480 case ISD::VASTART: return "vastart";
481 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
482 case ISD::EXTRACT_ELEMENT: return "extract_element";
483 case ISD::BUILD_PAIR: return "build_pair";
484 case ISD::STACKSAVE: return "stacksave";
485 case ISD::STACKRESTORE: return "stackrestore";
486 case ISD::TRAP: return "trap";
487 case ISD::DEBUGTRAP: return "debugtrap";
488 case ISD::UBSANTRAP: return "ubsantrap";
489 case ISD::LIFETIME_START: return "lifetime.start";
490 case ISD::LIFETIME_END: return "lifetime.end";
491 case ISD::FAKE_USE:
492 return "fake_use";
493 case ISD::RELOC_NONE:
494 return "reloc_none";
495 case ISD::COND_LOOP:
496 return "cond_loop";
498 return "pseudoprobe";
499 case ISD::GC_TRANSITION_START: return "gc_transition.start";
500 case ISD::GC_TRANSITION_END: return "gc_transition.end";
501 case ISD::GET_DYNAMIC_AREA_OFFSET: return "get.dynamic.area.offset";
502 case ISD::FREEZE: return "freeze";
504 return "call_setup";
506 return "call_alloc";
507
508 // Floating point environment manipulation
509 case ISD::GET_ROUNDING: return "get_rounding";
510 case ISD::SET_ROUNDING: return "set_rounding";
511 case ISD::GET_FPENV: return "get_fpenv";
512 case ISD::SET_FPENV: return "set_fpenv";
513 case ISD::RESET_FPENV: return "reset_fpenv";
514 case ISD::GET_FPENV_MEM: return "get_fpenv_mem";
515 case ISD::SET_FPENV_MEM: return "set_fpenv_mem";
516 case ISD::GET_FPMODE: return "get_fpmode";
517 case ISD::SET_FPMODE: return "set_fpmode";
518 case ISD::RESET_FPMODE: return "reset_fpmode";
519
520 // Convergence control instructions
521 case ISD::CONVERGENCECTRL_ANCHOR: return "convergencectrl_anchor";
522 case ISD::CONVERGENCECTRL_ENTRY: return "convergencectrl_entry";
523 case ISD::CONVERGENCECTRL_LOOP: return "convergencectrl_loop";
524 case ISD::CONVERGENCECTRL_GLUE: return "convergencectrl_glue";
525
526 // Bit manipulation
527 case ISD::ABS: return "abs";
528 case ISD::ABS_MIN_POISON: return "abs_min_poison";
529 case ISD::BITREVERSE: return "bitreverse";
530 case ISD::BSWAP: return "bswap";
531 case ISD::CTPOP: return "ctpop";
532 case ISD::CTTZ: return "cttz";
533 case ISD::CTTZ_ZERO_POISON: return "cttz_zero_poison";
534 case ISD::CTLZ: return "ctlz";
535 case ISD::CTLZ_ZERO_POISON: return "ctlz_zero_poison";
536 case ISD::CTLS: return "ctls";
537 case ISD::PARITY: return "parity";
538
539 // Trampolines
540 case ISD::INIT_TRAMPOLINE: return "init_trampoline";
541 case ISD::ADJUST_TRAMPOLINE: return "adjust_trampoline";
542
543 // clang-format on
544
545 case ISD::CONDCODE:
546 switch (cast<CondCodeSDNode>(this)->get()) {
547 default: llvm_unreachable("Unknown setcc condition!");
548 case ISD::SETOEQ: return "setoeq";
549 case ISD::SETOGT: return "setogt";
550 case ISD::SETOGE: return "setoge";
551 case ISD::SETOLT: return "setolt";
552 case ISD::SETOLE: return "setole";
553 case ISD::SETONE: return "setone";
554
555 case ISD::SETO: return "seto";
556 case ISD::SETUO: return "setuo";
557 case ISD::SETUEQ: return "setueq";
558 case ISD::SETUGT: return "setugt";
559 case ISD::SETUGE: return "setuge";
560 case ISD::SETULT: return "setult";
561 case ISD::SETULE: return "setule";
562 case ISD::SETUNE: return "setune";
563
564 case ISD::SETEQ: return "seteq";
565 case ISD::SETGT: return "setgt";
566 case ISD::SETGE: return "setge";
567 case ISD::SETLT: return "setlt";
568 case ISD::SETLE: return "setle";
569 case ISD::SETNE: return "setne";
570
571 case ISD::SETTRUE: return "settrue";
572 case ISD::SETTRUE2: return "settrue2";
573 case ISD::SETFALSE: return "setfalse";
574 case ISD::SETFALSE2: return "setfalse2";
575 }
576 case ISD::VECREDUCE_FADD: return "vecreduce_fadd";
577 case ISD::VECREDUCE_SEQ_FADD: return "vecreduce_seq_fadd";
578 case ISD::VECREDUCE_FMUL: return "vecreduce_fmul";
579 case ISD::VECREDUCE_SEQ_FMUL: return "vecreduce_seq_fmul";
580 case ISD::VECREDUCE_ADD: return "vecreduce_add";
581 case ISD::VECREDUCE_MUL: return "vecreduce_mul";
582 case ISD::VECREDUCE_AND: return "vecreduce_and";
583 case ISD::VECREDUCE_OR: return "vecreduce_or";
584 case ISD::VECREDUCE_XOR: return "vecreduce_xor";
585 case ISD::VECREDUCE_SMAX: return "vecreduce_smax";
586 case ISD::VECREDUCE_SMIN: return "vecreduce_smin";
587 case ISD::VECREDUCE_UMAX: return "vecreduce_umax";
588 case ISD::VECREDUCE_UMIN: return "vecreduce_umin";
589 case ISD::VECREDUCE_FMAX: return "vecreduce_fmax";
590 case ISD::VECREDUCE_FMIN: return "vecreduce_fmin";
591 case ISD::VECREDUCE_FMAXIMUM: return "vecreduce_fmaximum";
593 return "vecreduce_fminimumnum";
595 return "vecreduce_fmaximumnum";
596 case ISD::VECREDUCE_FMINIMUM: return "vecreduce_fminimum";
597 case ISD::STACKMAP:
598 return "stackmap";
599 case ISD::PATCHPOINT:
600 return "patchpoint";
601 case ISD::CLEAR_CACHE:
602 return "clear_cache";
603
605 return "histogram";
606
607 case ISD::CTTZ_ELTS:
608 return "cttz_elts";
610 return "cttz_elts_zero_poison";
611
613 return "find_last_active";
614
616 return "get_active_lane_mask";
617
619 return "vector_match";
620
622 return "partial_reduce_umla";
624 return "partial_reduce_smla";
626 return "partial_reduce_sumla";
628 return "partial_reduce_fmla";
630 return "loop_dep_war";
632 return "loop_dep_raw";
633 case ISD::MASKED_UDIV:
634 return "masked_udiv";
635 case ISD::MASKED_SDIV:
636 return "masked_sdiv";
637 case ISD::MASKED_UREM:
638 return "masked_urem";
639 case ISD::MASKED_SREM:
640 return "masked_srem";
641
642 // Vector Predication
643#define BEGIN_REGISTER_VP_SDNODE(SDID, LEGALARG, NAME, ...) \
644 case ISD::SDID: \
645 return #NAME;
646#include "llvm/IR/VPIntrinsics.def"
647 }
648}
649
651 switch (AM) {
652 default: return "";
653 case ISD::PRE_INC: return "<pre-inc>";
654 case ISD::PRE_DEC: return "<pre-dec>";
655 case ISD::POST_INC: return "<post-inc>";
656 case ISD::POST_DEC: return "<post-dec>";
657 }
658}
659
661 return Printable([&Node](raw_ostream &OS) {
662#ifndef NDEBUG
663 static const raw_ostream::Colors Color[] = {
667 };
668 OS.changeColor(Color[Node.PersistentId % std::size(Color)]);
669 OS << 't' << Node.PersistentId;
670 OS.resetColor();
671#else
672 OS << (const void*)&Node;
673#endif
674 });
675}
676
677// Print the MMO with more information from the SelectionDAG.
679 const MachineFunction *MF, const Module *M,
680 const MachineFrameInfo *MFI,
681 const TargetInstrInfo *TII, LLVMContext &Ctx) {
682 ModuleSlotTracker MST(M);
683 if (MF)
686 MMO.print(OS, MST, SSNs, Ctx, MFI, TII);
687}
688
690 const SelectionDAG *G) {
691 if (G) {
692 const MachineFunction *MF = &G->getMachineFunction();
693 return printMemOperand(OS, MMO, MF, MF->getFunction().getParent(),
694 &MF->getFrameInfo(),
695 G->getSubtarget().getInstrInfo(), *G->getContext());
696 }
697
698 LLVMContext Ctx;
699 return printMemOperand(OS, MMO, /*MF=*/nullptr, /*M=*/nullptr,
700 /*MFI=*/nullptr, /*TII=*/nullptr, Ctx);
701}
702
703#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
704LLVM_DUMP_METHOD void SDNode::dump() const { dump(nullptr); }
705
707 print(dbgs(), G);
708 dbgs() << '\n';
709}
710#endif
711
713 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
714 if (i) OS << ",";
715 if (getValueType(i) == MVT::Other)
716 OS << "ch";
717 else
718 OS << getValueType(i).getEVTString();
719 }
720}
721
724 OS << " nuw";
725
727 OS << " nsw";
728
729 if (getFlags().hasExact())
730 OS << " exact";
731
732 if (getFlags().hasDisjoint())
733 OS << " disjoint";
734
735 if (getFlags().hasSameSign())
736 OS << " samesign";
737
738 if (getFlags().hasInBounds())
739 OS << " inbounds";
740
741 if (getFlags().hasNonNeg())
742 OS << " nneg";
743
744 if (getFlags().hasNonNull())
745 OS << " nonnull";
746
747 if (getFlags().hasNoNaNs())
748 OS << " nnan";
749
750 if (getFlags().hasNoInfs())
751 OS << " ninf";
752
753 if (getFlags().hasNoSignedZeros())
754 OS << " nsz";
755
756 if (getFlags().hasAllowReciprocal())
757 OS << " arcp";
758
759 if (getFlags().hasAllowContract())
760 OS << " contract";
761
762 if (getFlags().hasApproximateFuncs())
763 OS << " afn";
764
765 if (getFlags().hasAllowReassociation())
766 OS << " reassoc";
767
768 if (getFlags().hasNoFPExcept())
769 OS << " nofpexcept";
770
771 if (getFlags().hasNoConvergent())
772 OS << " noconvergent";
773
774 if (const MachineSDNode *MN = dyn_cast<MachineSDNode>(this)) {
775 if (!MN->memoperands_empty()) {
776 OS << "<";
777 OS << "Mem:";
778 for (MachineSDNode::mmo_iterator i = MN->memoperands_begin(),
779 e = MN->memoperands_end(); i != e; ++i) {
780 printMemOperand(OS, **i, G);
781 if (std::next(i) != e)
782 OS << " ";
783 }
784 OS << ">";
785 }
786 } else if (const ShuffleVectorSDNode *SVN =
788 OS << "<";
789 for (unsigned i = 0, e = ValueList[0].getVectorNumElements(); i != e; ++i) {
790 int Idx = SVN->getMaskElt(i);
791 if (i) OS << ",";
792 if (Idx < 0)
793 OS << "u";
794 else
795 OS << Idx;
796 }
797 OS << ">";
798 } else if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
799 OS << '<' << CSDN->getAPIntValue() << '>';
800 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
801 if (&CSDN->getValueAPF().getSemantics() == &APFloat::IEEEsingle())
802 OS << '<' << CSDN->getValueAPF().convertToFloat() << '>';
803 else if (&CSDN->getValueAPF().getSemantics() == &APFloat::IEEEdouble())
804 OS << '<' << CSDN->getValueAPF().convertToDouble() << '>';
805 else {
806 OS << "<APFloat(";
807 CSDN->getValueAPF().bitcastToAPInt().print(OS, false);
808 OS << ")>";
809 }
810 } else if (const GlobalAddressSDNode *GADN =
812 int64_t offset = GADN->getOffset();
813 OS << '<';
814 GADN->getGlobal()->printAsOperand(OS);
815 OS << '>';
816 if (offset > 0)
817 OS << " + " << offset;
818 else
819 OS << " " << offset;
820 if (unsigned int TF = GADN->getTargetFlags())
821 OS << " [TF=" << TF << ']';
822 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
823 OS << "<" << FIDN->getIndex() << ">";
824 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
825 OS << "<" << JTDN->getIndex() << ">";
826 if (unsigned int TF = JTDN->getTargetFlags())
827 OS << " [TF=" << TF << ']';
828 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
829 int offset = CP->getOffset();
830 if (CP->isMachineConstantPoolEntry())
831 OS << "<" << *CP->getMachineCPVal() << ">";
832 else
833 OS << "<" << *CP->getConstVal() << ">";
834 if (offset > 0)
835 OS << " + " << offset;
836 else
837 OS << " " << offset;
838 if (unsigned int TF = CP->getTargetFlags())
839 OS << " [TF=" << TF << ']';
840 } else if (const TargetIndexSDNode *TI = dyn_cast<TargetIndexSDNode>(this)) {
841 OS << "<" << TI->getIndex() << '+' << TI->getOffset() << ">";
842 if (unsigned TF = TI->getTargetFlags())
843 OS << " [TF=" << TF << ']';
844 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
845 OS << "<";
846 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
847 if (LBB)
848 OS << LBB->getName() << " ";
849 OS << (const void*)BBDN->getBasicBlock() << ">";
850 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
851 OS << ' ' << printReg(R->getReg(),
852 G ? G->getSubtarget().getRegisterInfo() : nullptr);
853 } else if (const ExternalSymbolSDNode *ES =
855 OS << "'" << ES->getSymbol() << "'";
856 if (unsigned int TF = ES->getTargetFlags())
857 OS << " [TF=" << TF << ']';
858 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
859 if (M->getValue())
860 OS << "<" << M->getValue() << ">";
861 else
862 OS << "<null>";
863 } else if (const MDNodeSDNode *MD = dyn_cast<MDNodeSDNode>(this)) {
864 if (MD->getMD())
865 OS << "<" << MD->getMD() << ">";
866 else
867 OS << "<null>";
868 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
869 OS << ":" << N->getVT();
870 }
871 else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
872 OS << "<";
873
874 printMemOperand(OS, *LD->getMemOperand(), G);
875
876 bool doExt = true;
877 switch (LD->getExtensionType()) {
878 default: doExt = false; break;
879 case ISD::EXTLOAD: OS << ", anyext"; break;
880 case ISD::SEXTLOAD: OS << ", sext"; break;
881 case ISD::ZEXTLOAD: OS << ", zext"; break;
882 }
883 if (doExt)
884 OS << " from " << LD->getMemoryVT();
885
886 const char *AM = getIndexedModeName(LD->getAddressingMode());
887 if (*AM)
888 OS << ", " << AM;
889
890 OS << ">";
891 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
892 OS << "<";
893 printMemOperand(OS, *ST->getMemOperand(), G);
894
895 if (ST->isTruncatingStore())
896 OS << ", trunc to " << ST->getMemoryVT();
897
898 const char *AM = getIndexedModeName(ST->getAddressingMode());
899 if (*AM)
900 OS << ", " << AM;
901
902 OS << ">";
903 } else if (const MaskedLoadSDNode *MLd = dyn_cast<MaskedLoadSDNode>(this)) {
904 OS << "<";
905
906 printMemOperand(OS, *MLd->getMemOperand(), G);
907
908 bool doExt = true;
909 switch (MLd->getExtensionType()) {
910 default: doExt = false; break;
911 case ISD::EXTLOAD: OS << ", anyext"; break;
912 case ISD::SEXTLOAD: OS << ", sext"; break;
913 case ISD::ZEXTLOAD: OS << ", zext"; break;
914 }
915 if (doExt)
916 OS << " from " << MLd->getMemoryVT();
917
918 const char *AM = getIndexedModeName(MLd->getAddressingMode());
919 if (*AM)
920 OS << ", " << AM;
921
922 if (MLd->isExpandingLoad())
923 OS << ", expanding";
924
925 OS << ">";
926 } else if (const MaskedStoreSDNode *MSt = dyn_cast<MaskedStoreSDNode>(this)) {
927 OS << "<";
928 printMemOperand(OS, *MSt->getMemOperand(), G);
929
930 if (MSt->isTruncatingStore())
931 OS << ", trunc to " << MSt->getMemoryVT();
932
933 const char *AM = getIndexedModeName(MSt->getAddressingMode());
934 if (*AM)
935 OS << ", " << AM;
936
937 if (MSt->isCompressingStore())
938 OS << ", compressing";
939
940 OS << ">";
941 } else if (const auto *MGather = dyn_cast<MaskedGatherSDNode>(this)) {
942 OS << "<";
943 printMemOperand(OS, *MGather->getMemOperand(), G);
944
945 bool doExt = true;
946 switch (MGather->getExtensionType()) {
947 default: doExt = false; break;
948 case ISD::EXTLOAD: OS << ", anyext"; break;
949 case ISD::SEXTLOAD: OS << ", sext"; break;
950 case ISD::ZEXTLOAD: OS << ", zext"; break;
951 }
952 if (doExt)
953 OS << " from " << MGather->getMemoryVT();
954
955 auto Signed = MGather->isIndexSigned() ? "signed" : "unsigned";
956 auto Scaled = MGather->isIndexScaled() ? "scaled" : "unscaled";
957 OS << ", " << Signed << " " << Scaled << " offset";
958
959 OS << ">";
960 } else if (const auto *MScatter = dyn_cast<MaskedScatterSDNode>(this)) {
961 OS << "<";
962 printMemOperand(OS, *MScatter->getMemOperand(), G);
963
964 if (MScatter->isTruncatingStore())
965 OS << ", trunc to " << MScatter->getMemoryVT();
966
967 auto Signed = MScatter->isIndexSigned() ? "signed" : "unsigned";
968 auto Scaled = MScatter->isIndexScaled() ? "scaled" : "unscaled";
969 OS << ", " << Signed << " " << Scaled << " offset";
970
971 OS << ">";
972 } else if (const MemSDNode *M = dyn_cast<MemSDNode>(this)) {
973 OS << "<";
974 interleaveComma(M->memoperands(), OS, [&](const MachineMemOperand *MMO) {
975 printMemOperand(OS, *MMO, G);
976 });
977 if (auto *A = dyn_cast<AtomicSDNode>(M))
978 if (A->getOpcode() == ISD::ATOMIC_LOAD) {
979 bool doExt = true;
980 switch (A->getExtensionType()) {
981 default: doExt = false; break;
982 case ISD::EXTLOAD: OS << ", anyext"; break;
983 case ISD::SEXTLOAD: OS << ", sext"; break;
984 case ISD::ZEXTLOAD: OS << ", zext"; break;
985 }
986 if (doExt)
987 OS << " from " << A->getMemoryVT();
988 }
989 OS << ">";
990 } else if (const BlockAddressSDNode *BA =
992 int64_t offset = BA->getOffset();
993 OS << "<";
994 BA->getBlockAddress()->getFunction()->printAsOperand(OS, false);
995 OS << ", ";
996 BA->getBlockAddress()->getBasicBlock()->printAsOperand(OS, false);
997 OS << ">";
998 if (offset > 0)
999 OS << " + " << offset;
1000 else
1001 OS << " " << offset;
1002 if (unsigned int TF = BA->getTargetFlags())
1003 OS << " [TF=" << TF << ']';
1004 } else if (const AddrSpaceCastSDNode *ASC =
1006 OS << '['
1007 << ASC->getSrcAddressSpace()
1008 << " -> "
1009 << ASC->getDestAddressSpace()
1010 << ']';
1011 } else if (const auto *AA = dyn_cast<AssertAlignSDNode>(this)) {
1012 OS << '<' << AA->getAlign().value() << '>';
1013 }
1014
1015 if (VerboseDAGDumping) {
1016 if (unsigned Order = getIROrder())
1017 OS << " [ORD=" << Order << ']';
1018
1019 if (getNodeId() != -1)
1020 OS << " [ID=" << getNodeId() << ']';
1021 if (!(isa<ConstantSDNode>(this) || (isa<ConstantFPSDNode>(this))))
1022 OS << " # D:" << isDivergent();
1023
1024 if (G && !G->GetDbgValues(this).empty()) {
1025 OS << " [NoOfDbgValues=" << G->GetDbgValues(this).size() << ']';
1026 for (SDDbgValue *Dbg : G->GetDbgValues(this))
1027 if (!Dbg->isInvalidated())
1028 Dbg->print(OS);
1029 } else if (getHasDebugValue())
1030 OS << " [NoOfDbgValues>0]";
1031
1032 if (const auto *MD = G ? G->getPCSections(this) : nullptr) {
1033 OS << " [pcsections ";
1034 MD->printAsOperand(OS, G->getMachineFunction().getFunction().getParent());
1035 OS << ']';
1036 }
1037
1038 if (MDNode *MMRA = G ? G->getMMRAMetadata(this) : nullptr) {
1039 OS << " [mmra ";
1040 MMRA->printAsOperand(OS,
1041 G->getMachineFunction().getFunction().getParent());
1042 OS << ']';
1043 }
1044 }
1045}
1046
1048 OS << " DbgVal(Order=" << getOrder() << ')';
1049 if (isInvalidated())
1050 OS << "(Invalidated)";
1051 if (isEmitted())
1052 OS << "(Emitted)";
1053 OS << "(";
1054 bool Comma = false;
1055 for (const SDDbgOperand &Op : getLocationOps()) {
1056 if (Comma)
1057 OS << ", ";
1058 switch (Op.getKind()) {
1060 if (Op.getSDNode())
1061 OS << "SDNODE=" << PrintNodeId(*Op.getSDNode()) << ':' << Op.getResNo();
1062 else
1063 OS << "SDNODE";
1064 break;
1066 OS << "CONST";
1067 break;
1069 OS << "FRAMEIX=" << Op.getFrameIx();
1070 break;
1071 case SDDbgOperand::VREG:
1072 OS << "VREG=" << printReg(Op.getVReg());
1073 break;
1074 }
1075 Comma = true;
1076 }
1077 OS << ")";
1078 if (isIndirect()) OS << "(Indirect)";
1079 if (isVariadic())
1080 OS << "(Variadic)";
1081 OS << ":\"" << Var->getName() << '"';
1082#ifndef NDEBUG
1083 if (Expr->getNumElements())
1084 Expr->dump();
1085#endif
1086}
1087
1088#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1090 if (isInvalidated())
1091 return;
1092 print(dbgs());
1093 dbgs() << "\n";
1094}
1095#endif
1096
1097/// Return true if this node is so simple that we should just print it inline
1098/// if it appears as an operand.
1099static bool shouldPrintInline(const SDNode &Node, const SelectionDAG *G) {
1100 // Avoid lots of cluttering when inline printing nodes with associated
1101 // DbgValues in verbose mode.
1102 if (VerboseDAGDumping && G && !G->GetDbgValues(&Node).empty())
1103 return false;
1104 if (Node.getOpcode() == ISD::EntryToken)
1105 return false;
1106 return Node.getNumOperands() == 0;
1107}
1108
1109#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1110static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
1111 for (const SDValue &Op : N->op_values()) {
1112 if (shouldPrintInline(*Op.getNode(), G))
1113 continue;
1114 if (Op.getNode()->hasOneUse())
1115 DumpNodes(Op.getNode(), indent+2, G);
1116 }
1117
1118 dbgs().indent(indent);
1119 N->dump(G);
1120}
1121
1123
1124LLVM_DUMP_METHOD void SelectionDAG::dump(bool Sorted) const {
1125 dbgs() << "SelectionDAG has " << AllNodes.size() << " nodes:\n";
1126
1127 auto dumpEachNode = [this](const SDNode &N) {
1128 if (!N.hasOneUse() && &N != getRoot().getNode() &&
1129 (!shouldPrintInline(N, this) || N.use_empty()))
1130 DumpNodes(&N, 2, this);
1131 };
1132
1133 if (Sorted) {
1134 SmallVector<const SDNode *> SortedNodes;
1135 SortedNodes.reserve(AllNodes.size());
1136 getTopologicallyOrderedNodes(SortedNodes);
1137 for (const SDNode *N : SortedNodes)
1138 dumpEachNode(*N);
1139 } else {
1140 for (const SDNode &N : allnodes())
1141 dumpEachNode(N);
1142 }
1143
1144 if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this);
1145 dbgs() << "\n";
1146
1147 if (VerboseDAGDumping) {
1148 if (DbgBegin() != DbgEnd())
1149 dbgs() << "SDDbgValues:\n";
1150 for (auto *Dbg : make_range(DbgBegin(), DbgEnd()))
1151 Dbg->dump();
1153 dbgs() << "Byval SDDbgValues:\n";
1154 for (auto *Dbg : make_range(ByvalParmDbgBegin(), ByvalParmDbgEnd()))
1155 Dbg->dump();
1156 }
1157 dbgs() << "\n";
1158}
1159#endif
1160
1161void SDNode::printr(raw_ostream &OS, const SelectionDAG *G) const {
1162 OS << PrintNodeId(*this) << ": ";
1163 print_types(OS, G);
1164 OS << " = " << getOperationName(G);
1165 print_details(OS, G);
1166}
1167
1168static bool printOperand(raw_ostream &OS, const SelectionDAG *G,
1169 const SDValue Value) {
1170 if (!Value.getNode()) {
1171 OS << "<null>";
1172 return false;
1173 }
1174
1175 if (shouldPrintInline(*Value.getNode(), G)) {
1176 OS << Value->getOperationName(G) << ':';
1177 Value->print_types(OS, G);
1178 Value->print_details(OS, G);
1179 return true;
1180 }
1181
1182 OS << PrintNodeId(*Value.getNode());
1183 if (unsigned RN = Value.getResNo())
1184 OS << ':' << RN;
1185 return false;
1186}
1187
1188#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1190
1191static void DumpNodesr(raw_ostream &OS, const SDNode *N, unsigned indent,
1192 const SelectionDAG *G, VisitedSDNodeSet &once) {
1193 if (!once.insert(N).second) // If we've been here before, return now.
1194 return;
1195
1196 // Dump the current SDNode, but don't end the line yet.
1197 OS.indent(indent);
1198 N->printr(OS, G);
1199
1200 // Having printed this SDNode, walk the children:
1201 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
1202 if (i) OS << ",";
1203 OS << " ";
1204
1205 const SDValue Op = N->getOperand(i);
1206 bool printedInline = printOperand(OS, G, Op);
1207 if (printedInline)
1208 once.insert(Op.getNode());
1209 }
1210
1211 OS << "\n";
1212
1213 // Dump children that have grandchildren on their own line(s).
1214 for (const SDValue &Op : N->op_values())
1215 DumpNodesr(OS, Op.getNode(), indent+2, G, once);
1216}
1217
1219 VisitedSDNodeSet once;
1220 DumpNodesr(dbgs(), this, 0, nullptr, once);
1221}
1222
1224 VisitedSDNodeSet once;
1225 DumpNodesr(dbgs(), this, 0, G, once);
1226}
1227#endif
1228
1230 const SelectionDAG *G, unsigned depth,
1231 unsigned indent) {
1232 if (depth == 0)
1233 return;
1234
1235 OS.indent(indent);
1236
1237 N->print(OS, G);
1238
1239 for (const SDValue &Op : N->op_values()) {
1240 // Don't follow chain operands.
1241 if (Op.getValueType() == MVT::Other)
1242 continue;
1243 // Don't print children that were fully rendered inline.
1244 if (shouldPrintInline(*Op.getNode(), G))
1245 continue;
1246 OS << '\n';
1247 printrWithDepthHelper(OS, Op.getNode(), G, depth - 1, indent + 2);
1248 }
1249}
1250
1252 unsigned depth) const {
1253 printrWithDepthHelper(OS, this, G, depth, 0);
1254}
1255
1257 // Don't print impossibly deep things.
1258 printrWithDepth(OS, G, 10);
1259}
1260
1261#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1263void SDNode::dumprWithDepth(const SelectionDAG *G, unsigned depth) const {
1264 printrWithDepth(dbgs(), G, depth);
1265}
1266
1268 // Don't print impossibly deep things.
1269 dumprWithDepth(G, 10);
1270}
1271#endif
1272
1273void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
1274 printr(OS, G);
1275 // Under VerboseDAGDumping divergence will be printed always.
1277 OS << " # D:1";
1278 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
1279 if (i) OS << ", "; else OS << " ";
1280 printOperand(OS, G, getOperand(i));
1281 }
1282 if (DebugLoc DL = getDebugLoc()) {
1283 OS << ", ";
1284 DL.print(OS);
1285 }
1286 if (PrintSDNodeAddrs)
1287 OS << " ; " << this;
1288}
This file declares a class to represent arbitrary precision floating point values and provide a varie...
This file implements a class to represent arbitrary precision integral constant values and operations...
@ Scaled
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
Definition Compiler.h:678
This file contains the declarations for the subclasses of Constant, which represent the different fla...
const HexagonInstrInfo * TII
static bool hasNoSignedWrap(BinaryOperator &I)
static bool hasNoUnsignedWrap(BinaryOperator &I)
#define G(x, y, z)
Definition MD5.cpp:55
This file declares the MachineConstantPool class which is an abstract constant pool to keep track of ...
static Printable PrintNodeId(const SDNode &Node)
SmallPtrSet< const SDNode *, 32 > VisitedSDNodeSet
static cl::opt< bool > VerboseDAGDumping("dag-dump-verbose", cl::Hidden, cl::desc("Display more information when dumping selection " "DAG nodes."))
static bool printOperand(raw_ostream &OS, const SelectionDAG *G, const SDValue Value)
static bool shouldPrintInline(const SDNode &Node, const SelectionDAG *G)
Return true if this node is so simple that we should just print it inline if it appears as an operand...
static void DumpNodesr(raw_ostream &OS, const SDNode *N, unsigned indent, const SelectionDAG *G, VisitedSDNodeSet &once)
static cl::opt< bool > PrintSDNodeAddrs("print-sdnode-addrs", cl::Hidden, cl::desc("Print addresses of SDNodes when dumping"))
static void printMemOperand(raw_ostream &OS, const MachineMemOperand &MMO, const MachineFunction *MF, const Module *M, const MachineFrameInfo *MFI, const TargetInstrInfo *TII, LLVMContext &Ctx)
static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G)
static void printrWithDepthHelper(raw_ostream &OS, const SDNode *N, const SelectionDAG *G, unsigned depth, unsigned indent)
This file defines the SmallPtrSet class.
This file contains some functions that are useful when dealing with strings.
This file describes how to lower LLVM code to machine code.
static const fltSemantics & IEEEsingle()
Definition APFloat.h:304
static const fltSemantics & IEEEdouble()
Definition APFloat.h:305
A debug info location.
Definition DebugLoc.h:126
Module * getParent()
Get the module that this global value is contained inside of...
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
This class is used to represent ISD::LOAD nodes.
Metadata node.
Definition Metadata.h:1081
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
Function & getFunction()
Return the LLVM function that this machine code represents.
A description of a memory reference used in the backend.
LLVM_ABI void print(raw_ostream &OS, ModuleSlotTracker &MST, SmallVectorImpl< StringRef > &SSNs, const LLVMContext &Context, const MachineFrameInfo *MFI, const TargetInstrInfo *TII) const
Support for operator<<.
An SDNode that represents everything that will be needed to construct a MachineInstr.
ArrayRef< MachineMemOperand * >::const_iterator mmo_iterator
This class is used to represent an MLOAD node.
This class is used to represent an MSTORE node.
This is an abstract virtual class for memory operations.
Manage lifetime of a slot tracker for printing IR.
void incorporateFunction(const Function &F)
Incorporate the given function.
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:68
Simple wrapper around std::function<void(raw_ostream&)>.
Definition Printable.h:38
Holds the information for a single machine location through SDISel; either an SDNode,...
@ VREG
Value is a virtual register.
@ FRAMEIX
Value is contents of a stack location.
@ SDNODE
Value is the result of an expression.
@ CONST
Value is a constant.
Holds the information from a dbg_value node through SDISel.
bool isEmitted() const
LLVM_DUMP_METHOD void print(raw_ostream &OS) const
unsigned getOrder() const
Returns the SDNodeOrder.
LLVM_DUMP_METHOD void dump() const
bool isInvalidated() const
ArrayRef< SDDbgOperand > getLocationOps() const
bool isIndirect() const
Returns whether this is an indirect value.
bool isVariadic() const
Represents one node in the SelectionDAG.
bool isMachineOpcode() const
Test if this node has a post-isel opcode, directly corresponding to a MachineInstr opcode.
LLVM_ABI void dumprFull(const SelectionDAG *G=nullptr) const
printrFull to dbgs().
int getNodeId() const
Return the unique node id.
LLVM_ABI void dump() const
Dump this node, for debugging.
unsigned getOpcode() const
Return the SelectionDAG opcode value for this node.
bool isDivergent() const
static LLVM_ABI const char * getIndexedModeName(ISD::MemIndexedMode AM)
unsigned getIROrder() const
Return the node ordering.
bool getHasDebugValue() const
LLVM_ABI void dumpr() const
Dump (recursively) this node and its use-def subgraph.
SDNodeFlags getFlags() const
LLVM_ABI std::string getOperationName(const SelectionDAG *G=nullptr) const
Return the opcode of this operation for printing.
LLVM_ABI void printrFull(raw_ostream &O, const SelectionDAG *G=nullptr) const
Print a SelectionDAG node and all children down to the leaves.
friend class SelectionDAG
LLVM_ABI void printr(raw_ostream &OS, const SelectionDAG *G=nullptr) const
uint64_t getAsZExtVal() const
Helper method returns the zero-extended integer value of a ConstantSDNode.
unsigned getNumValues() const
Return the number of values defined/returned by this operator.
unsigned getNumOperands() const
Return the number of values used by this operation.
unsigned getMachineOpcode() const
This may only be called if isMachineOpcode returns true.
const SDValue & getOperand(unsigned Num) const
LLVM_ABI void print(raw_ostream &OS, const SelectionDAG *G=nullptr) const
const DebugLoc & getDebugLoc() const
Return the source location info.
LLVM_ABI void printrWithDepth(raw_ostream &O, const SelectionDAG *G=nullptr, unsigned depth=100) const
Print a SelectionDAG node and children up to depth "depth." The given SelectionDAG allows target-spec...
LLVM_ABI void dumprWithDepth(const SelectionDAG *G=nullptr, unsigned depth=100) const
printrWithDepth to dbgs().
EVT getValueType(unsigned ResNo) const
Return the type of a specified result.
LLVM_ABI void print_details(raw_ostream &OS, const SelectionDAG *G) const
LLVM_ABI void print_types(raw_ostream &OS, const SelectionDAG *G) const
Unlike LLVM values, Selection DAG nodes may return multiple values as the result of a computation.
Targets can subclass this to parameterize the SelectionDAG lowering and instruction selection process...
virtual const char * getTargetNodeName(unsigned Opcode) const
Returns the name of the given target-specific opcode, suitable for debug printing.
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
const SDValue & getRoot() const
Return the root tag of the SelectionDAG.
SDDbgInfo::DbgIterator ByvalParmDbgEnd() const
SDDbgInfo::DbgIterator ByvalParmDbgBegin() const
SDDbgInfo::DbgIterator DbgEnd() const
LLVM_ABI void dump() const
Dump the textual format of this DAG.
SDDbgInfo::DbgIterator DbgBegin() const
iterator_range< allnodes_iterator > allnodes()
LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, ArrayRef< SDUse > Ops)
Gets or creates the specified node.
LLVM_ABI void getTopologicallyOrderedNodes(SmallVectorImpl< const SDNode * > &SortedNodes) const
Get all the nodes in their topological order without modifying any states.
This SDNode is used to implement the code generator support for the llvm IR shufflevector instruction...
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
void reserve(size_type N)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
An SDNode that holds an arbitrary LLVM IR Value.
This class is used to represent ISD::STORE nodes.
std::string str() const
Get the contents as an std::string.
Definition StringRef.h:222
Completely target-dependent object reference.
TargetInstrInfo - Interface to description of machine instruction set.
This class defines information used to lower LLVM code to legal SelectionDAG operators that the targe...
virtual const char * getTargetNodeName(unsigned Opcode) const
This method returns the name of a target specific DAG node.
This class is used to represent EVT's, which are used to parameterize some operations.
LLVM Value Representation.
Definition Value.h:75
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
Definition Value.cpp:319
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
virtual raw_ostream & changeColor(enum Colors Color, bool Bold=false, bool BG=false)
Changes the foreground color of text that will be output from this point forward.
virtual raw_ostream & resetColor()
Resets the colors to terminal defaults.
static constexpr Colors BLACK
static constexpr Colors GREEN
raw_ostream & indent(unsigned NumSpaces)
indent - Insert 'NumSpaces' spaces.
static constexpr Colors BLUE
static constexpr Colors RED
static constexpr Colors MAGENTA
static constexpr Colors YELLOW
static constexpr Colors CYAN
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
Abstract Attribute helper functions.
Definition Attributor.h:165
@ SETCC
SetCC operator - This evaluates to a true value iff the condition is true.
Definition ISDOpcodes.h:830
@ MERGE_VALUES
MERGE_VALUES - This node takes multiple discrete operands and returns them all as its individual resu...
Definition ISDOpcodes.h:261
@ STACKRESTORE
STACKRESTORE has two operands, an input chain and a pointer to restore to it returns an output chain.
@ STACKSAVE
STACKSAVE - STACKSAVE has one operand, an input chain.
@ TargetConstantPool
Definition ISDOpcodes.h:189
@ CONVERGENCECTRL_ANCHOR
The llvm.experimental.convergence.* intrinsics.
@ MDNODE_SDNODE
MDNODE_SDNODE - This is a node that holdes an MDNode*, which is used to reference metadata in the IR.
@ STRICT_FSETCC
STRICT_FSETCC/STRICT_FSETCCS - Constrained versions of SETCC, used for floating-point operands only.
Definition ISDOpcodes.h:514
@ PTRADD
PTRADD represents pointer arithmetic semantics, for targets that opt in using shouldPreservePtrArith(...
@ DELETED_NODE
DELETED_NODE - This is an illegal value that is used to catch errors.
Definition ISDOpcodes.h:45
@ POISON
POISON - A poison node.
Definition ISDOpcodes.h:236
@ SET_FPENV
Sets the current floating-point environment.
@ PARTIAL_REDUCE_SMLA
PARTIAL_REDUCE_[U|S]MLA(Accumulator, Input1, Input2) The partial reduction nodes sign or zero extend ...
@ LOOP_DEPENDENCE_RAW_MASK
@ VECREDUCE_SEQ_FADD
Generic reduction nodes.
@ COND_LOOP
COND_LOOP is a conditional branch to self, used for implementing efficient conditional traps.
@ MLOAD
Masked load and store - consecutive vector load and store operations with additional mask operand tha...
@ EH_SJLJ_LONGJMP
OUTCHAIN = EH_SJLJ_LONGJMP(INCHAIN, buffer) This corresponds to the eh.sjlj.longjmp intrinsic.
Definition ISDOpcodes.h:168
@ VECREDUCE_FMINIMUMNUM
@ FGETSIGN
INT = FGETSIGN(FP) - Return the sign bit of the specified floating point value as an integer 0/1 valu...
Definition ISDOpcodes.h:541
@ SMUL_LOHI
SMUL_LOHI/UMUL_LOHI - Multiply two integers of type iN, producing a signed/unsigned value of type i[2...
Definition ISDOpcodes.h:275
@ INSERT_SUBVECTOR
INSERT_SUBVECTOR(VECTOR1, VECTOR2, IDX) - Returns a vector with VECTOR2 inserted into VECTOR1.
Definition ISDOpcodes.h:603
@ STACKADDRESS
STACKADDRESS - Represents the llvm.stackaddress intrinsic.
Definition ISDOpcodes.h:127
@ JUMP_TABLE_DEBUG_INFO
JUMP_TABLE_DEBUG_INFO - Jumptable debug info.
@ BSWAP
Byte Swap and Counting operators.
Definition ISDOpcodes.h:790
@ SMULFIX
RESULT = [US]MULFIX(LHS, RHS, SCALE) - Perform fixed point multiplication on 2 integers with the same...
Definition ISDOpcodes.h:395
@ VAEND
VAEND, VASTART - VAEND and VASTART have three operands: an input chain, pointer, and a SRCVALUE.
@ TargetBlockAddress
Definition ISDOpcodes.h:191
@ ATOMIC_STORE
OUTCHAIN = ATOMIC_STORE(INCHAIN, val, ptr) This corresponds to "store atomic" instruction.
@ ADDC
Carry-setting nodes for multiple precision addition and subtraction.
Definition ISDOpcodes.h:294
@ FRAME_TO_ARGS_OFFSET
FRAME_TO_ARGS_OFFSET - This node represents offset from frame pointer to first (possible) on-stack ar...
Definition ISDOpcodes.h:145
@ RESET_FPENV
Set floating-point environment to default state.
@ FMAD
FMAD - Perform a * b + c, while getting the same result as the separately rounded operations.
Definition ISDOpcodes.h:525
@ ADD
Simple integer binary arithmetic operators.
Definition ISDOpcodes.h:264
@ LOAD
LOAD and STORE have token chains as their first operand, then the same operands as an LLVM load/store...
@ SMULFIXSAT
Same as the corresponding unsaturated fixed point instructions, but the result is clamped between the...
Definition ISDOpcodes.h:401
@ SET_FPMODE
Sets the current dynamic floating-point control modes.
@ ANY_EXTEND
ANY_EXTEND - Used for integer types. The high bits are undefined.
Definition ISDOpcodes.h:864
@ CTTZ_ELTS
Returns the number of number of trailing (least significant) zero elements in a vector.
@ ATOMIC_LOAD_USUB_COND
@ FMA
FMA - Perform a * b + c with no intermediate rounding step.
Definition ISDOpcodes.h:521
@ VECTOR_FIND_LAST_ACTIVE
Finds the index of the last active mask element Operands: Mask.
@ FMODF
FMODF - Decomposes the operand into integral and fractional parts, each having the same type and sign...
@ PSEUDO_FMIN
PSEUDO_FMIN is strictly equivalent to op0 olt op1 ?
@ FATAN2
FATAN2 - atan2, inspired by libm.
@ FSINCOSPI
FSINCOSPI - Compute both the sine and cosine times pi more accurately than FSINCOS(pi*x),...
@ INTRINSIC_VOID
OUTCHAIN = INTRINSIC_VOID(INCHAIN, INTRINSICID, arg1, arg2, ...) This node represents a target intrin...
Definition ISDOpcodes.h:220
@ EH_SJLJ_SETUP_DISPATCH
OUTCHAIN = EH_SJLJ_SETUP_DISPATCH(INCHAIN) The target initializes the dispatch table here.
Definition ISDOpcodes.h:172
@ GlobalAddress
Definition ISDOpcodes.h:88
@ ATOMIC_CMP_SWAP_WITH_SUCCESS
Val, Success, OUTCHAIN = ATOMIC_CMP_SWAP_WITH_SUCCESS(INCHAIN, ptr, cmp, swap) N.b.
@ STRICT_FMINIMUM
Definition ISDOpcodes.h:474
@ SINT_TO_FP
[SU]INT_TO_FP - These operators convert integers (whose interpreted sign depends on the first letter)...
Definition ISDOpcodes.h:891
@ CONCAT_VECTORS
CONCAT_VECTORS(VECTOR0, VECTOR1, ...) - Given a number of values of vector type with the same length ...
Definition ISDOpcodes.h:587
@ VECREDUCE_FMAX
FMIN/FMAX nodes can have flags, for NaN/NoNaN variants.
@ FADD
Simple binary floating point operators.
Definition ISDOpcodes.h:418
@ VECREDUCE_FMAXIMUM
FMINIMUM/FMAXIMUM nodes propatate NaNs and signed zeroes using the llvm.minimum and llvm....
@ ABS
ABS - Determine the unsigned absolute value of a signed integer value of the same bitwidth.
Definition ISDOpcodes.h:750
@ MEMBARRIER
MEMBARRIER - Compiler barrier only; generate a no-op.
@ ATOMIC_FENCE
OUTCHAIN = ATOMIC_FENCE(INCHAIN, ordering, scope) This corresponds to the fence instruction.
@ RESET_FPMODE
Sets default dynamic floating-point control modes.
@ SIGN_EXTEND_VECTOR_INREG
SIGN_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register sign-extension of the low ...
Definition ISDOpcodes.h:921
@ SDIVREM
SDIVREM/UDIVREM - Divide two integers and produce both a quotient and remainder result.
Definition ISDOpcodes.h:280
@ FP16_TO_FP
FP16_TO_FP, FP_TO_FP16 - These operators are used to perform promotions and truncation for half-preci...
@ FMULADD
FMULADD - Performs a * b + c, with, or without, intermediate rounding.
Definition ISDOpcodes.h:531
@ FPTRUNC_ROUND
FPTRUNC_ROUND - This corresponds to the fptrunc_round intrinsic.
Definition ISDOpcodes.h:518
@ FAKE_USE
FAKE_USE represents a use of the operand but does not do anything.
@ BITCAST
BITCAST - This operator converts between integer, vector and FP values, as if the value was stored to...
@ STRICT_PSEUDO_FMAX
Definition ISDOpcodes.h:463
@ BUILD_PAIR
BUILD_PAIR - This is the opposite of EXTRACT_ELEMENT in some ways.
Definition ISDOpcodes.h:254
@ CLMUL
Carry-less multiplication operations.
Definition ISDOpcodes.h:781
@ INIT_TRAMPOLINE
INIT_TRAMPOLINE - This corresponds to the init_trampoline intrinsic.
@ FLDEXP
FLDEXP - ldexp, inspired by libm (op0 * 2**op1).
@ SDIVFIX
RESULT = [US]DIVFIX(LHS, RHS, SCALE) - Perform fixed point division on 2 integers with the same width...
Definition ISDOpcodes.h:408
@ STRICT_FSQRT
Constrained versions of libm-equivalent floating point intrinsics.
Definition ISDOpcodes.h:439
@ BUILTIN_OP_END
BUILTIN_OP_END - This must be the last enum value in this list.
@ GlobalTLSAddress
Definition ISDOpcodes.h:89
@ SRCVALUE
SRCVALUE - This is a node type that holds a Value* that is used to make reference to a value in the L...
@ CONVERT_FROM_ARBITRARY_FP
CONVERT_FROM_ARBITRARY_FP - This operator converts from an arbitrary floating-point represented as an...
@ EH_LABEL
EH_LABEL - Represents a label in mid basic block used to track locations needed for debug and excepti...
@ ATOMIC_LOAD_USUB_SAT
@ CTLZ_ZERO_POISON
Definition ISDOpcodes.h:799
@ EH_RETURN
OUTCHAIN = EH_RETURN(INCHAIN, OFFSET, HANDLER) - This node represents 'eh_return' gcc dwarf builtin,...
Definition ISDOpcodes.h:156
@ ANNOTATION_LABEL
ANNOTATION_LABEL - Represents a mid basic block label used by annotations.
@ SET_ROUNDING
Set rounding mode.
Definition ISDOpcodes.h:986
@ CONVERGENCECTRL_GLUE
This does not correspond to any convergence control intrinsic.
@ PARTIAL_REDUCE_UMLA
@ SIGN_EXTEND
Conversion operators.
Definition ISDOpcodes.h:855
@ AVGCEILS
AVGCEILS/AVGCEILU - Rounding averaging add - Add two integers using an integer of type i[N+2],...
Definition ISDOpcodes.h:718
@ STRICT_UINT_TO_FP
Definition ISDOpcodes.h:488
@ SCALAR_TO_VECTOR
SCALAR_TO_VECTOR(VAL) - This represents the operation of loading a scalar value into element 0 of the...
Definition ISDOpcodes.h:668
@ PREALLOCATED_SETUP
PREALLOCATED_SETUP - This has 2 operands: an input chain and a SRCVALUE with the preallocated call Va...
@ READSTEADYCOUNTER
READSTEADYCOUNTER - This corresponds to the readfixedcounter intrinsic.
@ ADDROFRETURNADDR
ADDROFRETURNADDR - Represents the llvm.addressofreturnaddress intrinsic.
Definition ISDOpcodes.h:117
@ TargetExternalSymbol
Definition ISDOpcodes.h:190
@ CONVERGENCECTRL_ENTRY
@ BR
Control flow instructions. These all have token chains.
@ VECREDUCE_FADD
These reductions have relaxed evaluation order semantics, and have a single vector operand.
@ TargetJumpTable
Definition ISDOpcodes.h:188
@ TargetIndex
TargetIndex - Like a constant pool entry, but with completely target-dependent semantics.
Definition ISDOpcodes.h:198
@ PARTIAL_REDUCE_FMLA
@ PREFETCH
PREFETCH - This corresponds to a prefetch intrinsic.
@ STRICT_PSEUDO_FMIN
Definition ISDOpcodes.h:462
@ TRUNCATE_SSAT_U
Definition ISDOpcodes.h:884
@ VECREDUCE_FMAXIMUMNUM
FMINIMUMNUM/FMAXIMUMNUM nodes do not propagate NaNs and order signed zeroes using the llvm....
@ FSINCOS
FSINCOS - Compute both fsin and fcos as a single operation.
@ SETCCCARRY
Like SetCC, ops #0 and #1 are the LHS and RHS operands to compare, but op #2 is a boolean indicating ...
Definition ISDOpcodes.h:838
@ FNEG
Perform various unary floating-point operations inspired by libm.
@ BR_CC
BR_CC - Conditional branch.
@ SSUBO
Same for subtraction.
Definition ISDOpcodes.h:353
@ PREALLOCATED_ARG
PREALLOCATED_ARG - This has 3 operands: an input chain, a SRCVALUE with the preallocated call Value,...
@ BRIND
BRIND - Indirect branch.
@ BR_JT
BR_JT - Jumptable branch.
@ GC_TRANSITION_START
GC_TRANSITION_START/GC_TRANSITION_END - These operators mark the beginning and end of GC transition s...
@ VECTOR_INTERLEAVE
VECTOR_INTERLEAVE(VEC1, VEC2, ...) - Returns N vectors from N input vectors, where N is the factor to...
Definition ISDOpcodes.h:638
@ STEP_VECTOR
STEP_VECTOR(IMM) - Returns a scalable vector whose lanes are comprised of a linear sequence of unsign...
Definition ISDOpcodes.h:694
@ FCANONICALIZE
Returns platform specific canonical encoding of a floating point number.
Definition ISDOpcodes.h:544
@ IS_FPCLASS
Performs a check of floating point class property, defined by IEEE-754.
Definition ISDOpcodes.h:551
@ SSUBSAT
RESULT = [US]SUBSAT(LHS, RHS) - Perform saturation subtraction on 2 integers with the same bit width ...
Definition ISDOpcodes.h:375
@ SELECT
Select(COND, TRUEVAL, FALSEVAL).
Definition ISDOpcodes.h:807
@ ATOMIC_LOAD
Val, OUTCHAIN = ATOMIC_LOAD(INCHAIN, ptr) This corresponds to "load atomic" instruction.
@ UNDEF
UNDEF - An undefined node.
Definition ISDOpcodes.h:233
@ EXTRACT_ELEMENT
EXTRACT_ELEMENT - This is used to get the lower or upper (determined by a Constant,...
Definition ISDOpcodes.h:247
@ SPLAT_VECTOR
SPLAT_VECTOR(VAL) - Returns a vector with the scalar value VAL duplicated in all lanes.
Definition ISDOpcodes.h:675
@ AssertAlign
AssertAlign - These nodes record if a register contains a value that has a known alignment and the tr...
Definition ISDOpcodes.h:69
@ VACOPY
VACOPY - VACOPY has 5 operands: an input chain, a destination pointer, a source pointer,...
@ GET_ACTIVE_LANE_MASK
GET_ACTIVE_LANE_MASK - this corrosponds to the llvm.get.active.lane.mask intrinsic.
@ BasicBlock
Various leaf nodes.
Definition ISDOpcodes.h:81
@ CopyFromReg
CopyFromReg - This node indicates that the input value is a virtual or physical register that is defi...
Definition ISDOpcodes.h:230
@ SADDO
RESULT, BOOL = [SU]ADDO(LHS, RHS) - Overflow-aware nodes for addition.
Definition ISDOpcodes.h:349
@ TargetGlobalAddress
TargetGlobalAddress - Like GlobalAddress, but the DAG does no folding or anything else with this node...
Definition ISDOpcodes.h:185
@ ARITH_FENCE
ARITH_FENCE - This corresponds to a arithmetic fence intrinsic.
@ CTLS
Count leading redundant sign bits.
Definition ISDOpcodes.h:803
@ VECREDUCE_ADD
Integer reductions may have a result type larger than the vector element type.
@ GET_ROUNDING
Returns current rounding mode: -1 Undefined 0 Round to 0 1 Round to nearest, ties to even 2 Round to ...
Definition ISDOpcodes.h:981
@ STRICT_FP_TO_FP16
@ MULHU
MULHU/MULHS - Multiply high - Multiply two integers of type iN, producing an unsigned/signed value of...
Definition ISDOpcodes.h:707
@ CLEANUPRET
CLEANUPRET - Represents a return from a cleanup block funclet.
@ ATOMIC_LOAD_FMAXIMUM
@ GET_FPMODE
Reads the current dynamic floating-point control modes.
@ STRICT_FP16_TO_FP
@ GET_FPENV
Gets the current floating-point environment.
@ SHL
Shift and rotation operations.
Definition ISDOpcodes.h:772
@ AssertNoFPClass
AssertNoFPClass - These nodes record if a register contains a float value that is known to be not som...
Definition ISDOpcodes.h:78
@ VECTOR_SHUFFLE
VECTOR_SHUFFLE(VEC1, VEC2) - Returns a vector, of the same type as VEC1/VEC2.
Definition ISDOpcodes.h:652
@ PtrAuthGlobalAddress
A ptrauth constant.
Definition ISDOpcodes.h:100
@ EXTRACT_SUBVECTOR
EXTRACT_SUBVECTOR(VECTOR, IDX) - Returns a subvector from VECTOR.
Definition ISDOpcodes.h:617
@ FMINNUM_IEEE
FMINNUM_IEEE/FMAXNUM_IEEE - Perform floating-point minimumNumber or maximumNumber on two values,...
@ STRICT_FMAXIMUM
Definition ISDOpcodes.h:473
@ EntryToken
EntryToken - This is the marker used to indicate the start of a region.
Definition ISDOpcodes.h:48
@ READ_REGISTER
READ_REGISTER, WRITE_REGISTER - This node represents llvm.register on the DAG, which implements the n...
Definition ISDOpcodes.h:139
@ EXTRACT_VECTOR_ELT
EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR identified by the (potentially...
Definition ISDOpcodes.h:579
@ CopyToReg
CopyToReg - This node has three operands: a chain, a register number to set to this value,...
Definition ISDOpcodes.h:224
@ ZERO_EXTEND
ZERO_EXTEND - Used for integer types, zeroing the new bits.
Definition ISDOpcodes.h:861
@ TargetConstantFP
Definition ISDOpcodes.h:180
@ DEBUGTRAP
DEBUGTRAP - Trap intended to get the attention of a debugger.
@ SELECT_CC
Select with condition operator - This selects between a true value and a false value (ops #2 and #3) ...
Definition ISDOpcodes.h:822
@ VSCALE
VSCALE(IMM) - Returns the runtime scaling factor used to calculate the number of elements within a sc...
@ ATOMIC_CMP_SWAP
Val, OUTCHAIN = ATOMIC_CMP_SWAP(INCHAIN, ptr, cmp, swap) For double-word atomic operations: ValLo,...
@ LOCAL_RECOVER
LOCAL_RECOVER - Represents the llvm.localrecover intrinsic.
Definition ISDOpcodes.h:135
@ FMINNUM
FMINNUM/FMAXNUM - Perform floating-point minimum maximum on two values, following IEEE-754 definition...
@ UBSANTRAP
UBSANTRAP - Trap with an immediate describing the kind of sanitizer failure.
@ SSHLSAT
RESULT = [US]SHLSAT(LHS, RHS) - Perform saturation left shift.
Definition ISDOpcodes.h:387
@ PATCHPOINT
The llvm.experimental.patchpoint.
@ SMULO
Same for multiplication.
Definition ISDOpcodes.h:357
@ ATOMIC_LOAD_FMINIMUM
@ DYNAMIC_STACKALLOC
DYNAMIC_STACKALLOC - Allocate some number of bytes on the stack aligned to a specified boundary.
@ TargetFrameIndex
Definition ISDOpcodes.h:187
@ VECTOR_SPLICE_LEFT
VECTOR_SPLICE_LEFT(VEC1, VEC2, OFFSET) - Shifts CONCAT_VECTORS(VEC1, VEC2) left by OFFSET elements an...
Definition ISDOpcodes.h:656
@ ANY_EXTEND_VECTOR_INREG
ANY_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register any-extension of the low la...
Definition ISDOpcodes.h:910
@ SIGN_EXTEND_INREG
SIGN_EXTEND_INREG - This operator atomically performs a SHL/SRA pair to sign extend a small value in ...
Definition ISDOpcodes.h:899
@ SMIN
[US]{MIN/MAX} - Binary minimum or maximum of signed or unsigned integers.
Definition ISDOpcodes.h:730
@ MASKED_UDIV
Masked vector arithmetic that returns poison on disabled lanes.
@ VECTOR_REVERSE
VECTOR_REVERSE(VECTOR) - Returns a vector, of the same type as VECTOR, whose elements are shuffled us...
Definition ISDOpcodes.h:643
@ LIFETIME_START
This corresponds to the llvm.lifetime.
@ SDIVFIXSAT
Same as the corresponding unsaturated fixed point instructions, but the result is clamped between the...
Definition ISDOpcodes.h:414
@ FP_EXTEND
X = FP_EXTEND(Y) - Extend a smaller FP type into a larger FP type.
Definition ISDOpcodes.h:989
@ GLOBAL_OFFSET_TABLE
The address of the GOT.
Definition ISDOpcodes.h:103
@ VSELECT
Select with a vector condition (op #0) and two vector operands (ops #1 and #2), returning a vector re...
Definition ISDOpcodes.h:816
@ UADDO_CARRY
Carry-using nodes for multiple precision addition and subtraction.
Definition ISDOpcodes.h:329
@ STRICT_SINT_TO_FP
STRICT_[US]INT_TO_FP - Convert a signed or unsigned integer to a floating point value.
Definition ISDOpcodes.h:487
@ MGATHER
Masked gather and scatter - load and store operations for a vector of random addresses with additiona...
@ HANDLENODE
HANDLENODE node - Used as a handle for various purposes.
@ STRICT_BF16_TO_FP
@ PCMARKER
PCMARKER - This corresponds to the pcmarker intrinsic.
@ STRICT_FROUNDEVEN
Definition ISDOpcodes.h:467
@ INLINEASM_BR
INLINEASM_BR - Branching version of inline asm. Used by asm-goto.
@ EH_DWARF_CFA
EH_DWARF_CFA - This node represents the pointer to the DWARF Canonical Frame Address (CFA),...
Definition ISDOpcodes.h:150
@ BF16_TO_FP
BF16_TO_FP, FP_TO_BF16 - These operators are used to perform promotions and truncation for bfloat16.
@ FRAMEADDR
FRAMEADDR, RETURNADDR - These nodes represent llvm.frameaddress and llvm.returnaddress on the DAG.
Definition ISDOpcodes.h:110
@ ATOMIC_LOAD_UDEC_WRAP
@ STRICT_FP_TO_UINT
Definition ISDOpcodes.h:481
@ PEXT
Parallel bit extract (compress) and parallel bit deposit (expand).
Definition ISDOpcodes.h:786
@ STRICT_FP_ROUND
X = STRICT_FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision ...
Definition ISDOpcodes.h:503
@ STRICT_FP_TO_SINT
STRICT_FP_TO_[US]INT - Convert a floating point value to a signed or unsigned integer.
Definition ISDOpcodes.h:480
@ FMINIMUM
FMINIMUM/FMAXIMUM - NaN-propagating minimum/maximum that also treat -0.0 as less than 0....
@ FP_TO_SINT
FP_TO_[US]INT - Convert a floating point value to a signed or unsigned integer.
Definition ISDOpcodes.h:937
@ READCYCLECOUNTER
READCYCLECOUNTER - This corresponds to the readcyclecounter intrinsic.
@ TargetConstant
TargetConstant* - Like Constant*, but the DAG does not do any folding, simplification,...
Definition ISDOpcodes.h:179
@ STRICT_FP_EXTEND
X = STRICT_FP_EXTEND(Y) - Extend a smaller FP type into a larger FP type.
Definition ISDOpcodes.h:508
@ RELOC_NONE
Issue a no-op relocation against a given symbol at the current location.
@ AND
Bitwise operators - logical and, logical or, logical xor.
Definition ISDOpcodes.h:742
@ TRAP
TRAP - Trapping instruction.
@ INTRINSIC_WO_CHAIN
RESULT = INTRINSIC_WO_CHAIN(INTRINSICID, arg1, arg2, ...) This node represents a target intrinsic fun...
Definition ISDOpcodes.h:205
@ GET_FPENV_MEM
Gets the current floating-point environment.
@ PSEUDO_PROBE
Pseudo probe for AutoFDO, as a place holder in a basic block to improve the sample counts quality.
@ STRICT_FP_TO_BF16
@ SCMP
[US]CMP - 3-way comparison of signed or unsigned integers.
Definition ISDOpcodes.h:738
@ CARRY_FALSE
CARRY_FALSE - This node is used when folding other nodes, like ADDC/SUBC, which indicate the carry re...
Definition ISDOpcodes.h:285
@ AVGFLOORS
AVGFLOORS/AVGFLOORU - Averaging add - Add two integers using an integer of type i[N+1],...
Definition ISDOpcodes.h:713
@ VECTOR_MATCH
VECTOR_MATCH - this corresponds to the llvm.experimental.vector.match intrinsic.
@ VECTOR_SPLICE_RIGHT
VECTOR_SPLICE_RIGHT(VEC1, VEC2, OFFSET) - Shifts CONCAT_VECTORS(VEC1,VEC2) right by OFFSET elements a...
Definition ISDOpcodes.h:660
@ ADDE
Carry-using nodes for multiple precision addition and subtraction.
Definition ISDOpcodes.h:304
@ STRICT_FADD
Constrained versions of the binary floating point operators.
Definition ISDOpcodes.h:428
@ STACKMAP
The llvm.experimental.stackmap intrinsic.
@ SPLAT_VECTOR_PARTS
SPLAT_VECTOR_PARTS(SCALAR1, SCALAR2, ...) - Returns a vector with the scalar values joined together a...
Definition ISDOpcodes.h:684
@ FREEZE
FREEZE - FREEZE(VAL) returns an arbitrary value if VAL is UNDEF (or is evaluated to UNDEF),...
Definition ISDOpcodes.h:241
@ INSERT_VECTOR_ELT
INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR with the element at IDX replaced with VAL.
Definition ISDOpcodes.h:568
@ TokenFactor
TokenFactor - This node takes multiple tokens as input and produces a single token result.
Definition ISDOpcodes.h:53
@ ATOMIC_SWAP
Val, OUTCHAIN = ATOMIC_SWAP(INCHAIN, ptr, amt) Val, OUTCHAIN = ATOMIC_LOAD_[OpName](INCHAIN,...
@ CTTZ_ZERO_POISON
Bit counting operators with a poisoned result for zero inputs.
Definition ISDOpcodes.h:798
@ ExternalSymbol
Definition ISDOpcodes.h:93
@ FFREXP
FFREXP - frexp, extract fractional and exponent component of a floating-point value.
@ FP_ROUND
X = FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision of the ...
Definition ISDOpcodes.h:970
@ VECTOR_COMPRESS
VECTOR_COMPRESS(Vec, Mask, Passthru) consecutively place vector elements based on mask e....
Definition ISDOpcodes.h:702
@ SPONENTRY
SPONENTRY - Represents the llvm.sponentry intrinsic.
Definition ISDOpcodes.h:122
@ CLEAR_CACHE
llvm.clear_cache intrinsic Operands: Input Chain, Start Addres, End Address Outputs: Output Chain
@ CONVERGENCECTRL_LOOP
@ ZERO_EXTEND_VECTOR_INREG
ZERO_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register zero-extension of the low ...
Definition ISDOpcodes.h:932
@ ADDRSPACECAST
ADDRSPACECAST - This operator converts between pointers of different address spaces.
@ EXPERIMENTAL_VECTOR_HISTOGRAM
Experimental vector histogram intrinsic Operands: Input Chain, Inc, Mask, Base, Index,...
@ INLINEASM
INLINEASM - Represents an inline asm block.
@ STRICT_FNEARBYINT
Definition ISDOpcodes.h:459
@ FP_TO_SINT_SAT
FP_TO_[US]INT_SAT - Convert floating point value in operand 0 to a signed or unsigned scalar integer ...
Definition ISDOpcodes.h:956
@ VECREDUCE_FMINIMUM
@ EH_SJLJ_SETJMP
RESULT, OUTCHAIN = EH_SJLJ_SETJMP(INCHAIN, buffer) This corresponds to the eh.sjlj....
Definition ISDOpcodes.h:162
@ TRUNCATE
TRUNCATE - Completely drop the high bits.
Definition ISDOpcodes.h:867
@ VAARG
VAARG - VAARG has four operands: an input chain, a pointer, a SRCVALUE, and the alignment.
@ BRCOND
BRCOND - Conditional branch.
@ VECREDUCE_SEQ_FMUL
@ CONVERT_TO_ARBITRARY_FP
CONVERT_TO_ARBITRARY_FP - Converts a native FP value to an arbitrary floating-point format,...
@ SHL_PARTS
SHL_PARTS/SRA_PARTS/SRL_PARTS - These operators are used for expanded integer shift operations.
Definition ISDOpcodes.h:844
@ CATCHRET
CATCHRET - Represents a return from a catch block funclet.
@ GC_TRANSITION_END
@ AssertSext
AssertSext, AssertZext - These nodes record if a register contains a value that has already been zero...
Definition ISDOpcodes.h:62
@ ATOMIC_LOAD_UINC_WRAP
@ FCOPYSIGN
FCOPYSIGN(X, Y) - Return the value of X with the sign of Y.
Definition ISDOpcodes.h:537
@ PARTIAL_REDUCE_SUMLA
@ SADDSAT
RESULT = [US]ADDSAT(LHS, RHS) - Perform saturation addition on 2 integers with the same bit width (W)...
Definition ISDOpcodes.h:366
@ CALLSEQ_START
CALLSEQ_START/CALLSEQ_END - These operators mark the beginning and end of a call sequence,...
@ VECTOR_DEINTERLEAVE
VECTOR_DEINTERLEAVE(VEC1, VEC2, ...) - Returns N vectors from N input vectors, where N is the factor ...
Definition ISDOpcodes.h:627
@ GET_DYNAMIC_AREA_OFFSET
GET_DYNAMIC_AREA_OFFSET - get offset from native SP to the address of the most recent dynamic alloca.
@ CTTZ_ELTS_ZERO_POISON
@ SET_FPENV_MEM
Sets the current floating point environment.
@ FMINIMUMNUM
FMINIMUMNUM/FMAXIMUMNUM - minimumnum/maximumnum that is same with FMINNUM_IEEE and FMAXNUM_IEEE besid...
@ TRUNCATE_SSAT_S
TRUNCATE_[SU]SAT_[SU] - Truncate for saturated operand [SU] located in middle, prefix for SAT means i...
Definition ISDOpcodes.h:882
@ ABDS
ABDS/ABDU - Absolute difference - Return the absolute difference between two numbers interpreted as s...
Definition ISDOpcodes.h:725
@ ADJUST_TRAMPOLINE
ADJUST_TRAMPOLINE - This corresponds to the adjust_trampoline intrinsic.
@ TRUNCATE_USAT_U
Definition ISDOpcodes.h:886
@ SADDO_CARRY
Carry-using overflow-aware nodes for multiple precision addition and subtraction.
Definition ISDOpcodes.h:339
@ INTRINSIC_W_CHAIN
RESULT,OUTCHAIN = INTRINSIC_W_CHAIN(INCHAIN, INTRINSICID, arg1, ...) This node represents a target in...
Definition ISDOpcodes.h:213
@ TargetGlobalTLSAddress
Definition ISDOpcodes.h:186
@ ABS_MIN_POISON
ABS with a poison result for INT_MIN.
Definition ISDOpcodes.h:754
@ BUILD_VECTOR
BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a fixed-width vector with the specified,...
Definition ISDOpcodes.h:559
@ LOOP_DEPENDENCE_WAR_MASK
The llvm.loop.dependence.
MemIndexedMode
MemIndexedMode enum - This enum defines the load / store indexed addressing modes.
LLVM_ABI StringRef getBaseName(ID id)
Return the LLVM name for an intrinsic, without encoded types for overloading, such as "llvm....
This is an optimization pass for GlobalISel generic memory operations.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
void interleaveComma(const Container &c, StreamT &os, UnaryFunctor each_fn)
Definition STLExtras.h:2329
std::string utostr(uint64_t X, bool isNeg=false)
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:547
DWARFExpression::Operation Op
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
LLVM_ABI Printable printReg(Register Reg, const TargetRegisterInfo *TRI=nullptr, unsigned SubIdx=0, const MachineRegisterInfo *MRI=nullptr)
Prints virtual and physical registers with or without a TRI instance.
#define N
LLVM_ABI std::string getEVTString() const
This function returns value type as a string, e.g. "i32".