| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | X86: fix popfw semantic | Fabrice Desclaux | 2019-02-08 | 1 | -1/+1 |
| | | |||||
| * | Support for REP instruction prefix (#956) | Vladislav Hrčka | 2019-02-07 | 2 | -20/+26 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added function find_path_by_successors The function find_path_by_successors does the same as function find_path, but it searches the paths from src to dst, not vice versa like find_path, which might be more efficient in some cases. * Added support for REP instruction prefix Added support for REP instruction prefix * Added support for REP instruction prefix Added support for REP instruction prefix * Added support for REP prefix According to https://c9x.me/x86/html/file_module_x86_id_279.html 0xF3AD is REP LODSD and not REPE LODSD * Added REP instruction prefix support fix Added REP instruction prefix support fix * Added REP instruction prefix support fix Added REP instruction prefix support and REPNZ, REPZ aliases * Fix of adding REP instruction prefix Fixing https://github.com/cea-sec/miasm/pull/956#discussion_r253361754. I also put https://github.com/nofiv/miasm/edit/master/miasm2/arch/x86/arch.py#diff-f7dd74dede0a04f194dff140d0976b98L739 behind the loop since it seems to be serving similar purpose. * Fix of the added REP intruction prefix Fixing https://github.com/cea-sec/miasm/pull/956#discussion_r253361339 * Discard changes Creating another PR for this * Update arch.py | ||||
| * | Add ENDBR64 and ENDBR32 instructions | William Bruneau | 2019-02-05 | 2 | -0/+12 |
| | | |||||
| * | Fix bad english | Fabrice Desclaux | 2019-01-17 | 2 | -5/+5 |
| | | |||||
| * | Rename idiv/imod into sdiv/smod | Fabrice Desclaux | 2019-01-15 | 1 | -2/+2 |
| | | |||||
| * | Jitter: fix pc update in trace mode | Fabrice Desclaux | 2019-01-13 | 1 | -2/+6 |
| | | |||||
| * | Update arch.py | Vladislav Hrčka | 2019-01-11 | 1 | -1/+4 |
| | | | | Instruction prefix wasn't shown when to_string method was used since instruction_x86 used just the inherited one(https://github.com/cea-sec/miasm/blob/master/miasm2/arch/x86/arch.py#L452) from instruction(https://github.com/cea-sec/miasm/blob/master/miasm2/core/cpu.py#L997) which doesn't support these prefixes. | ||||
| * | Fix typos & add codespell | Pierre LALET | 2018-12-23 | 3 | -21/+21 |
| | | |||||
| * | Handle movupd bidirectional mode | Nicolas Guigo | 2018-11-26 | 1 | -1/+2 |
| | | |||||
| * | X86 SEM SH[LR]D : use masked count for all expression in _shift_tpl | w4kfu | 2018-11-15 | 1 | -4/+4 |
| | | |||||
| * | Merge pull request #883 from w4kfu/zeroextent_cmov | serpilliere | 2018-11-15 | 1 | -1/+1 |
| |\ | | | | | X86 SEM CMOV : add zeroextent if destination size is 32 | ||||
| | * | X86 SEM CMOV : add assignation | w4kfu | 2018-11-15 | 1 | -1/+1 |
| | | | |||||
| * | | X86 SEM ROL/SHL/SHLD/... add assignation | w4kfu | 2018-11-15 | 1 | -9/+3 |
| | | | |||||
| * | | fix simplification that delete affectation | w4kfu | 2018-11-14 | 1 | -4/+3 |
| |/ | | | | Revert "X86 sem : mov assignexpr rot / shift" | ||||
| * | Merge pull request #867 from serpilliere/vm_get_int | Camille Mougey | 2018-11-11 | 1 | -12/+11 |
| |\ | | | | | Vm get int | ||||
| | * | All: updt api | Fabrice Desclaux | 2018-10-12 | 1 | -12/+11 |
| | | | |||||
| * | | add zeroextent if destination size is 32 | w4kfu | 2018-11-10 | 1 | -11/+13 |
| | | | |||||
| * | | Expression: replace arg by ptr in ExprMem | Fabrice Desclaux | 2018-10-12 | 2 | -55/+55 |
| |/ | |||||
| * | X86: fix inc/dec 64bit | Fabrice Desclaux | 2018-10-06 | 1 | -2/+2 |
| | | |||||
| * | Expresion: use ExprAssign instead of ExprAff | Fabrice Desclaux | 2018-10-01 | 3 | -543/+543 |
| | | | | | | | ExprAff stands for (in french) "Expression affectation" We will now use ExprAssign (for Expression Assignment) (instead of ExprAss) | ||||
| * | Code cleaning: lgtm.com | Fabrice Desclaux | 2018-09-20 | 2 | -14/+1 |
| | | |||||
| * | X86: rdmsr/wrmsr priv instr | Fabrice Desclaux | 2018-09-11 | 1 | -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 sem | Fabrice Desclaux | 2018-09-10 | 1 | -8/+21 |
| | | |||||
| * | Add support for more FP operations, expand fxam | Ajax | 2018-09-03 | 1 | -12/+93 |
| | | |||||
| * | X86: fix float | Fabrice Desclaux | 2018-08-29 | 1 | -34/+77 |
| | | |||||
| * | Code cleaning: lgtm.com | Fabrice Desclaux | 2018-08-23 | 1 | -4/+0 |
| | | |||||
| * | X86: add nop form | Fabrice Desclaux | 2018-08-16 | 1 | -0/+7 |
| | | |||||
| * | X86: Explicit flags | Fabrice Desclaux | 2018-08-06 | 1 | -132/+352 |
| | | |||||
| * | Jitter: add support for SystemV syscall convention (arml / x86_64) | Ajax | 2018-07-24 | 1 | -0/+8 |
| | | |||||
| * | Merge pull request #802 from serpilliere/fix_x86_asm_64 | Camille Mougey | 2018-07-18 | 1 | -1/+1 |
| |\ | | | | | X86: fix 64 bit asm | ||||
| | * | X86: fix 64 bit asm | Fabrice Desclaux | 2018-07-17 | 1 | -1/+1 |
| | | | |||||
| * | | IR/Analysis: call_effects can add extra blocks | Fabrice Desclaux | 2018-07-18 | 1 | -12/+19 |
| | | | |||||
| * | | Jitter: use bignum | Fabrice Desclaux | 2018-07-13 | 1 | -2/+2 |
| |/ | |||||
| * | Add support for new SSE operations (based on QEMU i386 test_sse) | Ajax | 2018-07-10 | 1 | -104/+299 |
| | | |||||
| * | Introduce the new float notation and operations for x86 semantic | Ajax | 2018-07-10 | 1 | -94/+83 |
| | | | | | | | | | | | | | | | | Basically, operations are: - fpconvert_fp32, fpconvert_fp64, fpconvert_fp80: convert from a floating point to another (truncate or extend) - sint_to_fp32, sint_to_fp64, sint_to_fp80: convert from a signed integer to a floating point number (original size can differ) - fp_to_sint32, fp_to_sint64, ...: convert from a floating point number to a signed integer, as ExprInt. Rounding mode is nearbyint. (original size can differ) - fpround_nearbyint: convert from floating point to floating point using the nearest int - fpround_towardszero: convert from floating point to floating point, towards zero | ||||
| * | Add new SSE instruction description and updates old ones | Ajax | 2018-07-10 | 1 | -14/+72 |
| | | |||||
| * | Update symbol_pool's deprecated API -> LocationDB | Ajax | 2018-07-03 | 1 | -4/+4 |
| | | |||||
| * | symbol_pool -> loc_db | Ajax | 2018-07-03 | 4 | -47/+47 |
| | | |||||
| * | Jitter: rename jitter class into Jitter | Fabrice Desclaux | 2018-06-21 | 1 | -10/+10 |
| | | |||||
| * | X86/sem: simplify pop addr | Fabrice Desclaux | 2018-06-15 | 1 | -1/+1 |
| | | |||||
| * | Core: replace AsmLabel by LocKey | Fabrice Desclaux | 2018-06-09 | 2 | -147/+147 |
| | | |||||
| * | Expr: Add new word ExprLoc | Fabrice Desclaux | 2018-06-08 | 3 | -140/+154 |
| | | | | | | This word represents a location in the binary. Thus, the hack of ExprId containing an AsmLabel ends here. | ||||
| * | Rename x86 specific op 'cpuid' to 'x86_cpuid' | Ajax | 2018-05-15 | 1 | -4/+4 |
| | | |||||
| * | Op bsr/bsf are replaced by cnttrailzeros / cntleadzeros, defined in 0 | Ajax | 2018-05-15 | 1 | -5/+9 |
| | | |||||
| * | Parser: fix arguments name | Fabrice Desclaux | 2018-05-14 | 1 | -11/+11 |
| | | |||||
| * | Core: updt parser structure | Fabrice Desclaux | 2018-05-14 | 1 | -187/+176 |
| | | |||||
| * | Cpu: fix fromstring arg name | Fabrice Desclaux | 2018-05-09 | 1 | -24/+23 |
| | | |||||
| * | Cpu: lmask is property | Fabrice Desclaux | 2018-04-18 | 1 | -2/+4 |
| | | |||||
| * | Merge pull request #710 from serpilliere/fix_segm_size | Camille Mougey | 2018-04-09 | 1 | -14/+32 |
| |\ | | | | | X86: fix segm's size generation | ||||
| | * | X86: fix segm's size generation | Fabrice Desclaux | 2018-04-09 | 1 | -14/+32 |
| | | | |||||