LLVM 19.0.0git
Public Types | Public Member Functions | List of all members
llvm::DAGTypeLegalizer Class Reference

This takes an arbitrary SelectionDAG as input and hacks on it until only value types the target machine can handle are left. More...

#include "CodeGen/SelectionDAG/LegalizeTypes.h"

Public Types

enum  NodeIdFlags { ReadyToProcess = 0 , NewNode = -1 , Unanalyzed = -2 , Processed = -3 }
 This pass uses the NodeId on the SDNodes to hold information about the state of the node. More...
 

Public Member Functions

 DAGTypeLegalizer (SelectionDAG &dag)
 
bool run ()
 This is the main entry point for the type legalizer.
 
void NoteDeletion (SDNode *Old, SDNode *New)
 
SelectionDAGgetDAG () const
 

Detailed Description

This takes an arbitrary SelectionDAG as input and hacks on it until only value types the target machine can handle are left.

This involves promoting small sizes to large sizes or splitting up large values into small values.

Definition at line 31 of file LegalizeTypes.h.

Member Enumeration Documentation

◆ NodeIdFlags

This pass uses the NodeId on the SDNodes to hold information about the state of the node.

The enum has all the values.

Enumerator
ReadyToProcess 

All operands have been processed, so this node is ready to be handled.

NewNode 

This is a new node, not before seen, that was created in the process of legalizing some other node.

Unanalyzed 

This node's ID needs to be set to the number of its unprocessed operands.

Processed 

This is a node that has already been processed.

Definition at line 37 of file LegalizeTypes.h.

Constructor & Destructor Documentation

◆ DAGTypeLegalizer()

llvm::DAGTypeLegalizer::DAGTypeLegalizer ( SelectionDAG dag)
inlineexplicit

Definition at line 168 of file LegalizeTypes.h.

References llvm::MVT::MAX_ALLOWED_VALUETYPE.

Member Function Documentation

◆ getDAG()

SelectionDAG & llvm::DAGTypeLegalizer::getDAG ( ) const
inline

Definition at line 208 of file LegalizeTypes.h.

◆ NoteDeletion()

void llvm::DAGTypeLegalizer::NoteDeletion ( SDNode Old,
SDNode New 
)
inline

◆ run()

bool DAGTypeLegalizer::run ( )

The documentation for this class was generated from the following files: