| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Rename miasm2 to miasm | Fabrice Desclaux | 2019-03-05 | 1 | -628/+0 |
| | | |||||
| * | Support python2/python3 | Fabrice Desclaux | 2019-03-05 | 1 | -28/+46 |
| | | |||||
| * | Rename idiv/imod into sdiv/smod | Fabrice Desclaux | 2019-01-15 | 1 | -1/+1 |
| | | |||||
| * | Expression: replace arg by ptr in ExprMem | Fabrice Desclaux | 2018-10-12 | 1 | -2/+2 |
| | | |||||
| * | Expresion: use ExprAssign instead of ExprAff | Fabrice Desclaux | 2018-10-01 | 1 | -3/+3 |
| | | | | | | | ExprAff stands for (in french) "Expression affectation" We will now use ExprAssign (for Expression Assignment) (instead of ExprAss) | ||||
| * | Expr: use TOK define instead of strings | Fabrice Desclaux | 2018-08-29 | 1 | -1/+1 |
| | | |||||
| * | Code cleaning: lgtm.com | Fabrice Desclaux | 2018-08-23 | 1 | -1/+0 |
| | | |||||
| * | Expr: Add new word ExprLoc | Fabrice Desclaux | 2018-06-08 | 1 | -1/+5 |
| | | | | | | This word represents a location in the binary. Thus, the hack of ExprId containing an AsmLabel ends here. | ||||
| * | Deprecate expr_cmps/expr_cmpu for a more verbose / understandable API | Ajax | 2018-02-14 | 1 | -5/+5 |
| | | |||||
| * | Replace ExprInt[num](x) -> ExprInt(x, num) | Ajax | 2017-03-30 | 1 | -1/+1 |
| | | |||||
| * | Expression: one pass merge_sliceto_slice | Ajax | 2016-11-07 | 1 | -63/+34 |
| | | |||||
| * | ExprCompose: updt internal struct | Fabrice Desclaux | 2016-11-04 | 1 | -97/+69 |
| | | |||||
| * | ExprCompose: update api | Fabrice Desclaux | 2016-11-04 | 1 | -14/+8 |
| | | |||||
| * | Expression: remove is_term attribute | serpilliere | 2016-11-04 | 1 | -8/+2 |
| | | |||||
| * | Expression: Use singleton pattern for Expression | serpilliere | 2016-11-04 | 1 | -1/+1 |
| | | | | | | | | | | Start the transformation of Expression into immutable. Multiple problems were present in Expression class. One of them was comparison done through hash, which could generate collisions. The attributes is_simp/is_canon where linked to the instance, and could not survive to expression simplification. | ||||
| * | Update int(XX.arg) -> int(XX) | Ajax | 2016-09-16 | 1 | -4/+4 |
| | | |||||
| * | Add ** (pow) operator | JB Cayrou | 2016-06-29 | 1 | -1/+1 |
| | | |||||
| * | Introduce `possible_values` helper | Ajax | 2016-03-17 | 1 | -0/+124 |
| | | | | | | Retrieve values of an Expr with their associated constraint. Thanks to @serpilliere | ||||
| * | Expression: slots | Fabrice Desclaux | 2016-01-15 | 1 | -3/+2 |
| | | |||||
| * | Expression: fix api | Fabrice Desclaux | 2015-10-29 | 1 | -5/+4 |
| | | |||||
| * | Expression/helper: add macro cmpu/cmps | Fabrice Desclaux | 2015-07-29 | 1 | -0/+19 |
| | | |||||
| * | Expression: remove code which uses expression modifications | serpilliere | 2015-02-22 | 1 | -2/+4 |
| | | |||||
| * | VariablesIdentifier: Handle corner cases (using var ident on already ↵ | Camille Mougey | 2015-02-10 | 1 | -2/+5 |
| | | | | | computed eq) | ||||
| * | VariableIdentifier: Less hacky way to identify sub vars, add a prefix feature | Camille Mougey | 2015-02-10 | 1 | -9/+14 |
| | | |||||
| * | Merge branch 'feature-exprrandom' of https://github.com/commial/miasm into ↵ | Fabrice Desclaux | 2014-12-11 | 1 | -0/+171 |
| |\ | | | | | | | | | | | | | commial-feature-exprrandom Conflicts: miasm2/expression/expression_helper.py | ||||
| | * | ExpressionHelper: Introduce ExprRandom, an expression generation feature | Camille Mougey | 2014-12-10 | 1 | -0/+172 |
| | | | | | | | | | | | ExprRandom is a customisable (by extending it) class for generating random expression. | ||||
| * | | VariablesIdentifier: Use iterators (credits Pierre Lalet) | Camille Mougey | 2014-12-10 | 1 | -6/+7 |
| | | | |||||
| * | | ExpressionHelper: Introduce Variables_Identifier | Camille Mougey | 2014-12-09 | 1 | -0/+156 |
| |/ | | | | | | Variables_Identifier provides a way to identify redundant pattern (ie. variables) in an expression, replace them and obtain the variables list in a dependencies compliant order. | ||||
| * | Expression: fix umod/udiv in expression simplification | Fabrice Desclaux | 2014-10-31 | 1 | -1/+2 |
| | | |||||
| * | Fix operand unify irem/imod | serpilliere | 2014-06-24 | 1 | -1/+1 |
| | | |||||
| * | expression: fix rol/ror simplifications (fix by fperigaud) | serpilliere | 2014-06-12 | 1 | -1/+1 |
| | | |||||
| * | Miasm v2 | serpilliere | 2014-06-03 | 1 | -0/+196 |
| * 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 ! | |||||