![]() |
miasm
Reverse engineering framework
|


Public Member Functions | |
| def | __init__ (self, ctx) |
| def | functions (self) |
| def | parse (self, func) |
Public Attributes | |
| transformer | |
Helper for building instruction's semantic side effects method This class provides a decorator @parse to use on them. The context in which the function will be parsed must be supplied on instantiation
| def miasm.core.sembuilder.SemBuilder.__init__ | ( | self, | |
| ctx | |||
| ) |
Create a SemBuilder @ctx: context dictionary used during parsing
| def miasm.core.sembuilder.SemBuilder.functions | ( | self | ) |
Return a dictionary name -> func of parsed functions

| def miasm.core.sembuilder.SemBuilder.parse | ( | self, | |
| func | |||
| ) |
Function decorator, returning a correct method from a pseudo-Python one

| miasm.core.sembuilder.SemBuilder.transformer |