LLVM 19.0.0git
Classes | Public Member Functions | Static Public Member Functions | List of all members
llvm::AbstractCallSite Class Reference

AbstractCallSite. More...

#include "llvm/IR/AbstractCallSite.h"

Classes

struct  CallbackInfo
 The encoding of a callback with regards to the underlying instruction. More...
 

Public Member Functions

 AbstractCallSite (const Use *U)
 Sole constructor for abstract call sites (ACS).
 
 operator bool () const
 Conversion operator to conveniently check for a valid/initialized ACS.
 
CallBasegetInstruction () const
 Return the underlying instruction.
 
bool isDirectCall () const
 Return true if this ACS represents a direct call.
 
bool isIndirectCall () const
 Return true if this ACS represents an indirect call.
 
bool isCallbackCall () const
 Return true if this ACS represents a callback call.
 
bool isCallee (Value::const_user_iterator UI) const
 Return true if UI is the use that defines the callee of this ACS.
 
bool isCallee (const Use *U) const
 Return true if U is the use that defines the callee of this ACS.
 
unsigned getNumArgOperands () const
 Return the number of parameters of the callee.
 
int getCallArgOperandNo (Argument &Arg) const
 Return the operand index of the underlying instruction associated with Arg.
 
int getCallArgOperandNo (unsigned ArgNo) const
 Return the operand index of the underlying instruction associated with the function parameter number ArgNo or -1 if there is none.
 
ValuegetCallArgOperand (Argument &Arg) const
 Return the operand of the underlying instruction associated with Arg.
 
ValuegetCallArgOperand (unsigned ArgNo) const
 Return the operand of the underlying instruction associated with the function parameter number ArgNo or nullptr if there is none.
 
int getCallArgOperandNoForCallee () const
 Return the operand index of the underlying instruction associated with the callee of this ACS.
 
const UsegetCalleeUseForCallback () const
 Return the use of the callee value in the underlying instruction.
 
ValuegetCalledOperand () const
 Return the pointer to function that is being called.
 
