![]() |
P4C
The P4 Compiler
|
#include <methodInstance.h>
Public Member Functions | |
DECLARE_TYPEINFO (MethodInstance, InstanceBase) | |
const IR::ParameterList * | getActualParameters () const |
const IR::ParameterList * | getOriginalParameters () const |
virtual bool | isApply () const |
![]() | |
DECLARE_TYPEINFO (InstanceBase) | |
![]() | |
template<typename T > | |
T & | as () |
Tries to convert the class to type T. A BUG occurs if the cast fails. | |
template<typename T > | |
const T & | as () const |
Tries to convert the class to type T. A BUG occurs if the cast fails. | |
template<typename T > | |
T * | checkedTo () |
Performs a checked cast. A BUG occurs if the cast fails. | |
template<typename T > | |
const T * | checkedTo () const |
Performs a checked cast. A BUG occurs if the cast fails. | |
![]() | |
template<typename T > | |
bool | is () const noexcept |
virtual bool | isA (TypeId typeId) const noexcept=0 |
template<typename T > | |
const T * | to () const noexcept |
Same as to , but returns const pointer to T. | |
template<typename T > | |
T * | to () noexcept |
virtual TypeId | typeId () const noexcept=0 |
Static Public Member Functions | |
static MethodInstance * | resolve (const IR::MethodCallExpression *mce, const DeclarationLookup *refMap, const Visitor::Context *ctxt=nullptr) |
static MethodInstance * | resolve (const IR::MethodCallExpression *mce, const DeclarationLookup *refMap, TypeMap *typeMap, bool useExpressionType=false, const Visitor::Context *ctxt=nullptr, bool incomplete=false) |
static MethodInstance * | resolve (const IR::MethodCallExpression *mce, const DeclarationLookup *refMap, TypeMap *typeMap, const Visitor::Context *ctxt, bool incomplete=false) |
static MethodInstance * | resolve (const IR::MethodCallStatement *mcs, const DeclarationLookup *refMap, const Visitor::Context *ctxt=nullptr) |
static MethodInstance * | resolve (const IR::MethodCallStatement *mcs, const DeclarationLookup *refMap, TypeMap *typeMap, const Visitor::Context *ctxt=nullptr) |
Public Attributes | |
const IR::Type_MethodBase * | actualMethodType |
const IR::MethodCallExpression * | expr |
const IR::IDeclaration * | object |
const IR::Type_MethodBase * | originalMethodType |
![]() | |
ParameterSubstitution | substitution |
For each callee parameter the corresponding argument. | |
TypeVariableSubstitution | typeSubstitution |
Protected Member Functions | |
MethodInstance (const IR::MethodCallExpression *mce, const IR::IDeclaration *decl, const IR::Type_MethodBase *originalMethodType, const IR::Type_MethodBase *actualMethodType) | |
void | bindParameters () |
![]() | |
![]() | |
virtual const void * | toImpl (TypeId typeId) const noexcept=0 |
This class is very useful for extracting information out of MethodCallExpressions. Since there are no function pointers in P4, methods can completely be resolved at compilation time. The static method 'resolve' will categorize each method call into one of several kinds:
See also the ConstructorCall class and the MethodCallDescription class below.
|
static |
useExpressionType | If true, the typeMap can be nullptr, and then mce->type is used. For some technical reasons neither the refMap or the typeMap are const here. |
incomplete | If true we do not expect to have all type arguments. |
const IR::Type_MethodBase* P4::MethodInstance::actualMethodType |
Type of called method, with instantiated type parameters.
const IR::IDeclaration* P4::MethodInstance::object |
Declaration of object that method is applied to. May be null for plain functions.
const IR::Type_MethodBase* P4::MethodInstance::originalMethodType |
The type of the original called method, without instantiated type parameters.