LLVM 22.0.0git
SelectionDAGBuilder.h
Go to the documentation of this file.
1//===- SelectionDAGBuilder.h - Selection-DAG building -----------*- C++ -*-===//
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 routines for translating from LLVM IR into SelectionDAG IR.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_LIB_CODEGEN_SELECTIONDAG_SELECTIONDAGBUILDER_H
14#define LLVM_LIB_CODEGEN_SELECTIONDAG_SELECTIONDAGBUILDER_H
15
16#include "StatepointLowering.h"
17#include "llvm/ADT/ArrayRef.h"
18#include "llvm/ADT/DenseMap.h"
19#include "llvm/ADT/MapVector.h"
29#include "llvm/IR/DebugLoc.h"
30#include "llvm/IR/Instruction.h"
34#include <algorithm>
35#include <cassert>
36#include <cstdint>
37#include <optional>
38#include <utility>
39#include <vector>
40
41namespace llvm {
42
43class AAResults;
44class AllocaInst;
46class AtomicRMWInst;
47class AssumptionCache;
48class BasicBlock;
49class BranchInst;
50class CallInst;
51class CallBrInst;
52class CatchPadInst;
53class CatchReturnInst;
54class CatchSwitchInst;
55class CleanupPadInst;
57class Constant;
59class DataLayout;
60class DIExpression;
61class DILocalVariable;
62class DILocation;
63class FenceInst;
65class GCFunctionInfo;
66class GCRelocateInst;
67class GCResultInst;
69class IndirectBrInst;
70class InvokeInst;
71class LandingPadInst;
72class LLVMContext;
73class LoadInst;
75class PHINode;
76class ResumeInst;
77class ReturnInst;
78class SDDbgValue;
79class SelectionDAG;
80class StoreInst;
82class SwitchInst;
84class TargetMachine;
85class Type;
86class VAArgInst;
87class UnreachableInst;
88class Use;
89class User;
90class Value;
91
92//===----------------------------------------------------------------------===//
93/// SelectionDAGBuilder - This is the common target-independent lowering
94/// implementation that is parameterized by a TargetLowering object.
95///
97 /// The current instruction being visited.
98 const Instruction *CurInst = nullptr;
99
101
102 /// Maps argument value for unused arguments. This is used
103 /// to preserve debug information for incoming arguments.
104 DenseMap<const Value*, SDValue> UnusedArgNodeMap;
105
106 /// Helper type for DanglingDebugInfoMap.
107 class DanglingDebugInfo {
108 unsigned SDNodeOrder = 0;
109
110 public:
111 DILocalVariable *Variable;
113 DebugLoc dl;
114 DanglingDebugInfo() = default;
115 DanglingDebugInfo(DILocalVariable *Var, DIExpression *Expr, DebugLoc DL,
116 unsigned SDNO)
117 : SDNodeOrder(SDNO), Variable(Var), Expression(Expr),
118 dl(std::move(DL)) {}
119
120 DILocalVariable *getVariable() const { return Variable; }
121 DIExpression *getExpression() const { return Expression; }
122 DebugLoc getDebugLoc() const { return dl; }
123 unsigned getSDNodeOrder() const { return SDNodeOrder; }
124
125 /// Helper for printing DanglingDebugInfo. This hoop-jumping is to
126 /// store a Value pointer, so that we can print a whole DDI as one object.
127 /// Call SelectionDAGBuilder::printDDI instead of using directly.
128 struct Print {
129 Print(const Value *V, const DanglingDebugInfo &DDI) : V(V), DDI(DDI) {}
130 const Value *V;
131 const DanglingDebugInfo &DDI;
134 OS << "DDI(var=" << *P.DDI.getVariable();
135 if (P.V)
136 OS << ", val=" << *P.V;
137 else
138 OS << ", val=nullptr";
139
140 OS << ", expr=" << *P.DDI.getExpression()
141 << ", order=" << P.DDI.getSDNodeOrder()
142 << ", loc=" << P.DDI.getDebugLoc() << ")";
143 return OS;
144 }
145 };
146 };
147
148 /// Returns an object that defines `raw_ostream &operator<<` for printing.
149 /// Usage example:
150 //// errs() << printDDI(MyDanglingInfo) << " is dangling\n";
151 DanglingDebugInfo::Print printDDI(const Value *V,
152 const DanglingDebugInfo &DDI) {
153 return DanglingDebugInfo::Print(V, DDI);
154 }
155
156 /// Helper type for DanglingDebugInfoMap.
157 typedef std::vector<DanglingDebugInfo> DanglingDebugInfoVector;
158
159 /// Keeps track of dbg_values for which we have not yet seen the referent.
160 /// We defer handling these until we do see it.
161 MapVector<const Value*, DanglingDebugInfoVector> DanglingDebugInfoMap;
162
163 /// Cache the module flag for whether we should use debug-info assignment
164 /// tracking.
165 bool AssignmentTrackingEnabled = false;
166
167public:
168 /// Loads are not emitted to the program immediately. We bunch them up and
169 /// then emit token factor nodes when possible. This allows us to get simple
170 /// disambiguation between loads without worrying about alias analysis.
172
173 /// State used while lowering a statepoint sequence (gc_statepoint,
174 /// gc_relocate, and gc_result). See StatepointLowering.hpp/cpp for details.
176
177private:
178 /// CopyToReg nodes that copy values to virtual registers for export to other
179 /// blocks need to be emitted before any terminator instruction, but they have
180 /// no other ordering requirements. We bunch them up and the emit a single
181 /// tokenfactor for them just before terminator instructions.
182 SmallVector<SDValue, 8> PendingExports;
183
184 /// Similar to loads, nodes corresponding to constrained FP intrinsics are
185 /// bunched up and emitted when necessary. These can be moved across each
186 /// other and any (normal) memory operation (load or store), but not across
187 /// calls or instructions having unspecified side effects. As a special
188 /// case, constrained FP intrinsics using fpexcept.strict may not be deleted
189 /// even if otherwise unused, so they need to be chained before any
190 /// terminator instruction (like PendingExports). We track the latter
191 /// set of nodes in a separate list.
192 SmallVector<SDValue, 8> PendingConstrainedFP;
193 SmallVector<SDValue, 8> PendingConstrainedFPStrict;
194
195 /// Update root to include all chains from the Pending list.
196 SDValue updateRoot(SmallVectorImpl<SDValue> &Pending);
197
198 /// Given a node representing a floating-point operation and its specified
199 /// exception behavior, this either updates the root or stores the node in
200 /// a list to be added to chains latter.
201 void pushFPOpOutChain(SDValue Result, fp::ExceptionBehavior EB);
202
203 /// A unique monotonically increasing number used to order the SDNodes we
204 /// create.
205 unsigned SDNodeOrder;
206
207 /// Emit comparison and split W into two subtrees.
208 void splitWorkItem(SwitchCG::SwitchWorkList &WorkList,
209 const SwitchCG::SwitchWorkListItem &W, Value *Cond,
210 MachineBasicBlock *SwitchMBB);
211
212 /// Lower W.
213 void lowerWorkItem(SwitchCG::SwitchWorkListItem W, Value *Cond,
214 MachineBasicBlock *SwitchMBB,
215 MachineBasicBlock *DefaultMBB);
216
217 /// Peel the top probability case if it exceeds the threshold
219 peelDominantCaseCluster(const SwitchInst &SI,
221 BranchProbability &PeeledCaseProb);
222
223private:
224 const TargetMachine &TM;
225
226public:
227 /// Lowest valid SDNodeOrder. The special case 0 is reserved for scheduling
228 /// nodes without a corresponding SDNode.
229 static const unsigned LowestSDNodeOrder = 1;
230
233 AssumptionCache *AC = nullptr;
234 const TargetLibraryInfo *LibInfo = nullptr;
235
237 public:
240
244 SDB->addSuccessorWithProb(Src, Dst, Prob);
245 }
246
247 private:
248 SelectionDAGBuilder *SDB = nullptr;
249 };
250
251 // Data related to deferred switch lowerings. Used to construct additional
252 // Basic Blocks in SelectionDAGISel::FinishBasicBlock.
253 std::unique_ptr<SDAGSwitchLowering> SL;
254
255 /// A StackProtectorDescriptor structure used to communicate stack protector
256 /// information in between SelectBasicBlock and FinishBasicBlock.
258
259 // Emit PHI-node-operand constants only once even if used by multiple
260 // PHI nodes.
262
263 /// Information about the function as a whole.
265
266 /// Information about the swifterror values used throughout the function.
268
269 /// Garbage collection metadata for the function.
270 GCFunctionInfo *GFI = nullptr;
271
272 /// Map a landing pad to the call site indexes.
274
275 /// This is set to true if a call in the current block has been translated as
276 /// a tail call. In this case, no subsequent DAG nodes should be created.
277 bool HasTailCall = false;
278
280
283 : SDNodeOrder(LowestSDNodeOrder), TM(dag.getTarget()), DAG(dag),
284 SL(std::make_unique<SDAGSwitchLowering>(this, funcinfo)),
285 FuncInfo(funcinfo), SwiftError(swifterror) {}
286
288 const TargetLibraryInfo *li);
289
290 /// Clear out the current SelectionDAG and the associated state and prepare
291 /// this SelectionDAGBuilder object to be used for a new block. This doesn't
292 /// clear out information about additional blocks that are needed to complete
293 /// switch lowering or PHI node updating; that information is cleared out as
294 /// it is consumed.
295 void clear();
296
297 /// Clear the dangling debug information map. This function is separated from
298 /// the clear so that debug information that is dangling in a basic block can
299 /// be properly resolved in a different basic block. This allows the
300 /// SelectionDAG to resolve dangling debug information attached to PHI nodes.
302
303 /// Return the current virtual root of the Selection DAG, flushing any
304 /// PendingLoad items. This must be done before emitting a store or any other
305 /// memory node that may need to be ordered after any prior load instructions.
307
308 /// Return the current virtual root of the Selection DAG, flushing
309 /// PendingConstrainedFP or PendingConstrainedFPStrict items if the new
310 /// exception behavior (specified by \p EB) differs from that of the pending
311 /// instructions. This must be done before emitting constrained FP operation
312 /// call.
314
315 /// Similar to getMemoryRoot, but also flushes PendingConstrainedFP(Strict)
316 /// items. This must be done before emitting any call other any other node
317 /// that may need to be ordered after FP instructions due to other side
318 /// effects.
320
321 /// Similar to getRoot, but instead of flushing all the PendingLoad items,
322 /// flush all the PendingExports (and PendingConstrainedFPStrict) items.
323 /// It is necessary to do this before emitting a terminator instruction.
325
327 return SDLoc(CurInst, SDNodeOrder);
328 }
329
331 return CurInst ? CurInst->getDebugLoc() : DebugLoc();
332 }
333
335 ISD::NodeType ExtendType = ISD::ANY_EXTEND);
336
337 void visit(const Instruction &I);
338 void visitDbgInfo(const Instruction &I);
339
340 void visit(unsigned Opcode, const User &I);
341
342 /// If there was virtual register allocated for the value V emit CopyFromReg
343 /// of the specified type Ty. Return empty SDValue() otherwise.
344 SDValue getCopyFromRegs(const Value *V, Type *Ty);
345
346 /// Register a dbg_value which relies on a Value which we have not yet seen.
348 DILocalVariable *Var, DIExpression *Expr,
349 bool IsVariadic, DebugLoc DL, unsigned Order);
350
351 /// If we have dangling debug info that describes \p Variable, or an
352 /// overlapping part of variable considering the \p Expr, then this method
353 /// will drop that debug info as it isn't valid any longer.
354 void dropDanglingDebugInfo(const DILocalVariable *Variable,
355 const DIExpression *Expr);
356
357 /// If we saw an earlier dbg_value referring to V, generate the debug data
358 /// structures now that we've seen its definition.
359 void resolveDanglingDebugInfo(const Value *V, SDValue Val);
360
361 /// For the given dangling debuginfo record, perform last-ditch efforts to
362 /// resolve the debuginfo to something that is represented in this DAG. If
363 /// this cannot be done, produce an Undef debug value record.
364 void salvageUnresolvedDbgValue(const Value *V, DanglingDebugInfo &DDI);
365
366 /// For a given list of Values, attempt to create and record a SDDbgValue in
367 /// the SelectionDAG.
369 DIExpression *Expr, DebugLoc DbgLoc, unsigned Order,
370 bool IsVariadic);
371
372 /// Create a record for a kill location debug intrinsic.
374 DebugLoc DbgLoc, unsigned Order);
375
378
379 /// Evict any dangling debug information, attempting to salvage it first.
381
382 SDValue getValue(const Value *V);
383
385 SDValue getValueImpl(const Value *V);
386
387 void setValue(const Value *V, SDValue NewN) {
388 SDValue &N = NodeMap[V];
389 assert(!N.getNode() && "Already set a value for this node!");
390 N = NewN;
391 }
392
393 void setUnusedArgValue(const Value *V, SDValue NewN) {
394 SDValue &N = UnusedArgNodeMap[V];
395 assert(!N.getNode() && "Already set a value for this node!");
396 N = NewN;
397 }
398
401 Instruction::BinaryOps Opc, const Value *Lhs, const Value *Rhs,
403
406 MachineBasicBlock *SwitchBB,
408 BranchProbability FProb, bool InvertCond);
411 MachineBasicBlock *CurBB,
412 MachineBasicBlock *SwitchBB,
414 bool InvertCond);
415 bool ShouldEmitAsBranches(const std::vector<SwitchCG::CaseBlock> &Cases);
416 bool isExportableFromCurrentBlock(const Value *V, const BasicBlock *FromBB);
417 void CopyToExportRegsIfNeeded(const Value *V);
418 void ExportFromCurrentBlock(const Value *V);
419 void LowerCallTo(const CallBase &CB, SDValue Callee, bool IsTailCall,
420 bool IsMustTailCall, const BasicBlock *EHPadBB = nullptr,
421 const TargetLowering::PtrAuthInfo *PAI = nullptr);
422
423 // Check some of the target-independent constraints for tail calls. This does
424 // not iterate over the call arguments.
425 bool canTailCall(const CallBase &CB) const;
426
427 // Lower range metadata from 0 to N to assert zext to an integer of nearest
428 // floor power of two.
430 SDValue Op);
431
432 // Lower nofpclass attributes to AssertNoFPClass
434 const Instruction &I, SDValue Op);
435
437 const CallBase *Call, unsigned ArgIdx,
438 unsigned NumArgs, SDValue Callee,
439 Type *ReturnTy, AttributeSet RetAttrs,
440 bool IsPatchPoint);
441
442 std::pair<SDValue, SDValue>
444 const BasicBlock *EHPadBB = nullptr);
445
446 /// When an MBB was split during scheduling, update the
447 /// references that need to refer to the last resulting block.
449
450 /// Describes a gc.statepoint or a gc.statepoint like thing for the purposes
451 /// of lowering into a STATEPOINT node.
453 /// Bases[i] is the base pointer for Ptrs[i]. Together they denote the set
454 /// of gc pointers this STATEPOINT has to relocate.
457
458 /// The set of gc.relocate calls associated with this gc.statepoint.
460
461 /// The full list of gc-live arguments to the gc.statepoint being lowered.
463
464 /// The gc.statepoint instruction.
465 const Instruction *StatepointInstr = nullptr;
466
467 /// The list of gc transition arguments present in the gc.statepoint being
468 /// lowered.
470
471 /// The ID that the resulting STATEPOINT instruction has to report.
473
474 /// Information regarding the underlying call instruction.
476
477 /// The deoptimization state associated with this gc.statepoint call, if
478 /// any.
480
481 /// Flags associated with the meta arguments being lowered.
483
484 /// The number of patchable bytes the call needs to get lowered into.
485 unsigned NumPatchBytes = -1;
486
487 /// The exception handling unwind destination, in case this represents an
488 /// invoke of gc.statepoint.
489 const BasicBlock *EHPadBB = nullptr;
490
492 };
493
494 /// Lower \p SLI into a STATEPOINT instruction.
495 SDValue LowerAsSTATEPOINT(StatepointLoweringInfo &SI);
496
497 // This function is responsible for the whole statepoint lowering process.
498 // It uniformly handles invoke and call statepoints.
500 const BasicBlock *EHPadBB = nullptr);
501
503 const BasicBlock *EHPadBB);
504
505 void LowerDeoptimizeCall(const CallInst *CI);
507
509 const BasicBlock *EHPadBB,
510 bool VarArgDisallowed,
511 bool ForceVoidReturnTy);
512
514 const BasicBlock *EHPadBB);
515
516 /// Returns the type of FrameIndex and TargetFrameIndex nodes.
518 return DAG.getTargetLoweringInfo().getFrameIndexTy(DAG.getDataLayout());
519 }
520
521private:
522 // Terminator instructions.
523 void visitRet(const ReturnInst &I);
524 void visitBr(const BranchInst &I);
525 void visitSwitch(const SwitchInst &I);
526 void visitIndirectBr(const IndirectBrInst &I);
527 void visitUnreachable(const UnreachableInst &I);
528 void visitCleanupRet(const CleanupReturnInst &I);
529 void visitCatchSwitch(const CatchSwitchInst &I);
530 void visitCatchRet(const CatchReturnInst &I);
531 void visitCatchPad(const CatchPadInst &I);
532 void visitCleanupPad(const CleanupPadInst &CPI);
533
534 BranchProbability getEdgeProbability(const MachineBasicBlock *Src,
535 const MachineBasicBlock *Dst) const;
536 void addSuccessorWithProb(
539
540public:
543 MachineBasicBlock *ParentBB);
546 MachineBasicBlock *SwitchBB);
548 BranchProbability BranchProbToNext, Register Reg,
553 MachineBasicBlock *SwitchBB);
554
555private:
556 // These all get lowered before this pass.
557 void visitInvoke(const InvokeInst &I);
558 void visitCallBr(const CallBrInst &I);
559 void visitCallBrLandingPad(const CallInst &I);
560 void visitResume(const ResumeInst &I);
561
562 void visitUnary(const User &I, unsigned Opcode);
563 void visitFNeg(const User &I) { visitUnary(I, ISD::FNEG); }
564
565 void visitBinary(const User &I, unsigned Opcode);
566 void visitShift(const User &I, unsigned Opcode);
567 void visitAdd(const User &I) { visitBinary(I, ISD::ADD); }
568 void visitFAdd(const User &I) { visitBinary(I, ISD::FADD); }
569 void visitSub(const User &I) { visitBinary(I, ISD::SUB); }
570 void visitFSub(const User &I) { visitBinary(I, ISD::FSUB); }
571 void visitMul(const User &I) { visitBinary(I, ISD::MUL); }
572 void visitFMul(const User &I) { visitBinary(I, ISD::FMUL); }
573 void visitURem(const User &I) { visitBinary(I, ISD::UREM); }
574 void visitSRem(const User &I) { visitBinary(I, ISD::SREM); }
575 void visitFRem(const User &I) { visitBinary(I, ISD::FREM); }
576 void visitUDiv(const User &I) { visitBinary(I, ISD::UDIV); }
577 void visitSDiv(const User &I);
578 void visitFDiv(const User &I) { visitBinary(I, ISD::FDIV); }
579 void visitAnd (const User &I) { visitBinary(I, ISD::AND); }
580 void visitOr (const User &I) { visitBinary(I, ISD::OR); }
581 void visitXor (const User &I) { visitBinary(I, ISD::XOR); }
582 void visitShl (const User &I) { visitShift(I, ISD::SHL); }
583 void visitLShr(const User &I) { visitShift(I, ISD::SRL); }
584 void visitAShr(const User &I) { visitShift(I, ISD::SRA); }
585 void visitICmp(const ICmpInst &I);
586 void visitFCmp(const FCmpInst &I);
587 // Visit the conversion instructions
588 void visitTrunc(const User &I);
589 void visitZExt(const User &I);
590 void visitSExt(const User &I);
591 void visitFPTrunc(const User &I);
592 void visitFPExt(const User &I);
593 void visitFPToUI(const User &I);
594 void visitFPToSI(const User &I);
595 void visitUIToFP(const User &I);
596 void visitSIToFP(const User &I);
597 void visitPtrToAddr(const User &I);
598 void visitPtrToInt(const User &I);
599 void visitIntToPtr(const User &I);
600 void visitBitCast(const User &I);
601 void visitAddrSpaceCast(const User &I);
602
603 void visitExtractElement(const User &I);
604 void visitInsertElement(const User &I);
605 void visitShuffleVector(const User &I);
606
607 void visitExtractValue(const ExtractValueInst &I);
608 void visitInsertValue(const InsertValueInst &I);
609 void visitLandingPad(const LandingPadInst &LP);
610
611 void visitGetElementPtr(const User &I);
612 void visitSelect(const User &I);
613
614 void visitAlloca(const AllocaInst &I);
615 void visitLoad(const LoadInst &I);
616 void visitStore(const StoreInst &I);
617 void visitMaskedLoad(const CallInst &I, bool IsExpanding = false);
618 void visitMaskedStore(const CallInst &I, bool IsCompressing = false);
619 void visitMaskedGather(const CallInst &I);
620 void visitMaskedScatter(const CallInst &I);
621 void visitAtomicCmpXchg(const AtomicCmpXchgInst &I);
622 void visitAtomicRMW(const AtomicRMWInst &I);
623 void visitFence(const FenceInst &I);
624 void visitPHI(const PHINode &I);
625 void visitCall(const CallInst &I);
626 bool visitMemCmpBCmpCall(const CallInst &I);
627 bool visitMemPCpyCall(const CallInst &I);
628 bool visitMemChrCall(const CallInst &I);
629 bool visitStrCpyCall(const CallInst &I, bool isStpcpy);
630 bool visitStrCmpCall(const CallInst &I);
631 bool visitStrLenCall(const CallInst &I);
632 bool visitStrNLenCall(const CallInst &I);
633 bool visitUnaryFloatCall(const CallInst &I, unsigned Opcode);
634 bool visitBinaryFloatCall(const CallInst &I, unsigned Opcode);
635 void visitAtomicLoad(const LoadInst &I);
636 void visitAtomicStore(const StoreInst &I);
637 void visitLoadFromSwiftError(const LoadInst &I);
638 void visitStoreToSwiftError(const StoreInst &I);
639 void visitFreeze(const FreezeInst &I);
640
641 void visitInlineAsm(const CallBase &Call,
642 const BasicBlock *EHPadBB = nullptr);
643
644 bool visitEntryValueDbgValue(ArrayRef<const Value *> Values,
645 DILocalVariable *Variable, DIExpression *Expr,
646 DebugLoc DbgLoc);
647 void visitIntrinsicCall(const CallInst &I, unsigned Intrinsic);
648 void visitTargetIntrinsic(const CallInst &I, unsigned Intrinsic);
649 void visitConstrainedFPIntrinsic(const ConstrainedFPIntrinsic &FPI);
650 void visitConvergenceControl(const CallInst &I, unsigned Intrinsic);
651 void visitVectorHistogram(const CallInst &I, unsigned IntrinsicID);
652 void visitVectorExtractLastActive(const CallInst &I, unsigned Intrinsic);
653 void visitVPLoad(const VPIntrinsic &VPIntrin, EVT VT,
654 const SmallVectorImpl<SDValue> &OpValues);
655 void visitVPLoadFF(const VPIntrinsic &VPIntrin, EVT VT, EVT EVLVT,
656 const SmallVectorImpl<SDValue> &OpValues);
657 void visitVPStore(const VPIntrinsic &VPIntrin,
658 const SmallVectorImpl<SDValue> &OpValues);
659 void visitVPGather(const VPIntrinsic &VPIntrin, EVT VT,
660 const SmallVectorImpl<SDValue> &OpValues);
661 void visitVPScatter(const VPIntrinsic &VPIntrin,
662 const SmallVectorImpl<SDValue> &OpValues);
663 void visitVPStridedLoad(const VPIntrinsic &VPIntrin, EVT VT,
664 const SmallVectorImpl<SDValue> &OpValues);
665 void visitVPStridedStore(const VPIntrinsic &VPIntrin,
666 const SmallVectorImpl<SDValue> &OpValues);
667 void visitVPCmp(const VPCmpIntrinsic &VPIntrin);
668 void visitVectorPredicationIntrinsic(const VPIntrinsic &VPIntrin);
669
670 void visitVAStart(const CallInst &I);
671 void visitVAArg(const VAArgInst &I);
672 void visitVAEnd(const CallInst &I);
673 void visitVACopy(const CallInst &I);
674 void visitStackmap(const CallInst &I);
675 void visitPatchpoint(const CallBase &CB, const BasicBlock *EHPadBB = nullptr);
676
677 // These two are implemented in StatepointLowering.cpp
678 void visitGCRelocate(const GCRelocateInst &Relocate);
679 void visitGCResult(const GCResultInst &I);
680
681 void visitVectorReduce(const CallInst &I, unsigned Intrinsic);
682 void visitVectorReverse(const CallInst &I);
683 void visitVectorSplice(const CallInst &I);
684 void visitVectorInterleave(const CallInst &I, unsigned Factor);
685 void visitVectorDeinterleave(const CallInst &I, unsigned Factor);
686 void visitStepVector(const CallInst &I);
687
688 void visitUserOp1(const Instruction &I) {
689 llvm_unreachable("UserOp1 should not exist at instruction selection time!");
690 }
691 void visitUserOp2(const Instruction &I) {
692 llvm_unreachable("UserOp2 should not exist at instruction selection time!");
693 }
694
695 void processIntegerCallValue(const Instruction &I,
696 SDValue Value, bool IsSigned);
697
698 void HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB);
699
700 void emitInlineAsmError(const CallBase &Call, const Twine &Message);
701
702 /// An enum that states to emit func argument dbg value the kind of intrinsic
703 /// it originally had. This controls the internal behavior of
704 /// EmitFuncArgumentDbgValue.
705 enum class FuncArgumentDbgValueKind {
706 Value, // This was originally a llvm.dbg.value.
707 Declare, // This was originally a llvm.dbg.declare.
708 };
709
710 /// If V is an function argument then create corresponding DBG_VALUE machine
711 /// instruction for it now. At the end of instruction selection, they will be
712 /// inserted to the entry BB.
713 bool EmitFuncArgumentDbgValue(const Value *V, DILocalVariable *Variable,
714 DIExpression *Expr, DILocation *DL,
715 FuncArgumentDbgValueKind Kind,
716 const SDValue &N);
717
718 /// Return the next block after MBB, or nullptr if there is none.
719 MachineBasicBlock *NextBlock(MachineBasicBlock *MBB);
720
721 /// Update the DAG and DAG builder with the relevant information after
722 /// a new root node has been created which could be a tail call.
723 void updateDAGForMaybeTailCall(SDValue MaybeTC);
724
725 /// Return the appropriate SDDbgValue based on N.
726 SDDbgValue *getDbgValue(SDValue N, DILocalVariable *Variable,
727 DIExpression *Expr, const DebugLoc &dl,
728 unsigned DbgSDNodeOrder);
729
730 SDValue lowerStartEH(SDValue Chain, const BasicBlock *EHPadBB,
731 MCSymbol *&BeginLabel);
732 SDValue lowerEndEH(SDValue Chain, const InvokeInst *II,
733 const BasicBlock *EHPadBB, MCSymbol *BeginLabel);
734
735 std::pair<bool, bool> getTargetIntrinsicCallProperties(const CallBase &I);
736 SmallVector<SDValue, 8> getTargetIntrinsicOperands(
737 const CallBase &I, bool HasChain, bool OnlyLoad,
738 TargetLowering::IntrinsicInfo *TgtMemIntrinsicInfo = nullptr);
739 SDVTList getTargetIntrinsicVTList(const CallBase &I, bool HasChain);
740 SDValue getTargetNonMemIntrinsicNode(const Type &IntrinsicVT, bool HasChain,
742 const SDVTList &VTs);
743 SDValue handleTargetIntrinsicRet(const CallBase &I, bool HasChain,
744 bool OnlyLoad, SDValue Result);
745};
746
747/// This struct represents the registers (physical or virtual)
748/// that a particular set of values is assigned, and the type information about
749/// the value. The most common situation is to represent one value at a time,
750/// but struct or array values are handled element-wise as multiple values. The
751/// splitting of aggregates is performed recursively, so that we never have
752/// aggregate-typed registers. The values at this point do not necessarily have
753/// legal types, so each value may require one or more registers of some legal
754/// type.
755///
757 /// The value types of the values, which may not be legal, and
758 /// may need be promoted or synthesized from one or more registers.
760
761 /// The value types of the registers. This is the same size as ValueVTs and it
762 /// records, for each value, what the type of the assigned register or
763 /// registers are. (Individual values are never synthesized from more than one
764 /// type of register.)
765 ///
766 /// With virtual registers, the contents of RegVTs is redundant with TLI's
767 /// getRegisterType member function, however when with physical registers
768 /// it is necessary to have a separate record of the types.
770
771 /// This list holds the registers assigned to the values.
772 /// Each legal or promoted value requires one register, and each
773 /// expanded value requires multiple registers.
775
776 /// This list holds the number of registers for each value.
778
779 /// Records if this value needs to be treated in an ABI dependant manner,
780 /// different to normal type legalization.
781 std::optional<CallingConv::ID> CallConv;
782
783 RegsForValue() = default;
784 RegsForValue(const SmallVector<Register, 4> &regs, MVT regvt, EVT valuevt,
785 std::optional<CallingConv::ID> CC = std::nullopt);
786 RegsForValue(LLVMContext &Context, const TargetLowering &TLI,
787 const DataLayout &DL, Register Reg, Type *Ty,
788 std::optional<CallingConv::ID> CC);
789
790 bool isABIMangled() const { return CallConv.has_value(); }
791
792 /// Add the specified values to this one.
793 void append(const RegsForValue &RHS) {
794 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
795 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
796 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
797 RegCount.push_back(RHS.Regs.size());
798 }
799
800 /// Emit a series of CopyFromReg nodes that copies from this value and returns
801 /// the result as a ValueVTs value. This uses Chain/Flag as the input and
802 /// updates them for the output Chain/Flag. If the Flag pointer is NULL, no
803 /// flag is used.
805 const SDLoc &dl, SDValue &Chain, SDValue *Glue,
806 const Value *V = nullptr) const;
807
808 /// Emit a series of CopyToReg nodes that copies the specified value into the
809 /// registers specified by this object. This uses Chain/Flag as the input and
810 /// updates them for the output Chain/Flag. If the Flag pointer is nullptr, no
811 /// flag is used. If V is not nullptr, then it is used in printing better
812 /// diagnostic messages on error.
813 void getCopyToRegs(SDValue Val, SelectionDAG &DAG, const SDLoc &dl,
814 SDValue &Chain, SDValue *Glue, const Value *V = nullptr,
815 ISD::NodeType PreferredExtendType = ISD::ANY_EXTEND) const;
816
817 /// Add this value to the specified inlineasm node operand list. This adds the
818 /// code marker, matching input operand index (if applicable), and includes
819 /// the number of values added into it.
820 void AddInlineAsmOperands(InlineAsm::Kind Code, bool HasMatching,
821 unsigned MatchingIdx, const SDLoc &dl,
822 SelectionDAG &DAG, std::vector<SDValue> &Ops) const;
823
824 /// Check if the total RegCount is greater than one.
825 bool occupiesMultipleRegs() const {
826 return std::accumulate(RegCount.begin(), RegCount.end(), 0) > 1;
827 }
828
829 /// Return a list of registers and their sizes.
831};
832
833} // end namespace llvm
834
835#endif // LLVM_LIB_CODEGEN_SELECTIONDAG_SELECTIONDAGBUILDER_H
return SDValue()
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This file defines the DenseMap class.
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
#define I(x, y, z)
Definition MD5.cpp:57
static DebugLoc getDebugLoc(MachineBasicBlock::instr_iterator FirstMI, MachineBasicBlock::instr_iterator LastMI)
Return the first DebugLoc that has line number information, given a range of instructions.
Register Reg
This file implements a map that provides insertion order iteration.
uint64_t IntrinsicInst * II
#define P(N)
const SmallVectorImpl< MachineOperand > MachineBasicBlock * TBB
const SmallVectorImpl< MachineOperand > & Cond
This file defines the SmallVector class.
This file describes how to lower LLVM code to machine code.
Value * RHS
an instruction to allocate memory on the stack
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
A cache of @llvm.assume calls within a function.
An instruction that atomically checks whether a specified value is in a memory location,...
an instruction that atomically reads a memory location, combines it with another value,...
This class holds the attributes for a particular argument, parameter, function, or return value.
Definition Attributes.h:361
LLVM Basic Block Representation.
Definition BasicBlock.h:62
This class is a wrapper over an AAResults, and it is intended to be used only when there are no IR ch...
Conditional or Unconditional Branch instruction.
static BranchProbability getUnknown()
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
CallBr instruction, tracking function calls that may not return control but instead transfer it to a ...
This class represents a function call, abstracting a target machine's calling convention.
This is an important base class in LLVM.
Definition Constant.h:43
This is the common base class for constrained floating point intrinsics.
DWARF expression.
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:63
A debug info location.
Definition DebugLoc.h:124
Class representing an expression and its matching format.
An instruction for ordering other memory operations.
FunctionLoweringInfo - This contains information that is global to a function that is used when lower...
Garbage collection metadata for a single function.
Definition GCMetadata.h:80
Represents calls to the gc.relocate intrinsic.
Represents calls to the gc.result intrinsic.
Represents a gc.statepoint intrinsic call.
Definition Statepoint.h:61
Indirect Branch Instruction.
Invoke instruction.
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
The landingpad instruction holds all of the information necessary to generate correct exception handl...
An instruction for reading from memory.
Machine Value Type.
Wrapper class representing virtual and physical registers.
Definition Register.h:20
Resume the propagation of an exception.
Return a value (possibly void), from a function.
Holds the information from a dbg_value node through SDISel.
Wrapper class for IR location info (IR ordering and DebugLoc) to be passed into SDNode creation funct...
Unlike LLVM values, Selection DAG nodes may return multiple values as the result of a computation.
SDAGSwitchLowering(SelectionDAGBuilder *sdb, FunctionLoweringInfo &funcinfo)
void addSuccessorWithProb(MachineBasicBlock *Src, MachineBasicBlock *Dst, BranchProbability Prob=BranchProbability::getUnknown()) override
SDValue getValue(const Value *V)
getValue - Return an SDValue for the given Value.
DenseMap< const Constant *, Register > ConstantsOut
void addDanglingDebugInfo(SmallVectorImpl< Value * > &Values, DILocalVariable *Var, DIExpression *Expr, bool IsVariadic, DebugLoc DL, unsigned Order)
Register a dbg_value which relies on a Value which we have not yet seen.
void visitDbgInfo(const Instruction &I)
void clearDanglingDebugInfo()
Clear the dangling debug information map.
StackProtectorDescriptor SPDescriptor
A StackProtectorDescriptor structure used to communicate stack protector information in between Selec...
void LowerCallTo(const CallBase &CB, SDValue Callee, bool IsTailCall, bool IsMustTailCall, const BasicBlock *EHPadBB=nullptr, const TargetLowering::PtrAuthInfo *PAI=nullptr)
void clear()
Clear out the current SelectionDAG and the associated state and prepare this SelectionDAGBuilder obje...
MVT getFrameIndexTy()
Returns the type of FrameIndex and TargetFrameIndex nodes.
void visitBitTestHeader(SwitchCG::BitTestBlock &B, MachineBasicBlock *SwitchBB)
visitBitTestHeader - This function emits necessary code to produce value suitable for "bit tests"
void LowerStatepoint(const GCStatepointInst &I, const BasicBlock *EHPadBB=nullptr)
std::unique_ptr< SDAGSwitchLowering > SL
SDValue lowerRangeToAssertZExt(SelectionDAG &DAG, const Instruction &I, SDValue Op)
bool HasTailCall
This is set to true if a call in the current block has been translated as a tail call.
bool ShouldEmitAsBranches(const std::vector< SwitchCG::CaseBlock > &Cases)
If the set of cases should be emitted as a series of branches, return true.
void EmitBranchForMergedCondition(const Value *Cond, MachineBasicBlock *TBB, MachineBasicBlock *FBB, MachineBasicBlock *CurBB, MachineBasicBlock *SwitchBB, BranchProbability TProb, BranchProbability FProb, bool InvertCond)
EmitBranchForMergedCondition - Helper method for FindMergedConditions.
void LowerDeoptimizeCall(const CallInst *CI)
void LowerCallSiteWithDeoptBundle(const CallBase *Call, SDValue Callee, const BasicBlock *EHPadBB)
SwiftErrorValueTracking & SwiftError
Information about the swifterror values used throughout the function.
SDValue getNonRegisterValue(const Value *V)
getNonRegisterValue - Return an SDValue for the given Value, but don't look in FuncInfo....
DenseMap< MachineBasicBlock *, SmallVector< unsigned, 4 > > LPadToCallSiteMap
Map a landing pad to the call site indexes.
void LowerCallSiteWithDeoptBundleImpl(const CallBase *Call, SDValue Callee, const BasicBlock *EHPadBB, bool VarArgDisallowed, bool ForceVoidReturnTy)
SDValue lowerNoFPClassToAssertNoFPClass(SelectionDAG &DAG, const Instruction &I, SDValue Op)
void handleDebugDeclare(Value *Address, DILocalVariable *Variable, DIExpression *Expression, DebugLoc DL)
void setUnusedArgValue(const Value *V, SDValue NewN)
bool shouldKeepJumpConditionsTogether(const FunctionLoweringInfo &FuncInfo, const BranchInst &I, Instruction::BinaryOps Opc, const Value *Lhs, const Value *Rhs, TargetLoweringBase::CondMergingParams Params) const
StatepointLoweringState StatepointLowering
State used while lowering a statepoint sequence (gc_statepoint, gc_relocate, and gc_result).
void visitBitTestCase(SwitchCG::BitTestBlock &BB, MachineBasicBlock *NextMBB, BranchProbability BranchProbToNext, Register Reg, SwitchCG::BitTestCase &B, MachineBasicBlock *SwitchBB)
visitBitTestCase - this function produces one "bit test"
bool canTailCall(const CallBase &CB) const
SelectionDAGBuilder(SelectionDAG &dag, FunctionLoweringInfo &funcinfo, SwiftErrorValueTracking &swifterror, CodeGenOptLevel ol)
void populateCallLoweringInfo(TargetLowering::CallLoweringInfo &CLI, const CallBase *Call, unsigned ArgIdx, unsigned NumArgs, SDValue Callee, Type *ReturnTy, AttributeSet RetAttrs, bool IsPatchPoint)
Populate a CallLowerinInfo (into CLI) based on the properties of the call being lowered.
void CopyValueToVirtualRegister(const Value *V, Register Reg, ISD::NodeType ExtendType=ISD::ANY_EXTEND)
void salvageUnresolvedDbgValue(const Value *V, DanglingDebugInfo &DDI)
For the given dangling debuginfo record, perform last-ditch efforts to resolve the debuginfo to somet...
SmallVector< SDValue, 8 > PendingLoads
Loads are not emitted to the program immediately.
GCFunctionInfo * GFI
Garbage collection metadata for the function.
SDValue getRoot()
Similar to getMemoryRoot, but also flushes PendingConstrainedFP(Strict) items.
void ExportFromCurrentBlock(const Value *V)
ExportFromCurrentBlock - If this condition isn't known to be exported from the current basic block,...
void init(GCFunctionInfo *gfi, BatchAAResults *BatchAA, AssumptionCache *AC, const TargetLibraryInfo *li)
void resolveOrClearDbgInfo()
Evict any dangling debug information, attempting to salvage it first.
std::pair< SDValue, SDValue > lowerInvokable(TargetLowering::CallLoweringInfo &CLI, const BasicBlock *EHPadBB=nullptr)
SDValue getMemoryRoot()
Return the current virtual root of the Selection DAG, flushing any PendingLoad items.
void resolveDanglingDebugInfo(const Value *V, SDValue Val)
If we saw an earlier dbg_value referring to V, generate the debug data structures now that we've seen...
void visit(const Instruction &I)
void dropDanglingDebugInfo(const DILocalVariable *Variable, const DIExpression *Expr)
If we have dangling debug info that describes Variable, or an overlapping part of variable considerin...
SDValue getCopyFromRegs(const Value *V, Type *Ty)
If there was virtual register allocated for the value V emit CopyFromReg of the specified type Ty.
void CopyToExportRegsIfNeeded(const Value *V)
CopyToExportRegsIfNeeded - If the given value has virtual registers created for it,...
void handleKillDebugValue(DILocalVariable *Var, DIExpression *Expr, DebugLoc DbgLoc, unsigned Order)
Create a record for a kill location debug intrinsic.
void visitJumpTable(SwitchCG::JumpTable &JT)
visitJumpTable - Emit JumpTable node in the current MBB
SDValue getFPOperationRoot(fp::ExceptionBehavior EB)
Return the current virtual root of the Selection DAG, flushing PendingConstrainedFP or PendingConstra...
void visitJumpTableHeader(SwitchCG::JumpTable &JT, SwitchCG::JumpTableHeader &JTH, MachineBasicBlock *SwitchBB)
visitJumpTableHeader - This function emits necessary code to produce index in the JumpTable from swit...
void LowerCallSiteWithPtrAuthBundle(const CallBase &CB, const BasicBlock *EHPadBB)
static const unsigned LowestSDNodeOrder
Lowest valid SDNodeOrder.
FunctionLoweringInfo & FuncInfo
Information about the function as a whole.
void setValue(const Value *V, SDValue NewN)
void FindMergedConditions(const Value *Cond, MachineBasicBlock *TBB, MachineBasicBlock *FBB, MachineBasicBlock *CurBB, MachineBasicBlock *SwitchBB, Instruction::BinaryOps Opc, BranchProbability TProb, BranchProbability FProb, bool InvertCond)
const TargetLibraryInfo * LibInfo
bool isExportableFromCurrentBlock(const Value *V, const BasicBlock *FromBB)
void visitSPDescriptorParent(StackProtectorDescriptor &SPD, MachineBasicBlock *ParentBB)
Codegen a new tail for a stack protector check ParentMBB which has had its tail spliced into a stack ...
bool handleDebugValue(ArrayRef< const Value * > Values, DILocalVariable *Var, DIExpression *Expr, DebugLoc DbgLoc, unsigned Order, bool IsVariadic)
For a given list of Values, attempt to create and record a SDDbgValue in the SelectionDAG.
SDValue getControlRoot()
Similar to getRoot, but instead of flushing all the PendingLoad items, flush all the PendingExports (...
void UpdateSplitBlock(MachineBasicBlock *First, MachineBasicBlock *Last)
When an MBB was split during scheduling, update the references that need to refer to the last resulti...
SDValue getValueImpl(const Value *V)
getValueImpl - Helper function for getValue and getNonRegisterValue.
void visitSwitchCase(SwitchCG::CaseBlock &CB, MachineBasicBlock *SwitchBB)
visitSwitchCase - Emits the necessary code to represent a single node in the binary search tree resul...
SDValue LowerAsSTATEPOINT(StatepointLoweringInfo &SI)
Lower SLI into a STATEPOINT instruction.
void visitSPDescriptorFailure(StackProtectorDescriptor &SPD)
Codegen the failure basic block for a stack protector check.
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Encapsulates all of the information needed to generate a stack protector check, and signals to isel w...
This class tracks both per-statepoint and per-selectiondag information.
An instruction for storing to memory.
SwitchLowering(FunctionLoweringInfo &funcinfo)
Multiway switch.
Provides information about what library functions are available for the current target.
This class defines information used to lower LLVM code to legal SelectionDAG operators that the targe...
Primary interface to the complete machine description for the target machine.
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:45
This function has undefined behavior.
A Use represents the edge between a Value definition and its users.
Definition Use.h:35
This class represents the va_arg llvm instruction, which returns an argument of the specified type gi...
LLVM Value Representation.
Definition Value.h:75
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
CallInst * Call
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
NodeType
ISD::NodeType enum - This enum defines the target-independent operators for a SelectionDAG.
Definition ISDOpcodes.h:41
@ ADD
Simple integer binary arithmetic operators.
Definition ISDOpcodes.h:259
@ ANY_EXTEND
ANY_EXTEND - Used for integer types. The high bits are undefined.
Definition ISDOpcodes.h:841
@ FADD
Simple binary floating point operators.
Definition ISDOpcodes.h:410
@ SHL
Shift and rotation operations.
Definition ISDOpcodes.h:762
@ AND
Bitwise operators - logical and, logical or, logical xor.
Definition ISDOpcodes.h:736
std::vector< CaseCluster > CaseClusterVector
SmallVector< SwitchWorkListItem, 4 > SwitchWorkList
ExceptionBehavior
Exception behavior used for floating point operations.
Definition FPEnv.h:39
This is an optimization pass for GlobalISel generic memory operations.
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:82
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
Definition ModRef.h:71
DWARFExpression::Operation Op
ArrayRef(const T &OneElt) -> ArrayRef< T >
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:867
#define N
Extended Value Type.
Definition ValueTypes.h:35
SmallVector< std::pair< Register, TypeSize >, 4 > getRegsAndSizes() const
Return a list of registers and their sizes.
RegsForValue()=default
SmallVector< unsigned, 4 > RegCount
This list holds the number of registers for each value.
SmallVector< EVT, 4 > ValueVTs
The value types of the values, which may not be legal, and may need be promoted or synthesized from o...
void append(const RegsForValue &RHS)
Add the specified values to this one.
SmallVector< Register, 4 > Regs
This list holds the registers assigned to the values.
void AddInlineAsmOperands(InlineAsm::Kind Code, bool HasMatching, unsigned MatchingIdx, const SDLoc &dl, SelectionDAG &DAG, std::vector< SDValue > &Ops) const
Add this value to the specified inlineasm node operand list.
SDValue getCopyFromRegs(SelectionDAG &DAG, FunctionLoweringInfo &FuncInfo, const SDLoc &dl, SDValue &Chain, SDValue *Glue, const Value *V=nullptr) const
Emit a series of CopyFromReg nodes that copies from this value and returns the result as a ValueVTs v...
SmallVector< MVT, 4 > RegVTs
The value types of the registers.
void getCopyToRegs(SDValue Val, SelectionDAG &DAG, const SDLoc &dl, SDValue &Chain, SDValue *Glue, const Value *V=nullptr, ISD::NodeType PreferredExtendType=ISD::ANY_EXTEND) const
Emit a series of CopyToReg nodes that copies the specified value into the registers specified by this...
std::optional< CallingConv::ID > CallConv
Records if this value needs to be treated in an ABI dependant manner, different to normal type legali...
bool occupiesMultipleRegs() const
Check if the total RegCount is greater than one.
Print(const Value *V, const DanglingDebugInfo &DDI)
friend raw_ostream & operator<<(raw_ostream &OS, const DanglingDebugInfo::Print &P)
unsigned NumPatchBytes
The number of patchable bytes the call needs to get lowered into.
ArrayRef< const Use > GCTransitionArgs
The list of gc transition arguments present in the gc.statepoint being lowered.
ArrayRef< const Use > GCLives
The full list of gc-live arguments to the gc.statepoint being lowered.
uint64_t StatepointFlags
Flags associated with the meta arguments being lowered.
const BasicBlock * EHPadBB
The exception handling unwind destination, in case this represents an invoke of gc....
ArrayRef< const Use > DeoptState
The deoptimization state associated with this gc.statepoint call, if any.
TargetLowering::CallLoweringInfo CLI
Information regarding the underlying call instruction.
SmallVector< const GCRelocateInst *, 16 > GCRelocates
The set of gc.relocate calls associated with this gc.statepoint.
uint64_t ID
The ID that the resulting STATEPOINT instruction has to report.
const Instruction * StatepointInstr
The gc.statepoint instruction.
SmallVector< const Value *, 16 > Bases
Bases[i] is the base pointer for Ptrs[i].
This structure is used to communicate between SelectionDAGBuilder and SDISel for the code generation ...
This structure contains all information that is necessary for lowering calls.
This structure contains the information necessary for lowering pointer-authenticating indirect calls.