| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Introduce MatchGraph, the counterpart of MatchExpr for DiGraph | Ajax | 2016-01-27 | 1 | -0/+248 |
| | | |||||
| * | Merge pull request #309 from commial/feature-basicblocks | serpilliere | 2016-01-26 | 14 | -393/+842 |
| |\ | | | | | Feature AsmCFG | ||||
| | * | Rename BasicBlocks -> AsmCFG, more comprehensible, include "graph" | Ajax | 2016-01-26 | 4 | -26/+26 |
| | | | |||||
| | * | BasicBlocks.pendings can be a set (creds @serpilliere) | Ajax | 2016-01-26 | 2 | -6/+6 |
| | | | |||||
| | * | Introduce tests for miasm2.core.asmbloc | Ajax | 2016-01-26 | 2 | -0/+285 |
| | | | |||||
| | * | 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 | ||||
| | * | BasicBlocks: update examples with the new API | Ajax | 2016-01-26 | 8 | -28/+18 |
| | | | |||||
| | * | 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 | 2 | -0/+34 |
| | | | |||||
| | * | Graph: two graphs are equals if they have the same nodes and edges | Ajax | 2016-01-25 | 2 | -0/+17 |
| |/ | |||||
| * | Merge pull request #308 from commial/rename-test | serpilliere | 2016-01-25 | 3 | -2/+2 |
| |\ | | | | | Move types -> test_types to avoid namespace collision (creds @fmonjalet) | ||||
| | * | Move types -> test_types to avoid namespace collision (creds @fmonjalet) | Ajax | 2016-01-25 | 3 | -2/+2 |
| |/ | |||||
| * | Merge pull request #307 from serpilliere/fix_add_instr | Camille Mougey | 2016-01-21 | 2 | -4/+7 |
| |\ | | | | | Fix asmbloc | ||||
| | * | 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 | 2 | -2/+3 |
| |/ | |||||
| * | Merge pull request #284 from fmonjalet/feature_memstruct | serpilliere | 2016-01-18 | 6 | -3/+2452 |
| |\ | | | | | Feature MemStruct | ||||
| | * | Types: misleading comment correction in example | Florent Monjalet | 2016-01-18 | 1 | -1/+1 |
| | | | |||||
| | * | Types: Void type repr | Florent Monjalet | 2016-01-18 | 2 | -1/+3 |
| | | | |||||
| | * | Types: typo, MemStruct.get_offset should be a classmethod | Florent Monjalet | 2016-01-18 | 2 | -2/+19 |
| | | | | | | | | | 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 | 2 | -11/+99 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | 2 | -7/+21 |
| | | | | | | | | | | | 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 | 3 | -20/+27 |
| | | | |||||
| | * | 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: example on type manipulations | Florent Monjalet | 2016-01-18 | 1 | -1/+23 |
| | | | |||||
| | * | 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 | 3 | -46/+79 |
| | | | |||||
| | * | MemStruct/Types: Renamed analysis.mem to core.types | Florent Monjalet | 2016-01-18 | 4 | -13/+14 |
| | | | |||||
| | * | MemStruct: Pinned* renamed back to Mem* | Florent Monjalet | 2016-01-18 | 3 | -166/+166 |
| | | | |||||
| | * | MemStruct: Global doc update | Florent Monjalet | 2016-01-18 | 3 | -174/+254 |
| | | | |||||
| | * | MemStruct: allow Type instance in cast | Florent Monjalet | 2016-01-18 | 3 | -16/+19 |
| | | | |||||
| | * | MemStruct: Str type | Florent Monjalet | 2016-01-18 | 3 | -67/+86 |
| | | | |||||
| | * | MemStruct: Array/PinnedArray homogeneity | Florent Monjalet | 2016-01-18 | 3 | -158/+84 |
| | | | | | | | | | | | Array access logic has moved to Array, Pinned(Sized)Array just contains the logic to interface with memory | ||||
| | * | MemStruct: No more 'pin' and 'mem_sized_arraytype' functions | Florent Monjalet | 2016-01-18 | 2 | -55/+13 |
| | | | |||||
| | * | MemStruct: big refactor in process | Florent Monjalet | 2016-01-18 | 3 | -348/+407 |
| | | | | | | | | | Doc is currently incoherent, impl will also be completed | ||||
| | * | MemStruct: Refactoring in process | Florent Monjalet | 2016-01-18 | 1 | -0/+86 |
| | | | |||||
| | * | MemStruct: Big refactoring, Mem* -> Pinned* | Florent Monjalet | 2016-01-18 | 3 | -304/+325 |
| | | | | | | | | | | | This commit is the first phase of the Type refactor. The PinnedType class has been separated from the more specific PinnedStruct class. | ||||
| | * | MemStruct: MemField -> Type | Florent Monjalet | 2016-01-18 | 1 | -31/+32 |
| | | | |||||
| | * | MemStruct: Struct -> RawStruct | Florent Monjalet | 2016-01-18 | 2 | -10/+10 |
| | | | |||||
| | * | MemStruct: MemSelf usage fix | Florent Monjalet | 2016-01-18 | 2 | -4/+14 |
| | | | |||||
| | * | MemStruct: hash form fix | Florent Monjalet | 2016-01-18 | 1 | -11/+8 |
| | | | | | | | | | (thx @commial) | ||||
| | * | MemStruct: doc + TODO additions + minor fixes | Florent Monjalet | 2016-01-18 | 1 | -45/+45 |
| | | | |||||
| | * | MemStruct example: fix memset usage | Florent Monjalet | 2016-01-18 | 1 | -4/+2 |
| | | | |||||