decompiler  1.0.0
Public Member Functions | Private Member Functions | Private Attributes | List of all members
ProtoStoreSymbol Class Reference

A collection of parameter descriptions backed by Symbol information. More...

#include <fspec.hh>

Inheritance diagram for ProtoStoreSymbol:
ProtoStore

Public Member Functions

 ProtoStoreSymbol (Scope *sc, const Address &usepoint)
 Constructor. More...
 
virtual ProtoParametersetInput (int4 i, const string &nm, const ParameterPieces &pieces)
 Establish name, data-type, storage of a specific input parameter. More...
 
virtual void clearInput (int4 i)
 Clear the input parameter at the specified slot. More...
 
virtual void clearAllInputs (void)
 Clear all input parameters (and any backing symbols)
 
virtual int4 getNumInputs (void) const
 Get the number of input parameters for this prototype.
 
virtual ProtoParametergetInput (int4 i)
 Get the i-th input parameter (or NULL if it doesn't exist)
 
virtual ProtoParametersetOutput (const ParameterPieces &piece)
 Establish the data-type and storage of the return value. More...
 
virtual void clearOutput (void)
 Clear the return value to TYPE_VOID.
 
virtual ProtoParametergetOutput (void)
 Get the return-value description.
 
virtual ProtoStoreclone (void) const
 Clone the entire collection of parameter descriptions.
 
virtual void saveXml (ostream &s) const
 Save any parameters that are not backed by symbols to an XML stream. More...
 
virtual void restoreXml (const Element *el, ProtoModel *model)
 Restore any internal parameter descriptions from an XML stream. More...
 
- Public Member Functions inherited from ProtoStore
virtual ~ProtoStore (void)
 Constructor.
 

Private Member Functions

ParameterSymbolgetSymbolBacked (int4 i)
 Fetch or allocate the parameter for the indicated slot. More...
 

Private Attributes

Scopescope
 Backing Scope for input parameters.
 
Address restricted_usepoint
 A usepoint reference for storage locations (usually function entry -1)
 
vector< ProtoParameter * > inparam
 Cache of allocated input parameters.
 
ProtoParameteroutparam
 The return-value parameter.
 

Detailed Description

A collection of parameter descriptions backed by Symbol information.

Input parameters are determined by symbols a function Scope (category 0). Information about the return-value is stored internally. ProtoParameter objects are constructed on the fly as requested and cached.

Constructor & Destructor Documentation

ProtoStoreSymbol::ProtoStoreSymbol ( Scope sc,
const Address usepoint 
)

Constructor.

Parameters
scis the function Scope that will back this store
usepointis the starting address of the function (-1)

References ParameterPieces::flags, setOutput(), and ParameterPieces::type.

Member Function Documentation

void ProtoStoreSymbol::clearInput ( int4  i)
virtual

Clear the input parameter at the specified slot.

The parameter is excised, any following parameters are shifted to fill its spot. If there is a backing Symbol, it is removed from the SymbolTable

Parameters
iis the specified parameter slot to remove

Implements ProtoStore.

ParameterSymbol * ProtoStoreSymbol::getSymbolBacked ( int4  i)
private

Fetch or allocate the parameter for the indicated slot.

Retrieve the specified ProtoParameter object, making sure it is a ParameterSymbol. If it doesn't exist, or if the object in the specific slot is not a ParameterSymbol, allocate an (unitialized) parameter.

Parameters
iis the specified input slot
Returns
the corresponding parameter
void ProtoStoreSymbol::restoreXml ( const Element el,
ProtoModel model 
)
virtual

Restore any internal parameter descriptions from an XML stream.

Parameters
elis a root <internallist> element containing <param> and <retparam> sub-tags.
modelis prototype model for determining storage for unassigned parameters

Implements ProtoStore.

void ProtoStoreSymbol::saveXml ( ostream &  s) const
virtual

Save any parameters that are not backed by symbols to an XML stream.

Symbols are stored elsewhere, so symbol backed parameters are not serialized. If there are any internal parameters an <internallist> tag is emitted.

Parameters
sis the output stream

Implements ProtoStore.

ProtoParameter * ProtoStoreSymbol::setInput ( int4  i,
const string &  nm,
const ParameterPieces pieces 
)
virtual

Establish name, data-type, storage of a specific input parameter.

This either allocates a new parameter or replaces the existing one at the specified input slot. If there is a backing symbol table, a Symbol is created or modified.

Parameters
iis the specified input slot
nmis the (optional) name of the parameter
piecesholds the raw storage address and data-type to set
Returns
the new/modified ProtoParameter

Implements ProtoStore.

References ParameterPieces::addr, ParameterPieces::flags, SymbolEntry::getAddr(), Symbol::getFirstWholeMap(), Symbol::getName(), Datatype::getSize(), SymbolEntry::getSize(), Symbol::getType(), Varnode::hiddenretparm, ParameterPieces::hiddenretparm, Varnode::indirectstorage, ParameterPieces::indirectstorage, Symbol::isHiddenReturn(), Symbol::isIndirectStorage(), ParameterSymbol::sym, and ParameterPieces::type.

ProtoParameter * ProtoStoreSymbol::setOutput ( const ParameterPieces piece)
virtual

Establish the data-type and storage of the return value.

This either allocates a new parameter or replaces the existing one. A void return value can be specified with an invalid address and TYPE_VOID data-type.

Parameters
pieceholds the raw storage address and data-type to set
Returns
the new/modified ProtoParameter

Implements ProtoStore.

References ParameterPieces::addr, ParameterPieces::flags, and ParameterPieces::type.

Referenced by ProtoStoreSymbol().


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