FunctiongetCalledFunction () const
 Return the function being called if this is a direct call, otherwise return null (if it's an indirect call).
 

Static Public Member Functions

static void getCallbackUses (const CallBase &CB, SmallVectorImpl< const Use * > &CallbackUses)
 Add operand uses of CB that represent callback uses into CallbackUses.
 

Detailed Description

AbstractCallSite.

An abstract call site is a wrapper that allows to treat direct, indirect, and callback calls the same. If an abstract call site represents a direct or indirect call site it behaves like a stripped down version of a normal call site object. The abstract call site can also represent a callback call, thus the fact that the initially called function (=broker) may invoke a third one (=callback callee). In this case, the abstract call site hides the middle man, hence the broker function. The result is a representation of the callback call, inside the broker, but in the context of the original call to the broker.

There are up to three functions involved when we talk about callback call sites. The caller (1), which invokes the broker function. The broker function (2), that will invoke the callee zero or more times. And finally the callee (3), which is the target of the callback call.

The abstract call site will handle the mapping from parameters to arguments depending on the semantic of the broker function. However, it is important to note that the mapping is often partial. Thus, some arguments of the call/invoke instruction are mapped to parameters of the callee while others are not.

Definition at line 50 of file AbstractCallSite.h.

Constructor & Destructor Documentation

◆ AbstractCallSite()

AbstractCallSite::AbstractCallSite ( const Use U)

Sole constructor for abstract call sites (ACS).

Create an abstract call site from a use.

An abstract call site can only be constructed through a llvm::Use because each operand (=use) of an instruction could potentially be a different abstract call site. Furthermore, even if the value of the llvm::Use is the same, and the user is as well, the abstract call sites might not be.

If a use is not associated with an abstract call site the constructed ACS will evaluate to false if converted to a boolean.

If the use is the callee use of a call or invoke instruction, the constructed abstract call site will behave as a llvm::CallSite would.

If the use is not a callee use of a call or invoke instruction, the callback metadata is used to determine the argument <-> parameter mapping as well as the callee of the abstract call site.

Definition at line 55 of file AbstractCallSite.cpp.

References llvm::CallBase::arg_size(), assert(), llvm::MDOperand::get(), llvm::CallBase::getArgOperandNo(), llvm::CallBase::getCalledFunction(), llvm::MDNode::getNumOperands(), llvm::MDNode::getOperand(), Idx, llvm::CallBase::isCallee(), llvm::MDNode::operands(), llvm::AbstractCallSite::CallbackInfo::ParameterEncoding, and llvm::SmallVectorTemplateBase< T, bool >::push_back().

Member Function Documentation

◆ getCallArgOperand() [1/2]

Value * llvm::AbstractCallSite::getCallArgOperand ( Argument Arg) const
inline

Return the operand of the underlying instruction associated with Arg.

Definition at line 177 of file AbstractCallSite.h.

References llvm::Argument::getArgNo(), and getCallArgOperand().

Referenced by llvm::Attributor::checkForAllCallSites(), and getCallArgOperand().

◆ getCallArgOperand() [2/2]

Value * llvm::AbstractCallSite::getCallArgOperand ( unsigned  ArgNo) const
inline

Return the operand of the underlying instruction associated with the function parameter number ArgNo or nullptr if there is none.

Definition at line 183 of file AbstractCallSite.h.

References llvm::CallBase::getArgOperand(), isDirectCall(), and llvm::AbstractCallSite::CallbackInfo::ParameterEncoding.

◆ getCallArgOperandNo() [1/2]

int llvm::AbstractCallSite::getCallArgOperandNo ( Argument Arg) const
inline

Return the operand index of the underlying instruction associated with Arg.

Definition at line 163 of file AbstractCallSite.h.

References llvm::Argument::getArgNo(), and getCallArgOperandNo().

Referenced by llvm::IRPosition::callsite_argument(), llvm::IRPosition::getAssociatedArgument(), and getCallArgOperandNo().

◆ getCallArgOperandNo() [2/2]

int llvm::AbstractCallSite::getCallArgOperandNo ( unsigned  ArgNo) const
inline

Return the operand index of the underlying instruction associated with the function parameter number ArgNo or -1 if there is none.

Definition at line 169 of file AbstractCallSite.h.

References isDirectCall(), and llvm::AbstractCallSite::CallbackInfo::ParameterEncoding.

◆ getCallArgOperandNoForCallee()

int llvm::AbstractCallSite::getCallArgOperandNoForCallee ( ) const
inline

Return the operand index of the underlying instruction associated with the callee of this ACS.

Only valid for callback calls!

Definition at line 194 of file AbstractCallSite.h.

References assert(), isCallbackCall(), llvm::AbstractCallSite::CallbackInfo::ParameterEncoding, and llvm::SmallVectorBase< Size_T >::size().

Referenced by getCalledOperand(), and getCalleeUseForCallback().

◆ getCallbackUses()

void AbstractCallSite::getCallbackUses ( const CallBase CB,
SmallVectorImpl< const Use * > &  CallbackUses 
)
static

Add operand uses of CB that represent callback uses into CallbackUses.

All uses added to CallbackUses can be used to create abstract call sites for which AbstractCallSite::isCallbackCall() will return true.

Definition at line 34 of file AbstractCallSite.cpp.

References llvm::CallBase::arg_begin(), llvm::CallBase::arg_size(), llvm::CallBase::getCalledFunction(), llvm::MDNode::getOperand(), llvm::MDNode::operands(), and llvm::SmallVectorTemplateBase< T, bool >::push_back().

Referenced by llvm::forEachCallbackCallSite(), and llvm::IRPosition::getAssociatedArgument().

◆ getCalledFunction()

Function * llvm::AbstractCallSite::getCalledFunction ( ) const
inline

Return the function being called if this is a direct call, otherwise return null (if it's an indirect call).

Definition at line 218 of file AbstractCallSite.h.

References getCalledOperand().

Referenced by llvm::Attributor::checkForAllCallSites(), llvm::forEachCallbackFunction(), llvm::IRPosition::getAssociatedArgument(), and llvm::Attributor::isValidFunctionSignatureRewrite().

◆ getCalledOperand()

Value * llvm::AbstractCallSite::getCalledOperand ( ) const
inline

Return the pointer to function that is being called.

Definition at line 210 of file AbstractCallSite.h.

References llvm::CallBase::getArgOperand(), getCallArgOperandNoForCallee(), llvm::CallBase::getCalledOperand(), and isDirectCall().

Referenced by getCalledFunction().

◆ getCalleeUseForCallback()

const Use & llvm::AbstractCallSite::getCalleeUseForCallback ( ) const
inline

Return the use of the callee value in the underlying instruction.

Only valid for callback calls!

Definition at line 202 of file AbstractCallSite.h.

References assert(), getCallArgOperandNoForCallee(), getInstruction(), and llvm::User::getOperandUse().

Referenced by llvm::Attributor::checkForAllCallSites().

◆ getInstruction()

CallBase * llvm::AbstractCallSite::getInstruction ( ) const
inline

◆ getNumArgOperands()

unsigned llvm::AbstractCallSite::getNumArgOperands ( ) const
inline

◆ isCallbackCall()

bool llvm::AbstractCallSite::isCallbackCall ( ) const
inline

◆ isCallee() [1/2]

bool llvm::AbstractCallSite::isCallee ( const Use U) const
inline

◆ isCallee() [2/2]

bool llvm::AbstractCallSite::isCallee ( Value::const_user_iterator  UI) const
inline

Return true if UI is the use that defines the callee of this ACS.

Definition at line 132 of file AbstractCallSite.h.

References isCallee().

Referenced by llvm::Attributor::checkForAllCallSites(), and isCallee().

◆ isDirectCall()

bool llvm::AbstractCallSite::isDirectCall ( ) const
inline

Return true if this ACS represents a direct call.

Definition at line 115 of file AbstractCallSite.h.

References isCallbackCall(), and llvm::CallBase::isIndirectCall().

Referenced by getCallArgOperand(), getCallArgOperandNo(), getCalledOperand(), getNumArgOperands(), and isCallee().

◆ isIndirectCall()

bool llvm::AbstractCallSite::isIndirectCall ( ) const
inline

Return true if this ACS represents an indirect call.

Definition at line 120 of file AbstractCallSite.h.

References isCallbackCall(), and llvm::CallBase::isIndirectCall().

◆ operator bool()

llvm::AbstractCallSite::operator bool ( ) const
inlineexplicit

Conversion operator to conveniently check for a valid/initialized ACS.

Definition at line 109 of file AbstractCallSite.h.


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