diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-12-07 18:04:42 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-12-24 17:15:46 +0100 |
| commit | 83ba16dd4d12251188e60ed45528c9768e76d682 (patch) | |
| tree | ecda6f1964148f680e5f58de6974268203382e47 | |
| parent | 7d374b97a2c8f39ba9ac7095f3cade49f0ba0d4a (diff) | |
| download | miasm-83ba16dd4d12251188e60ed45528c9768e76d682.tar.gz miasm-83ba16dd4d12251188e60ed45528c9768e76d682.zip | |
Rename LifterModelCallMips32
| -rw-r--r-- | miasm/analysis/machine.py | 8 | ||||
| -rw-r--r-- | miasm/arch/mips32/lifter_model_call.py | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/miasm/analysis/machine.py b/miasm/analysis/machine.py index b7e17087..c8ae0a5c 100644 --- a/miasm/analysis/machine.py +++ b/miasm/analysis/machine.py @@ -154,8 +154,8 @@ class Machine(object): except ImportError: pass mn = arch.mn_mips32 - from miasm.arch.mips32.lifter_model_call import ir_a_mips32b as lifter_model_call - from miasm.arch.mips32.sem import Lifter_Mips32b as ir + from miasm.arch.mips32.lifter_model_call import LifterModelCallMips32b as lifter_model_call + from miasm.arch.mips32.sem import Lifter_Mips32b as lifter elif machine_name == "mips32l": from miasm.arch.mips32.disasm import dis_mips32l as dis_engine from miasm.arch.mips32 import arch @@ -165,8 +165,8 @@ class Machine(object): except ImportError: pass mn = arch.mn_mips32 - from miasm.arch.mips32.lifter_model_call import ir_a_mips32l as lifter_model_call - from miasm.arch.mips32.sem import Lifter_Mips32l as ir + from miasm.arch.mips32.lifter_model_call import LifterModelCallMips32l as lifter_model_call + from miasm.arch.mips32.sem import Lifter_Mips32l as lifter elif machine_name == "ppc32b": from miasm.arch.ppc.disasm import dis_ppc32b as dis_engine from miasm.arch.ppc import arch diff --git a/miasm/arch/mips32/lifter_model_call.py b/miasm/arch/mips32/lifter_model_call.py index b9d0fe7e..bd0e8506 100644 --- a/miasm/arch/mips32/lifter_model_call.py +++ b/miasm/arch/mips32/lifter_model_call.py @@ -5,7 +5,7 @@ from miasm.ir.ir import IRBlock, AssignBlock from miasm.ir.analysis import LifterModelCall from miasm.arch.mips32.sem import Lifter_Mips32l, Lifter_Mips32b -class ir_a_mips32l(Lifter_Mips32l, LifterModelCall): +class LifterModelCallMips32l(Lifter_Mips32l, LifterModelCall): def __init__(self, loc_db): Lifter_Mips32l.__init__(self, loc_db) self.ret_reg = self.arch.regs.V0 @@ -98,7 +98,7 @@ class ir_a_mips32l(Lifter_Mips32l, LifterModelCall): -class ir_a_mips32b(Lifter_Mips32b, ir_a_mips32l): +class LifterModelCallMips32b(Lifter_Mips32b, LifterModelCallMips32l): def __init__(self, loc_db): Lifter_Mips32b.__init__(self, loc_db) self.ret_reg = self.arch.regs.V0 |