asmjit::FuncSignatureBuilder Class Reference
Inheritance diagram for asmjit::FuncSignatureBuilder:
asmjit::FuncSignature

Function signature builder.

Public Members

- Public Attributes inherited from asmjit::FuncSignature

Member Functions

Initialization & Reset
Accessors
- Public Member Functions inherited from asmjit::FuncSignature

Additional Inherited Members

- Static Public Attributes inherited from asmjit::FuncSignature

Member Function Documentation

void FuncSignatureBuilder::setRet(TypeId retType)noexcept◆ 

Sets the return type to retType.

template<typename T>
void FuncSignatureBuilder::setRetT()noexcept◆ 

Sets the return type based on T.

void FuncSignatureBuilder::setArg(uint32_t index, TypeId argType)noexcept◆ 

Sets the argument at index index to argType.

template<typename T>
void FuncSignatureBuilder::setArgT(uint32_t index)noexcept◆ 

Sets the argument at index i to the type based on T.

void FuncSignatureBuilder::addArg(TypeId type)noexcept◆ 

Appends an argument of type to the function prototype.

template<typename T>
void FuncSignatureBuilder::addArgT()noexcept◆ 

Appends an argument of type based on T to the function prototype.