about summary refs log tree commit diff stats
path: root/miasm2/analysis/data_analysis.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename miasm2 to miasmFabrice Desclaux2019-03-051-204/+0
|
* Support python2/python3Fabrice Desclaux2019-03-051-17/+22
|
* Expression: replace arg by ptr in ExprMemFabrice Desclaux2018-10-121-1/+1
|
* IR: gen ircfg from ir_archFabrice Desclaux2018-07-051-7/+8
|
* Analysis: Remove unused functionFabrice Desclaux2018-07-051-30/+0
|
* Code cleaning: remove useless / commented codeAjax2018-06-211-62/+0
|
* Core: replace AsmLabel by LocKeyFabrice Desclaux2018-06-091-19/+19
|
* Remove debug codeFabrice Desclaux2018-05-091-4/+0
|
* IRBlock: getitem/len on assignblksFabrice Desclaux2018-02-091-2/+2
|
* IRBlock: irblock iterates on its assignblksFabrice Desclaux2018-02-091-1/+1
|
* IRBlock: replace irs by assignblksFabrice Desclaux2018-02-091-3/+3
|
* IR: rename get_blocFabrice Desclaux2017-07-071-1/+1
|
* IR: avoid IRBlock attribute creationFabrice Desclaux2017-05-241-27/+18
|
* All: rename vars bloc -> blockFabrice Desclaux2017-03-131-2/+2
|
* IR: rename blocs to blocksFabrice Desclaux2017-03-131-6/+6
|
* IR/Symbexec: rename symbexec to SymbolicExecutionEngineFabrice Desclaux2017-03-131-3/+3
|
* Expression: remove is_term attributeserpilliere2016-11-041-6/+1
|
* AssignBlockFabrice Desclaux2016-02-261-12/+14
|
* IR: replace `.g` with a lazy built `.graph`, avoiding the need of `gen_graph`Ajax2015-12-071-3/+3
|
* analysis: replace wildcard importsPierre LALET2015-02-181-1/+2
|
* Modify irbloc destination mecanism. Rework API in consequence.Fabrice Desclaux2014-09-051-43/+22
| | | | | | | | | | 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.
* Miasm v2serpilliere2014-06-031-0/+326
* 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 !