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

Public Member Functions

def __init__
 
def update_parser
 

Public Attributes

 machine
 
 jitter
 

Static Public Attributes

int STACK_SIZE = 0x100000
 
int STACK_BASE = 0x100000
 

Static Private Attributes

string _ARCH_ = "aarch64b"
 

Detailed Description

Definition at line 340 of file sandbox.py.

Constructor & Destructor Documentation

def miasm2.analysis.sandbox.Arch_aarch64b.__init__ (   self)

Definition at line 345 of file sandbox.py.

346  def __init__(self):
347  super(Arch_aarch64b, self).__init__()
348 
349  # Init stack
350  self.jitter.stack_size = self.STACK_SIZE
351  self.jitter.stack_base = self.STACK_BASE
352  self.jitter.init_stack()
353 
354 

Member Function Documentation

def miasm2.analysis.sandbox.Arch.update_parser (   cls,
  parser 
)
inherited

Definition at line 148 of file sandbox.py.

149  def update_parser(cls, parser):
150  pass
151 

Member Data Documentation

string miasm2.analysis.sandbox.Arch_aarch64b._ARCH_ = "aarch64b"
staticprivate

Definition at line 341 of file sandbox.py.

miasm2.analysis.sandbox.Arch.jitter
inherited

Definition at line 145 of file sandbox.py.

miasm2.analysis.sandbox.Arch.machine
inherited

Definition at line 144 of file sandbox.py.

int miasm2.analysis.sandbox.Arch_aarch64b.STACK_BASE = 0x100000
static

Definition at line 343 of file sandbox.py.

int miasm2.analysis.sandbox.Arch_aarch64b.STACK_SIZE = 0x100000
static

Definition at line 342 of file sandbox.py.


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