| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Introduce MatchGraph, the counterpart of MatchExpr for DiGraph | Ajax | 2016-01-27 | 1 | -0/+248 |
| | | |||||
| * | Rename BasicBlocks -> AsmCFG, more comprehensible, include "graph" | Ajax | 2016-01-26 | 2 | -20/+20 |
| | | |||||
| * | BasicBlocks.pendings can be a set (creds @serpilliere) | Ajax | 2016-01-26 | 1 | -5/+5 |
| | | |||||
| * | AsmBloc: rewrite split_bloc into BasicBlocks.apply_splitting | Ajax | 2016-01-26 | 1 | -43/+58 |
| | | |||||
| * | AsmBloc: rewrite block_merge using graph simplification | Ajax | 2016-01-26 | 1 | -171/+46 |
| | | |||||
| * | Graph: introduce GraphSimplifier, counterpart of ExpressionSimplifier | Ajax | 2016-01-26 | 1 | -0/+34 |
| | | | | | for Graph | ||||
| * | AsmBloc: introduce BasicBlocks, standing for a CFG with associated methods | Ajax | 2016-01-26 | 2 | -150/+344 |
| | | |||||
| * | Graph: add_node return the previous status | Ajax | 2016-01-25 | 1 | -1/+6 |
| | | |||||
| * | Graph; introduce copy and merge | Ajax | 2016-01-25 | 1 | -0/+19 |
| | | |||||
| * | Graph: two graphs are equals if they have the same nodes and edges | Ajax | 2016-01-25 | 1 | -0/+7 |
| | | |||||
| * | Asmbloc: fix get_range (creds: @commial) | Fabrice Desclaux | 2016-01-21 | 1 | -2/+4 |
| | | |||||
| * | Asmbloc: Fix asmbloc label (creds @commial) | Fabrice Desclaux | 2016-01-21 | 1 | -1/+2 |
| | | |||||
| * | Types: Void type repr | Florent Monjalet | 2016-01-18 | 1 | -0/+3 |
| | | |||||
| * | Types: typo, MemStruct.get_offset should be a classmethod | Florent Monjalet | 2016-01-18 | 1 | -2/+8 |
| | | | | | Also added tests and MemArray.get_offset | ||||
| * | Types: MemStruct.get_offset() shorthand for @serpi | Florent Monjalet | 2016-01-18 | 1 | -0/+4 |
| | | |||||
| * | Types: Support anonymous Struct/Union/BitField | Florent Monjalet | 2016-01-18 | 1 | -11/+72 |
| | | | | | | | | | | | | | | | | | | | 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 | -5/+18 |
| | | | | | | Shorthand for ("field", SomeMemStruct.get_type()) in a Struct or MemStruct fields definition. | ||||
| * | Types: Type size is now a property | Florent Monjalet | 2016-01-18 | 1 | -14/+21 |
| | | |||||
| * | Types: Str encoding now generic to all str python supported encodings | Florent Monjalet | 2016-01-18 | 1 | -64/+134 |
| | | |||||
| * | Types: zip -> itertools.izip | Florent Monjalet | 2016-01-18 | 1 | -2/+3 |
| | | |||||
| * | MemStruct/Types: ALLOCATOR becomes a MemType class attribute | Florent Monjalet | 2016-01-18 | 1 | -17/+24 |
| | | |||||
| * | MemStruct: little MemType doc addition | Florent Monjalet | 2016-01-18 | 1 | -1/+1 |
| | | |||||
| * | MemStruct/Types: Array idx fix + MemStr.from_str feature | Florent Monjalet | 2016-01-18 | 1 | -16/+45 |
| | | | | | | MemStr.from_str allows to allocate and set a string automatically if ALLOCATOR is set. This avoids allocating a buffer and filling it later. | ||||
| * | MemStruct/Types: pinned renamed to lval | Florent Monjalet | 2016-01-18 | 1 | -24/+55 |
| | | |||||
| * | MemStruct/Types: Renamed analysis.mem to core.types | Florent Monjalet | 2016-01-18 | 1 | -0/+1399 |
| | | |||||
| * | AsmBloc: c_bad is now an asm_block_bad (edge -> node) | Ajax | 2016-01-15 | 1 | -60/+61 |
| | | | | | | | /!\ Modify the API of dis_bloc, which now return an asm_bloc instead of creating one (in Miasm, this block was always created jsut before calling dis_bloc) | ||||
| * | AsmBlock: introduce asm_block_bad | Ajax | 2016-01-15 | 1 | -0/+30 |
| | | |||||
| * | AsmBloc: "type() is ... " -> isinstance | Ajax | 2016-01-15 | 1 | -3/+3 |
| | | |||||
| * | Instructions: slots class | Fabrice Desclaux | 2016-01-15 | 1 | -0/+3 |
| | | |||||
| * | Merge pull request #302 from commial/refactor-asmlabel | serpilliere | 2016-01-13 | 2 | -31/+62 |
| |\ | | | | | Refactor asmlabel | ||||
| | * | AsmConstraint.label is always an asm_label: remove dead code | Ajax | 2016-01-12 | 1 | -19/+4 |
| | | | |||||
| | * | AsmBloc: handle multiple constraints to the same block | Ajax | 2016-01-12 | 2 | -2/+48 |
| | | | | | | | | | | | | | Always the same type -> one of the constraint c_bad and sth -> error c_next and c_to -> c_next | ||||
| | * | AsmConstraint: ensure label is always an asm_label | Ajax | 2016-01-11 | 2 | -1/+4 |
| | | | |||||
| | * | Mips32: fix delayslot (creds @serpilliere) | Ajax | 2016-01-11 | 1 | -5/+2 |
| | | | |||||
| | * | AsmLabel label argument must not be optional | Ajax | 2016-01-11 | 1 | -4/+4 |
| | | | |||||
| * | | BinStream: use a standard dict instead of a bounded one | Ajax | 2016-01-08 | 1 | -2/+1 |
| | | | | | | | | | Generally, the cache is not very large. Using a dict is more effective. | ||||
| * | | Cpu: leave atomic mode on disasm Exception | Ajax | 2016-01-08 | 1 | -5/+5 |
| | | | |||||
| * | | BinStream: ensure atomic mode state before switching | Ajax | 2016-01-08 | 1 | -0/+2 |
| | | | |||||
| * | | MnemoDis: enter atomic mode for a disasm boost | Ajax | 2016-01-08 | 2 | -1/+5 |
| | | | |||||
| * | | BinStream: use the wrapper on get_bytes for each bin stream | Ajax | 2016-01-08 | 2 | -6/+6 |
| | | | |||||
| * | | BinStream: introduce Atomic Mode (read may be cached) | Ajax | 2016-01-08 | 1 | -1/+34 |
| | | | |||||
| * | | BinStream: comment getbits | Ajax | 2016-01-08 | 1 | -16/+22 |
| | | | |||||
| * | | BinStream: merge getbits calls to getbytes | Ajax | 2016-01-08 | 1 | -5/+7 |
| |/ | |||||
| * | Autopep8 | Fabrice Desclaux | 2015-12-16 | 1 | -2/+1 |
| | | |||||
| * | Update api according to Elfesteem | Fabrice Desclaux | 2015-12-16 | 1 | -3/+3 |
| | | |||||
| * | Semantic: instr.mode doesn't stand for ir.IRDst.size | Ajax | 2015-11-17 | 1 | -3/+3 |
| | | | | | | These objects may represent two different things. In x86, they both have the same value, but this is not always true for others architectures | ||||
| * | SemBuilder: introduce a new notation {a, b} for ExprCompose | Ajax | 2015-11-16 | 1 | -0/+27 |
| | | |||||
| * | SemBuilder: use a local context per function | Ajax | 2015-11-16 | 1 | -2/+6 |
| | | |||||
| * | SemBuilder: handle if .. else .. structures | Ajax | 2015-11-16 | 1 | -37/+46 |
| | | |||||
| * | SemBuilder: update `ir.get_next_label` API | Ajax | 2015-11-16 | 1 | -1/+2 |
| | | |||||