about summary refs log tree commit diff stats
path: root/example/symbol_exec/depgraph.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Depgraph: add `.address_to_location` to help find the line and loc of an addressCamille Mougey2023-04-231-7/+2
|
* Fixed usage for constant_propagation, depgraph & graph_dataflowIvan “CLOVIS” Canet2022-03-211-1/+1
|
* Rename examples lifterFabrice Desclaux2020-12-251-3/+3
|
* Rename ira => LifterModelCallFabrice Desclaux2020-12-241-1/+1
|
* Avoid generate default locationdbFabrice Desclaux2020-08-311-4/+5
|
* Rename miasm2 to miasmFabrice Desclaux2019-03-051-4/+4
|
* Support python2/python3Fabrice Desclaux2019-03-051-11/+18
|
* Adds Windows support and AppVeyor CI (#835)Axel Souchet2018-09-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | * Get miasm to work on Windows, also add AppVeyor CI * Fix gcc jitter on Linux * Make the dse_crackme tests work on Windows * calling build and then install is less confusing than install twice * fix os.rename race condition on Windows * clean it up * Clean up after the unused cl.exe's artifacts * Use is_win instead of an additional check * Fix issue on Windows where 'w' and 'wb' modes are different * Address review feedback * setuptools is actually not required, so reverting
* IR: gen ircfg from ir_archFabrice Desclaux2018-07-051-8/+9
|
* symbol_pool -> loc_dbAjax2018-07-031-1/+1
|
* Core: replace AsmLabel by LocKeyFabrice Desclaux2018-06-091-3/+3
|
* Expression: no default size for ExprIdFabrice Desclaux2018-02-091-2/+2
|
* IRBlock: irblock iterates on its assignblksFabrice Desclaux2018-02-091-3/+3
|
* IRBlock: replace irs by assignblksFabrice Desclaux2018-02-091-1/+1
|
* append b to the opens mode ; Python on Windows makes a distinction between ↵w4kfu2018-01-161-1/+1
| | | | text and binary files
* Asmblock: rename blocFabrice Desclaux2017-07-071-1/+1
|
* IR: rename add_blocFabrice Desclaux2017-07-071-1/+1
|
* IRBlock: move lines in AssignBlockFabrice Desclaux2017-04-201-2/+2
|
* Replace ExprInt[num](x) -> ExprInt(x, num)Ajax2017-03-301-2/+2
|
* Example/Depgraph: allow lower/upper register trackingFabrice Desclaux2016-03-221-1/+1
|
* Example/Depgraph: add JSON outputFabrice Desclaux2016-03-211-8/+31
|
* Example/dg: fix print solutionsFabrice Desclaux2016-03-211-2/+5
|
* Test/depgraph: autopepFabrice Desclaux2016-03-171-28/+29
|
* IR: replace `.g` with a lazy built `.graph`, avoiding the need of `gen_graph`Ajax2015-12-071-3/+0
|
* In interactive use, allow C-like prefixes to choose the base of integersAymeric Vincent2015-10-271-2/+2
| | | | | | | Use Python's int(s, 0) to allow string "s" to specify its base where addresses and offsets can be supplied. This change makes the situation homogeneous among the various examples and interactive usage.
* Example: Add an example "rename-args" argument for depgraphAjax2015-04-281-2/+15
|
* DepGraph: Introduce implicit result management, with constraint solving APIAjax2015-04-281-0/+8
|
* Depgraph: Add a new example `depgraph` calling DepGraph with optionsAjax2015-04-241-0/+77