|
ROSE 2.9.0
|
Base class for ByteCode Methods.
A Method stores information about an instance method/function such as its name and instructions.
Definition at line 75 of file BinaryAnalysis/ByteCode/Analysis.h.
#include <Rose/BinaryAnalysis/ByteCode/Analysis.h>


Public Types | |
| using | Ptr = Sawyer::SharedPointer< Method > |
| Shared ownership pointer. | |
Public Member Functions | |
| virtual std::string | name () const =0 |
| virtual bool | isSystemReserved (const std::string &name) const =0 |
| virtual const Code & | code () const =0 |
| virtual const SgAsmInstructionList * | instructions () const =0 |
| virtual void | decode (const Disassembler::BasePtr &) const =0 |
| virtual void | annotate ()=0 |
| std::set< Address > | targets () const |
| const std::vector< BasicBlockPtr > & | blocks () const |
| void | append (BasicBlockPtr bb) |
Public Member Functions inherited from Sawyer::SharedObject | |
| SharedObject () | |
| Default constructor. | |
| SharedObject (const SharedObject &) | |
| Copy constructor. | |
| virtual | ~SharedObject () |
| Virtual destructor. | |
| SharedObject & | operator= (const SharedObject &) |
| Assignment. | |
Public Member Functions inherited from Sawyer::SharedFromThis< Method > | |
| SharedPointer< Method > | sharedFromThis () |
Create a shared pointer from this. | |
| SharedPointer< const Method > | sharedFromThis () const |
Create a shared pointer from this. | |
Protected Member Functions | |
| Method (Address) | |
Protected Attributes | |
| Address | classAddr_ |
| P2::FunctionPtr | function_ |
| std::vector< BasicBlockPtr > | blocks_ |
Shared ownership pointer.
Definition at line 79 of file BinaryAnalysis/ByteCode/Analysis.h.
|
protected |
Definition at line 106 of file BinaryAnalysis/ByteCode/Analysis.h.
|
protected |
Definition at line 107 of file BinaryAnalysis/ByteCode/Analysis.h.
|
protected |
Definition at line 108 of file BinaryAnalysis/ByteCode/Analysis.h.