about summary refs log tree commit diff stats
path: root/example/test_jit_x86_32.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Example: Rename test_jit_* to jit_*Camille Mougey2015-01-231-41/+0
|
* Example: Remove unused imports in TestJitCamille Mougey2015-01-231-3/+1
|
* Remove vm_ prefix /!\ API MODIFFabrice Desclaux2014-10-071-2/+2
| | | | | | | 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...
* jittcc: free tcc_states on jit delserpilliere2014-08-261-0/+1
|
* Example: Update example to use machineCM2014-08-201-3/+3
|
* Example: Update Test Jit x86_32: OptParse -> ArgParse, "--jitter" argumentajax2014-06-141-12/+9
|
* Miasm v2serpilliere2014-06-031-0/+45
* 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 !