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

A wrapper class to simplify modification of SwitchInst cases along with their prof branch_weights metadata. More...

#include "llvm/IR/Instructions.h"

Public Types

using CaseWeightOpt = std::optional< uint32_t >
 

Public Member Functions

SwitchInstoperator-> ()
 
SwitchInstoperator* ()
 
 operator SwitchInst * ()
 
 SwitchInstProfUpdateWrapper (SwitchInst &SI)
 
 ~SwitchInstProfUpdateWrapper ()
 
SwitchInst::CaseIt removeCase (SwitchInst::CaseIt I)
 Delegate the call to the underlying SwitchInst::removeCase() and remove correspondent branch weight.
 
void addCase (ConstantInt *OnVal, BasicBlock *Dest, CaseWeightOpt W)
 Delegate the call to the underlying SwitchInst::addCase() and set the specified branch weight for the added case.
 
Instruction::InstListType::iterator eraseFromParent ()
 Delegate the call to the underlying SwitchInst::eraseFromParent() and mark this object to not touch the underlying SwitchInst in destructor.
 
void setSuccessorWeight (unsigned idx, CaseWeightOpt W)
 
CaseWeightOpt getSuccessorWeight (unsigned idx)
 

Static Public Member Functions

static CaseWeightOpt getSuccessorWeight (const SwitchInst &SI, unsigned idx)
 

Protected Member Functions

MDNodebuildProfBranchWeightsMD ()
 
void init ()
 

Detailed Description

A wrapper class to simplify modification of SwitchInst cases along with their prof branch_weights metadata.

Definition at line 3949 of file Instructions.h.

Member Typedef Documentation

◆ CaseWeightOpt

Definition at line 3960 of file Instructions.h.

Constructor & Destructor Documentation

◆ SwitchInstProfUpdateWrapper()

llvm::SwitchInstProfUpdateWrapper::SwitchInstProfUpdateWrapper ( SwitchInst SI)
inline

Definition at line 3965 of file Instructions.h.

References init().

◆ ~SwitchInstProfUpdateWrapper()

llvm::SwitchInstProfUpdateWrapper::~SwitchInstProfUpdateWrapper ( )
inline

Definition at line 3967 of file Instructions.h.

References buildProfBranchWeightsMD().

Member Function Documentation

◆ addCase()

void SwitchInstProfUpdateWrapper::addCase ( ConstantInt OnVal,
BasicBlock Dest,
SwitchInstProfUpdateWrapper::CaseWeightOpt  W 
)

Delegate the call to the underlying SwitchInst::addCase() and set the specified branch weight for the added case.

Definition at line 5213 of file Instructions.cpp.

References assert().

Referenced by unswitchTrivialSwitch().

◆ buildProfBranchWeightsMD()

MDNode * SwitchInstProfUpdateWrapper::buildProfBranchWeightsMD ( )
protected

◆ eraseFromParent()

Instruction::InstListType::iterator SwitchInstProfUpdateWrapper::eraseFromParent ( )

Delegate the call to the underlying SwitchInst::eraseFromParent() and mark this object to not touch the underlying SwitchInst in destructor.

Definition at line 5232 of file Instructions.cpp.

Referenced by unswitchTrivialSwitch().

◆ getSuccessorWeight() [1/2]

SwitchInstProfUpdateWrapper::CaseWeightOpt SwitchInstProfUpdateWrapper::getSuccessorWeight ( const SwitchInst SI,
unsigned  idx 
)
static

Definition at line 5265 of file Instructions.cpp.

References llvm::getBranchWeightMDNode().

◆ getSuccessorWeight() [2/2]

SwitchInstProfUpdateWrapper::CaseWeightOpt SwitchInstProfUpdateWrapper::getSuccessorWeight ( unsigned  idx)

Definition at line 5241 of file Instructions.cpp.

Referenced by unswitchTrivialSwitch().

◆ init()

void SwitchInstProfUpdateWrapper::init ( )
protected

◆ operator SwitchInst *()

llvm::SwitchInstProfUpdateWrapper::operator SwitchInst * ( )
inline

Definition at line 3963 of file Instructions.h.

◆ operator*()

SwitchInst & llvm::SwitchInstProfUpdateWrapper::operator* ( )
inline

Definition at line 3962 of file Instructions.h.

◆ operator->()

SwitchInst * llvm::SwitchInstProfUpdateWrapper::operator-> ( )
inline

Definition at line 3961 of file Instructions.h.

◆ removeCase()

SwitchInst::CaseIt SwitchInstProfUpdateWrapper::removeCase ( SwitchInst::CaseIt  I)

Delegate the call to the underlying SwitchInst::removeCase() and remove correspondent branch weight.

Definition at line 5199 of file Instructions.cpp.

References assert(), and I.

Referenced by eliminateDeadSwitchCases(), and unswitchTrivialSwitch().

◆ setSuccessorWeight()

void SwitchInstProfUpdateWrapper::setSuccessorWeight ( unsigned  idx,
SwitchInstProfUpdateWrapper::CaseWeightOpt  W 
)

Definition at line 5247 of file Instructions.cpp.

Referenced by unswitchTrivialSwitch().


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