Ghidra Decompiler Analysis Engine
|
A collection of Symbol objects within a single (namespace or functional) scope. More...
#include <database.hh>
Public Member Functions | |
Scope (uint8 id, const string &nm, Architecture *g, Scope *own) | |
Construct an empty scope, given a name and Architecture. | |
virtual | ~Scope (void) |
Destructor. | |
virtual MapIterator | begin (void) const =0 |
Beginning iterator to mapped SymbolEntrys. | |
virtual MapIterator | end (void) const =0 |
Ending iterator to mapped SymbolEntrys. | |
virtual list< SymbolEntry >::const_iterator | beginDynamic (void) const =0 |
Beginning iterator to dynamic SymbolEntrys. | |
virtual list< SymbolEntry >::const_iterator | endDynamic (void) const =0 |
Ending iterator to dynamic SymbolEntrys. | |
virtual list< SymbolEntry >::iterator | beginDynamic (void)=0 |
Beginning iterator to dynamic SymbolEntrys. | |
virtual list< SymbolEntry >::iterator | endDynamic (void)=0 |
Ending iterator to dynamic SymbolEntrys. | |
virtual void | clear (void)=0 |
Clear all symbols from this scope. | |
virtual void | clearCategory (int4 cat)=0 |
Clear all symbols of the given category from this scope. | |
virtual void | clearUnlocked (void)=0 |
Clear all unlocked symbols from this scope. | |
virtual void | clearUnlockedCategory (int4 cat)=0 |
Clear unlocked symbols of the given category from this scope. | |
virtual void | adjustCaches (void)=0 |
Let scopes internally adjust any caches. More... | |
virtual bool | inScope (const Address &addr, int4 size, const Address &usepoint) const |
Query if the given range is owned by this Scope. More... | |
virtual void | removeSymbolMappings (Symbol *symbol)=0 |
Remove all SymbolEntrys from the given Symbol. | |
virtual void | removeSymbol (Symbol *symbol)=0 |
Remove the given Symbol from this Scope. | |
virtual void | renameSymbol (Symbol *sym, const string &newname)=0 |
Rename a Symbol within this Scope. | |
virtual void | retypeSymbol (Symbol *sym, Datatype *ct)=0 |
Change the data-type of a Symbol within this Scope. More... | |
virtual void | setAttribute (Symbol *sym, uint4 attr)=0 |
Set boolean Varnode properties on a Symbol. | |
virtual void | clearAttribute (Symbol *sym, uint4 attr)=0 |
Clear boolean Varnode properties on a Symbol. | |
virtual void | setDisplayFormat (Symbol *sym, uint4 attr)=0 |
Set the display format for a Symbol. | |
virtual SymbolEntry * | findAddr (const Address &addr, const Address &usepoint) const =0 |
Find a Symbol at a given address and usepoint. More... | |
virtual SymbolEntry * | findContainer (const Address &addr, int4 size, const Address &usepoint) const =0 |
Find the smallest Symbol containing the given memory range. More... | |
virtual SymbolEntry * | findClosestFit (const Address &addr, int4 size, const Address &usepoint) const =0 |
Find Symbol which is the closest fit to the given memory range. More... | |
virtual Funcdata * | findFunction (const Address &addr) const =0 |
Find the function starting at the given address. More... | |
virtual ExternRefSymbol * | findExternalRef (const Address &addr) const =0 |
Find an external reference at the given address. More... | |
virtual LabSymbol * | findCodeLabel (const Address &addr) const =0 |
Find a label Symbol at the given address. More... | |
virtual SymbolEntry * | findOverlap (const Address &addr, int4 size) const =0 |
Find first Symbol overlapping the given memory range. More... | |
virtual void | findByName (const string &name, vector< Symbol * > &res) const =0 |
Find a Symbol by name within this Scope. More... | |
virtual bool | isNameUsed (const string &nm, const Scope *op2) const =0 |
Check if the given name is occurs within the given scope path. More... | |
virtual Funcdata * | resolveExternalRefFunction (ExternRefSymbol *sym) const =0 |
Convert an external reference to the referenced function. More... | |
virtual string | buildVariableName (const Address &addr, const Address &pc, Datatype *ct, int4 &index, uint4 flags) const =0 |
Given an address and data-type, build a suitable generic symbol name. More... | |
virtual string | buildUndefinedName (void) const =0 |
Build a formal undefined name, used internally when a Symbol is not given a name. More... | |
virtual string | makeNameUnique (const string &nm) const =0 |
Produce a version of the given symbol name that won't collide with other names in this Scope. More... | |
virtual void | saveXml (ostream &s) const =0 |
Write out this as a <scope> XML tag. | |
virtual void | restoreXml (const Element *el)=0 |
Restore this Scope from a <scope> XML tag. | |
virtual void | printEntries (ostream &s) const =0 |
Dump a description of all SymbolEntry objects to a stream. | |
virtual int4 | getCategorySize (int4 cat) const =0 |
Get the number of Symbols in the given category. More... | |
virtual Symbol * | getCategorySymbol (int4 cat, int4 ind) const =0 |
Retrieve a Symbol by index within a specific category. More... | |
virtual void | setCategory (Symbol *sym, int4 cat, int4 ind)=0 |
Set the category and index for the given Symbol. More... | |
virtual SymbolEntry * | addSymbol (const string &name, Datatype *ct, const Address &addr, const Address &usepoint) |
Add a new Symbol to this Scope, given a name, data-type, and a single mapping. More... | |
void | queryByName (const string &name, vector< Symbol * > &res) const |
Look-up symbols by name. More... | |
Funcdata * | queryFunction (const string &name) const |
Look-up a function by name. More... | |
SymbolEntry * | queryByAddr (const Address &addr, const Address &usepoint) const |
Get Symbol with matching address. More... | |
SymbolEntry * | queryContainer (const Address &addr, int4 size, const Address &usepoint) const |
Find the smallest containing Symbol. More... | |
SymbolEntry * | queryProperties (const Address &addr, int4 size, const Address &usepoint, uint4 &flags) const |
Find a Symbol or properties at the given address. More... | |
Funcdata * | queryFunction (const Address &addr) const |
Look-up a function by address. More... | |
Funcdata * | queryExternalRefFunction (const Address &addr) const |
Look-up a function thru an external reference. More... | |
LabSymbol * | queryCodeLabel (const Address &addr) const |
Look-up a code label by address. More... | |
Scope * | resolveScope (const string &name, bool strategy) const |
Find a child Scope of this. More... | |
Scope * | discoverScope (const Address &addr, int4 sz, const Address &usepoint) |
Find the owning Scope of a given memory range. More... | |
void | saveXmlRecursive (ostream &s, bool onlyGlobal) const |
Save all contained scopes as an XML stream. More... | |
void | overrideSizeLockType (Symbol *sym, Datatype *ct) |
Change the data-type of a Symbol that is sizelocked. More... | |
void | resetSizeLockType (Symbol *sym) |
Clear a Symbol's size-locked data-type. More... | |
bool | isSubScope (const Scope *scp) const |
Is this a sub-scope of the given Scope. More... | |
string | getFullName (void) const |
Get the full name of this Scope. | |
void | getScopePath (vector< const Scope * > &vec) const |
Get the ordered list of scopes up to this. More... | |
const Scope * | findDistinguishingScope (const Scope *op2) const |
Find first ancestor of this not shared by given scope. More... | |
Symbol * | addSymbol (const string &name, Datatype *ct) |
Add a new Symbol without mapping it to an address. More... | |
SymbolEntry * | addMapPoint (Symbol *sym, const Address &addr, const Address &usepoint) |
Map a Symbol to a specific address. More... | |
Symbol * | addMapSym (const Element *el) |
Add a mapped Symbol from a <mapsym> XML tag. More... | |
FunctionSymbol * | addFunction (const Address &addr, const string &nm) |
Create a function Symbol at the given address in this Scope. More... | |
ExternRefSymbol * | addExternalRef (const Address &addr, const Address &refaddr, const string &nm) |
LabSymbol * | addCodeLabel (const Address &addr, const string &nm) |
Create a code label at the given address in this Scope. More... | |
Symbol * | addDynamicSymbol (const string &nm, Datatype *ct, const Address &caddr, uint8 hash) |
Create a dynamically mapped Symbol attached to a specific data-flow. More... | |
string | buildDefaultName (Symbol *sym, int4 &base, Varnode *vn) const |
Create a default name for the given Symbol. More... | |
bool | isReadOnly (const Address &addr, int4 size, const Address &usepoint) const |
Is the given memory range marked as read-only. More... | |
Protected Member Functions | |
virtual Scope * | buildSubScope (uint8 id, const string &nm)=0 |
Build an unattached Scope to be associated as a sub-scope of this. More... | |
virtual void | restrictScope (Funcdata *f) |
Convert this to a local Scope. More... | |
virtual void | addRange (AddrSpace *spc, uintb first, uintb last) |
Add a memory range to the ownership of this Scope. More... | |
virtual void | removeRange (AddrSpace *spc, uintb first, uintb last) |
Remove a memory range from the ownership of this Scope. More... | |
virtual void | addSymbolInternal (Symbol *sym)=0 |
Put a Symbol into the name map. More... | |
virtual SymbolEntry * | addMapInternal (Symbol *sym, uint4 exfl, const Address &addr, int4 off, int4 sz, const RangeList &uselim)=0 |
Create a new SymbolEntry for a Symbol given a memory range. More... | |
virtual SymbolEntry * | addDynamicMapInternal (Symbol *sym, uint4 exfl, uint8 hash, int4 off, int4 sz, const RangeList &uselim)=0 |
Create a new SymbolEntry for a Symbol given a dynamic hash. More... | |
SymbolEntry * | addMap (SymbolEntry &entry) |
Integrate a SymbolEntry into the range maps. More... | |
Static Protected Member Functions | |
static const Scope * | stackAddr (const Scope *scope1, const Scope *scope2, const Address &addr, const Address &usepoint, SymbolEntry **addrmatch) |
Query for Symbols starting at a given address, which match a given usepoint. More... | |
static const Scope * | stackContainer (const Scope *scope1, const Scope *scope2, const Address &addr, int4 size, const Address &usepoint, SymbolEntry **addrmatch) |
static const Scope * | stackClosestFit (const Scope *scope1, const Scope *scope2, const Address &addr, int4 size, const Address &usepoint, SymbolEntry **addrmatch) |
static const Scope * | stackFunction (const Scope *scope1, const Scope *scope2, const Address &addr, Funcdata **addrmatch) |
static const Scope * | stackExternalRef (const Scope *scope1, const Scope *scope2, const Address &addr, ExternRefSymbol **addrmatch) |
static const Scope * | stackCodeLabel (const Scope *scope1, const Scope *scope2, const Address &addr, LabSymbol **addrmatch) |
Protected Attributes | |
Architecture * | glb |
Architecture of this scope. | |
string | name |
Name of this scope. | |
Funcdata * | fd |
(If non-null) the function which this is the local Scope for | |
uint8 | uniqueId |
Unique id for the scope, for deduping scope names, assigning symbol ids. | |
Friends | |
class | Database |
class | ScopeCompare |
A collection of Symbol objects within a single (namespace or functional) scope.
This acts as a traditional Symbol container, allowing them to be accessed by name, but it also keeps track of how a Symbol is mapped into memory. It allows a Symbol to be looked up by its location in memory, which is sensitive to the address of the code accessing the Symbol.
Capabilities include:
A scope also supports the idea of ownership of memory. In theory, for a Symbol in the scope, at the code locations where the Symbol storage is valid, the scope owns the storage memory. In practice, a Scope object knows about memory ranges where a Symbol might be discovered. For instance, the global Scope usually owns all memory in the ram address space.
|
protectedpure virtual |
Create a new SymbolEntry for a Symbol given a dynamic hash.
The SymbolEntry is specified in terms of a hash and usepoint, which describe how to find the temporary Varnode holding the symbol value.
sym | is the given Symbol being mapped |
exfl | are any boolean Varnode properties |
hash | is the given dynamic hash |
off | is the byte offset of the new SymbolEntry (relative to the whole Symbol) |
sz | is the number of bytes occupied by the Varnode |
uselim | is the given usepoint |
Implemented in ScopeInternal.
Symbol * Scope::addDynamicSymbol | ( | const string & | nm, |
Datatype * | ct, | ||
const Address & | caddr, | ||
uint8 | hash | ||
) |
Create a dynamically mapped Symbol attached to a specific data-flow.
The Symbol is created and mapped to a dynamic hash and a code address where the Symbol is being used.
nm | is the name of the Symbol |
ct | is the data-type of the Symbol |
caddr | is the code address where the Symbol is being used |
hash | is the dynamic hash |
ExternRefSymbol * Scope::addExternalRef | ( | const Address & | addr, |
const Address & | refaddr, | ||
const string & | nm | ||
) |
Create an external reference at the given address in this Scope
An ExternRefSymbol is created and mapped to the given address and stores a reference address to the actual function.
addr | is the given address to map the Symbol to |
refaddr | is the reference address |
nm | is the name of the symbol/function |
FunctionSymbol * Scope::addFunction | ( | const Address & | addr, |
const string & | nm | ||
) |
Create a function Symbol at the given address in this Scope.
The FunctionSymbol is created and mapped to the given address. A Funcdata object is only created once FunctionSymbol::getFunction() is called.
addr | is the entry address of the function |
nm | is the name of the function, within this Scope |
|
protected |
Integrate a SymbolEntry into the range maps.
The mapping is given as an unintegrated SymbolEntry object. Memory may be specified in terms of join addresses, which this method must unravel. The offset, size, and extraflags fields of the SymbolEntry are not used. In particular, the SymbolEntry is assumed to map the entire Symbol.
entry | is the given SymbolEntry |
|
protectedpure virtual |
Create a new SymbolEntry for a Symbol given a memory range.
The SymbolEntry is specified in terms of a memory range and usepoint
sym | is the given Symbol being mapped |
exfl | are any boolean Varnode properties specific to the memory range |
addr | is the starting address of the given memory range |
off | is the byte offset of the new SymbolEntry (relative to the whole Symbol) |
sz | is the number of bytes in the range |
uselim | is the given usepoint (which may be invalid) |
Implemented in ScopeInternal, and ScopeGhidraNamespace.
SymbolEntry * Scope::addMapPoint | ( | Symbol * | sym, |
const Address & | addr, | ||
const Address & | usepoint | ||
) |
Map a Symbol to a specific address.
Create a new SymbolEntry that maps the whole Symbol to the given address
sym | is the Symbol |
addr | is the given address to map to |
usepoint | is a point at which the Symbol is accessed at that address |
Add a mapped Symbol from a <mapsym> XML tag.
A tag describing the Symbol is parsed first, followed by sequences of <addr> or <hash> and <rangelist> which define 1 or more mappings of the Symbol The new Symbol and SymbolEntry mappings are integrated into this Scope
el | is the <mapsym> XML element |
|
protectedvirtual |
Add a memory range to the ownership of this Scope.
spc | is the address space of the range |
first | is the offset of the first byte in the range |
last | is the offset of the last byte in the range |
|
virtual |
Add a new Symbol to this Scope, given a name, data-type, and a single mapping.
The Symbol object will be created with the given name and data-type. A single mapping (SymbolEntry) will be created for the Symbol based on a given storage address for the symbol and an address for code that accesses the Symbol at that storage location.
name | is the new name of the Symbol |
ct | is the data-type of the new Symbol |
addr | is the starting address of the Symbol storage |
usepoint | is the point accessing that storage (may be invalid) |
Reimplemented in ScopeGhidra.
|
protectedpure virtual |
Put a Symbol into the name map.
sym | is the preconstructed Symbol |
Implemented in ScopeInternal.
|
pure virtual |
Let scopes internally adjust any caches.
This is called once after Architecture configuration is complete.
Implemented in ScopeInternal, and ScopeGhidra.
Create a default name for the given Symbol.
Create default name given information in the Symbol and possibly a representative Varnode. This method extracts the crucial properties and then uses the buildVariableName method to construct the actual name.
sym | is the given Symbol to name |
base | is an index (which may get updated) used to uniquify the name |
vn | is an optional (may be null) Varnode representative of the Symbol |
|
protectedpure virtual |
Build an unattached Scope to be associated as a sub-scope of this.
This is a Scope object factory, intended to be called off of the global scope for building global namespace scopes. Function scopes are handled differently.
id | is the globally unique id associated with the scope |
nm | is the name of the new scope |
Implemented in ScopeInternal.
|
pure virtual |
Build a formal undefined name, used internally when a Symbol is not given a name.
Implemented in ScopeInternal, and ScopeGhidra.
|
pure virtual |
Given an address and data-type, build a suitable generic symbol name.
addr | is the given address |
pc | is the address at which the name is getting used |
ct | is a data-type used to inform the name |
index | is a reference to an index used to make the name unique, which will be updated |
flags | are boolean properties of the variable we need the name for |
Implemented in ScopeInternal, ScopeLocal, and ScopeGhidra.
Find the owning Scope of a given memory range.
Discover a sub-scope or containing Scope of this, that owns the given memory range at a specific usepoint. Note that ownership does not necessarily mean there is a known symbol there.
addr | is the starting address of the memory range |
sz | is the number of bytes in the range |
usepoint | is a point at which the memory is getting accesses |
|
pure virtual |
Find a Symbol at a given address and usepoint.
addr | is the given address |
usepoint | is the point at which the Symbol is accessed (may be invalid) |
Implemented in ScopeInternal, and ScopeGhidra.
|
pure virtual |
Find a Symbol by name within this Scope.
If there are multiple Symbols with the same name, all are passed back.
name | is the name to search for |
res | will contain any matching Symbols |
Implemented in ScopeInternal, and ScopeGhidra.
|
pure virtual |
Find Symbol which is the closest fit to the given memory range.
addr | is the starting address of the given memory range |
size | is the number of bytes in the range |
usepoint | is the point at which the Symbol is accessed (may be invalid) |
Implemented in ScopeInternal, and ScopeGhidra.
Find a label Symbol at the given address.
addr | is the given address |
Implemented in ScopeInternal, and ScopeGhidra.
|
pure virtual |
Find the smallest Symbol containing the given memory range.
addr | is the starting address of the given memory range |
size | is the number of bytes in the range |
usepoint | is the point at which the Symbol is accessed (may be invalid) |
Implemented in ScopeInternal, and ScopeGhidra.
Find first ancestor of this not shared by given scope.
Any two scopes share at least the global scope as a common ancestor. We find the first scope that is not in common. The scope returned will always be an ancestor of this. If this is an ancestor of the other given scope, then null is returned.
op2 | is the other given Scope |
|
pure virtual |
Find an external reference at the given address.
addr | is the given address |
Implemented in ScopeInternal, and ScopeGhidra.
Find the function starting at the given address.
addr | is the given starting address |
Implemented in ScopeInternal, and ScopeGhidra.
|
pure virtual |
Find first Symbol overlapping the given memory range.
addr | is the starting address of the given range |
size | is the number of bytes in the range |
Implemented in ScopeInternal, and ScopeGhidra.
|
pure virtual |
Get the number of Symbols in the given category.
cat | is the Symbol category |
Implemented in ScopeInternal, and ScopeGhidra.
|
pure virtual |
Retrieve a Symbol by index within a specific category.
Implemented in ScopeInternal, and ScopeGhidra.
void Scope::getScopePath | ( | vector< const Scope * > & | vec | ) | const |
Get the ordered list of scopes up to this.
Put the parent scopes of this into an array in order, starting with the global scope.
vec | is storage for the array of scopes |
|
inlinevirtual |
Query if the given range is owned by this Scope.
All bytes in the range must be owned, and ownership can be informed by particular code that is accessing the range.
addr | is the starting address of the range |
size | is the number of bytes in the range |
usepoint | is the code address at which the given range is being accessed (may be invalid) |
|
pure virtual |
Check if the given name is occurs within the given scope path.
Test for the presence of a symbol with the given name in either this scope or an ancestor scope up to but not including the given terminating scope. If the name is used true is returned.
nm | is the given name to test |
op2 | is the terminating ancestor scope (or null) |
Implemented in ScopeInternal, ScopeGhidraNamespace, and ScopeGhidra.
Is the given memory range marked as read-only.
Check for Symbols relative to this Scope that are marked as read-only, and look-up properties of the memory in general.
addr | is the starting address of the given memory range |
size | is the number of bytes in the range |
usepoint | is a point where the range is getting accessed |
bool Scope::isSubScope | ( | const Scope * | scp | ) | const |
|
pure virtual |
Produce a version of the given symbol name that won't collide with other names in this Scope.
nm | is the given name |
Implemented in ScopeInternal, and ScopeGhidra.
SymbolEntry * Scope::queryByAddr | ( | const Address & | addr, |
const Address & | usepoint | ||
) | const |
Get Symbol with matching address.
Within a sub-scope or containing Scope of this, find a Symbol that is mapped to the given address, where the mapping is valid at a specific usepoint.
addr | is the given address |
usepoint | is the point at which code accesses that address (may be invalid) |
void Scope::queryByName | ( | const string & | name, |
vector< Symbol * > & | res | ||
) | const |
Look-up symbols by name.
Starting from this Scope, look for a Symbol with the given name. If there are no Symbols in this Scope, recurse into the parent Scope. If there are 1 (or more) Symbols matching in this Scope, add them to the result list
name | is the name to search for |
res | is the result list |
SymbolEntry * Scope::queryContainer | ( | const Address & | addr, |
int4 | size, | ||
const Address & | usepoint | ||
) | const |
Find the smallest containing Symbol.
Within a sub-scope or containing Scope of this, find the smallest Symbol that contains a given memory range and can be accessed at a given usepoint.
addr | is the given starting address of the memory range |
size | is the number of bytes in the range |
usepoint | is a point at which the Symbol is accessed (may be invalid) |
Look-up a function thru an external reference.
Given an address, search for an external reference. If no Symbol is found and this Scope does not own the address, recurse searching in the parent Scope. If an external reference is found, try to resolve the function it refers to and return it.
addr | is the given address where an external reference might be |
Funcdata * Scope::queryFunction | ( | const string & | name | ) | const |
Look-up a function by name.
Starting with this Scope, find a function with the given name. If there are no Symbols with that name in this Scope at all, recurse into the parent Scope.
name | if the name to search for |
SymbolEntry * Scope::queryProperties | ( | const Address & | addr, |
int4 | size, | ||
const Address & | usepoint, | ||
uint4 & | flags | ||
) | const |
Find a Symbol or properties at the given address.
Similarly to queryContainer(), this searches for the smallest containing Symbol, but whether a known Symbol is found or not, boolean properties associated with the memory range are also search for and passed back.
addr | is the starting address of the range |
size | is the number of bytes in the range |
usepoint | is a point at which the memory range is accessed (may be invalid) |
flags | is a reference used to pass back the boolean properties of the memory range |
|
protectedvirtual |
Remove a memory range from the ownership of this Scope.
spc | is the address space of the range |
first | is the offset of the first byte in the range |
last | is the offset of the last byte in the range |
void Scope::resetSizeLockType | ( | Symbol * | sym | ) |
|
pure virtual |
Convert an external reference to the referenced function.
sym | is the Symbol marking the external reference |
Implemented in ScopeInternal, and ScopeGhidra.
Scope * Scope::resolveScope | ( | const string & | name, |
bool | strategy | ||
) | const |
|
protectedvirtual |
Convert this to a local Scope.
Attach this to the given function, which makes this the local scope for the function
f | is the given function to attach to |
Reimplemented in ScopeGhidra.
Change the data-type of a Symbol within this Scope.
If the size of the Symbol changes, any mapping (SymbolEntry) is adjusted
sym | is the given Symbol |
ct | is the new data-type |
Implemented in ScopeInternal, and ScopeGhidra.
void Scope::saveXmlRecursive | ( | ostream & | s, |
bool | onlyGlobal | ||
) | const |
|
pure virtual |
Set the category and index for the given Symbol.
sym | is the given Symbol |
cat | is the category to set for the Symbol |
ind | is the index position to set (within the category) |
Implemented in ScopeInternal, and ScopeGhidra.
|
staticprotected |
Query for Symbols starting at a given address, which match a given usepoint.
Searching starts at a first scope, continuing thru parents up to a second scope, which is not queried. If a Scope controls the memory at that address, the Scope object is returned. Additionally, if a symbol matching the criterion is found, the matching SymbolEntry is passed back.
scope1 | is the first Scope where searching starts |
scope2 | is the second Scope where searching ends |
addr | is the given address to search for |
usepoint | is the given point at which the memory is being accessed (can be an invalid address) |
addrmatch | is used to pass-back any matching SymbolEntry |
|
staticprotected |
Query for a Symbol which most closely matches a given range and usepoint
Searching starts at a first scope, continuing thru parents up to a second scope, which is not queried. If a Scope controls the memory in the given range, the Scope object is returned. Among symbols that overlap the given range, the SymbolEntry which most closely matches the starting address and size is passed back.
scope1 | is the first Scope where searching starts |
scope2 | is the second Scope where searching ends |
addr | is the starting address of the given range |
size | is the number of bytes in the given range |
usepoint | is the point at which the memory is being accessed (can be an invalid address) |
addrmatch | is used to pass-back any matching SymbolEntry |
|
staticprotected |
Query for a label Symbol for a given address.
Searching starts at a first scope, continuing thru parents up to a second scope, which is not queried. If a Scope controls the memory in the given range, the Scope object is returned. If there is a label at that address, pass back the corresponding LabSymbol object
scope1 | is the first Scope where searching starts |
scope2 | is the second Scope where searching ends |
addr | is the given address |
addrmatch | is used to pass-back any matching Symbol |
|
staticprotected |
Query for a Symbol containing a given range which is accessed at a given usepoint
Searching starts at a first scope, continuing thru parents up to a second scope, which is not queried. If a Scope controls the memory in the given range, the Scope object is returned. If a known Symbol contains the range, the matching SymbolEntry is passed back.
scope1 | is the first Scope where searching starts |
scope2 | is the second Scope where searching ends |
addr | is the starting address of the given range |
size | is the number of bytes in the given range |
usepoint | is the point at which the memory is being accessed (can be an invalid address) |
addrmatch | is used to pass-back any matching SymbolEntry |
|
staticprotected |
Query for an external reference Symbol starting at the given address
Searching starts at a first scope, continuing thru parents up to a second scope, which is not queried. If a Scope controls the memory in the given range, the Scope object is returned. If an external reference is found at the address, pass back the matching ExternRefSymbol
scope1 | is the first Scope where searching starts |
scope2 | is the second Scope where searching ends |
addr | is the given address |
addrmatch | is used to pass-back any matching Symbol |
|
staticprotected |
Query for a function Symbol starting at the given address
Searching starts at a first scope, continuing thru parents up to a second scope, which is not queried. If a Scope controls the memory in the given range, the Scope object is returned. If a FunctionSymbol is found at the given address, the corresponding Funcdata object is passed back.
scope1 | is the first Scope where searching starts |
scope2 | is the second Scope where searching ends |
addr | is the given address where the function should start |
addrmatch | is used to pass-back any matching function |