about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
| * Jitter: Fix memory leakFabrice Desclaux2018-09-192-8/+37
|/ | | | | | References on PyLong where lost. Memory exhaustion may hapen in python jitter because of high usage of get/set register.
* Merge pull request #851 from serpilliere/appveyor_readmyCamille Mougey2018-09-111-0/+1
|\ | | | | README: add appveyor status
| * README: add appveyor statusFabrice Desclaux2018-09-111-0/+1
| |
* | Merge pull request #850 from serpilliere/fix_aamCamille Mougey2018-09-111-16/+23
|\ \ | |/ |/| Fix aam
| * X86: rdmsr/wrmsr priv instrFabrice Desclaux2018-09-111-8/+2
| | | | | | | | | | | | RDMSR/WRMSR where modelised as load/store from special symbolic value. This behavior is not compatible with jit. If someone needs another model, fix mnemo_func.
| * X86: fix aam semFabrice Desclaux2018-09-101-8/+21
|/
* Adds Windows support and AppVeyor CI (#835)Axel Souchet2018-09-0928-324/+532
| | | | | | | | | | | | | | | | | | | | | | | | * Get miasm to work on Windows, also add AppVeyor CI * Fix gcc jitter on Linux * Make the dse_crackme tests work on Windows * calling build and then install is less confusing than install twice * fix os.rename race condition on Windows * clean it up * Clean up after the unused cl.exe's artifacts * Use is_win instead of an additional check * Fix issue on Windows where 'w' and 'wb' modes are different * Address review feedback * setuptools is actually not required, so reverting
* Merge pull request #839 from commial/feature/more-floatserpilliere2018-09-056-127/+160
|\ | | | | Feature/more float
| * Add support for more FP operations, expand fxamAjax2018-09-035-127/+126
| |
| * Add support for floating is_zero, is_inf, is_denormalAjax2018-08-301-0/+34
| |
* | Merge pull request #838 from serpilliere/remove_malware_sampleCamille Mougey2018-08-302-2/+2
|\ \ | | | | | | Remove malware sample
| * | Remove malware sampleFabrice Desclaux2018-08-302-2/+2
|/ /
* | Merge pull request #837 from commial/refactor/better-deterministic-testsserpilliere2018-08-302-9/+10
|\ \ | |/ |/| Refactor/better deterministic tests
| * Use the dse_crackme compiled versionAjax2018-08-302-7/+1
| |
| * Mark Linux specific tests with a tagAjax2018-08-301-2/+9
| |
* | Merge pull request #829 from serpilliere/fix_floatCamille Mougey2018-08-306-62/+90
|\ \ | | | | | | X86: fix float
| * | X86: fix floatFabrice Desclaux2018-08-296-62/+90
| |/
* | Merge pull request #827 from serpilliere/fix_mipsCamille Mougey2018-08-3013-126/+224
|\ \ | | | | | | Fix mips
| * | Expr: use TOK define instead of stringsFabrice Desclaux2018-08-297-61/+98
| | |
| * | Test/simplify: dont use concurrent simplificationsFabrice Desclaux2018-08-291-5/+4
| | |
| * | Mep: use correct operator in IRFabrice Desclaux2018-08-292-19/+12
| | |
| * | Simplify/explicit: add missing opFabrice Desclaux2018-08-291-0/+8
| | |
| * | Expression: add simp condFabrice Desclaux2018-08-292-0/+15
| | |
| * | MIPS: fix IRA call generationFabrice Desclaux2018-08-291-37/+69
| | |
| * | MIPS: Explicit flagsFabrice Desclaux2018-08-292-14/+27
| | |
| * | Mips: missing addrsizeFabrice Desclaux2018-08-291-0/+1
| |/
* | Merge pull request #836 from commial/fix/bad-initserpilliere2018-08-291-1/+2
|\ \ | |/ |/| Fix bad initialization
| * Fix bad initializationAjax2018-08-291-1/+2
|/
* Merge pull request #828 from serpilliere/fix_lgtm_1Camille Mougey2018-08-2932-97/+101
|\ | | | | Code cleaning: lgtm.com
| * Code cleaning: lgtm.comFabrice Desclaux2018-08-2332-97/+101
| |
* | Merge pull request #834 from serpilliere/fix_expr_reduceCamille Mougey2018-08-291-8/+12
|\ \ | | | | | | ExprReduce: fix missing sub class use
| * | ExprReduce: fix missing sub class useFabrice Desclaux2018-08-281-8/+12
|/ /
* | Merge pull request #833 from serpilliere/exprnode_subclassCamille Mougey2018-08-241-24/+122
|\ \ | | | | | | Expr/Reduce: gen exprnode subclass
| * | Expr/Reduce: gen exprnode subclassFabrice Desclaux2018-08-241-24/+122
| | |
* | | Merge pull request #831 from serpilliere/fix_asm_parseCamille Mougey2018-08-242-3/+4
|\ \ \ | | | | | | | | Core: fix asm int
| * | | Core: fix asm intFabrice Desclaux2018-08-242-3/+4
| |/ /
* | | Merge pull request #832 from serpilliere/add_name_locCamille Mougey2018-08-241-9/+3
|\ \ \ | |/ / |/| | Core/Location: add name to a known location
| * | Core/Location: add name to a known locationFabrice Desclaux2018-08-241-9/+3
|/ /
* | Merge pull request #830 from serpilliere/fix_example_jitCamille Mougey2018-08-231-3/+2
|\ \ | | | | | | Example: fix upx unpack
| * | Example: fix upx unpackFabrice Desclaux2018-08-231-3/+2
|/ /
* | Merge pull request #817 from GAJaloyan/masterserpilliere2018-08-232-0/+21
|\ \ | |/ |/| adding a new simplification for double zeroExtends.
| * adding a new simplification for double zeroExtends and signExtends.GAJaloyan2018-08-202-0/+21
|/
* Merge pull request #825 from cea-sec/x86_nopCamille Mougey2018-08-192-0/+11
|\ | | | | X86: add nop form
| * X86: add nop formFabrice Desclaux2018-08-162-0/+11
|/
* Merge pull request #821 from cea-sec/fix_assignblk_eqCamille Mougey2018-08-131-1/+1
|\ | | | | IR: fix assignblk eq
| * IR: fix assignblk eqFabrice Desclaux2018-08-131-1/+1
|/
* Merge pull request #820 from commial/feature/add_cc_posCamille Mougey2018-08-081-0/+4
|\ | | | | Add support for CC_POS
| * Add support for CC_POSCamille Mougey2018-08-081-0/+4
|/
* Merge pull request #818 from serpilliere/fix_un_ssaCamille Mougey2018-08-071-1/+1
|\ | | | | SSA: fix tipo
| * SSA: fix tipoFabrice Desclaux2018-08-071-1/+1
| |