about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
| * Core/Interval: Add explicit api for intervalFabrice Desclaux2019-11-251-9/+34
| |
| * Rm dbgFabrice Desclaux2019-11-251-1/+0
| |
| * Fix peb page commentFabrice Desclaux2019-11-251-4/+4
|/
* Merge pull request #1102 from serpilliere/asm_fix_instr_genserpilliere2019-11-221-2/+17
|\ | | | | Asmblock: fix instruction generation
| * Asmblock: fix instruction generationFabrice Desclaux2019-11-211-2/+17
| | | | | | | | Instruction length can change from forecast
* | Merge pull request #1101 from serpilliere/add_x86_instrserpilliere2019-11-222-0/+6
|\ \ | | | | | | X86: add instr
| * | X86: add instrFabrice Desclaux2019-11-212-0/+6
| |/
* | Merge pull request #1100 from serpilliere/fix_int_longserpilliere2019-11-211-1/+1
|\ \ | | | | | | Fix int/long py2/py3
| * | Fix int/long py2/py3Fabrice Desclaux2019-11-211-1/+1
| | |
* | | Merge pull request #1098 from serpilliere/fix_win_apiserpilliere2019-11-211-3/+3
|\ \ \ | |/ / |/| | Win_API: Temporary fix for ids in 64 bits
| * | Win_API: Temporary fix for ids in 64 bitsFabrice Desclaux2019-11-211-3/+3
|/ / | | | | | | | | Id(xxx) is actually used to generated handles on windows os_dep A future patch will add handles generation / management for windows environement.
* | Merge pull request #1097 from serpilliere/get_r_locserpilliere2019-11-211-1/+4
|\ \ | | | | | | Expr: ret ExprLoc on cst_read
| * | Expr: ret ExprLoc on cst_readFabrice Desclaux2019-11-201-1/+4
|/ /
* | Merge pull request #1096 from serpilliere/updt_asmblock_apiserpilliere2019-11-204-2/+12
|\ \ | | | | | | Updt asmblock api
| * | Add missing addrsizeFabrice Desclaux2019-11-192-0/+2
| | |
| * | Asmblock: disasm can complete asmcfgFabrice Desclaux2019-11-191-2/+3
| | |
| * | Simplifications: add regression testFabrice Desclaux2019-11-191-0/+7
| |/
* | Merge pull request #1090 from serpilliere/fix_llvm_mem_cacheserpilliere2019-11-191-1/+3
|\ \ | | | | | | Jitter/llvm: Fix llvm Memory lookup cache
| * | Jitter/llvm: Fix llvm Memory lookup cacheFabrice Desclaux2019-11-141-1/+3
| | |
* | | Merge pull request #1095 from serpilliere/fix_fullserpilliere2019-11-181-1/+1
|\ \ \ | | | | | | | | Fix dot 'w' open
| * | | Fix dot 'w' openFabrice Desclaux2019-11-181-1/+1
| | |/ | |/|
* | | Merge pull request #1094 from a-vincent/fix-rep-semanticsserpilliere2019-11-181-1/+1
|\ \ \ | |/ / |/| | Fix semantics of REP prefix.
| * | Fix semantics of REP prefix.Aymeric Vincent2019-11-181-1/+1
|/ / | | | | | | | | | | | | Only REPE and REPNE exist at the binary level, but Miasm allows "REP" when assembling x86 instructions. Make the semantics aware of this instead of ignoring the REP prefix. The bug could not occur when disassembling a binary program.
* | Merge pull request #1093 from htfy96/fix-astserpilliere2019-11-181-4/+5
|\ \ | |/ |/| sembuilder: more compatible way to construct AST module
| * sembuilder: more compatible way to construct AST moduleZheng Luo2019-11-161-4/+5
| | | | | | | | | | | | | | | | | | Python3.8 changes the signature of ast.Module by adding a ignore_comment field which breaks this project. ast.parse("") is a dirty but more compatible way to make it work in both Python 3.8 and <3.8. Fixed #1092
* | Merge pull request #1089 from serpilliere/less_seh_logsserpilliere2019-11-141-12/+12
|\ \ | | | | | | Jitter/Windows: less verbose exceptions
| * | Jitter/Windows: less verbose exceptionsFabrice Desclaux2019-11-131-12/+12
|/ /
* | Merge pull request #1088 from serpilliere/path_are_strPierre Lalet2019-11-1220-283/+396
|\ \ | | | | | | Path are str
| * | Fix z3 importFabrice Desclaux2019-11-123-3/+3
| | |
| * | Clear get_str_* APIFabrice Desclaux2019-11-1217-280/+393
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | get_str_ansi decoded strings using utf8 and was blindly used for pure windows function (LoadLibraryA) and for stdlib functions (printf, strlen, ...) even if strlen does not use utf8... New API is: get_win_str_a/get_win_str_w and set_win_str_a/set_win_str_w for windows (respectively codepage1252/windows utf16) .Those functions should only be used in windows strings manipulations, so there are taken out of the jitter. get_c_str/set_c_str: as those functions are "classic" in OSes, they are keeped in the jitter.
* | Merge pull request #1084 from serpilliere/fix_aarch64serpilliere2019-10-313-1/+5
|\ \ | | | | | | Aarch64: add ldarb
| * | Aarch64: add ldarbFabrice Desclaux2019-10-313-1/+5
| | |
* | | Merge pull request #1085 from serpilliere/rm_bad_apiserpilliere2019-10-311-10/+0
|\ \ \ | |/ / |/| | Remove non working/useless api from ircfg
| * | Remove non working/useless api from ircfgFabrice Desclaux2019-10-311-10/+0
|/ /
* | Merge pull request #1082 from monperrus/patch-1serpilliere2019-10-241-18/+18
|\ \ | | | | | | doc: moved the "what" at the top
| * | doc: moved the "what" at the topMartin Monperrus2019-10-231-18/+18
|/ /
* | Merge pull request #1081 from themaks/patch-1serpilliere2019-10-191-1/+1
|\ \ | | | | | | Adds a missing import
| * | Adds a forgotten importMaxime Meignan2019-10-191-1/+1
|/ /
* | Merge pull request #1079 from WilliamBruneau/fix_loader_none_addrserpilliere2019-10-181-1/+2
|\ \ | | | | | | Loader: avoid None dst_ad in lib_imp2dstad
| * | Loader: avoid None dst_ad in lib_imp2dstadWilliam Bruneau2019-10-171-1/+2
| | |
* | | Merge pull request #1078 from serpilliere/fix_bytes_handlingserpilliere2019-10-181-1/+1
|\ \ \ | |/ / |/| | Fix python2/python3 bytes manipulation
| * | Fix python2/python3 bytes manipulationFabrice Desclaux2019-10-171-1/+1
|/ /
* | Merge pull request #1077 from serpilliere/fix_float_tiposerpilliere2019-10-171-5/+5
|\ \ | | | | | | X86/sem: fix tipo during python2/3 updt
| * | X86/sem: fix tipo during python2/3 updtFabrice Desclaux2019-10-171-5/+5
| | |
* | | Merge pull request #1076 from WilliamBruneau/android_supportserpilliere2019-10-171-1/+4
|\ \ \ | | | | | | | | Jitter: android support
| * | | Jitter: remove unused macroWilliam Bruneau2019-10-161-1/+0
| | | | | | | | | | | | | | | | | | | | Furthermore this macro is already declared in android and thus generates a warning.
| * | | Jitter: fix compilation on androidWilliam Bruneau2019-10-161-0/+4
| | | |
* | | | Merge pull request #1075 from WilliamBruneau/remove_clang_warningserpilliere2019-10-161-2/+0
|\ \ \ \ | |/ / / |/| | | Jitter: remove Clang warnings
| * | | Jitter: remove Clang warningsWilliam Bruneau2019-10-161-2/+0
|/ / /
* | | Merge pull request #1074 from WilliamBruneau/avoid_depreciation_warningserpilliere2019-10-161-2/+2
|\ \ \ | | | | | | | | Avoid deprecation warning