about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | Add comments to heap allocationsFabrice Desclaux2020-05-122-5/+5
|/ / / /
* | | | Merge pull request #1168 from serpilliere/propagate_expressionserpilliere2020-05-043-301/+818
|\ \ \ \ | | | | | | | | | | Updt propagation expression algorithm
| * | | | Merge undef between previous state and new oneFabrice Desclaux2020-05-041-1/+2
| | | | |
| * | | | Clean undefinedFabrice Desclaux2020-05-041-12/+18
| | | | |
| * | | | Updt propagation expression algorithmFabrice Desclaux2020-05-043-300/+810
|/ / / /
* | | | Merge pull request #1217 from carolineLe/fix_win_ldrserpilliere2020-05-031-7/+14
|\ \ \ \ | | | | | | | | | | Fix win ldr first entry's blink
| * | | | Win_seh: fix predecessor of first entryCaroline Leman2020-05-031-4/+9
| | | | |
| * | | | Win_seh: use ListEntry MemStructCaroline Leman2020-05-031-3/+5
|/ / / /
* | | | Merge pull request #1216 from serpilliere/fix_virtualprotectserpilliere2020-05-021-2/+2
|\ \ \ \ | | | | | | | | | | Fix virtual protect pages
| * | | | Fix virtual protect pagesFabrice Desclaux2020-05-021-2/+2
| | | | |
* | | | | Merge pull request #1215 from serpilliere/fix_import_rebuildserpilliere2020-05-021-1/+6
|\ \ \ \ \ | |/ / / / |/| | | | Loader: fix import rebuild
| * | | | Loader: fix import rebuildFabrice Desclaux2020-05-011-1/+6
|/ / / /
* | | | Merge pull request #1214 from serpilliere/add_extendted_test_ldrserpilliere2020-05-011-2/+4
|\ \ \ \ | | | | | | | | | | Add loader extended tests
| * | | | Add loader extended testsFabrice Desclaux2020-04-301-2/+4
|/ / / /
* | | | Merge pull request #1213 from serpilliere/fix_loader_peserpilliere2020-04-303-23/+22
|\ \ \ \ | | | | | | | | | | Fix loader pe
| * | | | Loader: Fix resource rebuildFabrice Desclaux2020-04-301-16/+7
| | | | |
| * | | | Loader: Fix force_bytesFabrice Desclaux2020-04-303-6/+14
| | | | |
| * | | | Loader: Fix missing byteFabrice Desclaux2020-04-301-1/+1
| | | | |
* | | | | Merge pull request #1202 from IridiumXOR/mips_mmuserpilliere2020-04-292-28/+56
|\ \ \ \ \ | | | | | | | | | | | | Add MIPS MMU registers
| * | | | | Fix typo CONFIG0->CONFIGIridiumXOR2020-04-292-2/+2
| | | | | |
| * | | | | Add MIPS MMU registersIridiumXOR2020-04-282-30/+58
| | | | | |
* | | | | | Merge pull request #1211 from IridiumXOR/ppc_bug_intserpilliere2020-04-291-2/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix mn_do_lmw() and mn_do_stmw()
| * | | | | | Fix mn_do_lmw() and mn_do_stmw()IridiumXOR2020-04-291-2/+2
| |/ / / / /
* | | | | | Add new MIPS opcodes (#1203)IridiumXOR2020-04-293-4/+96
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add new MIPS opcodes * Add test for new opcodes and remove semantics for not implemented opcodes
* | | | | | Merge pull request #1209 from a-vincent/remove-non-ascii-characterserpilliere2020-04-291-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | Remove accidental non-ASCII character. Broke Miasm under "C" locale.
| * | | | | | Remove accidental non-ASCII character. Broke Miasm under "C" locale.Aymeric Vincent2020-04-291-1/+1
|/ / / / / /
* | | | | | Merge pull request #1208 from serpilliere/fix_ppc_loc_keyserpilliere2020-04-291-2/+2
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | Fix ppc loc_key typo
| * | | | | Fix ppc loc_key typoFabrice Desclaux2020-04-291-2/+2
|/ / / / /
* | | | | Merge pull request #1204 from IridiumXOR/mips_buf_insserpilliere2020-04-292-6/+6
|\ \ \ \ \ | | | | | | | | | | | | Fix bug 'ins' MIPS opcode and PPC "byte_swap()"
| * | | | | Fix byte_swap() PPCIridiumXOR2020-04-281-2/+2
| | | | | |
| * | | | | Fix bug 'ins' MIPS opcodeIridiumXOR2020-04-281-4/+4
| |/ / / /
* | | | | Merge pull request #1205 from IridiumXOR/ppc_bug_exprintserpilliere2020-04-291-2/+2
|\ \ \ \ \ | | | | | | | | | | | | Fix ExprInt() without size in PPC
| * | | | | Fix ExprInt() without size in PPCIridiumXOR2020-04-281-2/+2
| |/ / / /
* | | | | Merge pull request #1207 from serpilliere/speedup_memrangeserpilliere2020-04-291-4/+1
|\ \ \ \ \ | | | | | | | | | | | | Speed up blocks memrange
| * | | | | Speed up blocks memrangeFabrice Desclaux2020-04-291-4/+1
| | | | | |
* | | | | | Merge pull request #1198 from commial/update-unpack-upxserpilliere2020-04-291-32/+16
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | Rework the unpack_upx example
| * | | | | Rework the unpack_upx exampleCamille Mougey2020-04-281-32/+16
|/ / / / /
* | | | | Merge pull request #1201 from a-vincent/ppc-fix-mftbserpilliere2020-04-281-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Fix semantics of MFTB, prompted by @IridiumXOR
| * | | | | Fix semantics of MFTB, prompted by @IridiumXORAymeric Vincent2020-04-281-1/+1
| |/ / / /
* | | | | Merge pull request #1199 from jbgalet/fix-windowsserpilliere2020-04-286-4/+32
|\ \ \ \ \ | |/ / / / |/| | | | Fix jitter on Windows
| * | | | Add Appveyor for Python3.8Jean-Baptiste Galet2020-04-284-3/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Appveyor * Fix typo, update jitcore_llvm.py, update llvmlite to 0.32.0 to have python3.8 wheels * Add all platforms in AppVeyor. Use -m to avoid WinError 32 * Use llvmlite 0.31.0, latest version to provide Python2.7 support AND Python3.8 * Remove -m
| * | | | Fix jitter on WindowsJean-Baptiste Galet2020-04-283-2/+12
| | | | |
* | | | | Initial support for floating point and Altivec instructions in PPC arch (#1141)IridiumXOR2020-04-286-2/+158
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* | | | | Merge pull request #1200 from itsacoderepo/patch-1serpilliere2020-04-281-1/+1
|\ \ \ \ \ | |/ / / / |/| | | | upck32be vs upck16be
| * | | | upck32be vs upck16be Niko Schmidt2020-04-271-1/+1
|/ / / / | | | | | | | | I guess it is a copy & paste error :)
* | | | Merge pull request #1191 from serpilliere/add_pe_pages_to_allocatedserpilliere2020-04-203-3/+15
|\ \ \ \ | |_|_|/ |/| | | Add pe pages to allocated_pages
| * | | Add pe pages to allocated_pagesFabrice Desclaux2020-04-203-3/+15
|/ / /
* | | Merge pull request #1189 from serpilliere/fix_ida_pythonserpilliere2020-04-161-6/+5
|\ \ \ | | | | | | | | Fix ida graph_ir
| * | | Fix ida graph_irFabrice Desclaux2020-04-151-6/+5
| | | |
* | | | Merge pull request #1184 from WilliamBruneau/cpu_set_memserpilliere2020-04-151-1/+1
|\ \ \ \ | |/ / / |/| | | Fix cpu.set_mem() -> vm.set_mem()