about summary refs log tree commit diff stats
path: root/miasm2/jitter/jitcore.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove vm_ prefix /!\ API MODIFFabrice Desclaux2014-10-071-5/+5
| | | | | | | The jitter cpu/vm modules used an unecessary vm_ prefix for various api. jitter.cpu.vm_get_gpreg() => jitter.cpu.get_gpreg() jitter.vm.vm_get_mem... => jitter.vm.get_mem...
* Jitcore: check for empty blocksCamille Mougey2014-09-051-0/+5
|
* Modify irbloc destination mecanism. Rework API in consequence.Fabrice Desclaux2014-09-051-9/+9
| | | | | | | | | | Fat patch here: some API have changed. Each irbloc now affects a special "IRDst" register which is used to describe the destination irbloc. It allows simple description of architectures using delay slots. Architectures semantic and tcc/python jitter are modified in consequence. LLVM jitter is disabled for now, but should be patch soon.
* jitter: publify method to allow class modificationserpilliere2014-08-121-10/+10
|
* Jitter: Update jit_call API to use JitCpu & VmMngr instance instead of their ↵ajax2014-06-141-4/+4
| | | | structure pointer
* Miasm v2serpilliere2014-06-031-0/+252
* API has changed, so old scripts need updates * See example for API usage * Use tcc or llvm for jit emulation * Go to test and run test_all.py to check install Enjoy !