about summary refs log tree commit diff stats
path: root/miasm2/arch/arm/ira.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename miasm2 to miasmFabrice Desclaux2019-03-051-106/+0
|
* Expresion: use ExprAssign instead of ExprAffFabrice Desclaux2018-10-011-5/+5
| | | | | | ExprAff stands for (in french) "Expression affectation" We will now use ExprAssign (for Expression Assignment) (instead of ExprAss)
* Arm: support conditional subcall IRFabrice Desclaux2018-07-181-3/+28
|
* IR/Analysis: call_effects can add extra blocksFabrice Desclaux2018-07-181-11/+21
|
* Merge pull request #738 from marilafo/fix_offset_branch_armtlserpilliere2018-07-051-1/+15
|\ | | | | armtl change branch pc offset
| * armtl change branch pc offsetMarion Lafon2018-05-241-1/+15
| | | | | | | | Modify some armtl instr to match with documentation
* | symbol_pool -> loc_dbAjax2018-07-031-12/+12
|/
* Fix armt irFabrice Desclaux2018-04-181-2/+2
|
* Ir: rm dup api. Use get_out_regsFabrice Desclaux2017-04-141-7/+0
|
* Arch: clean ira/jitFabrice Desclaux2017-03-131-10/+6
|
* IR/ir: rename ir to IntermediateRepresentationFabrice Desclaux2017-03-131-1/+1
|
* Let x86 'pre_add_instr' be the default behaviorAjax2017-01-241-28/+0
|
* Merge pull request #469 from serpilliere/updt_call_effects_apiCamille Mougey2017-01-061-1/+1
|\ | | | | Updt call effects api
| * IR: Call_effects API modificationFabrice Desclaux2017-01-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | Old API: def call_effects(self, addr): New API: def call_effects(self, addr, instr): The addr is the address of the called function 'instr' is the instruction responsible for the call. The new API is a bit more flexible for model a function.
* | remove #! command line on files not supposed to be run at top levelAymeric Vincent2017-01-051-1/+0
|/
* AssignBlockFabrice Desclaux2016-02-261-54/+9
|
* IR: Introduce dst_linenb, factorize and comment codeAjax2015-04-241-1/+1
|
* Arm/Ira: Fix call bloc generationFabrice Desclaux2015-01-091-2/+2
|
* Arch/jit: add endianess support jittersFabrice Desclaux2014-10-091-7/+21
|
* Modify irbloc destination mecanism. Rework API in consequence.Fabrice Desclaux2014-09-051-1/+2
| | | | | | | | | | 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.
* IRA: Add methods to get char, short, int, long, pointer sizesCamille Mougey2014-08-291-0/+15
|
* Miasm v2serpilliere2014-06-031-0/+112
* 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 !