LLVM 19.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"
30#include "llvm/Config/llvm-config.h"
31#include "llvm/IR/BasicBlock.h"
32#include "llvm/IR/Constants.h"
34#include "llvm/IR/DebugLoc.h"
35#include "llvm/IR/Function.h"
36#include "llvm/IR/Intrinsics.h"
38#include "llvm/IR/Value.h"
42#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
58std::string SDNode::getOperationName(const SelectionDAG *G) const {
59 switch (getOpcode()) {
60 default:
62 return "<<Unknown DAG Node>>";
63 if (isMachineOpcode()) {
64 if (G)
65 if (const TargetInstrInfo *TII = G->getSubtarget().getInstrInfo())
66 if (getMachineOpcode() < TII->getNumOpcodes())
67 return std::string(TII->getName(getMachineOpcode()));
68 return "<<Unknown Machine Node #" + utostr(getOpcode()) + ">>";
69 }
70 if (G) {
71 const TargetLowering &TLI = G->getTargetLoweringInfo();
72 const char *Name = TLI.getTargetNodeName(getOpcode());
73 if (Name) return Name;
74 return "<<Unknown Target Node #" + utostr(getOpcode()) + ">>";
75 }
76 return "<<Unknown Node #" + utostr(getOpcode()) + ">>";
77
78#ifndef NDEBUG
79 case ISD::DELETED_NODE: return "<<Deleted Node!>>";
80#endif
81 case ISD::PREFETCH: return "Prefetch";
82 case ISD::MEMBARRIER: return "MemBarrier";
83 case ISD::ATOMIC_FENCE: return "AtomicFence";
84 case ISD::ATOMIC_CMP_SWAP: return "AtomicCmpSwap";
85 case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: return "AtomicCmpSwapWithSuccess";
86 case ISD::ATOMIC_SWAP: return "AtomicSwap";
87 case ISD::ATOMIC_LOAD_ADD: return "AtomicLoadAdd";
88 case ISD::ATOMIC_LOAD_SUB: return "AtomicLoadSub";
89 case ISD::ATOMIC_LOAD_AND: return "AtomicLoadAnd";
90 case ISD::ATOMIC_LOAD_CLR: return "AtomicLoadClr";
91 case ISD::ATOMIC_LOAD_OR: return "AtomicLoadOr";
92 case ISD::ATOMIC_LOAD_XOR: return "AtomicLoadXor";
93 case ISD::ATOMIC_LOAD_NAND: return "AtomicLoadNand";
94 case ISD::ATOMIC_LOAD_MIN: return "AtomicLoadMin";
95 case ISD::ATOMIC_LOAD_MAX: return "AtomicLoadMax";
96 case ISD::ATOMIC_LOAD_UMIN: return "AtomicLoadUMin";
97 case ISD::ATOMIC_LOAD_UMAX: return "AtomicLoadUMax";
98 case ISD::ATOMIC_LOAD_FADD: return "AtomicLoadFAdd";
100 return "AtomicLoadUIncWrap";
102 return "AtomicLoadUDecWrap";
103 case ISD::ATOMIC_LOAD: return "AtomicLoad";
104 case ISD::ATOMIC_STORE: return "AtomicStore";
105 case ISD::PCMARKER: return "PCMarker";
106 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
107 case ISD::READSTEADYCOUNTER: return "ReadSteadyCounter";
108 case ISD::SRCVALUE: return "SrcValue";
109 case ISD::MDNODE_SDNODE: return "MDNode";
110 case ISD::EntryToken: return "EntryToken";
111 case ISD::TokenFactor: return "TokenFactor";
112 case ISD::AssertSext: return "AssertSext";
113 case ISD::AssertZext: return "AssertZext";
114 case ISD::AssertAlign: return "AssertAlign";
115
116 case ISD::BasicBlock: return "BasicBlock";
117 case ISD::VALUETYPE: return "ValueType";
118 case ISD::Register: return "Register";
119 case ISD::RegisterMask: return "RegisterMask";
120 case ISD::Constant:
121 if (cast<ConstantSDNode>(this)->isOpaque())
122 return "OpaqueConstant";
123 return "Constant";
124 case ISD::ConstantFP: return "ConstantFP";
125 case ISD::GlobalAddress: return "GlobalAddress";
126 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
127 case ISD::FrameIndex: return "FrameIndex";
128 case ISD::JumpTable: return "JumpTable";
130 return "JUMP_TABLE_DEBUG_INFO";
131 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
132 case ISD::RETURNADDR: return "RETURNADDR";
133 case ISD::ADDROFRETURNADDR: return "ADDROFRETURNADDR";
134 case ISD::FRAMEADDR: return "FRAMEADDR";
135 case ISD::SPONENTRY: return "SPONENTRY";
136 case ISD::LOCAL_RECOVER: return "LOCAL_RECOVER";
137 case ISD::READ_REGISTER: return "READ_REGISTER";
138 case ISD::WRITE_REGISTER: return "WRITE_REGISTER";
139 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
140 case ISD::EH_DWARF_CFA: return "EH_DWARF_CFA";
141 case ISD::EH_RETURN: return "EH_RETURN";
142 case ISD::EH_SJLJ_SETJMP: return "EH_SJLJ_SETJMP";
143 case ISD::EH_SJLJ_LONGJMP: return "EH_SJLJ_LONGJMP";
144 case ISD::EH_SJLJ_SETUP_DISPATCH: return "EH_SJLJ_SETUP_DISPATCH";
145 case ISD::ConstantPool: return "ConstantPool";
146 case ISD::TargetIndex: return "TargetIndex";
147 case ISD::ExternalSymbol: return "ExternalSymbol";
148 case ISD::BlockAddress: return "BlockAddress";
152 unsigned OpNo = getOpcode() == ISD::INTRINSIC_WO_CHAIN ? 0 : 1;
153 unsigned IID = getOperand(OpNo)->getAsZExtVal();
154 if (IID < Intrinsic::num_intrinsics)
156 if (!G)
157 return "Unknown intrinsic";
158 if (const TargetIntrinsicInfo *TII = G->getTarget().getIntrinsicInfo())
159 return TII->getName(IID);
160 llvm_unreachable("Invalid intrinsic ID");
161 }
162
163 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
165 if (cast<ConstantSDNode>(this)->isOpaque())
166 return "OpaqueTargetConstant";
167 return "TargetConstant";
168
169 // clang-format off
170
171 case ISD::TargetConstantFP: return "TargetConstantFP";
172 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
173 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
174 case ISD::TargetFrameIndex: return "TargetFrameIndex";
175 case ISD::TargetJumpTable: return "TargetJumpTable";
176 case ISD::TargetConstantPool: return "TargetConstantPool";
177 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
178 case ISD::MCSymbol: return "MCSymbol";
179 case ISD::TargetBlockAddress: return "TargetBlockAddress";
180
181 case ISD::CopyToReg: return "CopyToReg";
182 case ISD::CopyFromReg: return "CopyFromReg";
183 case ISD::UNDEF: return "undef";
184 case ISD::VSCALE: return "vscale";
185 case ISD::MERGE_VALUES: return "merge_values";
186 case ISD::INLINEASM: return "inlineasm";
187 case ISD::INLINEASM_BR: return "inlineasm_br";
188 case ISD::EH_LABEL: return "eh_label";
189 case ISD::ANNOTATION_LABEL: return "annotation_label";
190 case ISD::HANDLENODE: return "handlenode";
191
192 // Unary operators
193 case ISD::FABS: return "fabs";
194 case ISD::FMINNUM: return "fminnum";
195 case ISD::STRICT_FMINNUM: return "strict_fminnum";
196 case ISD::FMAXNUM: return "fmaxnum";
197 case ISD::STRICT_FMAXNUM: return "strict_fmaxnum";
198 case ISD::FMINNUM_IEEE: return "fminnum_ieee";
199 case ISD::FMAXNUM_IEEE: return "fmaxnum_ieee";
200 case ISD::FMINIMUM: return "fminimum";
201 case ISD::STRICT_FMINIMUM: return "strict_fminimum";
202 case ISD::FMAXIMUM: return "fmaximum";
203 case ISD::STRICT_FMAXIMUM: return "strict_fmaximum";
204 case ISD::FNEG: return "fneg";
205 case ISD::FSQRT: return "fsqrt";
206 case ISD::STRICT_FSQRT: return "strict_fsqrt";
207 case ISD::FCBRT: return "fcbrt";
208 case ISD::FSIN: return "fsin";
209 case ISD::STRICT_FSIN: return "strict_fsin";
210 case ISD::FCOS: return "fcos";
211 case ISD::STRICT_FCOS: return "strict_fcos";
212 case ISD::FSINCOS: return "fsincos";
213 case ISD::FTRUNC: return "ftrunc";
214 case ISD::STRICT_FTRUNC: return "strict_ftrunc";
215 case ISD::FFLOOR: return "ffloor";
216 case ISD::STRICT_FFLOOR: return "strict_ffloor";
217 case ISD::FCEIL: return "fceil";
218 case ISD::STRICT_FCEIL: return "strict_fceil";
219 case ISD::FRINT: return "frint";
220 case ISD::STRICT_FRINT: return "strict_frint";
221 case ISD::FNEARBYINT: return "fnearbyint";
222 case ISD::STRICT_FNEARBYINT: return "strict_fnearbyint";
223 case ISD::FROUND: return "fround";
224 case ISD::STRICT_FROUND: return "strict_fround";
225 case ISD::FROUNDEVEN: return "froundeven";
226 case ISD::STRICT_FROUNDEVEN: return "strict_froundeven";
227 case ISD::FEXP: return "fexp";
228 case ISD::STRICT_FEXP: return "strict_fexp";
229 case ISD::FEXP2: return "fexp2";
230 case ISD::STRICT_FEXP2: return "strict_fexp2";
231 case ISD::FEXP10: return "fexp10";
232 case ISD::FLOG: return "flog";
233 case ISD::STRICT_FLOG: return "strict_flog";
234 case ISD::FLOG2: return "flog2";
235 case ISD::STRICT_FLOG2: return "strict_flog2";
236 case ISD::FLOG10: return "flog10";
237 case ISD::STRICT_FLOG10: return "strict_flog10";
238
239 // Binary operators
240 case ISD::ADD: return "add";
241 case ISD::SUB: return "sub";
242 case ISD::MUL: return "mul";
243 case ISD::MULHU: return "mulhu";
244 case ISD::MULHS: return "mulhs";
245 case ISD::AVGFLOORU: return "avgflooru";
246 case ISD::AVGFLOORS: return "avgfloors";
247 case ISD::AVGCEILU: return "avgceilu";
248 case ISD::AVGCEILS: return "avgceils";
249 case ISD::ABDS: return "abds";
250 case ISD::ABDU: return "abdu";
251 case ISD::SDIV: return "sdiv";
252 case ISD::UDIV: return "udiv";
253 case ISD::SREM: return "srem";
254 case ISD::UREM: return "urem";
255 case ISD::SMUL_LOHI: return "smul_lohi";
256 case ISD::UMUL_LOHI: return "umul_lohi";
257 case ISD::SDIVREM: return "sdivrem";
258 case ISD::UDIVREM: return "udivrem";
259 case ISD::AND: return "and";
260 case ISD::OR: return "or";
261 case ISD::XOR: return "xor";
262 case ISD::SHL: return "shl";
263 case ISD::SRA: return "sra";
264 case ISD::SRL: return "srl";
265 case ISD::ROTL: return "rotl";
266 case ISD::ROTR: return "rotr";
267 case ISD::FSHL: return "fshl";
268 case ISD::FSHR: return "fshr";
269 case ISD::FADD: return "fadd";
270 case ISD::STRICT_FADD: return "strict_fadd";
271 case ISD::FSUB: return "fsub";
272 case ISD::STRICT_FSUB: return "strict_fsub";
273 case ISD::FMUL: return "fmul";
274 case ISD::STRICT_FMUL: return "strict_fmul";
275 case ISD::FDIV: return "fdiv";
276 case ISD::STRICT_FDIV: return "strict_fdiv";
277 case ISD::FMA: return "fma";
278 case ISD::STRICT_FMA: return "strict_fma";
279 case ISD::FMAD: return "fmad";
280 case ISD::FREM: return "frem";
281 case ISD::STRICT_FREM: return "strict_frem";
282 case ISD::FCOPYSIGN: return "fcopysign";
283 case ISD::FGETSIGN: return "fgetsign";
284 case ISD::FCANONICALIZE: return "fcanonicalize";
285 case ISD::IS_FPCLASS: return "is_fpclass";
286 case ISD::FPOW: return "fpow";
287 case ISD::STRICT_FPOW: return "strict_fpow";
288 case ISD::SMIN: return "smin";
289 case ISD::SMAX: return "smax";
290 case ISD::UMIN: return "umin";
291 case ISD::UMAX: return "umax";
292
293 case ISD::FLDEXP: return "fldexp";
294 case ISD::STRICT_FLDEXP: return "strict_fldexp";
295 case ISD::FFREXP: return "ffrexp";
296 case ISD::FPOWI: return "fpowi";
297 case ISD::STRICT_FPOWI: return "strict_fpowi";
298 case ISD::SETCC: return "setcc";
299 case ISD::SETCCCARRY: return "setcccarry";
300 case ISD::STRICT_FSETCC: return "strict_fsetcc";
301 case ISD::STRICT_FSETCCS: return "strict_fsetccs";
302 case ISD::SELECT: return "select";
303 case ISD::VSELECT: return "vselect";
304 case ISD::SELECT_CC: return "select_cc";
305 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
306 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
307 case ISD::CONCAT_VECTORS: return "concat_vectors";
308 case ISD::INSERT_SUBVECTOR: return "insert_subvector";
309 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
310 case ISD::VECTOR_DEINTERLEAVE: return "vector_deinterleave";
311 case ISD::VECTOR_INTERLEAVE: return "vector_interleave";
312 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
313 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
314 case ISD::VECTOR_SPLICE: return "vector_splice";
315 case ISD::SPLAT_VECTOR: return "splat_vector";
316 case ISD::SPLAT_VECTOR_PARTS: return "splat_vector_parts";
317 case ISD::VECTOR_REVERSE: return "vector_reverse";
318 case ISD::STEP_VECTOR: return "step_vector";
319 case ISD::CARRY_FALSE: return "carry_false";
320 case ISD::ADDC: return "addc";
321 case ISD::ADDE: return "adde";
322 case ISD::UADDO_CARRY: return "uaddo_carry";
323 case ISD::SADDO_CARRY: return "saddo_carry";
324 case ISD::SADDO: return "saddo";
325 case ISD::UADDO: return "uaddo";
326 case ISD::SSUBO: return "ssubo";
327 case ISD::USUBO: return "usubo";
328 case ISD::SMULO: return "smulo";
329 case ISD::UMULO: return "umulo";
330 case ISD::SUBC: return "subc";
331 case ISD::SUBE: return "sube";
332 case ISD::USUBO_CARRY: return "usubo_carry";
333 case ISD::SSUBO_CARRY: return "ssubo_carry";
334 case ISD::SHL_PARTS: return "shl_parts";
335 case ISD::SRA_PARTS: return "sra_parts";
336 case ISD::SRL_PARTS: return "srl_parts";
337
338 case ISD::SADDSAT: return "saddsat";
339 case ISD::UADDSAT: return "uaddsat";
340 case ISD::SSUBSAT: return "ssubsat";
341 case ISD::USUBSAT: return "usubsat";
342 case ISD::SSHLSAT: return "sshlsat";
343 case ISD::USHLSAT: return "ushlsat";
344
345 case ISD::SMULFIX: return "smulfix";
346 case ISD::SMULFIXSAT: return "smulfixsat";
347 case ISD::UMULFIX: return "umulfix";
348 case ISD::UMULFIXSAT: return "umulfixsat";
349
350 case ISD::SDIVFIX: return "sdivfix";
351 case ISD::SDIVFIXSAT: return "sdivfixsat";
352 case ISD::UDIVFIX: return "udivfix";
353 case ISD::UDIVFIXSAT: return "udivfixsat";
354
355 // Conversion operators.
356 case ISD::SIGN_EXTEND: return "sign_extend";
357 case ISD::ZERO_EXTEND: return "zero_extend";
358 case ISD::ANY_EXTEND: return "any_extend";
359 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
360 case ISD::ANY_EXTEND_VECTOR_INREG: return "any_extend_vector_inreg";
361 case ISD::SIGN_EXTEND_VECTOR_INREG: return "sign_extend_vector_inreg";
362 case ISD::ZERO_EXTEND_VECTOR_INREG: return "zero_extend_vector_inreg";
363 case ISD::TRUNCATE: return "truncate";
364 case ISD::FP_ROUND: return "fp_round";
365 case ISD::STRICT_FP_ROUND: return "strict_fp_round";
366 case ISD::FP_EXTEND: return "fp_extend";
367 case ISD::STRICT_FP_EXTEND: return "strict_fp_extend";
368
369 case ISD::SINT_TO_FP: return "sint_to_fp";
370 case ISD::STRICT_SINT_TO_FP: return "strict_sint_to_fp";
371 case ISD::UINT_TO_FP: return "uint_to_fp";
372 case ISD::STRICT_UINT_TO_FP: return "strict_uint_to_fp";
373 case ISD::FP_TO_SINT: return "fp_to_sint";
374 case ISD::STRICT_FP_TO_SINT: return "strict_fp_to_sint";
375 case ISD::FP_TO_UINT: return "fp_to_uint";
376 case ISD::STRICT_FP_TO_UINT: return "strict_fp_to_uint";
377 case ISD::FP_TO_SINT_SAT: return "fp_to_sint_sat";
378 case ISD::FP_TO_UINT_SAT: return "fp_to_uint_sat";
379 case ISD::BITCAST: return "bitcast";
380 case ISD::ADDRSPACECAST: return "addrspacecast";
381 case ISD::FP16_TO_FP: return "fp16_to_fp";
382 case ISD::STRICT_FP16_TO_FP: return "strict_fp16_to_fp";
383 case ISD::FP_TO_FP16: return "fp_to_fp16";
384 case ISD::STRICT_FP_TO_FP16: return "strict_fp_to_fp16";
385 case ISD::BF16_TO_FP: return "bf16_to_fp";
386 case ISD::STRICT_BF16_TO_FP: return "strict_bf16_to_fp";
387 case ISD::FP_TO_BF16: return "fp_to_bf16";
388 case ISD::STRICT_FP_TO_BF16: return "strict_fp_to_bf16";
389 case ISD::LROUND: return "lround";
390 case ISD::STRICT_LROUND: return "strict_lround";
391 case ISD::LLROUND: return "llround";
392 case ISD::STRICT_LLROUND: return "strict_llround";
393 case ISD::LRINT: return "lrint";
394 case ISD::STRICT_LRINT: return "strict_lrint";
395 case ISD::LLRINT: return "llrint";
396 case ISD::STRICT_LLRINT: return "strict_llrint";
397
398 // Control flow instructions
399 case ISD::BR: return "br";
400 case ISD::BRIND: return "brind";
401 case ISD::BR_JT: return "br_jt";
402 case ISD::BRCOND: return "brcond";
403 case ISD::BR_CC: return "br_cc";
404 case ISD::CALLSEQ_START: return "callseq_start";
405 case ISD::CALLSEQ_END: return "callseq_end";
406
407 // EH instructions
408 case ISD::CATCHRET: return "catchret";
409 case ISD::CLEANUPRET: return "cleanupret";
410
411 // Other operators
412 case ISD::LOAD: return "load";
413 case ISD::STORE: return "store";
414 case ISD::MLOAD: return "masked_load";
415 case ISD::MSTORE: return "masked_store";
416 case ISD::MGATHER: return "masked_gather";
417 case ISD::MSCATTER: return "masked_scatter";
418 case ISD::VAARG: return "vaarg";
419 case ISD::VACOPY: return "vacopy";
420 case ISD::VAEND: return "vaend";
421 case ISD::VASTART: return "vastart";
422 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
423 case ISD::EXTRACT_ELEMENT: return "extract_element";
424 case ISD::BUILD_PAIR: return "build_pair";
425 case ISD::STACKSAVE: return "stacksave";
426 case ISD::STACKRESTORE: return "stackrestore";
427 case ISD::TRAP: return "trap";
428 case ISD::DEBUGTRAP: return "debugtrap";
429 case ISD::UBSANTRAP: return "ubsantrap";
430 case ISD::LIFETIME_START: return "lifetime.start";
431 case ISD::LIFETIME_END: return "lifetime.end";
433 return "pseudoprobe";
434 case ISD::GC_TRANSITION_START: return "gc_transition.start";
435 case ISD::GC_TRANSITION_END: return "gc_transition.end";
436 case ISD::GET_DYNAMIC_AREA_OFFSET: return "get.dynamic.area.offset";
437 case ISD::FREEZE: return "freeze";
439 return "call_setup";
441 return "call_alloc";
442
443 // Floating point environment manipulation
444 case ISD::GET_ROUNDING: return "get_rounding";
445 case ISD::SET_ROUNDING: return "set_rounding";
446 case ISD::GET_FPENV: return "get_fpenv";
447 case ISD::SET_FPENV: return "set_fpenv";
448 case ISD::RESET_FPENV: return "reset_fpenv";
449 case ISD::GET_FPENV_MEM: return "get_fpenv_mem";
450 case ISD::SET_FPENV_MEM: return "set_fpenv_mem";
451 case ISD::GET_FPMODE: return "get_fpmode";
452 case ISD::SET_FPMODE: return "set_fpmode";
453 case ISD::RESET_FPMODE: return "reset_fpmode";
454
455 // Convergence control instructions
456 case ISD::CONVERGENCECTRL_ANCHOR: return "convergencectrl_anchor";
457 case ISD::CONVERGENCECTRL_ENTRY: return "convergencectrl_entry";
458 case ISD::CONVERGENCECTRL_LOOP: return "convergencectrl_loop";
459 case ISD::CONVERGENCECTRL_GLUE: return "convergencectrl_glue";
460
461 // Bit manipulation
462 case ISD::ABS: return "abs";
463 case ISD::BITREVERSE: return "bitreverse";
464 case ISD::BSWAP: return "bswap";
465 case ISD::CTPOP: return "ctpop";
466 case ISD::CTTZ: return "cttz";
467 case ISD::CTTZ_ZERO_UNDEF: return "cttz_zero_undef";
468 case ISD::CTLZ: return "ctlz";
469 case ISD::CTLZ_ZERO_UNDEF: return "ctlz_zero_undef";
470 case ISD::PARITY: return "parity";
471
472 // Trampolines
473 case ISD::INIT_TRAMPOLINE: return "init_trampoline";
474 case ISD::ADJUST_TRAMPOLINE: return "adjust_trampoline";
475
476 // clang-format on
477
478 case ISD::CONDCODE:
479 switch (cast<CondCodeSDNode>(this)->get()) {
480 default: llvm_unreachable("Unknown setcc condition!");
481 case ISD::SETOEQ: return "setoeq";
482 case ISD::SETOGT: return "setogt";
483 case ISD::SETOGE: return "setoge";
484 case ISD::SETOLT: return "setolt";
485 case ISD::SETOLE: return "setole";
486 case ISD::SETONE: return "setone";
487
488 case ISD::SETO: return "seto";
489 case ISD::SETUO: return "setuo";
490 case ISD::SETUEQ: return "setueq";
491 case ISD::SETUGT: return "setugt";
492 case ISD::SETUGE: return "setuge";
493 case ISD::SETULT: return "setult";
494 case ISD::SETULE: return "setule";
495 case ISD::SETUNE: return "setune";
496
497 case ISD::SETEQ: return "seteq";
498 case ISD::SETGT: return "setgt";
499 case ISD::SETGE: return "setge";
500 case ISD::SETLT: return "setlt";
501 case ISD::SETLE: return "setle";
502 case ISD::SETNE: return "setne";
503
504 case ISD::SETTRUE: return "settrue";
505 case ISD::SETTRUE2: return "settrue2";
506 case ISD::SETFALSE: return "setfalse";
507 case ISD::SETFALSE2: return "setfalse2";
508 }
509 case ISD::VECREDUCE_FADD: return "vecreduce_fadd";
510 case ISD::VECREDUCE_SEQ_FADD: return "vecreduce_seq_fadd";
511 case ISD::VECREDUCE_FMUL: return "vecreduce_fmul";
512 case ISD::VECREDUCE_SEQ_FMUL: return "vecreduce_seq_fmul";
513 case ISD::VECREDUCE_ADD: return "vecreduce_add";
514 case ISD::VECREDUCE_MUL: return "vecreduce_mul";
515 case ISD::VECREDUCE_AND: return "vecreduce_and";
516 case ISD::VECREDUCE_OR: return "vecreduce_or";
517 case ISD::VECREDUCE_XOR: return "vecreduce_xor";
518 case ISD::VECREDUCE_SMAX: return "vecreduce_smax";
519 case ISD::VECREDUCE_SMIN: return "vecreduce_smin";
520 case ISD::VECREDUCE_UMAX: return "vecreduce_umax";
521 case ISD::VECREDUCE_UMIN: return "vecreduce_umin";
522 case ISD::VECREDUCE_FMAX: return "vecreduce_fmax";
523 case ISD::VECREDUCE_FMIN: return "vecreduce_fmin";
524 case ISD::VECREDUCE_FMAXIMUM: return "vecreduce_fmaximum";
525 case ISD::VECREDUCE_FMINIMUM: return "vecreduce_fminimum";
526 case ISD::STACKMAP:
527 return "stackmap";
528 case ISD::PATCHPOINT:
529 return "patchpoint";
530
531 // Vector Predication
532#define BEGIN_REGISTER_VP_SDNODE(SDID, LEGALARG, NAME, ...) \
533 case ISD::SDID: \
534 return #NAME;
535#include "llvm/IR/VPIntrinsics.def"
536 }
537}
538
540 switch (AM) {
541 default: return "";
542 case ISD::PRE_INC: return "<pre-inc>";
543 case ISD::PRE_DEC: return "<pre-dec>";
544 case ISD::POST_INC: return "<post-inc>";
545 case ISD::POST_DEC: return "<post-dec>";
546 }
547}
548
550 return Printable([&Node](raw_ostream &OS) {
551#ifndef NDEBUG
552 OS << 't' << Node.PersistentId;
553#else
554 OS << (const void*)&Node;
555#endif
556 });
557}
558
559// Print the MMO with more information from the SelectionDAG.
561 const MachineFunction *MF, const Module *M,
562 const MachineFrameInfo *MFI,
563 const TargetInstrInfo *TII, LLVMContext &Ctx) {
564 ModuleSlotTracker MST(M);
565 if (MF)
568 MMO.print(OS, MST, SSNs, Ctx, MFI, TII);
569}
570
572 const SelectionDAG *G) {
573 if (G) {
574 const MachineFunction *MF = &G->getMachineFunction();
575 return printMemOperand(OS, MMO, MF, MF->getFunction().getParent(),
576 &MF->getFrameInfo(),
577 G->getSubtarget().getInstrInfo(), *G->getContext());
578 }
579
580 LLVMContext Ctx;
581 return printMemOperand(OS, MMO, /*MF=*/nullptr, /*M=*/nullptr,
582 /*MFI=*/nullptr, /*TII=*/nullptr, Ctx);
583}
584
585#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
586LLVM_DUMP_METHOD void SDNode::dump() const { dump(nullptr); }
587
589 print(dbgs(), G);
590 dbgs() << '\n';
591}
592#endif
593
595 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
596 if (i) OS << ",";
597 if (getValueType(i) == MVT::Other)
598 OS << "ch";
599 else
601 }
602}
603
606 OS << " nuw";
607
609 OS << " nsw";
610
611 if (getFlags().hasExact())
612 OS << " exact";
613
614 if (getFlags().hasDisjoint())
615 OS << " disjoint";
616
617 if (getFlags().hasNonNeg())
618 OS << " nneg";
619
620 if (getFlags().hasNoNaNs())
621 OS << " nnan";
622
623 if (getFlags().hasNoInfs())
624 OS << " ninf";
625
626 if (getFlags().hasNoSignedZeros())
627 OS << " nsz";
628
629 if (getFlags().hasAllowReciprocal())
630 OS << " arcp";
631
632 if (getFlags().hasAllowContract())
633 OS << " contract";
634
635 if (getFlags().hasApproximateFuncs())
636 OS << " afn";
637
638 if (getFlags().hasAllowReassociation())
639 OS << " reassoc";
640
641 if (getFlags().hasNoFPExcept())
642 OS << " nofpexcept";
643
644 if (const MachineSDNode *MN = dyn_cast<MachineSDNode>(this)) {
645 if (!MN->memoperands_empty()) {
646 OS << "<";
647 OS << "Mem:";
648 for (MachineSDNode::mmo_iterator i = MN->memoperands_begin(),
649 e = MN->memoperands_end(); i != e; ++i) {
650 printMemOperand(OS, **i, G);
651 if (std::next(i) != e)
652 OS << " ";
653 }
654 OS << ">";
655 }
656 } else if (const ShuffleVectorSDNode *SVN =
657 dyn_cast<ShuffleVectorSDNode>(this)) {
658 OS << "<";
659 for (unsigned i = 0, e = ValueList[0].getVectorNumElements(); i != e; ++i) {
660 int Idx = SVN->getMaskElt(i);
661 if (i) OS << ",";
662 if (Idx < 0)
663 OS << "u";
664 else
665 OS << Idx;
666 }
667 OS << ">";
668 } else if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
669 OS << '<' << CSDN->getAPIntValue() << '>';
670 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
671 if (&CSDN->getValueAPF().getSemantics() == &APFloat::IEEEsingle())
672 OS << '<' << CSDN->getValueAPF().convertToFloat() << '>';
673 else if (&CSDN->getValueAPF().getSemantics() == &APFloat::IEEEdouble())
674 OS << '<' << CSDN->getValueAPF().convertToDouble() << '>';
675 else {
676 OS << "<APFloat(";
677 CSDN->getValueAPF().bitcastToAPInt().print(OS, false);
678 OS << ")>";
679 }
680 } else if (const GlobalAddressSDNode *GADN =
681 dyn_cast<GlobalAddressSDNode>(this)) {
682 int64_t offset = GADN->getOffset();
683 OS << '<';
684 GADN->getGlobal()->printAsOperand(OS);
685 OS << '>';
686 if (offset > 0)
687 OS << " + " << offset;
688 else
689 OS << " " << offset;
690 if (unsigned int TF = GADN->getTargetFlags())
691 OS << " [TF=" << TF << ']';
692 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
693 OS << "<" << FIDN->getIndex() << ">";
694 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
695 OS << "<" << JTDN->getIndex() << ">";
696 if (unsigned int TF = JTDN->getTargetFlags())
697 OS << " [TF=" << TF << ']';
698 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
699 int offset = CP->getOffset();
700 if (CP->isMachineConstantPoolEntry())
701 OS << "<" << *CP->getMachineCPVal() << ">";
702 else
703 OS << "<" << *CP->getConstVal() << ">";
704 if (offset > 0)
705 OS << " + " << offset;
706 else
707 OS << " " << offset;
708 if (unsigned int TF = CP->getTargetFlags())
709 OS << " [TF=" << TF << ']';
710 } else if (const TargetIndexSDNode *TI = dyn_cast<TargetIndexSDNode>(this)) {
711 OS << "<" << TI->getIndex() << '+' << TI->getOffset() << ">";
712 if (unsigned TF = TI->getTargetFlags())
713 OS << " [TF=" << TF << ']';
714 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
715 OS << "<";
716 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
717 if (LBB)
718 OS << LBB->getName() << " ";
719 OS << (const void*)BBDN->getBasicBlock() << ">";
720 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
721 OS << ' ' << printReg(R->getReg(),
722 G ? G->getSubtarget().getRegisterInfo() : nullptr);
723 } else if (const ExternalSymbolSDNode *ES =
724 dyn_cast<ExternalSymbolSDNode>(this)) {
725 OS << "'" << ES->getSymbol() << "'";
726 if (unsigned int TF = ES->getTargetFlags())
727 OS << " [TF=" << TF << ']';
728 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
729 if (M->getValue())
730 OS << "<" << M->getValue() << ">";
731 else
732 OS << "<null>";
733 } else if (const MDNodeSDNode *MD = dyn_cast<MDNodeSDNode>(this)) {
734 if (MD->getMD())
735 OS << "<" << MD->getMD() << ">";
736 else
737 OS << "<null>";
738 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
739 OS << ":" << N->getVT();
740 }
741 else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
742 OS << "<";
743
744 printMemOperand(OS, *LD->getMemOperand(), G);
745
746 bool doExt = true;
747 switch (LD->getExtensionType()) {
748 default: doExt = false; break;
749 case ISD::EXTLOAD: OS << ", anyext"; break;
750 case ISD::SEXTLOAD: OS << ", sext"; break;
751 case ISD::ZEXTLOAD: OS << ", zext"; break;
752 }
753 if (doExt)
754 OS << " from " << LD->getMemoryVT();
755
756 const char *AM = getIndexedModeName(LD->getAddressingMode());
757 if (*AM)
758 OS << ", " << AM;
759
760 OS << ">";
761 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
762 OS << "<";
763 printMemOperand(OS, *ST->getMemOperand(), G);
764
765 if (ST->isTruncatingStore())
766 OS << ", trunc to " << ST->getMemoryVT();
767
768 const char *AM = getIndexedModeName(ST->getAddressingMode());
769 if (*AM)
770 OS << ", " << AM;
771
772 OS << ">";
773 } else if (const MaskedLoadSDNode *MLd = dyn_cast<MaskedLoadSDNode>(this)) {
774 OS << "<";
775
776 printMemOperand(OS, *MLd->getMemOperand(), G);
777
778 bool doExt = true;
779 switch (MLd->getExtensionType()) {
780 default: doExt = false; break;
781 case ISD::EXTLOAD: OS << ", anyext"; break;
782 case ISD::SEXTLOAD: OS << ", sext"; break;
783 case ISD::ZEXTLOAD: OS << ", zext"; break;
784 }
785 if (doExt)
786 OS << " from " << MLd->getMemoryVT();
787
788 const char *AM = getIndexedModeName(MLd->getAddressingMode());
789 if (*AM)
790 OS << ", " << AM;
791
792 if (MLd->isExpandingLoad())
793 OS << ", expanding";
794
795 OS << ">";
796 } else if (const MaskedStoreSDNode *MSt = dyn_cast<MaskedStoreSDNode>(this)) {
797 OS << "<";
798 printMemOperand(OS, *MSt->getMemOperand(), G);
799
800 if (MSt->isTruncatingStore())
801 OS << ", trunc to " << MSt->getMemoryVT();
802
803 const char *AM = getIndexedModeName(MSt->getAddressingMode());
804 if (*AM)
805 OS << ", " << AM;
806
807 if (MSt->isCompressingStore())
808 OS << ", compressing";
809
810 OS << ">";
811 } else if (const auto *MGather = dyn_cast<MaskedGatherSDNode>(this)) {
812 OS << "<";
813 printMemOperand(OS, *MGather->getMemOperand(), G);
814
815 bool doExt = true;
816 switch (MGather->getExtensionType()) {
817 default: doExt = false; break;
818 case ISD::EXTLOAD: OS << ", anyext"; break;
819 case ISD::SEXTLOAD: OS << ", sext"; break;
820 case ISD::ZEXTLOAD: OS << ", zext"; break;
821 }
822 if (doExt)
823 OS << " from " << MGather->getMemoryVT();
824
825 auto Signed = MGather->isIndexSigned() ? "signed" : "unsigned";
826 auto Scaled = MGather->isIndexScaled() ? "scaled" : "unscaled";
827 OS << ", " << Signed << " " << Scaled << " offset";
828
829 OS << ">";
830 } else if (const auto *MScatter = dyn_cast<MaskedScatterSDNode>(this)) {
831 OS << "<";
832 printMemOperand(OS, *MScatter->getMemOperand(), G);
833
834 if (MScatter->isTruncatingStore())
835 OS << ", trunc to " << MScatter->getMemoryVT();
836
837 auto Signed = MScatter->isIndexSigned() ? "signed" : "unsigned";
838 auto Scaled = MScatter->isIndexScaled() ? "scaled" : "unscaled";
839 OS << ", " << Signed << " " << Scaled << " offset";
840
841 OS << ">";
842 } else if (const MemSDNode *M = dyn_cast<MemSDNode>(this)) {
843 OS << "<";
844 printMemOperand(OS, *M->getMemOperand(), G);
845 if (auto *A = dyn_cast<AtomicSDNode>(M))
846 if (A->getOpcode() == ISD::ATOMIC_LOAD) {
847 bool doExt = true;
848 switch (A->getExtensionType()) {
849 default: doExt = false; break;
850 case ISD::EXTLOAD: OS << ", anyext"; break;
851 case ISD::SEXTLOAD: OS << ", sext"; break;
852 case ISD::ZEXTLOAD: OS << ", zext"; break;
853 }
854 if (doExt)
855 OS << " from " << A->getMemoryVT();
856 }
857 OS << ">";
858 } else if (const BlockAddressSDNode *BA =
859 dyn_cast<BlockAddressSDNode>(this)) {
860 int64_t offset = BA->getOffset();
861 OS << "<";
862 BA->getBlockAddress()->getFunction()->printAsOperand(OS, false);
863 OS << ", ";
864 BA->getBlockAddress()->getBasicBlock()->printAsOperand(OS, false);
865 OS << ">";
866 if (offset > 0)
867 OS << " + " << offset;
868 else
869 OS << " " << offset;
870 if (unsigned int TF = BA->getTargetFlags())
871 OS << " [TF=" << TF << ']';
872 } else if (const AddrSpaceCastSDNode *ASC =
873 dyn_cast<AddrSpaceCastSDNode>(this)) {
874 OS << '['
875 << ASC->getSrcAddressSpace()
876 << " -> "
877 << ASC->getDestAddressSpace()
878 << ']';
879 } else if (const LifetimeSDNode *LN = dyn_cast<LifetimeSDNode>(this)) {
880 if (LN->hasOffset())
881 OS << "<" << LN->getOffset() << " to " << LN->getOffset() + LN->getSize() << ">";
882 } else if (const auto *AA = dyn_cast<AssertAlignSDNode>(this)) {
883 OS << '<' << AA->getAlign().value() << '>';
884 }
885
886 if (VerboseDAGDumping) {
887 if (unsigned Order = getIROrder())
888 OS << " [ORD=" << Order << ']';
889
890 if (getNodeId() != -1)
891 OS << " [ID=" << getNodeId() << ']';
892 if (!(isa<ConstantSDNode>(this) || (isa<ConstantFPSDNode>(this))))
893 OS << " # D:" << isDivergent();
894
895 if (G && !G->GetDbgValues(this).empty()) {
896 OS << " [NoOfDbgValues=" << G->GetDbgValues(this).size() << ']';
897 for (SDDbgValue *Dbg : G->GetDbgValues(this))
898 if (!Dbg->isInvalidated())
899 Dbg->print(OS);
900 } else if (getHasDebugValue())
901 OS << " [NoOfDbgValues>0]";
902
903 if (const auto *MD = G ? G->getPCSections(this) : nullptr) {
904 OS << " [pcsections ";
905 MD->printAsOperand(OS, G->getMachineFunction().getFunction().getParent());
906 OS << ']';
907 }
908 }
909}
910
912 OS << " DbgVal(Order=" << getOrder() << ')';
913 if (isInvalidated())
914 OS << "(Invalidated)";
915 if (isEmitted())
916 OS << "(Emitted)";
917 OS << "(";
918 bool Comma = false;
919 for (const SDDbgOperand &Op : getLocationOps()) {
920 if (Comma)
921 OS << ", ";
922 switch (Op.getKind()) {
924 if (Op.getSDNode())
925 OS << "SDNODE=" << PrintNodeId(*Op.getSDNode()) << ':' << Op.getResNo();
926 else
927 OS << "SDNODE";
928 break;
930 OS << "CONST";
931 break;
933 OS << "FRAMEIX=" << Op.getFrameIx();
934 break;
936 OS << "VREG=" << Op.getVReg();
937 break;
938 }
939 Comma = true;
940 }
941 OS << ")";
942 if (isIndirect()) OS << "(Indirect)";
943 if (isVariadic())
944 OS << "(Variadic)";
945 OS << ":\"" << Var->getName() << '"';
946#ifndef NDEBUG
947 if (Expr->getNumElements())
948 Expr->dump();
949#endif
950}
951
952#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
954 if (isInvalidated())
955 return;
956 print(dbgs());
957 dbgs() << "\n";
958}
959#endif
960
961/// Return true if this node is so simple that we should just print it inline
962/// if it appears as an operand.
963static bool shouldPrintInline(const SDNode &Node, const SelectionDAG *G) {
964 // Avoid lots of cluttering when inline printing nodes with associated
965 // DbgValues in verbose mode.
966 if (VerboseDAGDumping && G && !G->GetDbgValues(&Node).empty())
967 return false;
968 if (Node.getOpcode() == ISD::EntryToken)
969 return false;
970 return Node.getNumOperands() == 0;
971}
972
973#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
974static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
975 for (const SDValue &Op : N->op_values()) {
976 if (shouldPrintInline(*Op.getNode(), G))
977 continue;
978 if (Op.getNode()->hasOneUse())
979 DumpNodes(Op.getNode(), indent+2, G);
980 }
981
982 dbgs().indent(indent);
983 N->dump(G);
984}
985
987 dbgs() << "SelectionDAG has " << AllNodes.size() << " nodes:\n";
988
989 for (const SDNode &N : allnodes()) {
990 if (!N.hasOneUse() && &N != getRoot().getNode() &&
991 (!shouldPrintInline(N, this) || N.use_empty()))
992 DumpNodes(&N, 2, this);
993 }
994
995 if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this);
996 dbgs() << "\n";
997
998 if (VerboseDAGDumping) {
999 if (DbgBegin() != DbgEnd())
1000 dbgs() << "SDDbgValues:\n";
1001 for (auto *Dbg : make_range(DbgBegin(), DbgEnd()))
1002 Dbg->dump();
1004 dbgs() << "Byval SDDbgValues:\n";
1005 for (auto *Dbg : make_range(ByvalParmDbgBegin(), ByvalParmDbgEnd()))
1006 Dbg->dump();
1007 }
1008 dbgs() << "\n";
1009}
1010#endif
1011
1013 OS << PrintNodeId(*this) << ": ";
1014 print_types(OS, G);
1015 OS << " = " << getOperationName(G);
1016 print_details(OS, G);
1017}
1018
1020 const SDValue Value) {
1021 if (!Value.getNode()) {
1022 OS << "<null>";
1023 return false;
1024 }
1025
1026 if (shouldPrintInline(*Value.getNode(), G)) {
1027 OS << Value->getOperationName(G) << ':';
1028 Value->print_types(OS, G);
1029 Value->print_details(OS, G);
1030 return true;
1031 }
1032
1033 OS << PrintNodeId(*Value.getNode());
1034 if (unsigned RN = Value.getResNo())
1035 OS << ':' << RN;
1036 return false;
1037}
1038
1039#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1041
1042static void DumpNodesr(raw_ostream &OS, const SDNode *N, unsigned indent,
1043 const SelectionDAG *G, VisitedSDNodeSet &once) {
1044 if (!once.insert(N).second) // If we've been here before, return now.
1045 return;
1046
1047 // Dump the current SDNode, but don't end the line yet.
1048 OS.indent(indent);
1049 N->printr(OS, G);
1050
1051 // Having printed this SDNode, walk the children:
1052 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
1053 if (i) OS << ",";
1054 OS << " ";
1055
1056 const SDValue Op = N->getOperand(i);
1057 bool printedInline = printOperand(OS, G, Op);
1058 if (printedInline)
1059 once.insert(Op.getNode());
1060 }
1061
1062 OS << "\n";
1063
1064 // Dump children that have grandchildren on their own line(s).
1065 for (const SDValue &Op : N->op_values())
1066 DumpNodesr(OS, Op.getNode(), indent+2, G, once);
1067}
1068
1070 VisitedSDNodeSet once;
1071 DumpNodesr(dbgs(), this, 0, nullptr, once);
1072}
1073
1075 VisitedSDNodeSet once;
1076 DumpNodesr(dbgs(), this, 0, G, once);
1077}
1078#endif
1079
1081 const SelectionDAG *G, unsigned depth,
1082 unsigned indent) {
1083 if (depth == 0)
1084 return;
1085
1086 OS.indent(indent);
1087
1088 N->print(OS, G);
1089
1090 for (const SDValue &Op : N->op_values()) {
1091 // Don't follow chain operands.
1092 if (Op.getValueType() == MVT::Other)
1093 continue;
1094 OS << '\n';
1095 printrWithDepthHelper(OS, Op.getNode(), G, depth - 1, indent + 2);
1096 }
1097}
1098
1100 unsigned depth) const {
1101 printrWithDepthHelper(OS, this, G, depth, 0);
1102}
1103
1105 // Don't print impossibly deep things.
1106 printrWithDepth(OS, G, 10);
1107}
1108
1109#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1111void SDNode::dumprWithDepth(const SelectionDAG *G, unsigned depth) const {
1112 printrWithDepth(dbgs(), G, depth);
1113}
1114
1116 // Don't print impossibly deep things.
1117 dumprWithDepth(G, 10);
1118}
1119#endif
1120
1122 printr(OS, G);
1123 // Under VerboseDAGDumping divergence will be printed always.
1125 OS << " # D:1";
1126 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
1127 if (i) OS << ", "; else OS << " ";
1129 }
1130 if (DebugLoc DL = getDebugLoc()) {
1131 OS << ", ";
1132 DL.print(OS);
1133 }
1134}
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
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
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:529
This file contains the declarations for the subclasses of Constant, which represent the different fla...
static bool hasNoInfs(const TargetOptions &Options, SDValue N)
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
std::string Name
const HexagonInstrInfo * TII
static bool hasNoSignedWrap(BinaryOperator &I)
static bool hasNoUnsignedWrap(BinaryOperator &I)
#define G(x, y, z)
Definition: MD5.cpp:56
This file declares the MachineConstantPool class which is an abstract constant pool to keep track of ...
raw_pwrite_stream & OS
static Printable PrintNodeId(const SDNode &Node)
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 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.
unsigned getNumElements() const
StringRef getName() const
This class represents an Operation in the Expression.
A debug info location.
Definition: DebugLoc.h:33
Module * getParent()
Get the module that this global value is contained inside of...
Definition: GlobalValue.h:656
This is an important class for using LLVM in a threaded context.
Definition: LLVMContext.h:67
This SDNode is used for LIFETIME_START/LIFETIME_END values, which indicate the offet and size that ar...
This class is used to represent ISD::LOAD nodes.
void print(raw_ostream &OS, const SlotIndexes *=nullptr, bool IsStandalone=true) const
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.
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.
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.
void dump() const
User-friendly dump.
Definition: AsmWriter.cpp:5272
Manage lifetime of a slot tracker for printing IR.
void incorporateFunction(const Function &F)
Incorporate the given function.
Definition: AsmWriter.cpp:899
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
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.
void dumprFull(const SelectionDAG *G=nullptr) const
printrFull to dbgs().
int getNodeId() const
Return the unique node id.
void dump() const
Dump this node, for debugging.
unsigned getOpcode() const
Return the SelectionDAG opcode value for this node.
bool isDivergent() const
static const char * getIndexedModeName(ISD::MemIndexedMode AM)
unsigned getIROrder() const
Return the node ordering.
bool getHasDebugValue() const
void dumpr() const
Dump (recursively) this node and its use-def subgraph.
SDNodeFlags getFlags() const
std::string getOperationName(const SelectionDAG *G=nullptr) const
Return the opcode of this operation for printing.
void printrFull(raw_ostream &O, const SelectionDAG *G=nullptr) const
Print a SelectionDAG node and all children down to the leaves.
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
void print(raw_ostream &OS, const SelectionDAG *G=nullptr) const
const DebugLoc & getDebugLoc() const
Return the source location info.
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...
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.
void print_details(raw_ostream &OS, const SelectionDAG *G) const
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.
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
Definition: SelectionDAG.h:225
const SDValue & getRoot() const
Return the root tag of the SelectionDAG.
Definition: SelectionDAG.h:550
SDDbgInfo::DbgIterator ByvalParmDbgEnd() const
SDDbgInfo::DbgIterator ByvalParmDbgBegin() const
SDDbgInfo::DbgIterator DbgEnd() const
SDDbgInfo::DbgIterator DbgBegin() const
iterator_range< allnodes_iterator > allnodes()
Definition: SelectionDAG.h:542
SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, ArrayRef< SDUse > Ops)
Gets or creates the specified node.
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.
Definition: SmallPtrSet.h:342
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
Definition: SmallPtrSet.h:427
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
An SDNode that holds an arbitrary LLVM IR Value.
This class is used to represent ISD::STORE nodes.
std::string str() const
str - Get the contents as an std::string.
Definition: StringRef.h:222
Completely target-dependent object reference.
TargetInstrInfo - Interface to description of machine instruction set.
TargetIntrinsicInfo - 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:74
StringRef getName() const
Return a constant reference to the value's name.
Definition: Value.cpp:309
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
raw_ostream & indent(unsigned NumSpaces)
indent - Insert 'NumSpaces' spaces.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ SETCC
SetCC operator - This evaluates to a true value iff the condition is true.
Definition: ISDOpcodes.h:750
@ MERGE_VALUES
MERGE_VALUES - This node takes multiple discrete operands and returns them all as its individual resu...
Definition: ISDOpcodes.h:236
@ STACKRESTORE
STACKRESTORE has two operands, an input chain and a pointer to restore to it returns an output chain.
Definition: ISDOpcodes.h:1132
@ STACKSAVE
STACKSAVE - STACKSAVE has one operand, an input chain.
Definition: ISDOpcodes.h:1128
@ CTLZ_ZERO_UNDEF
Definition: ISDOpcodes.h:723
@ TargetConstantPool
Definition: ISDOpcodes.h:168
@ CONVERGENCECTRL_ANCHOR
Definition: ISDOpcodes.h:1396
@ MDNODE_SDNODE
MDNODE_SDNODE - This is a node that holdes an MDNode*, which is used to reference metadata in the IR.
Definition: ISDOpcodes.h:1177
@ STRICT_FSETCC
STRICT_FSETCC/STRICT_FSETCCS - Constrained versions of SETCC, used for floating-point operands only.
Definition: ISDOpcodes.h:476
@ DELETED_NODE
DELETED_NODE - This is an illegal value that is used to catch errors.
Definition: ISDOpcodes.h:44
@ SET_FPENV
Sets the current floating-point environment.
Definition: ISDOpcodes.h:1004
@ VECREDUCE_SEQ_FADD
Generic reduction nodes.
Definition: ISDOpcodes.h:1345
@ VECREDUCE_SMIN
Definition: ISDOpcodes.h:1376
@ EH_SJLJ_LONGJMP
OUTCHAIN = EH_SJLJ_LONGJMP(INCHAIN, buffer) This corresponds to the eh.sjlj.longjmp intrinsic.
Definition: ISDOpcodes.h:147
@ FGETSIGN
INT = FGETSIGN(FP) - Return the sign bit of the specified floating point value as an integer 0/1 valu...
Definition: ISDOpcodes.h:497
@ SMUL_LOHI
SMUL_LOHI/UMUL_LOHI - Multiply two integers of type iN, producing a signed/unsigned value of type i[2...
Definition: ISDOpcodes.h:250
@ ATOMIC_LOAD_NAND
Definition: ISDOpcodes.h:1275
@ INSERT_SUBVECTOR
INSERT_SUBVECTOR(VECTOR1, VECTOR2, IDX) - Returns a vector with VECTOR2 inserted into VECTOR1.
Definition: ISDOpcodes.h:559
@ JUMP_TABLE_DEBUG_INFO
JUMP_TABLE_DEBUG_INFO - Jumptable debug info.
Definition: ISDOpcodes.h:1066
@ BSWAP
Byte Swap and Counting operators.
Definition: ISDOpcodes.h:714
@ SMULFIX
RESULT = [US]MULFIX(LHS, RHS, SCALE) - Perform fixed point multiplication on 2 integers with the same...
Definition: ISDOpcodes.h:367
@ VAEND
VAEND, VASTART - VAEND and VASTART have three operands: an input chain, pointer, and a SRCVALUE.
Definition: ISDOpcodes.h:1161
@ TargetBlockAddress
Definition: ISDOpcodes.h:170
@ ConstantFP
Definition: ISDOpcodes.h:77
@ ATOMIC_LOAD_MAX
Definition: ISDOpcodes.h:1277
@ ATOMIC_STORE
OUTCHAIN = ATOMIC_STORE(INCHAIN, ptr, val) This corresponds to "store atomic" instruction.
Definition: ISDOpcodes.h:1247
@ STRICT_FCEIL
Definition: ISDOpcodes.h:426
@ ATOMIC_LOAD_UMIN
Definition: ISDOpcodes.h:1278
@ ADDC
Carry-setting nodes for multiple precision addition and subtraction.
Definition: ISDOpcodes.h:269
@ FRAME_TO_ARGS_OFFSET
FRAME_TO_ARGS_OFFSET - This node represents offset from frame pointer to first (possible) on-stack ar...
Definition: ISDOpcodes.h:124
@ RESET_FPENV
Set floating-point environment to default state.
Definition: ISDOpcodes.h:1008
@ FMAD
FMAD - Perform a * b + c, while getting the same result as the separately rounded operations.
Definition: ISDOpcodes.h:487
@ FMAXNUM_IEEE
Definition: ISDOpcodes.h:985
@ ADD
Simple integer binary arithmetic operators.
Definition: ISDOpcodes.h:239
@ LOAD
LOAD and STORE have token chains as their first operand, then the same operands as an LLVM load/store...
Definition: ISDOpcodes.h:1037
@ SMULFIXSAT
Same as the corresponding unsaturated fixed point instructions, but the result is clamped between the...
Definition: ISDOpcodes.h:373
@ SET_FPMODE
Sets the current dynamic floating-point control modes.
Definition: ISDOpcodes.h:1027
@ ANY_EXTEND
ANY_EXTEND - Used for integer types. The high bits are undefined.
Definition: ISDOpcodes.h:783
@ FMA
FMA - Perform a * b + c with no intermediate rounding step.
Definition: ISDOpcodes.h:483
@ INTRINSIC_VOID
OUTCHAIN = INTRINSIC_VOID(INCHAIN, INTRINSICID, arg1, arg2, ...) This node represents a target intrin...
Definition: ISDOpcodes.h:199
@ RETURNADDR
Definition: ISDOpcodes.h:95
@ EH_SJLJ_SETUP_DISPATCH
OUTCHAIN = EH_SJLJ_SETUP_DISPATCH(INCHAIN) The target initializes the dispatch table here.
Definition: ISDOpcodes.h:151
@ GlobalAddress
Definition: ISDOpcodes.h:78
@ ATOMIC_CMP_SWAP_WITH_SUCCESS
Val, Success, OUTCHAIN = ATOMIC_CMP_SWAP_WITH_SUCCESS(INCHAIN, ptr, cmp, swap) N.b.
Definition: ISDOpcodes.h:1260
@ STRICT_FMINIMUM
Definition: ISDOpcodes.h:436
@ SINT_TO_FP
[SU]INT_TO_FP - These operators convert integers (whose interpreted sign depends on the first letter)...
Definition: ISDOpcodes.h:790
@ CONCAT_VECTORS
CONCAT_VECTORS(VECTOR0, VECTOR1, ...) - Given a number of values of vector type with the same length ...
Definition: ISDOpcodes.h:543
@ VECREDUCE_FMAX
FMIN/FMAX nodes can have flags, for NaN/NoNaN variants.
Definition: ISDOpcodes.h:1361
@ FADD
Simple binary floating point operators.
Definition: ISDOpcodes.h:390
@ VECREDUCE_FMAXIMUM
FMINIMUM/FMAXIMUM nodes propatate NaNs and signed zeroes using the llvm.minimum and llvm....
Definition: ISDOpcodes.h:1365
@ ABS
ABS - Determine the unsigned absolute value of a signed integer value of the same bitwidth.
Definition: ISDOpcodes.h:688
@ MEMBARRIER
MEMBARRIER - Compiler barrier only; generate a no-op.
Definition: ISDOpcodes.h:1234
@ ATOMIC_FENCE
OUTCHAIN = ATOMIC_FENCE(INCHAIN, ordering, scope) This corresponds to the fence instruction.
Definition: ISDOpcodes.h:1239
@ RESET_FPMODE
Sets default dynamic floating-point control modes.
Definition: ISDOpcodes.h:1031
@ SIGN_EXTEND_VECTOR_INREG
SIGN_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register sign-extension of the low ...
Definition: ISDOpcodes.h:820
@ SDIVREM
SDIVREM/UDIVREM - Divide two integers and produce both a quotient and remainder result.
Definition: ISDOpcodes.h:255
@ VECREDUCE_SMAX
Definition: ISDOpcodes.h:1375
@ STRICT_FSETCCS
Definition: ISDOpcodes.h:477
@ FP16_TO_FP
FP16_TO_FP, FP_TO_FP16 - These operators are used to perform promotions and truncation for half-preci...
Definition: ISDOpcodes.h:913
@ STRICT_FLOG2
Definition: ISDOpcodes.h:421
@ ATOMIC_LOAD_OR
Definition: ISDOpcodes.h:1273
@ BITCAST
BITCAST - This operator converts between integer, vector and FP values, as if the value was stored to...
Definition: ISDOpcodes.h:903
@ BUILD_PAIR
BUILD_PAIR - This is the opposite of EXTRACT_ELEMENT in some ways.
Definition: ISDOpcodes.h:229
@ ATOMIC_LOAD_XOR
Definition: ISDOpcodes.h:1274
@ INIT_TRAMPOLINE
INIT_TRAMPOLINE - This corresponds to the init_trampoline intrinsic.
Definition: ISDOpcodes.h:1205
@ FLDEXP
FLDEXP - ldexp, inspired by libm (op0 * 2**op1).
Definition: ISDOpcodes.h:939
@ SDIVFIX
RESULT = [US]DIVFIX(LHS, RHS, SCALE) - Perform fixed point division on 2 integers with the same width...
Definition: ISDOpcodes.h:380
@ STRICT_FSQRT
Constrained versions of libm-equivalent floating point intrinsics.
Definition: ISDOpcodes.h:411
@ BUILTIN_OP_END
BUILTIN_OP_END - This must be the last enum value in this list.
Definition: ISDOpcodes.h:1406
@ ATOMIC_LOAD_FADD
Definition: ISDOpcodes.h:1280
@ GlobalTLSAddress
Definition: ISDOpcodes.h:79
@ SRCVALUE
SRCVALUE - This is a node type that holds a Value* that is used to make reference to a value in the L...
Definition: ISDOpcodes.h:1173
@ FrameIndex
Definition: ISDOpcodes.h:80
@ EH_LABEL
EH_LABEL - Represents a label in mid basic block used to track locations needed for debug and excepti...
Definition: ISDOpcodes.h:1108
@ EH_RETURN
OUTCHAIN = EH_RETURN(INCHAIN, OFFSET, HANDLER) - This node represents 'eh_return' gcc dwarf builtin,...
Definition: ISDOpcodes.h:135
@ ANNOTATION_LABEL
ANNOTATION_LABEL - Represents a mid basic block label used by annotations.
Definition: ISDOpcodes.h:1114
@ SET_ROUNDING
Set rounding mode.
Definition: ISDOpcodes.h:885
@ CONVERGENCECTRL_GLUE
Definition: ISDOpcodes.h:1402
@ SIGN_EXTEND
Conversion operators.
Definition: ISDOpcodes.h:774
@ AVGCEILS
AVGCEILS/AVGCEILU - Rounding averaging add - Add two integers using an integer of type i[N+2],...
Definition: ISDOpcodes.h:662
@ STRICT_UINT_TO_FP
Definition: ISDOpcodes.h:450
@ SCALAR_TO_VECTOR
SCALAR_TO_VECTOR(VAL) - This represents the operation of loading a scalar value into element 0 of the...
Definition: ISDOpcodes.h:620
@ PREALLOCATED_SETUP
Definition: ISDOpcodes.h:1166
@ READSTEADYCOUNTER
READSTEADYCOUNTER - This corresponds to the readfixedcounter intrinsic.
Definition: ISDOpcodes.h:1194
@ ADDROFRETURNADDR
ADDROFRETURNADDR - Represents the llvm.addressofreturnaddress intrinsic.
Definition: ISDOpcodes.h:101
@ TargetExternalSymbol
Definition: ISDOpcodes.h:169
@ CONVERGENCECTRL_ENTRY
Definition: ISDOpcodes.h:1397
@ BR
Control flow instructions. These all have token chains.
Definition: ISDOpcodes.h:1053
@ VECREDUCE_FADD
These reductions have relaxed evaluation order semantics, and have a single vector operand.
Definition: ISDOpcodes.h:1358
@ CTTZ_ZERO_UNDEF
Bit counting operators with an undefined result for zero inputs.
Definition: ISDOpcodes.h:722
@ TargetJumpTable
Definition: ISDOpcodes.h:167
@ TargetIndex
TargetIndex - Like a constant pool entry, but with completely target-dependent semantics.
Definition: ISDOpcodes.h:177
@ WRITE_REGISTER
Definition: ISDOpcodes.h:119
@ PREFETCH
PREFETCH - This corresponds to a prefetch intrinsic.
Definition: ISDOpcodes.h:1227
@ VECREDUCE_FMIN
Definition: ISDOpcodes.h:1362
@ FSINCOS
FSINCOS - Compute both fsin and fcos as a single operation.
Definition: ISDOpcodes.h:994
@ 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:758
@ STRICT_LROUND
Definition: ISDOpcodes.h:431
@ FNEG
Perform various unary floating-point operations inspired by libm.
Definition: ISDOpcodes.h:930
@ BR_CC
BR_CC - Conditional branch.
Definition: ISDOpcodes.h:1083
@ SSUBO
Same for subtraction.
Definition: ISDOpcodes.h:327
@ ATOMIC_LOAD_MIN
Definition: ISDOpcodes.h:1276
@ PREALLOCATED_ARG
Definition: ISDOpcodes.h:1169
@ BRIND
BRIND - Indirect branch.
Definition: ISDOpcodes.h:1058
@ BR_JT
BR_JT - Jumptable branch.
Definition: ISDOpcodes.h:1062
@ GC_TRANSITION_START
GC_TRANSITION_START/GC_TRANSITION_END - These operators mark the beginning and end of GC transition s...
Definition: ISDOpcodes.h:1319
@ VECTOR_INTERLEAVE
VECTOR_INTERLEAVE(VEC1, VEC2) - Returns two vectors with all input and output vectors having the same...
Definition: ISDOpcodes.h:586
@ STEP_VECTOR
STEP_VECTOR(IMM) - Returns a scalable vector whose lanes are comprised of a linear sequence of unsign...
Definition: ISDOpcodes.h:646
@ FCANONICALIZE
Returns platform specific canonical encoding of a floating point number.
Definition: ISDOpcodes.h:500
@ IS_FPCLASS
Performs a check of floating point class property, defined by IEEE-754.
Definition: ISDOpcodes.h:507
@ SSUBSAT
RESULT = [US]SUBSAT(LHS, RHS) - Perform saturation subtraction on 2 integers with the same bit width ...
Definition: ISDOpcodes.h:349
@ SELECT
Select(COND, TRUEVAL, FALSEVAL).
Definition: ISDOpcodes.h:727
@ STRICT_FPOWI
Definition: ISDOpcodes.h:413
@ ATOMIC_LOAD
Val, OUTCHAIN = ATOMIC_LOAD(INCHAIN, ptr) This corresponds to "load atomic" instruction.
Definition: ISDOpcodes.h:1243
@ UNDEF
UNDEF - An undefined node.
Definition: ISDOpcodes.h:211
@ VECREDUCE_UMAX
Definition: ISDOpcodes.h:1377
@ RegisterMask
Definition: ISDOpcodes.h:75
@ EXTRACT_ELEMENT
EXTRACT_ELEMENT - This is used to get the lower or upper (determined by a Constant,...
Definition: ISDOpcodes.h:222
@ SPLAT_VECTOR
SPLAT_VECTOR(VAL) - Returns a vector with the scalar value VAL duplicated in all lanes.
Definition: ISDOpcodes.h:627
@ AssertAlign
AssertAlign - These nodes record if a register contains a value that has a known alignment and the tr...
Definition: ISDOpcodes.h:68
@ VACOPY
VACOPY - VACOPY has 5 operands: an input chain, a destination pointer, a source pointer,...
Definition: ISDOpcodes.h:1157
@ BasicBlock
Various leaf nodes.
Definition: ISDOpcodes.h:71
@ CopyFromReg
CopyFromReg - This node indicates that the input value is a virtual or physical register that is defi...
Definition: ISDOpcodes.h:208
@ SADDO
RESULT, BOOL = [SU]ADDO(LHS, RHS) - Overflow-aware nodes for addition.
Definition: ISDOpcodes.h:323
@ TargetGlobalAddress
TargetGlobalAddress - Like GlobalAddress, but the DAG does no folding or anything else with this node...
Definition: ISDOpcodes.h:164
@ STRICT_FTRUNC
Definition: ISDOpcodes.h:430
@ VECREDUCE_ADD
Integer reductions may have a result type larger than the vector element type.
Definition: ISDOpcodes.h:1370
@ 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:880
@ STRICT_FP_TO_FP16
Definition: ISDOpcodes.h:916
@ MULHU
MULHU/MULHS - Multiply high - Multiply two integers of type iN, producing an unsigned/signed value of...
Definition: ISDOpcodes.h:651
@ CLEANUPRET
CLEANUPRET - Represents a return from a cleanup block funclet.
Definition: ISDOpcodes.h:1123
@ GET_FPMODE
Reads the current dynamic floating-point control modes.
Definition: ISDOpcodes.h:1022
@ STRICT_FP16_TO_FP
Definition: ISDOpcodes.h:915
@ GET_FPENV
Gets the current floating-point environment.
Definition: ISDOpcodes.h:999
@ SHL
Shift and rotation operations.
Definition: ISDOpcodes.h:705
@ ATOMIC_LOAD_CLR
Definition: ISDOpcodes.h:1272
@ VECTOR_SHUFFLE
VECTOR_SHUFFLE(VEC1, VEC2) - Returns a vector, of the same type as VEC1/VEC2.
Definition: ISDOpcodes.h:600
@ ATOMIC_LOAD_AND
Definition: ISDOpcodes.h:1271
@ EXTRACT_SUBVECTOR
EXTRACT_SUBVECTOR(VECTOR, IDX) - Returns a subvector from VECTOR.
Definition: ISDOpcodes.h:573
@ FMINNUM_IEEE
FMINNUM_IEEE/FMAXNUM_IEEE - Perform floating-point minimumNumber or maximumNumber on two values,...
Definition: ISDOpcodes.h:984
@ STRICT_FMAXIMUM
Definition: ISDOpcodes.h:435
@ EntryToken
EntryToken - This is the marker used to indicate the start of a region.
Definition: ISDOpcodes.h:47
@ STRICT_FMAXNUM
Definition: ISDOpcodes.h:424
@ READ_REGISTER
READ_REGISTER, WRITE_REGISTER - This node represents llvm.register on the DAG, which implements the n...
Definition: ISDOpcodes.h:118
@ EXTRACT_VECTOR_ELT
EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR identified by the (potentially...
Definition: ISDOpcodes.h:535
@ CopyToReg
CopyToReg - This node has three operands: a chain, a register number to set to this value,...
Definition: ISDOpcodes.h:203
@ ZERO_EXTEND
ZERO_EXTEND - Used for integer types, zeroing the new bits.
Definition: ISDOpcodes.h:780
@ TargetConstantFP
Definition: ISDOpcodes.h:159
@ DEBUGTRAP
DEBUGTRAP - Trap intended to get the attention of a debugger.
Definition: ISDOpcodes.h:1217
@ FP_TO_UINT_SAT
Definition: ISDOpcodes.h:856
@ STRICT_FMINNUM
Definition: ISDOpcodes.h:425
@ SELECT_CC
Select with condition operator - This selects between a true value and a false value (ops #2 and #3) ...
Definition: ISDOpcodes.h:742
@ VSCALE
VSCALE(IMM) - Returns the runtime scaling factor used to calculate the number of elements within a sc...
Definition: ISDOpcodes.h:1335
@ ATOMIC_CMP_SWAP
Val, OUTCHAIN = ATOMIC_CMP_SWAP(INCHAIN, ptr, cmp, swap) For double-word atomic operations: ValLo,...
Definition: ISDOpcodes.h:1254
@ ATOMIC_LOAD_UMAX
Definition: ISDOpcodes.h:1279
@ LOCAL_RECOVER
LOCAL_RECOVER - Represents the llvm.localrecover intrinsic.
Definition: ISDOpcodes.h:114
@ FMINNUM
FMINNUM/FMAXNUM - Perform floating-point minimum or maximum on two values.
Definition: ISDOpcodes.h:971
@ UBSANTRAP
UBSANTRAP - Trap with an immediate describing the kind of sanitizer failure.
Definition: ISDOpcodes.h:1221
@ SSHLSAT
RESULT = [US]SHLSAT(LHS, RHS) - Perform saturation left shift.
Definition: ISDOpcodes.h:359
@ SMULO
Same for multiplication.
Definition: ISDOpcodes.h:331
@ DYNAMIC_STACKALLOC
DYNAMIC_STACKALLOC - Allocate some number of bytes on the stack aligned to a specified boundary.
Definition: ISDOpcodes.h:1047
@ STRICT_LRINT
Definition: ISDOpcodes.h:433
@ TargetFrameIndex
Definition: ISDOpcodes.h:166
@ ConstantPool
Definition: ISDOpcodes.h:82
@ ANY_EXTEND_VECTOR_INREG
ANY_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register any-extension of the low la...
Definition: ISDOpcodes.h:809
@ SIGN_EXTEND_INREG
SIGN_EXTEND_INREG - This operator atomically performs a SHL/SRA pair to sign extend a small value in ...
Definition: ISDOpcodes.h:798
@ SMIN
[US]{MIN/MAX} - Binary minimum or maximum of signed or unsigned integers.
Definition: ISDOpcodes.h:674
@ VECTOR_REVERSE
VECTOR_REVERSE(VECTOR) - Returns a vector, of the same type as VECTOR, whose elements are shuffled us...
Definition: ISDOpcodes.h:591
@ LIFETIME_START
This corresponds to the llvm.lifetime.
Definition: ISDOpcodes.h:1310
@ SDIVFIXSAT
Same as the corresponding unsaturated fixed point instructions, but the result is clamped between the...
Definition: ISDOpcodes.h:386
@ FP_EXTEND
X = FP_EXTEND(Y) - Extend a smaller FP type into a larger FP type.
Definition: ISDOpcodes.h:888
@ GLOBAL_OFFSET_TABLE
The address of the GOT.
Definition: ISDOpcodes.h:87
@ STRICT_FROUND
Definition: ISDOpcodes.h:428
@ VSELECT
Select with a vector condition (op #0) and two vector operands (ops #1 and #2), returning a vector re...
Definition: ISDOpcodes.h:736
@ UADDO_CARRY
Carry-using nodes for multiple precision addition and subtraction.
Definition: ISDOpcodes.h:303
@ STRICT_SINT_TO_FP
STRICT_[US]INT_TO_FP - Convert a signed or unsigned integer to a floating point value.
Definition: ISDOpcodes.h:449
@ HANDLENODE
HANDLENODE node - Used as a handle for various purposes.
Definition: ISDOpcodes.h:1197
@ STRICT_BF16_TO_FP
Definition: ISDOpcodes.h:924
@ VECREDUCE_UMIN
Definition: ISDOpcodes.h:1378
@ PCMARKER
PCMARKER - This corresponds to the pcmarker intrinsic.
Definition: ISDOpcodes.h:1180
@ STRICT_FFLOOR
Definition: ISDOpcodes.h:427
@ STRICT_FROUNDEVEN
Definition: ISDOpcodes.h:429
@ INLINEASM_BR
INLINEASM_BR - Branching version of inline asm. Used by asm-goto.
Definition: ISDOpcodes.h:1103
@ EH_DWARF_CFA
EH_DWARF_CFA - This node represents the pointer to the DWARF Canonical Frame Address (CFA),...
Definition: ISDOpcodes.h:129
@ BF16_TO_FP
BF16_TO_FP, FP_TO_BF16 - These operators are used to perform promotions and truncation for bfloat16.
Definition: ISDOpcodes.h:922
@ FRAMEADDR
FRAMEADDR, RETURNADDR - These nodes represent llvm.frameaddress and llvm.returnaddress on the DAG.
Definition: ISDOpcodes.h:94
@ ATOMIC_LOAD_UDEC_WRAP
Definition: ISDOpcodes.h:1285
@ ATOMIC_LOAD_ADD
Definition: ISDOpcodes.h:1269
@ STRICT_FP_TO_UINT
Definition: ISDOpcodes.h:443
@ STRICT_FP_ROUND
X = STRICT_FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision ...
Definition: ISDOpcodes.h:465
@ STRICT_FP_TO_SINT
STRICT_FP_TO_[US]INT - Convert a floating point value to a signed or unsigned integer.
Definition: ISDOpcodes.h:442
@ FMINIMUM
FMINIMUM/FMAXIMUM - NaN-propagating minimum/maximum that also treat -0.0 as less than 0....
Definition: ISDOpcodes.h:990
@ ATOMIC_LOAD_SUB
Definition: ISDOpcodes.h:1270
@ FP_TO_SINT
FP_TO_[US]INT - Convert a floating point value to a signed or unsigned integer.
Definition: ISDOpcodes.h:836
@ READCYCLECOUNTER
READCYCLECOUNTER - This corresponds to the readcyclecounter intrinsic.
Definition: ISDOpcodes.h:1188
@ TargetConstant
TargetConstant* - Like Constant*, but the DAG does not do any folding, simplification,...
Definition: ISDOpcodes.h:158
@ STRICT_FP_EXTEND
X = STRICT_FP_EXTEND(Y) - Extend a smaller FP type into a larger FP type.
Definition: ISDOpcodes.h:470
@ AND
Bitwise operators - logical and, logical or, logical xor.
Definition: ISDOpcodes.h:680
@ TRAP
TRAP - Trapping instruction.
Definition: ISDOpcodes.h:1214
@ INTRINSIC_WO_CHAIN
RESULT = INTRINSIC_WO_CHAIN(INTRINSICID, arg1, arg2, ...) This node represents a target intrinsic fun...
Definition: ISDOpcodes.h:184
@ GET_FPENV_MEM
Gets the current floating-point environment.
Definition: ISDOpcodes.h:1013
@ PSEUDO_PROBE
Pseudo probe for AutoFDO, as a place holder in a basic block to improve the sample counts quality.
Definition: ISDOpcodes.h:1330
@ STRICT_FP_TO_BF16
Definition: ISDOpcodes.h:925
@ CARRY_FALSE
CARRY_FALSE - This node is used when folding other nodes, like ADDC/SUBC, which indicate the carry re...
Definition: ISDOpcodes.h:260
@ AVGFLOORS
AVGFLOORS/AVGFLOORU - Averaging add - Add two integers using an integer of type i[N+1],...
Definition: ISDOpcodes.h:657
@ VECREDUCE_FMUL
Definition: ISDOpcodes.h:1359
@ ADDE
Carry-using nodes for multiple precision addition and subtraction.
Definition: ISDOpcodes.h:279
@ STRICT_FADD
Constrained versions of the binary floating point operators.
Definition: ISDOpcodes.h:400
@ STRICT_FLOG10
Definition: ISDOpcodes.h:420
@ SPLAT_VECTOR_PARTS
SPLAT_VECTOR_PARTS(SCALAR1, SCALAR2, ...) - Returns a vector with the scalar values joined together a...
Definition: ISDOpcodes.h:636
@ INSERT_VECTOR_ELT
INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR with the element at IDX replaced with VAL.
Definition: ISDOpcodes.h:524
@ TokenFactor
TokenFactor - This node takes multiple tokens as input and produces a single token result.
Definition: ISDOpcodes.h:52
@ STRICT_LLRINT
Definition: ISDOpcodes.h:434
@ VECTOR_SPLICE
VECTOR_SPLICE(VEC1, VEC2, IMM) - Returns a subvector of the same type as VEC1/VEC2 from CONCAT_VECTOR...
Definition: ISDOpcodes.h:612
@ STRICT_FEXP2
Definition: ISDOpcodes.h:418
@ ATOMIC_SWAP
Val, OUTCHAIN = ATOMIC_SWAP(INCHAIN, ptr, amt) Val, OUTCHAIN = ATOMIC_LOAD_[OpName](INCHAIN,...
Definition: ISDOpcodes.h:1268
@ ExternalSymbol
Definition: ISDOpcodes.h:83
@ FFREXP
FFREXP - frexp, extract fractional and exponent component of a floating-point value.
Definition: ISDOpcodes.h:944
@ FP_ROUND
X = FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision of the ...
Definition: ISDOpcodes.h:869
@ SPONENTRY
SPONENTRY - Represents the llvm.sponentry intrinsic.
Definition: ISDOpcodes.h:106
@ STRICT_FLDEXP
Definition: ISDOpcodes.h:414
@ STRICT_LLROUND
Definition: ISDOpcodes.h:432
@ CONVERGENCECTRL_LOOP
Definition: ISDOpcodes.h:1398
@ ZERO_EXTEND_VECTOR_INREG
ZERO_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register zero-extension of the low ...
Definition: ISDOpcodes.h:831
@ ADDRSPACECAST
ADDRSPACECAST - This operator converts between pointers of different address spaces.
Definition: ISDOpcodes.h:907
@ INLINEASM
INLINEASM - Represents an inline asm block.
Definition: ISDOpcodes.h:1100
@ STRICT_FNEARBYINT
Definition: ISDOpcodes.h:423
@ 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:855
@ VECREDUCE_FMINIMUM
Definition: ISDOpcodes.h:1366
@ EH_SJLJ_SETJMP
RESULT, OUTCHAIN = EH_SJLJ_SETJMP(INCHAIN, buffer) This corresponds to the eh.sjlj....
Definition: ISDOpcodes.h:141
@ TRUNCATE
TRUNCATE - Completely drop the high bits.
Definition: ISDOpcodes.h:786
@ VAARG
VAARG - VAARG has four operands: an input chain, a pointer, a SRCVALUE, and the alignment.
Definition: ISDOpcodes.h:1152
@ BRCOND
BRCOND - Conditional branch.
Definition: ISDOpcodes.h:1076
@ BlockAddress
Definition: ISDOpcodes.h:84
@ VECREDUCE_SEQ_FMUL
Definition: ISDOpcodes.h:1346
@ SHL_PARTS
SHL_PARTS/SRA_PARTS/SRL_PARTS - These operators are used for expanded integer shift operations.
Definition: ISDOpcodes.h:763
@ CATCHRET
CATCHRET - Represents a return from a catch block funclet.
Definition: ISDOpcodes.h:1119
@ GC_TRANSITION_END
Definition: ISDOpcodes.h:1320
@ AssertSext
AssertSext, AssertZext - These nodes record if a register contains a value that has already been zero...
Definition: ISDOpcodes.h:61
@ ATOMIC_LOAD_UINC_WRAP
Definition: ISDOpcodes.h:1284
@ FCOPYSIGN
FCOPYSIGN(X, Y) - Return the value of X with the sign of Y.
Definition: ISDOpcodes.h:493
@ SADDSAT
RESULT = [US]ADDSAT(LHS, RHS) - Perform saturation addition on 2 integers with the same bit width (W)...
Definition: ISDOpcodes.h:340
@ AssertZext
Definition: ISDOpcodes.h:62
@ CALLSEQ_START
CALLSEQ_START/CALLSEQ_END - These operators mark the beginning and end of a call sequence,...
Definition: ISDOpcodes.h:1146
@ STRICT_FRINT
Definition: ISDOpcodes.h:422
@ VECTOR_DEINTERLEAVE
VECTOR_DEINTERLEAVE(VEC1, VEC2) - Returns two vectors with all input and output vectors having the sa...
Definition: ISDOpcodes.h:580
@ GET_DYNAMIC_AREA_OFFSET
GET_DYNAMIC_AREA_OFFSET - get offset from native SP to the address of the most recent dynamic alloca.
Definition: ISDOpcodes.h:1326
@ SET_FPENV_MEM
Sets the current floating point environment.
Definition: ISDOpcodes.h:1018
@ ADJUST_TRAMPOLINE
ADJUST_TRAMPOLINE - This corresponds to the adjust_trampoline intrinsic.
Definition: ISDOpcodes.h:1211
@ SADDO_CARRY
Carry-using overflow-aware nodes for multiple precision addition and subtraction.
Definition: ISDOpcodes.h:313
@ INTRINSIC_W_CHAIN
RESULT,OUTCHAIN = INTRINSIC_W_CHAIN(INCHAIN, INTRINSICID, arg1, ...) This node represents a target in...
Definition: ISDOpcodes.h:192
@ TargetGlobalTLSAddress
Definition: ISDOpcodes.h:165
@ BUILD_VECTOR
BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a fixed-width vector with the specified,...
Definition: ISDOpcodes.h:515
MemIndexedMode
MemIndexedMode enum - This enum defines the load / store indexed addressing modes.
Definition: ISDOpcodes.h:1478
StringRef getBaseName(ID id)
Return the LLVM name for an intrinsic, without encoded types for overloading, such as "llvm....
Definition: Function.cpp:1018
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
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
static const fltSemantics & IEEEsingle() LLVM_READNONE
Definition: APFloat.cpp:249
static const fltSemantics & IEEEdouble() LLVM_READNONE
Definition: APFloat.cpp:250
std::string getEVTString() const
This function returns value type as a string, e.g. "i32".
Definition: ValueTypes.cpp:161