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

Keeps track of dbg_value information through SDISel. More...

#include "llvm/CodeGen/SelectionDAG.h"

Public Types

using DbgIterator = SmallVectorImpl< SDDbgValue * >::iterator
 
using DbgLabelIterator = SmallVectorImpl< SDDbgLabel * >::iterator
 

Public Member Functions

 SDDbgInfo ()=default
 
 SDDbgInfo (const SDDbgInfo &)=delete
 
SDDbgInfooperator= (const SDDbgInfo &)=delete
 
void add (SDDbgValue *V, bool isParameter)
 
void add (SDDbgLabel *L)
 
void erase (const SDNode *Node)
 Invalidate all DbgValues attached to the node and remove it from the Node-to-DbgValues map.
 
void clear ()
 
BumpPtrAllocatorgetAlloc ()
 
bool empty () const
 
ArrayRef< SDDbgValue * > getSDDbgValues (const SDNode *Node) const
 
DbgIterator DbgBegin ()
 
DbgIterator DbgEnd ()
 
DbgIterator ByvalParmDbgBegin ()
 
DbgIterator ByvalParmDbgEnd ()
 
DbgLabelIterator DbgLabelBegin ()
 
DbgLabelIterator DbgLabelEnd ()
 

Detailed Description

Keeps track of dbg_value information through SDISel.

We do not build SDNodes for these so as not to perturb the generated code; instead the info is kept off to the side in this structure. Each SDNode may have one or more associated dbg_value entries. This information is kept in DbgValMap. Byval parameters are handled separately because they don't use alloca's, which busts the normal mechanism. There is good reason for handling all parameters separately: they may not have code generated for them, they should always go at the beginning of the function regardless of other code motion, and debug info for them is potentially useful even if the parameter is unused. Right now only byval parameters are handled separately.

Definition at line 159 of file SelectionDAG.h.

Member Typedef Documentation

◆ DbgIterator

Definition at line 201 of file SelectionDAG.h.

◆ DbgLabelIterator

Definition at line 202 of file SelectionDAG.h.

Constructor & Destructor Documentation

◆ SDDbgInfo() [1/2]

llvm::SDDbgInfo::SDDbgInfo ( )
default

◆ SDDbgInfo() [2/2]

llvm::SDDbgInfo::SDDbgInfo ( const SDDbgInfo )
delete

Member Function Documentation

◆ add() [1/2]

void llvm::SDDbgInfo::add ( SDDbgLabel L)
inline

◆ add() [2/2]

void SDDbgInfo::add ( SDDbgValue V,
bool  isParameter 
)

Definition at line 1071 of file SelectionDAG.cpp.

References assert().

Referenced by llvm::SelectionDAG::AddDbgLabel(), and llvm::SelectionDAG::AddDbgValue().

◆ ByvalParmDbgBegin()

DbgIterator llvm::SDDbgInfo::ByvalParmDbgBegin ( )
inline

◆ ByvalParmDbgEnd()

DbgIterator llvm::SDDbgInfo::ByvalParmDbgEnd ( )
inline

◆ clear()

void llvm::SDDbgInfo::clear ( )
inline

◆ DbgBegin()

DbgIterator llvm::SDDbgInfo::DbgBegin ( )
inline

◆ DbgEnd()

DbgIterator llvm::SDDbgInfo::DbgEnd ( )
inline

◆ DbgLabelBegin()

DbgLabelIterator llvm::SDDbgInfo::DbgLabelBegin ( )
inline

◆ DbgLabelEnd()

DbgLabelIterator llvm::SDDbgInfo::DbgLabelEnd ( )
inline

◆ empty()

bool llvm::SDDbgInfo::empty ( ) const
inline

◆ erase()

void SDDbgInfo::erase ( const SDNode Node)

Invalidate all DbgValues attached to the node and remove it from the Node-to-DbgValues map.

Definition at line 1082 of file SelectionDAG.cpp.

References I.

◆ getAlloc()

BumpPtrAllocator & llvm::SDDbgInfo::getAlloc ( )
inline

◆ getSDDbgValues()

ArrayRef< SDDbgValue * > llvm::SDDbgInfo::getSDDbgValues ( const SDNode Node) const
inline

◆ operator=()

SDDbgInfo & llvm::SDDbgInfo::operator= ( const SDDbgInfo )
delete

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