about summary refs log tree commit diff stats
path: root/miasm2/expression/expression.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* IR: Improve dead code eliminationCaroline Leman2015-04-291-0/+8
| | | | | | Dead code analysis computed using Ken Kennedy Algorithm Ref: A survey of data flow analysis techniques, IBM Thomas J. Watson Research Division, 1979
* Expression: expression comparison are done using repr, not hash (prone to ↵Fabrice Desclaux2015-04-081-18/+68
| | | | collisions)
* Expression: use __hash__ function instead of propertyFabrice Desclaux2015-02-231-9/+8
|
* Expression: use private attributes in expressionFabrice Desclaux2015-02-231-213/+211
|
* Expression: Exprcompose are now ordered by default; add sanitycheck for ↵Fabrice Desclaux2015-02-231-0/+8
| | | | contiguous slices
* Expression: fix autopep indentationFabrice Desclaux2015-02-231-2/+2
|
* Expression: Make expressions really immutable.serpilliere2015-02-221-88/+137
|
* Expression: fix ExprCond outputFabrice Desclaux2015-01-131-1/+1
|
* Expression: Fix ExprCompose:get_w (wrong copy/paste ?)Camille Mougey2014-12-091-1/+1
|
* x86 arch: fix some mnemonicserpilliere2014-08-051-4/+4
|
* Miasm v2serpilliere2014-06-031-0/+1253
* 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 !