about summary refs log tree commit diff stats
path: root/miasm2/core/utils.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename miasm2 to miasmFabrice Desclaux2019-03-051-234/+0
|
* Support python2/python3Fabrice Desclaux2019-03-051-16/+68
|
* Bin_stream: add get_u8/u16/u32/u64Fabrice Desclaux2018-10-111-0/+24
|
* Core/utils: autopep8Fabrice Desclaux2016-02-191-5/+8
|
* Core/utils: sanitize whoami/get_caller_nameFabrice Desclaux2016-02-191-3/+13
|
* Tipo: dictionaryFabrice Desclaux2016-01-301-3/+3
|
* 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 !