about summary refs log tree commit diff stats
path: root/miasm2 (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Code cleaning: lgtm.comFabrice Desclaux2018-09-2022-47/+30
| |/
* / MSR and MRS exception have instruction names interchangedVikas Gupta2018-09-272-4/+4
|/
* Jit/Arch: init regs size for all archFabrice Desclaux2018-09-196-263/+265
|
* JitCore: Fix bn to reg convertionFabrice Desclaux2018-09-192-22/+19
|
* Bignum: allow mask even for max bignum sizeFabrice Desclaux2018-09-191-3/+2
|
* 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.
* 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-0920-225/+325
| | | | | | | | | | | | | | | | | | | | | | | | * 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
* 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 #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-3010-101/+212
|\ \ | | | | | | Fix mips
| * | Expr: use TOK define instead of stringsFabrice Desclaux2018-08-296-59/+96
| | |
| * | Mep: use correct operator in IRFabrice Desclaux2018-08-291-1/+6
| | |
| * | 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
| |/
* / Fix bad initializationAjax2018-08-291-1/+2
|/
* Merge pull request #828 from serpilliere/fix_lgtm_1Camille Mougey2018-08-2931-95/+100
|\ | | | | Code cleaning: lgtm.com
| * Code cleaning: lgtm.comFabrice Desclaux2018-08-2331-95/+100
| |
* | 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
| |/ /
* / / Core/Location: add name to a known locationFabrice Desclaux2018-08-241-9/+3
|/ /
* / adding a new simplification for double zeroExtends and signExtends.GAJaloyan2018-08-202-0/+21
|/
* X86: add nop formFabrice Desclaux2018-08-161-0/+7
|
* IR: fix assignblk eqFabrice Desclaux2018-08-131-1/+1
|
* 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
| |
* | Canonicalize before returning the base ptr (avoid ((a + b) + c))Fabrice Desclaux2018-08-071-1/+1
| |
* | Func_read can be called with a non ExprInt exprFabrice Desclaux2018-08-071-1/+4
|/
* Merge pull request #816 from serpilliere/operator_high_levelCamille Mougey2018-08-0622-435/+2316
|\ | | | | Operator high level
| * Analysis: add snippet of stack variable detectionFabrice Desclaux2018-08-061-2/+248
| |
| * Simplifications: add common hl reductionsFabrice Desclaux2018-08-062-4/+355
| |
| * MEP: fix signext in disasmFabrice Desclaux2018-08-061-2/+3
| |
| * LLVM: zero/sign ext supportFabrice Desclaux2018-08-061-0/+22
| |
| * ARM: add msr/mrs for eflagFabrice Desclaux2018-08-061-0/+31
| |
| * Symbexec: Use simplifier with high level in symbexecFabrice Desclaux2018-08-066-17/+32
| |
| * Codegen: simplify high level opFabrice Desclaux2018-08-061-0/+8
| |
| * IR: simplify block cbFabrice Desclaux2018-08-061-0/+15
| |
| * Analysis: fix tipoFabrice Desclaux2018-08-061-1/+1
| |
| * Analysis: add remove phiFabrice Desclaux2018-08-061-0/+118
| |
| * Analysis: add ssa to defuseFabrice Desclaux2018-08-061-2/+255
| |