aboutsummaryrefslogtreecommitdiffstats
path: root/mppa_k1c/Asmgen.v
Commit message (Collapse)AuthorAgeFilesLines
* Added a simple postpass oracle that splits a bblock into single instruction ↵Cyril SIX2018-12-171-1/+3
| | | | bundles
* mppa_k1c compilesCyril SIX2018-11-281-6/+1
|
* Commencé à réintroduire du "ep" qui a du sensCyril SIX2018-10-191-1/+1
|
* Asmblock & cie - ça compileCyril SIX2018-09-061-3/+9
|
* Rajout d'un return_address_offset. Besoin de changer forward_simu de mach ↵Cyril SIX2018-09-061-1/+12
| | | | machblock
* Asmblock -> Asm presque fini.. erreur sur driver/Compiler.vCyril SIX2018-09-061-819/+5
|
* MPPA - Added modulo and division 64 bits. Non certifiedCyril SIX2018-05-211-3/+3
| | | | | | | 32 bits version are not yet there. Right now the code is directly from libgcc, compiled with k1-gcc because of builtins.
* MPPA - refactored instructionsCyril SIX2018-05-111-76/+78
|
* Code cleaningCyril SIX2018-05-091-14/+5
|
* MPPA - Added ops for comparison operatorsCyril SIX2018-04-241-2/+77
|
* MPPA - added remaining ops ; mult, div and floating point ops missingCyril SIX2018-04-201-15/+15
|
* MPPA - Added Ocast8signed and Ocast16signedCyril SIX2018-04-201-2/+2
|
* MPPA - Oshrximm + Mgetparam + FP is GPR10 + bugCyril SIX2018-04-201-8/+8
| | | | | | | | | | | Added Oshrximm and Mgetparam -> mmult.c divide & conqueer generates FP is now GPR10 instead of being a mix of GPR30 and GPR32 Corrected a bug where Pgoto and Pj_l were given the same interpretation, where in fact there's a fundamental difference : Pgoto is supposed to have a function name (symbol), while Pj_l is supposed to have a label name (print_label). This led to having undefinite labels in the code.
* MPPA - added Oaddrsymbol -> now able to run the matrix mult testCyril SIX2018-04-181-2/+2
|
* MPPA - Added Pmull -> now able to run the sort testCyril SIX2018-04-171-2/+2
|
* MPPA - added Oaddrstack - problem in TargetPrinter.ml Pbuiltin EF_annotCyril SIX2018-04-171-2/+2
| | | | | Conflicts: mppa_k1c/Asmgenproof1.v
* MPPA - More shiftsCyril SIX2018-04-171-4/+4
|
* MPPA - added all shiftsCyril SIX2018-04-171-2/+2
|
* MPPA - Added optim for long unsigned cmp to 0.Cyril SIX2018-04-131-3/+24
|
* Osub and OmulCyril SIX2018-04-111-2/+2
|
* MPPA - OshrCyril SIX2018-04-111-2/+2
|
* MPPA - Ocast32signedCyril SIX2018-04-111-4/+9
|
* MPPA - OnegfCyril SIX2018-04-111-6/+6
|
* MPPA - Added MloadCyril SIX2018-04-101-5/+5
|
* MPPA - bunch of ops added : lowlong, and, or, shr..Cyril SIX2018-04-101-17/+17
|
* MPPA - Oneg + PnegwCyril SIX2018-04-101-3/+3
|
* MPPA - Onegl + PneglCyril SIX2018-04-101-3/+3
|
* MPPA - optimized branch generation for signed long compare to 0Cyril SIX2018-04-091-1/+5
|
* MPPA - Optimized branch generation for word compare to 0Cyril SIX2018-04-091-2/+27
|
* MPPA - Long comparisonsCyril SIX2018-04-041-8/+12
|
* MPPA - Added non immediate comparisonCyril SIX2018-04-041-4/+4
|
* MPPA - Added signed immediate comparisonCyril SIX2018-04-041-3/+3
|
* MPPA - 32-bits immediate eq/neq branchesCyril SIX2018-04-041-205/+8
|
* MPPA - Added Mgoto + Pj_lCyril SIX2018-04-041-2/+2
|
* MPPA - mppa_call branch cleaningCyril SIX2018-04-041-2/+1
|
* MPPA - Added Msetstack + bunch of store --> on a des call !Cyril SIX2018-04-041-4/+4
|
* MPPA - Reactivated OmoveCyril SIX2018-04-041-2/+2
|
* MPPA - Added Mcall + Pgoto + modified PcallCyril SIX2018-04-041-4/+4
|
* MPPA - Added Mgetstack, loadind, a bunch of loadsCyril SIX2018-04-041-4/+4
|
* MPPA - Activated Mtailcall + PcallCyril SIX2018-04-041-4/+4
|
* MPPA - Activated Paddw and Paddiw + opsCyril SIX2018-04-041-4/+4
|
* Replaced ireg0 by iregCyril SIX2018-04-041-12/+12
|
* MPPA - code cleaningCyril SIX2018-04-041-41/+4
|
* MPPA - Created Pmakel instruction + re-activated Oloadimm64/32Cyril SIX2018-04-041-41/+16
|
* MPPA - Removed Plui, replaced with Pmake, and modified make_immed64Cyril SIX2018-04-041-12/+18
|
* MPPA - ABI proof complete (Asmgenproof.v:step_simulation)Cyril SIX2018-04-041-2/+2
|
* MPPA - Preuve de make_epilogue correct.Cyril SIX2018-04-041-3/+4
| | | | ça va un peu plus loin!
* MPPA - Started restricting instructions + get/set + change ABI + trying to ↵Cyril SIX2018-04-041-30/+57
| | | | prove it
* MPPA - Started Asm.v + Asmgen.v, commenting out some instructionsCyril SIX2018-04-041-85/+88
|
* Hook for MPPA_K1c (generates Risc-V code for now)Cyril SIX2018-04-041-0/+936