about summary refs log tree commit diff stats
path: root/miasm2/core/utils.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* BoundedDict: access to the internal dict via propertyCamille Mougey2015-10-231-0/+5
| | | | | There is no performance loss (on a 3 minutes execution sample) due to the additionnal function call.
* BoundedDict: better dict syntaxFlorent Monjalet2015-10-151-2/+2
|
* BoundedDict: faster implementationFlorent Monjalet2015-10-111-8/+25
| | | | | Replaced collections.Counter with a simple {key -> int} built-in dict. This allows for an up to 2 times speed up when jitting.
* Core: Introduce BoundedDict and its regression testCamille Mougey2015-02-231-0/+73
|
* PyLint: Remove keyword redefinition, bad open modeCamille Mougey2015-02-181-2/+2
|
* jit: move code into arch directoryserpilliere2014-08-211-0/+4
|
* Utils: missing pack structserpilliere2014-07-091-0/+7
|
* Miasm v2serpilliere2014-06-031-0/+39
* 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 !