summary refs log tree commit diff
AgeCommit message (Collapse)Author
2015-10-30fix minor bug in sum.ssaQuentin Carbonneaux
2015-10-30add a test for addressing mode optimizationQuentin Carbonneaux
2015-10-30start work on fusing loads in arithmeticQuentin Carbonneaux
2015-10-30first attempt at address matchingQuentin Carbonneaux
2015-10-30new function to add constantsQuentin Carbonneaux
2015-10-30cosmetics on address numbering codeQuentin Carbonneaux
2015-10-30store addressability infos in a structQuentin Carbonneaux
2015-10-30do not give an addressability number to scalesQuentin Carbonneaux
2015-10-30store child matchings in the addressing tableQuentin Carbonneaux
2015-10-30missed a few cases in the tree automatonQuentin Carbonneaux
2015-10-30make the echo test return 0Quentin Carbonneaux
2015-10-30fix bug in pretty printerQuentin Carbonneaux
2015-10-30start adress mode recognitionQuentin Carbonneaux
2015-10-30rename spill field in Tmp to slotQuentin Carbonneaux
2015-10-30use new loadl instruction in echoQuentin Carbonneaux
2015-10-30emit code for extensions, move slots into RAltQuentin Carbonneaux
2015-10-25add atoi prototype in queen.c testQuentin Carbonneaux
2015-10-19uniformize sign extension and mem loadsQuentin Carbonneaux
2015-10-17add cheap line reporting in dieQuentin Carbonneaux
2015-10-13rename valloc and ballocQuentin Carbonneaux
valloc is actually a POSIX function that prevents compilation on some systems.
2015-10-13use an array of pointers in queenQuentin Carbonneaux
2015-10-13add void typeQuentin Carbonneaux
2015-10-13improve error detection in mccQuentin Carbonneaux
2015-10-13no, 9 is not primeQuentin Carbonneaux
2015-10-12ignore output of mccQuentin Carbonneaux
2015-10-12cosmetics in queen.cQuentin Carbonneaux
2015-10-12add for loopsQuentin Carbonneaux
2015-10-12make the queen test workQuentin Carbonneaux
2015-10-12add & binop to minicQuentin Carbonneaux
2015-10-12add new testQuentin Carbonneaux
2015-10-12add return, break, globals in minicQuentin Carbonneaux
2015-10-12limit the amount of warnings in prime exampleQuentin Carbonneaux
2015-10-12make mcc script more robustQuentin Carbonneaux
2015-10-12fix stupid bug in the exampleQuentin Carbonneaux
2015-10-12fix minor parsing issuesQuentin Carbonneaux
2015-10-12add one small testQuentin Carbonneaux
2015-10-12finish rough implementation of callsQuentin Carbonneaux
2015-10-12add a cheap implementation of sizeofQuentin Carbonneaux
2015-10-12add super cheap constant folding in minicQuentin Carbonneaux
2015-10-09start implementing basic function callsQuentin Carbonneaux
2015-10-08uniformize naming in minicQuentin Carbonneaux
2015-10-08add clumsy support for string literalsQuentin Carbonneaux
It's currently clumsy because they are given the type 'int *' instead of 'char *', the reason is that the char base type is not supported now. I don't think it would be hard to add proper support for char, though.
2015-10-08update miniyaccQuentin Carbonneaux
2015-10-08change end comment for functionsQuentin Carbonneaux
2015-10-08fix minor bug in regaQuentin Carbonneaux
The detection of empty permutations was incorrect since the changes made to the vector routines.
2015-10-08improve debug outputQuentin Carbonneaux
2015-10-08allow multiple functions in fileQuentin Carbonneaux
2015-10-08use DEnd for strings tooQuentin Carbonneaux
2015-10-08emit alignment directives properlyQuentin Carbonneaux
2015-10-08rename ealloc to emallocQuentin Carbonneaux