| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Support to ALL system register for AARCH64 (#1251) | IridiumXOR | 2020-06-19 | 1 | -6/+6 | |
| | | | | | * Support to ALL system register for AARCH64 | |||||
| * | Fix issue #1255 ; Add unit test | w4kfu | 2020-06-16 | 1 | -0/+25 | |
| | | ||||||
| * | Updt dis_block_callback; apply_splitting | Fabrice Desclaux | 2020-06-10 | 1 | -2/+2 | |
| | | ||||||
| * | Wrong conditional prefix for MRC/MCR (#1233) | IridiumXOR | 2020-05-28 | 1 | -0/+5 | |
| | | | | | | | | * Wrong conditional prefix for MRC/MCR Sorry, I have wrongly implemented the conditional code for MRC/MCR, now I have fix them. * Add test units for conditional MRC/MCR | |||||
| * | Include missing functions from llvm's compiler-rt into Jitllvm | Adrien Guinet | 2020-05-24 | 1 | -1/+2 | |
| | | | | | | | | | | | Under Windows, we also need to compile these with clang (because MSVCRT doesn't seem to have proper uint128_t support), so automatically check if clang is installed (through the registry) and force distutils to use it (with a not so nice hack). Last but not least, this only works for 64 bit systems, so disable the mn_div test if this is not the case. | |||||
| * | Merge pull request #1229 from IridiumXOR/mips_new_ops | serpilliere | 2020-05-23 | 1 | -0/+21 | |
| |\ | | | | | Mips new opcodes + bugfix | |||||
| | * | Add test cases and fix args order | IridiumXOR | 2020-05-22 | 1 | -0/+21 | |
| | | | ||||||
| * | | Fix tipo | Fabrice Desclaux | 2020-05-22 | 1 | -1/+1 | |
| | | | ||||||
| * | | Add test units for MCR/MRC | IridiumXOR | 2020-05-19 | 1 | -0/+4 | |
| |/ | ||||||
| * | Add new MIPS opcodes (#1203) | IridiumXOR | 2020-04-29 | 1 | -0/+17 | |
| | | | | | | * Add new MIPS opcodes * Add test for new opcodes and remove semantics for not implemented opcodes | |||||
| * | Initial support for floating point and Altivec instructions in PPC arch (#1141) | IridiumXOR | 2020-04-28 | 1 | -0/+8 | |
| | | | | | | | | * Initial support for floating point and altivec instructions * Add fpr in .codespell_ignore and correct a typo * Add regression test for floating and Altivec ops | |||||
| * | Fix int(expr) | Fabrice Desclaux | 2020-04-03 | 1 | -1/+1 | |
| | | ||||||
| * | Use int(expr) instead of expr.arg.arg | Fabrice Desclaux | 2020-04-03 | 2 | -5/+7 | |
| | | ||||||
| * | Add Expression visitor | Fabrice Desclaux | 2020-03-29 | 1 | -0/+45 | |
| | | ||||||
| * | Add simplifications | Fabrice Desclaux | 2020-03-20 | 1 | -0/+1 | |
| | | ||||||
| * | Updt z3 version; update z3 api | Fabrice Desclaux | 2020-03-18 | 2 | -11/+10 | |
| | | ||||||
| * | Graph: add weakly connected components | Fabrice Desclaux | 2020-03-16 | 1 | -0/+22 | |
| | | ||||||
| * | Fix Automod code | Fabrice Desclaux | 2020-02-28 | 1 | -0/+10 | |
| | | ||||||
| * | Add == simplification | serpilliere | 2020-02-19 | 1 | -0/+32 | |
| | | ||||||
| * | Analysis: dead simp to class | Fabrice Desclaux | 2020-02-14 | 1 | -2/+3 | |
| | | ||||||
| * | Test/Win Api: Add test to virtualprotect functions | Caroline Leman | 2020-01-28 | 1 | -1/+46 | |
| | | ||||||
| * | Jitter: add remove_memory_page api | Caroline Leman | 2020-01-12 | 1 | -0/+8 | |
| | | ||||||
| * | Merge pull request #1101 from serpilliere/add_x86_instr | serpilliere | 2019-11-22 | 1 | -0/+4 | |
| |\ | | | | | X86: add instr | |||||
| | * | X86: add instr | Fabrice Desclaux | 2019-11-21 | 1 | -0/+4 | |
| | | | ||||||
| * | | Add missing addrsize | Fabrice Desclaux | 2019-11-19 | 1 | -0/+1 | |
| | | | ||||||
| * | | Simplifications: add regression test | Fabrice Desclaux | 2019-11-19 | 1 | -0/+7 | |
| |/ | ||||||
| * | Fix z3 import | Fabrice Desclaux | 2019-11-12 | 1 | -1/+1 | |
| | | ||||||
| * | Clear get_str_* API | Fabrice Desclaux | 2019-11-12 | 4 | -11/+12 | |
| | | | | | | | | | | | | | | | | | 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. | |||||
| * | Aarch64: add ldarb | Fabrice Desclaux | 2019-10-31 | 1 | -0/+2 | |
| | | ||||||
| * | Add a few PPC32 tests | Aymeric Vincent | 2019-09-25 | 3 | -0/+248 | |
| | | ||||||
| * | Fix get_str_ansi: return str | Fabrice Desclaux | 2019-09-22 | 4 | -36/+36 | |
| | | | | | | get_str_ansi and get_str_unic now returns both *str* object: As get_str_unic decodes the string, get_str_ansi should do the same. | |||||
| * | Codespell: fix some spelling mistakes | William Bruneau | 2019-09-20 | 2 | -2/+2 | |
| | | ||||||
| * | test: mem_breakpoint.py as a sample of memory breakpoints and its handlers. ↵ | idl3r | 2019-06-28 | 2 | -0/+83 | |
| | | | | | | | | | | | | | (#1050) * test: add mem_breakpoint.py * test: enable args * test: add mem_breakpoint.py to test_all script * test: update memory mapping in mem_breakpoint.py | |||||
| * | Merge pull request #1016 from WilliamBruneau/fix_python_3_getset_reg | serpilliere | 2019-05-29 | 2 | -0/+48 | |
| |\ | | | | | Fix PyGetInt for python 3 | |||||
| | * | Update test/jitter/jitcore.py | Pierre Lalet | 2019-04-16 | 1 | -1/+1 | |
| | | | | | | | Co-Authored-By: WilliamBruneau <william.bruneau@epfedu.fr> | |||||
| | * | Update test/jitter/jitcore.py | Pierre Lalet | 2019-04-16 | 1 | -1/+1 | |
| | | | | | | | Co-Authored-By: WilliamBruneau <william.bruneau@epfedu.fr> | |||||
| | * | Update test/jitter/jitcore.py | Pierre Lalet | 2019-04-16 | 1 | -1/+1 | |
| | | | | | | | Co-Authored-By: WilliamBruneau <william.bruneau@epfedu.fr> | |||||
| | * | Fix python 2 | William Bruneau | 2019-04-12 | 1 | -2/+9 | |
| | | | ||||||
| | * | Add tests | William Bruneau | 2019-04-10 | 2 | -0/+41 | |
| | | | ||||||
| * | | Fix tipo | Fabrice Desclaux | 2019-05-18 | 2 | -3/+3 | |
| | | | ||||||
| * | | Loader example: test_pe: remove useless imports, comment and rename | Ajax | 2019-05-09 | 1 | -1/+1 | |
| | | | ||||||
| * | | Add loader examples (only "test_pe" for now) in tests | Ajax | 2019-05-09 | 1 | -0/+12 | |
| | | | ||||||
| * | | Add CET instructions (#1003) | William Bruneau | 2019-04-05 | 1 | -0/+20 | |
| | | | | | | | | | | | | | * Add CET instructions * Fix RDSSP | |||||
| * | | Merge pull request #1011 from icecr4ck/add_simp_compose | Camille Mougey | 2019-04-01 | 1 | -0/+5 | |
| |\ \ | |/ |/| | Add compose_and_mask simplification pass | |||||
| | * | Fix mistakes and add more pertinent tests | Hugo Porcher | 2019-03-27 | 1 | -2/+2 | |
| | | | ||||||
| | * | Add check to not slice an ExprId | Hugo Porcher | 2019-03-27 | 1 | -3/+2 | |
| | | | ||||||
| | * | Use moduint instead of python int and fix test | Hugo Porcher | 2019-03-21 | 1 | -1/+1 | |
| | | | ||||||
| | * | Add zeroextend and fix loop | Hugo Porcher | 2019-03-21 | 1 | -2/+2 | |
| | | | ||||||
| | * | Add compose_and_mask simplification pass | Hugo Porcher | 2019-03-20 | 1 | -0/+6 | |
| | | | ||||||
| * | | Jitter: fix vm_cpu typedef | Fabrice Desclaux | 2019-03-27 | 1 | -1/+1 | |
| |/ | ||||||