LLVM 19.0.0git
Public Types | Public Member Functions | Static Public Member Functions | Friends | List of all members
llvm::sandboxir::BasicBlock Class Reference

#include "llvm/SandboxIR/SandboxIR.h"

Inheritance diagram for llvm::sandboxir::BasicBlock:
Inheritance graph
[legend]

Public Types

using iterator = BBIterator
 
- Public Types inherited from llvm::sandboxir::Value
enum class  ClassID : unsigned { DEF_VALUE , DEF_USER , DEF_INSTR }
 
using use_iterator = UserUseIterator
 
using const_use_iterator = UserUseIterator
 
using user_iterator = mapped_iterator< sandboxir::UserUseIterator, UseToUser >
 
using const_user_iterator = user_iterator
 

Public Member Functions

 ~BasicBlock ()=default
 
FunctiongetParent () const
 
iterator begin () const
 
iterator end () const
 
std::reverse_iterator< iteratorrbegin () const
 
std::reverse_iterator< iteratorrend () const
 
ContextgetContext () const
 
InstructiongetTerminator () const
 
bool empty () const
 
Instructionfront () const
 
Instructionback () const
 
void verify () const final
 Should crash if there is something wrong with the instruction.
 
void dump (raw_ostream &OS) const final
 
LLVM_DUMP_METHOD void dump () const final
 
- Public Member Functions inherited from llvm::sandboxir::Value
virtual ~Value ()=default
 
ClassID getSubclassID () const
 
use_iterator use_begin ()
 
const_use_iterator use_begin () const
 
use_iterator use_end ()
 
const_use_iterator use_end () const
 
iterator_range< use_iteratoruses ()
 
iterator_range< const_use_iteratoruses () const
 
user_iterator user_begin ()
 
user_iterator user_end ()
 
const_user_iterator user_begin () const
 
const_user_iterator user_end () const
 
iterator_range< user_iteratorusers ()
 
iterator_range< const_user_iteratorusers () const
 
unsigned getNumUses () const
 \Returns the number of user edges (not necessarily to unique users).
 
bool hasNUsesOrMore (unsigned Num) const
 Return true if this value has N uses or more.
 
bool hasNUses (unsigned Num) const
 Return true if this Value has exactly N uses.
 
TypegetType () const
 
ContextgetContext () const
 
void replaceUsesWithIf (Value *OtherV, llvm::function_ref< bool(const Use &)> ShouldReplace)
 
void replaceAllUsesWith (Value *Other)
 
virtual void verify () const =0
 Should crash if there is something wrong with the instruction.
 
std::string getName () const
 Returns the name in the form 'SB<number>.' like 'SB1.'.
 
virtual void dumpCommonHeader (raw_ostream &OS) const
 
void dumpCommonFooter (raw_ostream &OS) const
 
void dumpCommonPrefix (raw_ostream &OS) const
 
void dumpCommonSuffix (raw_ostream &OS) const
 
void printAsOperandCommon (raw_ostream &OS) const
 
virtual void dump (raw_ostream &OS) const =0
 
virtual LLVM_DUMP_METHOD void dump () const =0
 

Static Public Member Functions

static bool classof (const Value *From)
 For isa/dyn_cast.
 

Friends

class Context
 
raw_ostreamoperator<< (raw_ostream &OS, const BasicBlock &SBBB)
 

Additional Inherited Members

- Protected Member Functions inherited from llvm::sandboxir::Value
void clearValue ()
 
 Value (ClassID SubclassID, llvm::Value *Val, Context &Ctx)
 
- Static Protected Member Functions inherited from llvm::sandboxir::Value
static const chargetSubclassIDStr (ClassID ID)
 
- Protected Attributes inherited from llvm::sandboxir::Value
ClassID SubclassID
 For isa/dyn_cast.
 
unsigned UID
 A unique ID used for forming the name (used for debugging).
 
llvm::ValueVal = nullptr
 The LLVM Value that corresponds to this SandboxIR Value.
 
ContextCtx
 All values point to the context.
 

Detailed Description

Definition at line 569 of file SandboxIR.h.

Member Typedef Documentation

◆ iterator

Definition at line 587 of file SandboxIR.h.

Constructor & Destructor Documentation

◆ ~BasicBlock()

llvm::sandboxir::BasicBlock::~BasicBlock ( )
default

Member Function Documentation

◆ back()

Instruction & BasicBlock::back ( ) const

Definition at line 474 of file SandboxIR.cpp.

References assert(), getContext(), and llvm::sandboxir::Value::Val.

◆ begin()

BasicBlock::iterator BasicBlock::begin ( ) const

◆ classof()

static bool llvm::sandboxir::BasicBlock::classof ( const Value From)
inlinestatic

For isa/dyn_cast.

Definition at line 583 of file SandboxIR.h.

References From.

◆ dump() [1/2]

void BasicBlock::dump ( ) const
finalvirtual

Implements llvm::sandboxir::Value.

Definition at line 517 of file SandboxIR.cpp.

References llvm::dbgs(), and dump().

Referenced by dump().

◆ dump() [2/2]

void BasicBlock::dump ( raw_ostream OS) const
finalvirtual

◆ empty()

bool llvm::sandboxir::BasicBlock::empty ( ) const
inline

Definition at line 601 of file SandboxIR.h.

References begin(), and end().

◆ end()

iterator llvm::sandboxir::BasicBlock::end ( ) const
inline

Definition at line 589 of file SandboxIR.h.

References llvm::sandboxir::Value::Ctx, and llvm::sandboxir::Value::Val.

Referenced by empty(), and rbegin().

◆ front()

Instruction & BasicBlock::front ( ) const

Definition at line 466 of file SandboxIR.cpp.

References assert(), getContext(), and llvm::sandboxir::Value::Val.

◆ getContext()

Context & llvm::sandboxir::BasicBlock::getContext ( ) const
inline

Definition at line 599 of file SandboxIR.h.

References llvm::sandboxir::Value::Ctx.

Referenced by back(), and front().

◆ getParent()

Function * BasicBlock::getParent ( ) const

◆ getTerminator()

Instruction * BasicBlock::getTerminator ( ) const

◆ rbegin()

std::reverse_iterator< iterator > llvm::sandboxir::BasicBlock::rbegin ( ) const
inline

Definition at line 593 of file SandboxIR.h.

References end().

◆ rend()

std::reverse_iterator< iterator > llvm::sandboxir::BasicBlock::rend ( ) const
inline

Definition at line 596 of file SandboxIR.h.

References begin().

◆ verify()

void llvm::sandboxir::BasicBlock::verify ( ) const
inlinefinalvirtual

Should crash if there is something wrong with the instruction.

Implements llvm::sandboxir::Value.

Definition at line 606 of file SandboxIR.h.

References assert(), and llvm::sandboxir::Value::Val.

Friends And Related Function Documentation

◆ Context

friend class Context
friend

Definition at line 573 of file SandboxIR.h.

◆ operator<<

raw_ostream & operator<< ( raw_ostream OS,
const BasicBlock SBBB 
)
friend

Definition at line 609 of file SandboxIR.h.


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