| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Core/asmbloc: move asmbloc to asmblock | Fabrice Desclaux | 2017-03-13 | 3 | -3/+3 |
| | | |||||
| * | Asmbloc: rename asm_constraint[to/next] to AsmConstraint[To/Next] | Fabrice Desclaux | 2017-03-13 | 1 | -8/+8 |
| | | |||||
| * | Asmbloc: rename asm_constraint to AsmConstraint | Fabrice Desclaux | 2017-03-13 | 1 | -9/+9 |
| | | |||||
| * | Asmbloc: rename asm_label to AsmLabel | Fabrice Desclaux | 2017-03-13 | 2 | -13/+13 |
| | | |||||
| * | Asmbloc: rename asm_block_bad to AsmBlockBad | Fabrice Desclaux | 2017-03-13 | 1 | -3/+3 |
| | | |||||
| * | Asmbloc: rename asm_bloc to AsmBlock | Fabrice Desclaux | 2017-03-13 | 1 | -8/+8 |
| | | |||||
| * | Interval: add .length computation | Ajax | 2017-02-13 | 1 | -0/+4 |
| | | |||||
| * | use python2 as executable name, give adequate permissions | Aymeric Vincent | 2017-01-05 | 4 | -4/+5 |
| | | |||||
| * | Merge pull request #342 from fmonjalet/fix_types | serpilliere | 2016-04-19 | 1 | -1/+4 |
| |\ | | | | | Fix miasm2.core.types API | ||||
| | * | Types: Ptr.dst_type is now a Type rather than a MemType | Florent Monjalet | 2016-03-15 | 1 | -1/+1 |
| | | | | | | | | | Makes for a more coherent API | ||||
| | * | Types: handle MemType as argument to Array constructor | Florent Monjalet | 2016-03-15 | 1 | -0/+3 |
| | | | | | | | | | | | Alse add a to_type helper that factorizes the boilerplate code to get a Type from either a MemType or a Type. | ||||
| * | | Asmcfg: add reg test | Fabrice Desclaux | 2016-03-16 | 1 | -2/+28 |
| |/ | |||||
| * | AssignBlock | Fabrice Desclaux | 2016-02-26 | 1 | -2/+6 |
| | | |||||
| * | Tipo: dictionary | Fabrice Desclaux | 2016-01-30 | 1 | -1/+1 |
| | | |||||
| * | Add regression tests for MatchGraph | Ajax | 2016-01-27 | 1 | -0/+68 |
| | | | | | | Conflicts: test/core/graph.py | ||||
| * | Rename BasicBlocks -> AsmCFG, more comprehensible, include "graph" | Ajax | 2016-01-26 | 1 | -4/+4 |
| | | |||||
| * | BasicBlocks.pendings can be a set (creds @serpilliere) | Ajax | 2016-01-26 | 1 | -1/+1 |
| | | |||||
| * | Introduce tests for miasm2.core.asmbloc | Ajax | 2016-01-26 | 1 | -0/+282 |
| | | |||||
| * | Graph; introduce copy and merge | Ajax | 2016-01-25 | 1 | -0/+15 |
| | | |||||
| * | Graph: two graphs are equals if they have the same nodes and edges | Ajax | 2016-01-25 | 1 | -0/+10 |
| | | |||||
| * | Move types -> test_types to avoid namespace collision (creds @fmonjalet) | Ajax | 2016-01-25 | 1 | -0/+0 |
| | | |||||
| * | Types: typo, MemStruct.get_offset should be a classmethod | Florent Monjalet | 2016-01-18 | 1 | -0/+11 |
| | | | | | Also added tests and MemArray.get_offset | ||||
| * | Types: Support anonymous Struct/Union/BitField | Florent Monjalet | 2016-01-18 | 1 | -0/+27 |
| | | | | | | | | | | | | | | | | | | | See the test addition for an example. A Struct, Union, or BitField field with no name will be considered anonymous: all its fields will be added to the parent Struct/Union/BitField. This implements this kind of C declaration: struct foo { int a; union { int bar; struct { short baz; short foz; }; }; } | ||||
| * | Types: adding the ("field", SomeMemType) syntax | Florent Monjalet | 2016-01-18 | 1 | -2/+3 |
| | | | | | | Shorthand for ("field", SomeMemStruct.get_type()) in a Struct or MemStruct fields definition. | ||||
| * | Types: short test to assert MemStruct unicity | Florent Monjalet | 2016-01-18 | 1 | -0/+4 |
| | | |||||
| * | Types: Type size is now a property | Florent Monjalet | 2016-01-18 | 1 | -5/+5 |
| | | |||||
| * | MemStruct/Types: pinned renamed to lval | Florent Monjalet | 2016-01-18 | 1 | -22/+22 |
| | | |||||
| * | MemStruct/Types: Renamed analysis.mem to core.types | Florent Monjalet | 2016-01-18 | 1 | -0/+506 |
| | | |||||
| * | Sembuilder: update regression test | Ajax | 2015-11-17 | 1 | -1/+10 |
| | | |||||
| * | Test/parse_asm: add directive test | serpilliere | 2015-10-29 | 1 | -0/+69 |
| | | |||||
| * | DiGraph: added regression tests for strongly connected components and ↵ | Tim Blazytko | 2015-09-04 | 1 | -1/+29 |
| | | | | | natural loops | ||||
| * | Test/Graph: extended regression tests for g2 | Tim Blazytko | 2015-06-02 | 1 | -0/+7 |
| | | |||||
| * | DiGraph: fixed order in dominance_frontier | Tim Blazytko | 2015-06-02 | 1 | -4/+8 |
| | | |||||
| * | Tests/graph: extended regression tests | Tim Blazytko | 2015-06-02 | 1 | -1/+41 |
| | | |||||
| * | Test/Graph: add regression tests for walk_dominator/walk_postdominator | Fabrice Desclaux | 2015-06-02 | 1 | -0/+36 |
| | | |||||
| * | SemBuilder: Introduce the 'if cond' statement, building a new IRBlock | Ajax | 2015-04-24 | 1 | -2/+26 |
| | | |||||
| * | SemBuilder: Add `('X' % Y)(Z) -> ExprOp('X' % Y, Z)` and `('X')(Y) -> ↵ | Ajax | 2015-04-23 | 1 | -3/+6 |
| | | | | | ExprOp('X')(Y)` | ||||
| * | SemBuilder: Handle real variable declaration | Ajax | 2015-04-22 | 1 | -0/+3 |
| | | |||||
| * | Core: Introduce SemBuilder, a helper for building semantics side effects | Ajax | 2015-04-22 | 1 | -0/+22 |
| | | |||||
| * | Interval: fix contains; updt reg tests | Fabrice Desclaux | 2015-04-02 | 1 | -0/+1 |
| | | |||||
| * | Test/Graph: add reg tests | Fabrice Desclaux | 2015-03-12 | 1 | -10/+34 |
| | | |||||
| * | Test/Graph: add reg tests | Fabrice Desclaux | 2015-03-12 | 1 | -0/+14 |
| | | |||||
| * | Graph: dominators computation can only be done regarding to *one* head | Fabrice Desclaux | 2015-03-12 | 1 | -1/+1 |
| | | | | | The 'get_all_parents' is replaced by 'reachable_parents' | ||||
| * | Core: Introduce BoundedDict and its regression test | Camille Mougey | 2015-02-23 | 1 | -0/+41 |
| | | |||||
| * | DiGraph: add dominators regression test | serpilliere | 2015-01-18 | 1 | -0/+23 |
| | | |||||
| * | Miasm v2 | serpilliere | 2014-06-03 | 3 | -0/+215 |
| * 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 ! | |||||