about summary refs log tree commit diff stats
path: root/miasm2/arch/x86/ira.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename miasm2 to miasmFabrice Desclaux2019-03-051-80/+0
|
* Expresion: use ExprAssign instead of ExprAffFabrice Desclaux2018-10-011-3/+3
| | | | | | ExprAff stands for (in french) "Expression affectation" We will now use ExprAssign (for Expression Assignment) (instead of ExprAss)
* IR/Analysis: call_effects can add extra blocksFabrice Desclaux2018-07-181-12/+19
|
* symbol_pool -> loc_dbAjax2018-07-031-6/+6
|
* IRBlock: move lines in AssignBlockFabrice Desclaux2017-04-201-1/+3
|
* Ir: rm dup api. Use get_out_regsFabrice Desclaux2017-04-141-14/+0
|
* IR: rename blocs to blocksFabrice Desclaux2017-03-131-1/+1
|
* Arch: clean ira/jitFabrice Desclaux2017-03-131-15/+13
|
* IR/ir: rename ir to IntermediateRepresentationFabrice Desclaux2017-03-131-1/+1
|
* Let x86 'pre_add_instr' be the default behaviorAjax2017-01-241-9/+0
|
* Merge pull request #469 from serpilliere/updt_call_effects_apiCamille Mougey2017-01-061-32/+9
|\ | | | | Updt call effects api
| * x86: IRA don't stack retaddr in default call modelFabrice Desclaux2017-01-061-31/+8
| |
| * IR: Call_effects API modificationFabrice Desclaux2017-01-061-2/+2
| | | | | | | | | | | | | | | | | | | | | | 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-21/+17
|
* IR: use expr_is_label instead of ExprIsLabelCamille Mougey2015-12-071-2/+3
|
* PyLint: Wild-unused-import (expression.expression) in x86 partCamille Mougey2015-02-161-1/+1
|
* x86 ira: Add sizeof for x86_64Camille Mougey2014-09-051-0/+15
|
* Modify irbloc destination mecanism. Rework API in consequence.Fabrice Desclaux2014-09-051-1/+3
| | | | | | | | | | 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/+91
* 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 !