예제 #1
0
파일: sem.py 프로젝트: cea-sec/miasm
 def __init__(self, loc_db=None):
     IntermediateRepresentation.__init__(self, mn_aarch64, "b", loc_db)
     self.pc = PC
     self.sp = SP
     self.IRDst = ExprId('IRDst', 64)
예제 #2
0
파일: sem.py 프로젝트: J4ckKn1ght/nkn
 def __init__(self, loc_db=None):
     IntermediateRepresentation.__init__(self, mn_mep, "l", loc_db)
     self.pc = mn_mep.getpc()
     self.sp = mn_mep.getsp()
     self.IRDst = ExprId("IRDst", 32)
예제 #3
0
 def __init__(self, loc_db=None):
     IntermediateRepresentation.__init__(self, mn_aarch64, "b", loc_db)
     self.pc = PC
     self.sp = SP
     self.IRDst = ExprId('IRDst', 64)
     self.addrsize = 64
예제 #4
0
파일: sem.py 프로젝트: toyszyg/miasm
 def __init__(self, loc_db=None):
     IntermediateRepresentation.__init__(self, mn_armt, "l", loc_db)
     self.pc = PC
     self.sp = SP
     self.IRDst = ExprId('IRDst', 32)
     self.addrsize = 32
예제 #5
0
파일: sem.py 프로젝트: toyszyg/miasm
 def __init__(self, loc_db=None):
     self.addrsize = 32
     IntermediateRepresentation.__init__(self, mn_mips32, 'b', loc_db)
     self.pc = mn_mips32.getpc()
     self.sp = mn_mips32.getsp()
     self.IRDst = m2_expr.ExprId('IRDst', 32)
예제 #6
0
 def __init__(self, loc_db=None):
     IntermediateRepresentation.__init__(self, mn_pinky, None, loc_db)
     self.pc = mn_pinky.getpc()
     self.sp = mn_pinky.getsp()
     self.ret_reg = EAX
     self.IRDst = ExprId("IRDst", 32)
예제 #7
0
파일: sem.py 프로젝트: unixsec/miasm
 def __init__(self, loc_db=None):
     IntermediateRepresentation.__init__(self, mn_msp430, None, loc_db)
     self.pc = PC
     self.sp = SP
     self.IRDst = ExprId('IRDst', 16)
     self.addrsize = 16
예제 #8
0
파일: sem.py 프로젝트: cea-sec/miasm
 def __init__(self, loc_db=None):
     self.addrsize = 32
     IntermediateRepresentation.__init__(self, mn_mips32, 'b', loc_db)
     self.pc = mn_mips32.getpc()
     self.sp = mn_mips32.getsp()
     self.IRDst = m2_expr.ExprId('IRDst', 32)
예제 #9
0
파일: sem.py 프로젝트: cea-sec/miasm
 def __init__(self, loc_db=None):
     IntermediateRepresentation.__init__(self, mn_armt, "b", loc_db)
     self.pc = PC
     self.sp = SP
     self.IRDst = ExprId('IRDst', 32)
     self.addrsize = 32
예제 #10
0
 def __init__(self, loc_db=None):
   IntermediateRepresentation.__init__(self, mn_spacez, None, loc_db)
   self.pc = mn_spacez.getpc()
   self.sp = mn_spacez.getsp()
   self.qp = mn_spacez.getqp()
   self.IRDst = ExprId("IRDst", 32)