ROSE  0.11.145.0
Public Member Functions | Static Public Member Functions | Protected Attributes | List of all members
Rose::BinaryAnalysis::Partitioner2::ModulesX86::MatchRetPadPush Class Reference

Description

Match RET followed by PUSH with intervening no-op padding.

Definition at line 82 of file ModulesX86.h.

#include <Rose/BinaryAnalysis/Partitioner2/ModulesX86.h>

Inheritance diagram for Rose::BinaryAnalysis::Partitioner2::ModulesX86::MatchRetPadPush:
Inheritance graph
[legend]
Collaboration diagram for Rose::BinaryAnalysis::Partitioner2::ModulesX86::MatchRetPadPush:
Collaboration graph
[legend]

Public Member Functions

virtual std::vector< FunctionPtrfunctions () const override
 Returns the function(s) for the previous successful match. More...
 
virtual bool match (const PartitionerConstPtr &, rose_addr_t anchor) override
 Attempt to match an instruction pattern. More...
 
- Public Member Functions inherited from Sawyer::SharedObject
 SharedObject ()
 Default constructor. More...
 
 SharedObject (const SharedObject &)
 Copy constructor. More...
 
virtual ~SharedObject ()
 Virtual destructor. More...
 
SharedObjectoperator= (const SharedObject &)
 Assignment. More...
 

Static Public Member Functions

static Ptr instance ()
 Allocating constructor. More...
 

Protected Attributes

FunctionPtr function_
 

Additional Inherited Members

- Public Types inherited from Rose::BinaryAnalysis::Partitioner2::FunctionPrologueMatcher
using Ptr = FunctionPrologueMatcherPtr
 Shared-ownership pointer to a FunctionPrologueMatcher. More...
 
- Public Types inherited from Rose::BinaryAnalysis::Partitioner2::InstructionMatcher
typedef Sawyer::SharedPointer< InstructionMatcherPtr
 Shared-ownership pointer to an InstructionMatcher. More...
 

Member Function Documentation

static Ptr Rose::BinaryAnalysis::Partitioner2::ModulesX86::MatchRetPadPush::instance ( )
inlinestatic

Allocating constructor.

Definition at line 86 of file ModulesX86.h.

virtual std::vector<FunctionPtr> Rose::BinaryAnalysis::Partitioner2::ModulesX86::MatchRetPadPush::functions ( ) const
inlineoverridevirtual

Returns the function(s) for the previous successful match.

If the previous call to match returned true then this method should return at least one function for the matched function prologue. Although the function returned by this method is often at the same address as the anchor for the match, it need not be. For instance, a matcher could match against some amount of padding followed the instructions for setting up the stack frame, in which case it might choose to return a function that starts at the stack frame setup instructions and includes the padding as static data.

Multiple functions can be created. For instance, if the matcher matches a thunk then two functions will likely be created: the thunk itself, and the function to which it points.

The partitioner will never call function without first having called match.

Implements Rose::BinaryAnalysis::Partitioner2::FunctionPrologueMatcher.

Definition at line 87 of file ModulesX86.h.

virtual bool Rose::BinaryAnalysis::Partitioner2::ModulesX86::MatchRetPadPush::match ( const PartitionerConstPtr ,
rose_addr_t  anchor 
)
overridevirtual

Attempt to match an instruction pattern.

If the subclass implementation is able to match instructions, bytes, etc. anchored at the anchor address then it should return true, otherwise false. The anchor address will always be valid for the situation (e.g., if the partitioner is trying to match something anchored at an address that is not in the CFG, then the anchor will be such an address; if it is trying to match something that is definitely an instruction then the address will be mapped with execute permission; etc.). This precondition makes writing matchers that match against a single address easier to write, but matchers that match at additional locations must explicitly check those other locations with the same conditions (FIXME[Robb P. Matzke 2014-08-04]: perhaps we should pass those conditions as an argument).

Implements Rose::BinaryAnalysis::Partitioner2::InstructionMatcher.


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