about summary refs log tree commit diff stats
path: root/test/core/utils.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-10-23Arch/x86: add cvtserpilliere2-19/+199
2015-10-23Arch/x86/sem: add rdmsr/wrmsrserpilliere1-1/+19
2015-10-23Arch/x86/sem: add movdqaserpilliere1-7/+3
2015-10-23Arch/x86/sem: add pushq/popfqserpilliere1-1/+5
2015-10-23Test/Arch/x86:: fix wbinvdserpilliere1-1/+1
2015-10-23Arch/x86/arch: fix wbinvdserpilliere1-1/+1
2015-10-23Arch/x86/sem: add xorpdserpilliere1-0/+1
2015-10-23Arch/x86/sem: add add/sub/mul/div ss/sdserpilliere1-0/+29
2015-10-23Arch/x86/sem: Fix vectorized subtraction generationserpilliere1-11/+24
* We cannot call ExprOp('-', A, B) as '-' is unary operator. * We must write A - B which will generate ExprOp('+', A, ExprOp('-', B)) * Expression could be modified to automatize this behaviour, but we keep it like this to allow this representation
2015-10-23Test/Arch/x86: movqserpilliere1-0/+2
2015-10-23Arch/x86: fix movqserpilliere1-1/+3
2015-10-23Test/Arch/x86: call farserpilliere1-0/+7
2015-10-23Arch/x86: add call farserpilliere1-0/+1
2015-10-23Test/Arch/x86: comiss comisdserpilliere1-0/+12
2015-10-23Arch/x86: add comiss/comisdserpilliere1-0/+6
2015-10-23Test/Arch/x86: dt mnemonicsserpilliere1-0/+8
2015-10-23Arch/x86: fix/add dt mnemonicsserpilliere1-5/+18
2015-10-23Fix arm sem push instructionn1trox1-1/+1
2015-10-22Loader/pe: autopep8Fabrice Desclaux1-8/+10
2015-10-22Loader/pe: fix iat rebuildFabrice Desclaux1-1/+2
2015-10-22Use path relative to miasm2 rather than local dir for JittccAymeric Vincent1-4/+4
While there, make all imports in that file homogeneous. Thanks to @commial for his comments.
2015-10-21Core/Asmbloc: autopop8Fabrice Desclaux1-33/+51
2015-10-21Core/asmbloc: Fix dot generation for basic blocsFabrice Desclaux1-34/+61
Thanks to commial & p.lalet
2015-10-19GDBServer: on client exit, give back control to server scriptCamille Mougey1-1/+2
2015-10-19GDBServer: on script breakpoint, raise a SigTRAPCamille Mougey1-0/+6
2015-10-19Debugging: handle breakpoint stop with a proper stateCamille Mougey1-2/+13
2015-10-19Debugging: propagate status on breakpoint stopCamille Mougey1-3/+5
2015-10-19UnpackUPX: stop execution properlyCamille Mougey1-0/+3
2015-10-15TranslatorZ3: added translation for left and right rotationTim Blazytko1-0/+4
2015-10-15Jitload: more concise syntax in has_callbackFlorent Monjalet1-4/+2
2015-10-15BoundedDict: better dict syntaxFlorent Monjalet1-2/+2
2015-10-14Orthograph fix in parameter: rename --ommit-tags to --omit-tags.Aymeric Vincent1-4/+4
2015-10-14Test/Arch/aarch64: test ANDS w/ZRFabrice Desclaux1-0/+5
2015-10-14Arch/aarch64: fix ANDS dst ZRFabrice Desclaux1-1/+6
2015-10-11jitload: added a CallbackHandler.has_callbacks methodFlorent Monjalet1-4/+14
Calling this method before the callback loop in runiter_once allows a non negligeable speedup (around 20% for tested samples).
2015-10-11BoundedDict: faster implementationFlorent Monjalet1-8/+25
Replaced collections.Counter with a simple {key -> int} built-in dict. This allows for an up to 2 times speed up when jitting.
2015-10-09TestAll: delete `exp_graph_test*` from depgraphAjax1-10/+10
2015-10-09TestAll: there is one more test for depgraph to deleteAjax1-1/+1
2015-10-09TestAll: `sol_10` and `sol_11` do not exist anymoreAjax1-1/+1
2015-10-07Arch/arm: add rev mnemonic;Fabrice Desclaux3-0/+14
2015-10-05Sandbox: add stack base manipulationFabrice Desclaux1-0/+10
2015-10-05IR: add get_labelFabrice Desclaux1-10/+22
2015-10-05Depgraph: fix nameFabrice Desclaux1-1/+2
2015-10-05Depgraph: fix follow mem/callFabrice Desclaux1-37/+49
2015-09-23Expression: move is_func_call to expr scrFabrice Desclaux2-4/+4
2015-09-06DiGraph: refactored compute_strongly_connected_componentsTim Blazytko1-18/+22
2015-09-05DiGraph: refactored compute_strongly_connected_componentsTim Blazytko1-6/+6
2015-09-04DiGraph: fixed typoTim Blazytko1-2/+2
2015-09-04DiGraph: added regression tests for strongly connected components and ↵Tim Blazytko1-1/+29
natural loops
2015-09-04DiGraph: added algorithm to retrieve the strongly connected components of a ↵Tim Blazytko1-0/+73
graph