LLVM 23.0.0git
SelectionDAGISel.h
Go to the documentation of this file.
1//===-- llvm/CodeGen/SelectionDAGISel.h - Common Base Class------*- 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 file implements the SelectionDAGISel class, which is used as the common
10// base class for SelectionDAG-based instruction selectors.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CODEGEN_SELECTIONDAGISEL_H
15#define LLVM_CODEGEN_SELECTIONDAGISEL_H
16
21#include "llvm/IR/BasicBlock.h"
22#include <memory>
23
24namespace llvm {
25class AAResults;
26class AssumptionCache;
27class TargetInstrInfo;
28class TargetMachine;
29class SSPLayoutInfo;
31class SDValue;
33class MachineFunction;
35class TargetLowering;
40class GCFunctionInfo;
42
43/// SelectionDAGISel - This is the common base class used for SelectionDAG-based
44/// pattern-matching instruction selectors.
46public:
49
50 std::unique_ptr<FunctionLoweringInfo> FuncInfo;
51 std::unique_ptr<SwiftErrorValueTracking> SwiftError;
56 std::unique_ptr<SelectionDAGBuilder> SDB;
57 mutable std::optional<BatchAAResults> BatchAA;
58 AssumptionCache *AC = nullptr;
59 GCFunctionInfo *GFI = nullptr;
60 SSPLayoutInfo *SP = nullptr;
61 const TargetTransformInfo *TTI = nullptr;
67
68 /// Current optimization remark emitter.
69 /// Used to report things like combines and FastISel failures.
70 std::unique_ptr<OptimizationRemarkEmitter> ORE;
71
72 /// True if the function currently processing is in the function printing list
73 /// (i.e. `-filter-print-funcs`).
74 /// This is primarily used by ISEL_DUMP, which spans in multiple member
75 /// functions. Storing the filter result here so that we only need to do the
76 /// filtering once.
77 bool MatchFilterFuncName = false;
79
80 // HwMode to be used by getValueTypeForHwMode. This will be initialized
81 // based on the subtarget used by the MachineFunction.
82 unsigned HwMode;
83
86 virtual ~SelectionDAGISel();
87
88 /// Returns a (possibly null) pointer to the current BatchAAResults.
90 if (BatchAA.has_value())
91 return &BatchAA.value();
92 return nullptr;
93 }
94
95 const TargetLowering *getTargetLowering() const { return TLI; }
96
99
100 virtual bool runOnMachineFunction(MachineFunction &mf);
101
102 virtual void emitFunctionEntryCode() {}
103
104 /// PreprocessISelDAG - This hook allows targets to hack on the graph before
105 /// instruction selection starts.
106 virtual void PreprocessISelDAG() {}
107
108 /// PostprocessISelDAG() - This hook allows the target to hack on the graph
109 /// right after selection.
110 virtual void PostprocessISelDAG() {}
111
112 /// Main hook for targets to transform nodes into machine nodes.
113 virtual void Select(SDNode *N) = 0;
114
115 /// SelectInlineAsmMemoryOperand - Select the specified address as a target
116 /// addressing mode, according to the specified constraint. If this does
117 /// not match or is not implemented, return true. The resultant operands
118 /// (which will appear in the machine instruction) should be added to the
119 /// OutOps vector.
120 virtual bool
122 InlineAsm::ConstraintCode ConstraintID,
123 std::vector<SDValue> &OutOps) {
124 return true;
125 }
126
127 /// IsProfitableToFold - Returns true if it's profitable to fold the specific
128 /// operand node N of U during instruction selection that starts at Root.
129 virtual bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const;
130
131 /// IsLegalToFold - Returns true if the specific operand node N of
132 /// U can be folded during instruction selection that starts at Root.
133 /// FIXME: This is a static member function because the MSP430/X86
134 /// targets, which uses it during isel. This could become a proper member.
135 static bool IsLegalToFold(SDValue N, SDNode *U, SDNode *Root,
137 bool IgnoreChains = false);
138
139 static void InvalidateNodeId(SDNode *N);
140 static int getUninvalidatedNodeId(SDNode *N);
141
142 static void EnforceNodeIdInvariant(SDNode *N);
143
144 // Opcodes used by the DAG state machine:
206 // Space-optimized forms that implicitly encode VT.
221
230
239
248
272
274 // Space-optimized forms that implicitly encode integer VT.
312 // Space-optimized forms that implicitly encode number of result VTs.
316 // Space-optimized forms that implicitly encode EmitNodeInfo.
324 // Space-optimized forms that implicitly encode number of result VTs.
328 // Space-optimized forms that implicitly encode EmitNodeInfo.
339 // Contains 32-bit offset in table for pattern being selected
341 };
342
343 enum {
344 OPFL_None = 0, // Node has no chain or glue input and isn't variadic.
345 OPFL_Chain = 1, // Node has a chain input.
346 OPFL_GlueInput = 2, // Node has a glue input.
347 OPFL_GlueOutput = 4, // Node has a glue output.
348 OPFL_MemRefs = 8, // Node gets accumulated MemRefs.
349 OPFL_Variadic0 = 1 << 4, // Node is variadic, root has 0 fixed inputs.
350 OPFL_Variadic1 = 2 << 4, // Node is variadic, root has 1 fixed inputs.
351 OPFL_Variadic2 = 3 << 4, // Node is variadic, root has 2 fixed inputs.
352 OPFL_Variadic3 = 4 << 4, // Node is variadic, root has 3 fixed inputs.
353 OPFL_Variadic4 = 5 << 4, // Node is variadic, root has 4 fixed inputs.
354 OPFL_Variadic5 = 6 << 4, // Node is variadic, root has 5 fixed inputs.
355 OPFL_Variadic6 = 7 << 4, // Node is variadic, root has 6 fixed inputs.
356 OPFL_Variadic7 = 8 << 4, // Node is variadic, root has 7 fixed inputs.
357
358 OPFL_VariadicInfo = 15 << 4 // Mask for extracting the OPFL_VariadicN bits.
359 };
360
361 /// getNumFixedFromVariadicInfo - Transform an EmitNode flags word into the
362 /// number of fixed arity values that should be skipped when copying from the
363 /// root.
364 static inline int getNumFixedFromVariadicInfo(unsigned Flags) {
365 return ((Flags&OPFL_VariadicInfo) >> 4)-1;
366 }
367
368
369protected:
370 /// DAGSize - Size of DAG being instruction selected.
371 ///
372 unsigned DAGSize = 0;
373
374 /// ReplaceUses - replace all uses of the old node F with the use
375 /// of the new node T.
377 CurDAG->ReplaceAllUsesOfValueWith(F, T);
378 EnforceNodeIdInvariant(T.getNode());
379 }
380
381 /// ReplaceUses - replace all uses of the old nodes F with the use
382 /// of the new nodes T.
383 void ReplaceUses(const SDValue *F, const SDValue *T, unsigned Num) {
384 CurDAG->ReplaceAllUsesOfValuesWith(F, T, Num);
385 for (unsigned i = 0; i < Num; ++i)
387 }
388
389 /// ReplaceUses - replace all uses of the old node F with the use
390 /// of the new node T.
392 CurDAG->ReplaceAllUsesWith(F, T);
394 }
395
396 /// Replace all uses of \c F with \c T, then remove \c F from the DAG.
398 CurDAG->ReplaceAllUsesWith(F, T);
400 CurDAG->RemoveDeadNode(F);
401 }
402
403 /// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
404 /// by tblgen. Others should not call it.
405 void SelectInlineAsmMemoryOperands(std::vector<SDValue> &Ops,
406 const SDLoc &DL);
407
408 /// getPatternForIndex - Patterns selected by tablegen during ISEL
409 virtual StringRef getPatternForIndex(unsigned index) {
410 llvm_unreachable("Tblgen should generate the implementation of this!");
411 }
412
413 /// getIncludePathForIndex - get the td source location of pattern instantiation
414 virtual StringRef getIncludePathForIndex(unsigned index) {
415 llvm_unreachable("Tblgen should generate the implementation of this!");
416 }
417
419 return CurDAG->shouldOptForSize();
420 }
421
422public:
423 // Calls to these predicates are generated by tblgen.
425 int64_t DesiredMaskS) const;
427 int64_t DesiredMaskS) const;
428
429
430 /// CheckPatternPredicate - This function is generated by tblgen in the
431 /// target. It runs the specified pattern predicate and returns true if it
432 /// succeeds or false if it fails. The number is a private implementation
433 /// detail to the code tblgen produces.
434 virtual bool CheckPatternPredicate(unsigned PredNo) const {
435 llvm_unreachable("Tblgen should generate the implementation of this!");
436 }
437
438 /// CheckNodePredicate - This function is generated by tblgen in the target.
439 /// It runs node predicate number PredNo and returns true if it succeeds or
440 /// false if it fails. The number is a private implementation
441 /// detail to the code tblgen produces.
442 virtual bool CheckNodePredicate(SDValue Op, unsigned PredNo) const {
443 llvm_unreachable("Tblgen should generate the implementation of this!");
444 }
445
446 /// CheckNodePredicateWithOperands - This function is generated by tblgen in
447 /// the target.
448 /// It runs node predicate number PredNo and returns true if it succeeds or
449 /// false if it fails. The number is a private implementation detail to the
450 /// code tblgen produces.
451 virtual bool
453 ArrayRef<SDValue> Operands) const {
454 llvm_unreachable("Tblgen should generate the implementation of this!");
455 }
456
457 virtual bool CheckComplexPattern(SDNode *Root, SDNode *Parent, SDValue N,
458 unsigned PatternNo,
459 SmallVectorImpl<std::pair<SDValue, SDNode*> > &Result) {
460 llvm_unreachable("Tblgen should generate the implementation of this!");
461 }
462
463 virtual SDValue RunSDNodeXForm(SDValue V, unsigned XFormNo) {
464 llvm_unreachable("Tblgen should generate this!");
465 }
466
467 virtual MVT getValueTypeForHwMode(unsigned Index) const {
468 llvm_unreachable("Tblgen should generate the implementation of this!");
469 }
470
471 void SelectCodeCommon(SDNode *NodeToMatch, const uint8_t *MatcherTable,
472 unsigned TableSize);
473
474 /// Return true if complex patterns for this target can mutate the
475 /// DAG.
476 virtual bool ComplexPatternFuncMutatesDAG() const {
477 return false;
478 }
479
480 /// Return whether the node may raise an FP exception.
481 bool mayRaiseFPException(SDNode *Node) const;
482
483 bool isOrEquivalentToAdd(const SDNode *N) const;
484
485private:
486
487 // Calls to these functions are generated by tblgen.
488 void Select_INLINEASM(SDNode *N);
489 void Select_READ_REGISTER(SDNode *Op);
490 void Select_WRITE_REGISTER(SDNode *Op);
491 void Select_UNDEF(SDNode *N);
492 void Select_FAKE_USE(SDNode *N);
493 void Select_RELOC_NONE(SDNode *N);
494 void CannotYetSelect(SDNode *N);
495
496 void Select_FREEZE(SDNode *N);
497 void Select_ARITH_FENCE(SDNode *N);
498 void Select_MEMBARRIER(SDNode *N);
499
500 void Select_CONVERGENCECTRL_ANCHOR(SDNode *N);
501 void Select_CONVERGENCECTRL_ENTRY(SDNode *N);
502 void Select_CONVERGENCECTRL_LOOP(SDNode *N);
503
504 void pushStackMapLiveVariable(SmallVectorImpl<SDValue> &Ops, SDValue Operand,
505 SDLoc DL);
506 void Select_STACKMAP(SDNode *N);
507 void Select_PATCHPOINT(SDNode *N);
508
509 void Select_JUMP_TABLE_DEBUG_INFO(SDNode *N);
510
511private:
512 void DoInstructionSelection();
513 SDNode *MorphNode(SDNode *Node, unsigned TargetOpc, SDVTList VTList,
514 ArrayRef<SDValue> Ops, unsigned EmitNodeInfo);
515
516 /// Prepares the landing pad to take incoming values or do other EH
517 /// personality specific tasks. Returns true if the block should be
518 /// instruction selected, false if no code should be emitted for it.
519 bool PrepareEHLandingPad();
520
521 // Mark and Report IPToState for each Block under AsynchEH
522 void reportIPToStateForBlocks(MachineFunction *Fn);
523
524 /// Perform instruction selection on all basic blocks in the function.
525 void SelectAllBasicBlocks(const Function &Fn);
526
527 /// Perform instruction selection on a single basic block, for
528 /// instructions between \p Begin and \p End. \p HadTailCall will be set
529 /// to true if a call in the block was translated as a tail call.
530 void SelectBasicBlock(BasicBlock::const_iterator Begin,
532 bool &HadTailCall);
533 void FinishBasicBlock();
534
535 void CodeGenAndEmitDAG();
536
537 /// Generate instructions for lowering the incoming arguments of the
538 /// given function.
539 void LowerArguments(const Function &F);
540
541 void ComputeLiveOutVRegInfo();
542
543 /// Create the scheduler. If a specific scheduler was specified
544 /// via the SchedulerRegistry, use it, otherwise select the
545 /// one preferred by the target.
546 ///
547 ScheduleDAGSDNodes *CreateScheduler();
548
549 /// OpcodeOffset - This is a cache used to dispatch efficiently into isel
550 /// state machines that start with a OPC_SwitchOpcode node.
551 std::vector<unsigned> OpcodeOffset;
552
553 void UpdateChains(SDNode *NodeToMatch, SDValue InputChain,
554 SmallVectorImpl<SDNode *> &ChainNodesMatched,
555 bool isMorphNodeTo);
556};
557
559 std::unique_ptr<SelectionDAGISel> Selector;
560
561public:
562 SelectionDAGISelLegacy(char &ID, std::unique_ptr<SelectionDAGISel> S);
563
564 ~SelectionDAGISelLegacy() override = default;
565
566 void getAnalysisUsage(AnalysisUsage &AU) const override;
567
568 bool runOnMachineFunction(MachineFunction &MF) override;
569};
570
571class SelectionDAGISelPass : public PassInfoMixin<SelectionDAGISelPass> {
572 std::unique_ptr<SelectionDAGISel> Selector;
573
574protected:
575 SelectionDAGISelPass(std::unique_ptr<SelectionDAGISel> Selector)
576 : Selector(std::move(Selector)) {}
577
578public:
581 static bool isRequired() { return true; }
582};
583}
584
585#endif /* LLVM_CODEGEN_SELECTIONDAGISEL_H */
static msgpack::DocNode getNode(msgpack::DocNode DN, msgpack::Type Type, MCValue Val)
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
#define F(x, y, z)
Definition MD5.cpp:54
#define T
Value * RHS
Value * LHS
Represent the analysis usage information of a pass.
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.
InstListType::const_iterator const_iterator
Definition BasicBlock.h:171
This class is a wrapper over an AAResults, and it is intended to be used only when there are no IR ch...
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
Machine Value Type.
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
This class contains meta information specific to a module.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
The optimization diagnostic interface.
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
Wrapper class for IR location info (IR ordering and DebugLoc) to be passed into SDNode creation funct...
Represents one node in the SelectionDAG.
Unlike LLVM values, Selection DAG nodes may return multiple values as the result of a computation.
ScheduleDAGSDNodes - A ScheduleDAG for scheduling SDNode-based DAGs.
SelectionDAGBuilder - This is the common target-independent lowering implementation that is parameter...
~SelectionDAGISelLegacy() override=default
bool runOnMachineFunction(MachineFunction &MF) override
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
SelectionDAGISelLegacy(char &ID, std::unique_ptr< SelectionDAGISel > S)
SelectionDAGISelPass(std::unique_ptr< SelectionDAGISel > Selector)
PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
std::optional< BatchAAResults > BatchAA
std::unique_ptr< FunctionLoweringInfo > FuncInfo
SmallPtrSet< const Instruction *, 4 > ElidedArgCopyInstrs
virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op, InlineAsm::ConstraintCode ConstraintID, std::vector< SDValue > &OutOps)
SelectInlineAsmMemoryOperand - Select the specified address as a target addressing mode,...
bool CheckOrMask(SDValue LHS, ConstantSDNode *RHS, int64_t DesiredMaskS) const
CheckOrMask - The isel is trying to match something like (or X, 255).
void initializeAnalysisResults(MachineFunctionAnalysisManager &MFAM)
const TargetTransformInfo * TTI
virtual bool CheckNodePredicate(SDValue Op, unsigned PredNo) const
CheckNodePredicate - This function is generated by tblgen in the target.
MachineModuleInfo * MMI
virtual bool CheckNodePredicateWithOperands(SDValue Op, unsigned PredNo, ArrayRef< SDValue > Operands) const
CheckNodePredicateWithOperands - This function is generated by tblgen in the target.
const TargetLowering * TLI
virtual void PostprocessISelDAG()
PostprocessISelDAG() - This hook allows the target to hack on the graph right after selection.
std::unique_ptr< OptimizationRemarkEmitter > ORE
Current optimization remark emitter.
MachineRegisterInfo * RegInfo
unsigned DAGSize
DAGSize - Size of DAG being instruction selected.
bool isOrEquivalentToAdd(const SDNode *N) const
virtual bool CheckComplexPattern(SDNode *Root, SDNode *Parent, SDValue N, unsigned PatternNo, SmallVectorImpl< std::pair< SDValue, SDNode * > > &Result)
virtual bool CheckPatternPredicate(unsigned PredNo) const
CheckPatternPredicate - This function is generated by tblgen in the target.
static int getNumFixedFromVariadicInfo(unsigned Flags)
getNumFixedFromVariadicInfo - Transform an EmitNode flags word into the number of fixed arity values ...
const TargetLibraryInfo * LibInfo
static int getUninvalidatedNodeId(SDNode *N)
const TargetInstrInfo * TII
std::unique_ptr< SwiftErrorValueTracking > SwiftError
virtual void Select(SDNode *N)=0
Main hook for targets to transform nodes into machine nodes.
void ReplaceUses(const SDValue *F, const SDValue *T, unsigned Num)
ReplaceUses - replace all uses of the old nodes F with the use of the new nodes T.
static void EnforceNodeIdInvariant(SDNode *N)
void SelectCodeCommon(SDNode *NodeToMatch, const uint8_t *MatcherTable, unsigned TableSize)
virtual void emitFunctionEntryCode()
void ReplaceUses(SDValue F, SDValue T)
ReplaceUses - replace all uses of the old node F with the use of the new node T.
virtual bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const
IsProfitableToFold - Returns true if it's profitable to fold the specific operand node N of U during ...
virtual SDValue RunSDNodeXForm(SDValue V, unsigned XFormNo)
virtual MVT getValueTypeForHwMode(unsigned Index) const
bool MatchFilterFuncName
True if the function currently processing is in the function printing list (i.e.
void SelectInlineAsmMemoryOperands(std::vector< SDValue > &Ops, const SDLoc &DL)
SelectInlineAsmMemoryOperands - Calls to this are automatically generated by tblgen.
static bool IsLegalToFold(SDValue N, SDNode *U, SDNode *Root, CodeGenOptLevel OptLevel, bool IgnoreChains=false)
IsLegalToFold - Returns true if the specific operand node N of U can be folded during instruction sel...
virtual bool ComplexPatternFuncMutatesDAG() const
Return true if complex patterns for this target can mutate the DAG.
void ReplaceUses(SDNode *F, SDNode *T)
ReplaceUses - replace all uses of the old node F with the use of the new node T.
virtual void PreprocessISelDAG()
PreprocessISelDAG - This hook allows targets to hack on the graph before instruction selection starts...
BatchAAResults * getBatchAA() const
Returns a (possibly null) pointer to the current BatchAAResults.
bool CheckAndMask(SDValue LHS, ConstantSDNode *RHS, int64_t DesiredMaskS) const
CheckAndMask - The isel is trying to match something like (and X, 255).
virtual StringRef getPatternForIndex(unsigned index)
getPatternForIndex - Patterns selected by tablegen during ISEL
bool mayRaiseFPException(SDNode *Node) const
Return whether the node may raise an FP exception.
std::unique_ptr< SelectionDAGBuilder > SDB
void ReplaceNode(SDNode *F, SDNode *T)
Replace all uses of F with T, then remove F from the DAG.
SelectionDAGISel(TargetMachine &tm, CodeGenOptLevel OL=CodeGenOptLevel::Default)
virtual bool runOnMachineFunction(MachineFunction &mf)
static void InvalidateNodeId(SDNode *N)
const TargetLowering * getTargetLowering() const
bool shouldOptForSize(const MachineFunction *MF) const
virtual StringRef getIncludePathForIndex(unsigned index)
getIncludePathForIndex - get the td source location of pattern instantiation
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
TargetInstrInfo - Interface to description of machine instruction set.
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.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
This is an optimization pass for GlobalISel generic memory operations.
Definition Types.h:26
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:82
@ Default
-O2, -Os, -Oz
Definition CodeGen.h:85
DWARFExpression::Operation Op
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1915
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:870
#define N
A CRTP mix-in to automatically provide informational APIs needed for passes.
Definition PassManager.h:70
This represents a list of ValueType's that has been intern'd by a SelectionDAG.