about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge pull request #670 from serpilliere/dis_block_callbackCamille Mougey2018-02-036-16/+25
|\ \ | | | | | | Asmblock: fix dis_block_callback
| * | Asmblock: fix dis_block_callbackFabrice Desclaux2018-02-026-16/+25
|/ /
* | Merge pull request #669 from serpilliere/fix_cdqCamille Mougey2018-02-024-15/+489
|\ \ | | | | | | X86: fix cdq/cbw...
| * | X86: fix cdq/cbw...Fabrice Desclaux2018-02-024-15/+489
| |/
* | Merge pull request #665 from GAJaloyan/armserpilliere2018-01-301-1/+18
|\ \ | | | | | | adding bics
| * | adding bicsGAJaloyan2018-01-291-1/+18
| |/
* | Merge pull request #664 from WilliamBruneau/typo_brakpointserpilliere2018-01-291-1/+1
|\ \ | |/ |/| Fix: 'brakpoint' -> 'breakpoint'
| * Fix: 'brakpoint' -> 'breakpoint'William Bruneau2018-01-291-1/+1
| |
* | Merge pull request #663 from commial/feature-missing-sseserpilliere2018-01-274-13/+155
|\ \ | | | | | | Add a few SSE instructions
| * | Add PREFETCHNTA instruction semantic (as a NOP)Ajax2018-01-261-3/+6
| | |
| * | Add PCMPGTB instructionAjax2018-01-262-0/+8
| | |
| * | Add PSRLDQ semanticAjax2018-01-261-0/+12
| | |
| * | Add PALIGNR x86 instruction (asm & semantic)Ajax2018-01-263-0/+35
| | |
| * | Add support for BNDMOV instruction (with an empty semantic)Ajax2018-01-263-0/+20
| | |
| * | Add support for BND registers and parsing in disassemblyAjax2018-01-262-10/+74
| | | | | | | | | | | | This implementation is mostly a copy/paste on similar XMM ones
* | | Merge pull request #662 from commial/fix-bsfr-implemserpilliere2018-01-272-8/+7
|\ \ \ | |/ / |/| | Fix BSR / BSL / CLZ implementation to avoid signed overflow
| * | Fix BSR / BSL / CLZ implementation to avoid signed overflowAjax2018-01-262-8/+7
|/ /
* | Merge pull request #660 from serpilliere/fix_windows_openCamille Mougey2018-01-169-15/+15
|\ \ | | | | | | Append b to the opens mode
| * | append b to the opens mode ; Python on Windows makes a distinction between ↵w4kfu2018-01-169-15/+15
|/ / | | | | | | text and binary files
* | Merge pull request #659 from serpilliere/fix_tcc_frenchCamille Mougey2018-01-161-4/+4
|\ \ | | | | | | Jitter: remove french debug string
| * | Jitter: remove french debug stringmkrzywix2018-01-161-4/+4
| | |
* | | Merge pull request #657 from GAJaloyan/masterserpilliere2018-01-152-1/+18
|\ \ \ | | | | | | | | Adding ucomisd
| * | | adding ucomisdGAJaloyan2018-01-122-1/+18
| |/ /
* | | Merge pull request #656 from serpilliere/fix_api_winCamille Mougey2018-01-121-2/+2
|\ \ \ | |/ / |/| | WinAPI: fix ntdll memset abi
| * | WinAPI: fix ntdll memset abiFabrice Desclaux2018-01-111-2/+2
|/ /
* | Merge pull request #654 from serpilliere/use_stp_translatorCamille Mougey2018-01-114-194/+108
|\ \ | | | | | | Use stp translator
| * | Example: fix disasm wdFabrice Desclaux2018-01-111-0/+1
| | |
| * | Expression: use stp translatorFabrice Desclaux2018-01-113-194/+107
| | |
* | | Merge pull request #655 from serpilliere/ctype_msp430Camille Mougey2018-01-112-1/+72
|\ \ \ | |/ / |/| | MSP430: add ctype
| * | MSP430: add ctypeFabrice Desclaux2018-01-112-1/+72
|/ /
* | Merge pull request #652 from serpilliere/fix_ida_symb_exec_pluginCamille Mougey2018-01-102-22/+77
|\ \ | | | | | | Ida/Example: fix symbexec plugin
| * | Ida/Example: clean symbexec pluginFabrice Desclaux2018-01-091-12/+0
| | |
| * | Ida/Example: fix symbexec pluginFabrice Desclaux2018-01-091-10/+77
|/ /
* | Merge pull request #644 from serpilliere/updt_ir_str_idaCamille Mougey2018-01-081-49/+69
|\ \ | | | | | | Example/IDA: update IR string output
| * | Example/IDA: update IR string outputFabrice Desclaux2018-01-051-49/+69
|/ /
* | Merge pull request #648 from serpilliere/fix_test_pe_forwardCamille Mougey2018-01-041-13/+24
|\ \ | | | | | | PE: fix export forward test
| * | PE: fix export forward testFabrice Desclaux2017-12-231-13/+24
| |/
* | Merge pull request #649 from serpilliere/x86_add_opCamille Mougey2018-01-043-11/+46
|\ \ | |/ |/| X86 add op
| * X86: fix rdmsr/wrmsr semanticFabrice Desclaux2017-12-301-11/+5
| |
| * X86: add mfence/sfence/prefetchFabrice Desclaux2017-12-303-0/+41
|/
* Merge pull request #646 from WilliamBruneau/fix_sandbox_optionsserpilliere2017-12-151-2/+0
|\ | | | | Remove unused sandbox option
| * Remove unused sandbox optionWilliam Bruneau2017-12-151-2/+0
|/
* Merge pull request #642 from a-vincent/expr_nicerserpilliere2017-12-143-273/+303
|\ | | | | Remove some unnecessary parentheses when str()'ing expressions
| * update tests to use the new spacing of expressions' str()Aymeric Vincent2017-12-122-257/+257
| |
| * Remove some unnecessary parentheses when str()'ing expressionsAymeric Vincent2017-12-121-16/+46
|/ | | | | | | | This patch removes quite a few useless parentheses from expressions thanks to the usual priorities between operators. It is conservative in the sense that not all such parentheses are removed when we felt the priorities won't be known by most users.
* Merge pull request #643 from commial/fix/support-llvmlite-0.21serpilliere2017-12-111-4/+4
|\ | | | | Travis: switch to llvm-5.0 for LLVMLite 0.21
| * Travis: switch to llvm-5.0 for LLVMLite 0.21Ajax2017-12-111-4/+4
|/
* Merge pull request #640 from commial/fix/support-llvmlite-0.20Pierre Lalet2017-11-282-10/+9
|\ | | | | Fix/support llvmlite 0.20
| * Update llvmlite install on travisAjax2017-11-281-8/+7
| |
| * Update to new llvmlite way to get globalsAjax2017-11-241-2/+2
| |