| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2016-01-26 | Rename BasicBlocks -> AsmCFG, more comprehensible, include "graph" | Ajax | 4 | -26/+26 | |
| 2016-01-26 | BasicBlocks.pendings can be a set (creds @serpilliere) | Ajax | 2 | -6/+6 | |
| 2016-01-26 | Introduce tests for miasm2.core.asmbloc | Ajax | 2 | -0/+285 | |
| 2016-01-26 | AsmBloc: rewrite split_bloc into BasicBlocks.apply_splitting | Ajax | 1 | -43/+58 | |
| 2016-01-26 | AsmBloc: rewrite block_merge using graph simplification | Ajax | 1 | -171/+46 | |
| 2016-01-26 | Graph: introduce GraphSimplifier, counterpart of ExpressionSimplifier | Ajax | 1 | -0/+34 | |
| for Graph | |||||
| 2016-01-26 | BasicBlocks: update examples with the new API | Ajax | 8 | -28/+18 | |
| 2016-01-26 | AsmBloc: introduce BasicBlocks, standing for a CFG with associated methods | Ajax | 2 | -150/+344 | |
| 2016-01-25 | Graph: add_node return the previous status | Ajax | 1 | -1/+6 | |
| 2016-01-25 | Graph; introduce copy and merge | Ajax | 2 | -0/+34 | |
| 2016-01-25 | Graph: two graphs are equals if they have the same nodes and edges | Ajax | 2 | -0/+17 | |
| 2016-01-25 | Move types -> test_types to avoid namespace collision (creds @fmonjalet) | Ajax | 3 | -2/+2 | |
| 2016-01-21 | Asmbloc: fix get_range (creds: @commial) | Fabrice Desclaux | 1 | -2/+4 | |
| 2016-01-21 | Asmbloc: Fix asmbloc label (creds @commial) | Fabrice Desclaux | 2 | -2/+3 | |
| 2016-01-18 | Types: misleading comment correction in example | Florent Monjalet | 1 | -1/+1 | |
| 2016-01-18 | Types: Void type repr | Florent Monjalet | 2 | -1/+3 | |
| 2016-01-18 | Types: typo, MemStruct.get_offset should be a classmethod | Florent Monjalet | 2 | -2/+19 | |
| Also added tests and MemArray.get_offset | |||||
| 2016-01-18 | Types: MemStruct.get_offset() shorthand for @serpi | Florent Monjalet | 1 | -0/+4 | |
| 2016-01-18 | Types: Support anonymous Struct/Union/BitField | Florent Monjalet | 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; }; }; } | |||||
| 2016-01-18 | Types: adding the ("field", SomeMemType) syntax | Florent Monjalet | 2 | -7/+21 | |
| Shorthand for ("field", SomeMemStruct.get_type()) in a Struct or MemStruct fields definition. | |||||
| 2016-01-18 | Types: short test to assert MemStruct unicity | Florent Monjalet | 1 | -0/+4 | |
| 2016-01-18 | Types: Type size is now a property | Florent Monjalet | 3 | -20/+27 | |
| 2016-01-18 | Types: Str encoding now generic to all str python supported encodings | Florent Monjalet | 1 | -64/+134 | |
| 2016-01-18 | Types: zip -> itertools.izip | Florent Monjalet | 1 | -2/+3 | |
| 2016-01-18 | MemStruct/Types: ALLOCATOR becomes a MemType class attribute | Florent Monjalet | 1 | -17/+24 | |
| 2016-01-18 | MemStruct: little MemType doc addition | Florent Monjalet | 1 | -1/+1 | |
| 2016-01-18 | MemStruct/Types: example on type manipulations | Florent Monjalet | 1 | -1/+23 | |
| 2016-01-18 | MemStruct/Types: Array idx fix + MemStr.from_str feature | Florent Monjalet | 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. | |||||
| 2016-01-18 | MemStruct/Types: pinned renamed to lval | Florent Monjalet | 3 | -46/+79 | |
| 2016-01-18 | MemStruct/Types: Renamed analysis.mem to core.types | Florent Monjalet | 4 | -13/+14 | |
| 2016-01-18 | MemStruct: Pinned* renamed back to Mem* | Florent Monjalet | 3 | -166/+166 | |
| 2016-01-18 | MemStruct: Global doc update | Florent Monjalet | 3 | -174/+254 | |
| 2016-01-18 | MemStruct: allow Type instance in cast | Florent Monjalet | 3 | -16/+19 | |
| 2016-01-18 | MemStruct: Str type | Florent Monjalet | 3 | -67/+86 | |
| 2016-01-18 | MemStruct: Array/PinnedArray homogeneity | Florent Monjalet | 3 | -158/+84 | |
| Array access logic has moved to Array, Pinned(Sized)Array just contains the logic to interface with memory | |||||
| 2016-01-18 | MemStruct: No more 'pin' and 'mem_sized_arraytype' functions | Florent Monjalet | 2 | -55/+13 | |
| 2016-01-18 | MemStruct: big refactor in process | Florent Monjalet | 3 | -348/+407 | |
| Doc is currently incoherent, impl will also be completed | |||||
| 2016-01-18 | MemStruct: Refactoring in process | Florent Monjalet | 1 | -0/+86 | |
| 2016-01-18 | MemStruct: Big refactoring, Mem* -> Pinned* | Florent Monjalet | 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. | |||||
| 2016-01-18 | MemStruct: MemField -> Type | Florent Monjalet | 1 | -31/+32 | |
| 2016-01-18 | MemStruct: Struct -> RawStruct | Florent Monjalet | 2 | -10/+10 | |
| 2016-01-18 | MemStruct: MemSelf usage fix | Florent Monjalet | 2 | -4/+14 | |
| 2016-01-18 | MemStruct: hash form fix | Florent Monjalet | 1 | -11/+8 | |
| (thx @commial) | |||||
| 2016-01-18 | MemStruct: doc + TODO additions + minor fixes | Florent Monjalet | 1 | -45/+45 | |
| 2016-01-18 | MemStruct example: fix memset usage | Florent Monjalet | 1 | -4/+2 | |
| 2016-01-18 | Heap: adding page permissions option | Florent Monjalet | 1 | -4/+7 | |
| 2016-01-18 | MemStruct: fix example to use Ptr to MemSizedArray rather that Array | Florent Monjalet | 1 | -3/+3 | |
| 2016-01-18 | MemStruct: Fix MemStruct __eq__ | Florent Monjalet | 2 | -6/+9 | |
| 2016-01-18 | MemStruct: dyn types (returned by mem*()) are now cached | Florent Monjalet | 2 | -26/+53 | |
| 2016-01-18 | MemStruct: all MemField __hash__ | Florent Monjalet | 1 | -0/+25 | |