Miasm2
 All Classes Namespaces Files Functions Variables Typedefs Properties Macros
Public Member Functions | Public Attributes | Static Public Attributes | List of all members
miasm2.arch.sh4.arch.sh4_dgpregpdec Class Reference
+ Inheritance diagram for miasm2.arch.sh4.arch.sh4_dgpregpdec:
+ Collaboration diagram for miasm2.arch.sh4.arch.sh4_dgpregpdec:

Public Member Functions

def fromstring
 

Public Attributes

 expr
 

Static Public Attributes

 parser = dgpregs_postinc
 
string op = "preinc"
 

Detailed Description

Definition at line 216 of file arch.py.

Member Function Documentation

def miasm2.core.cpu.m_arg.fromstring (   self,
  s,
  parser_result = None 
)
inherited

Definition at line 604 of file cpu.py.

605  def fromstring(self, s, parser_result=None):
606  if parser_result:
607  e, start, stop = parser_result[self.parser]
608  self.expr = e
609  return start, stop
610  try:
611  v, start, stop = self.parser.scanString(s).next()
612  except StopIteration:
613  return None, None
614  self.expr = v[0]
615  return start, stop
616 

+ Here is the call graph for this function:

Member Data Documentation

miasm2.core.cpu.m_arg.expr
inherited

Definition at line 607 of file cpu.py.

string miasm2.arch.sh4.arch.sh4_dgpregpdec.op = "preinc"
static

Definition at line 218 of file arch.py.

miasm2.arch.sh4.arch.sh4_dgpregpdec.parser = dgpregs_postinc
static

Definition at line 217 of file arch.py.


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