about summary refs log tree commit diff stats
path: root/miasm2/arch/arm/jit.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* All: updt apiFabrice Desclaux2018-10-121-2/+2
|
* Expresion: use ExprAssign instead of ExprAffFabrice Desclaux2018-10-011-1/+1
| | | | | | ExprAff stands for (in french) "Expression affectation" We will now use ExprAssign (for Expression Assignment) (instead of ExprAss)
* Symbexec: Use simplifier with high level in symbexecFabrice Desclaux2018-08-061-0/+10
|
* Jitter: add support for SystemV syscall convention (arml / x86_64)Ajax2018-07-241-0/+8
|
* Fix ARM C function callingAdrien Guinet2018-07-121-2/+2
| | | | | Arguments were not pushed correctly on the stack (for functions with more than four arguments)
* symbol_pool -> loc_dbAjax2018-07-031-4/+4
|
* Jitter: rename jitter class into JitterFabrice Desclaux2018-06-211-6/+6
|
* Expr: Add new word ExprLocFabrice Desclaux2018-06-081-5/+1
| | | | | This word represents a location in the binary. Thus, the hack of ExprId containing an AsmLabel ends here.
* Arm: add armt jitterFabrice Desclaux2018-04-181-1/+57
|
* Add support for multi-ret on stdcall / systemV ARM ABIAjax2017-07-211-3/+5
|
* Introduce a new API 'func_prepare_<callingconv>' for calling a functionAjax2017-04-061-0/+7
|
* Introduce a naive "System V" calling conventionAjax2017-04-061-6/+7
|
* Core/asmbloc: move asmbloc to asmblockFabrice Desclaux2017-03-131-3/+3
|
* Asmbloc: rename asm_symbol_pool to AsmSymbolPoolFabrice Desclaux2017-03-131-2/+2
|
* Arch: clean ira/jitFabrice Desclaux2017-03-131-12/+11
|
* Jitter: code generator reworkFabrice Desclaux2016-08-301-2/+0
|
* Use `@named_arguments` decorators for `.func_args_*` methodsPierre LALET2015-02-171-5/+4
|
* Arch/Jit: remove useless custom lib_handlerFabrice Desclaux2015-01-291-27/+0
|
* Reg test: add arm jit little/big endianFabrice Desclaux2014-10-091-2/+5
|
* Arch/jit: add endianess support jittersFabrice Desclaux2014-10-091-3/+9
|
* arm/jit: Add custom handlersFabrice Desclaux2014-10-071-6/+24
|
* Move os_dep out of the jitter moduleFabrice Desclaux2014-10-071-1/+1
|
* Remove vm_ prefix /!\ API MODIFFabrice Desclaux2014-10-071-7/+7
| | | | | | | 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...
* Modify irbloc destination mecanism. Rework API in consequence.Fabrice Desclaux2014-09-051-1/+1
| | | | | | | | | | 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.
* jit: move code into arch directoryserpilliere2014-08-211-0/+71