summary refs log tree commit diff
AgeCommit message (Collapse)Author
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
2015-10-07store the byte array in max.ssaQuentin Carbonneaux
2015-10-07finish implementing data parsingQuentin Carbonneaux
2015-10-07start work on parsing data blocksQuentin Carbonneaux
2015-10-06uh oh, typo bug in freeall()Quentin Carbonneaux
2015-10-06add pool memory managementQuentin Carbonneaux
2015-10-06use new vector functions instead of reallocsQuentin Carbonneaux
2015-10-06split long line in idupQuentin Carbonneaux
2015-10-06specialize vdup into idupQuentin Carbonneaux
2015-10-06factor ins array edition in icpyQuentin Carbonneaux
2015-10-05factor vector duplication in vdup()Quentin Carbonneaux
2015-10-05rename blocka to ballocQuentin Carbonneaux
2015-10-05remove useless ntyp in util.cQuentin Carbonneaux
2015-10-05implement popcnt with a simple loopQuentin Carbonneaux
2015-10-05factor some utility functions/data in util.cQuentin Carbonneaux
2015-10-05fix debug output of livenessQuentin Carbonneaux
2015-10-05clean the command line interfaceQuentin Carbonneaux
2015-10-04remove example fileQuentin Carbonneaux
2015-10-04add gitignore to minic/Quentin Carbonneaux
2015-10-04support unary minusQuentin Carbonneaux
2015-10-04add post {in,de}crement support + fix grammarQuentin Carbonneaux
2015-10-04update test to new syntaxQuentin Carbonneaux
2015-10-04parse functions in minicQuentin Carbonneaux
2015-10-04update miniyaccQuentin Carbonneaux
2015-10-03== and != do not consider signsQuentin Carbonneaux
2015-10-02minor bug in case WhileQuentin Carbonneaux
2015-10-02oops, stupid swap in a printfQuentin Carbonneaux
2015-10-02start an example compiler for a subset of CQuentin Carbonneaux
2015-10-01fix a bug for structure arguments in regsQuentin Carbonneaux
2015-10-01support negative frame offsets in emitQuentin Carbonneaux
They are used to access function parameters passed on the stack.
2015-09-30remove dead assignmentQuentin Carbonneaux
2015-09-30finalize the new slot systemQuentin Carbonneaux
There is still the issue that spill is set to -1 to mark the absence of slot, it does not play well with zero-initialization at all.
2015-09-30use more machine registersQuentin Carbonneaux
2015-09-30uniformize alignment code in framesz()Quentin Carbonneaux
2015-09-30fix two invalid Tmp.spill valuesQuentin Carbonneaux
2015-09-29wip on new stack slots (emit, spill)Quentin Carbonneaux
2015-09-29more fixes for the new slot representationQuentin Carbonneaux
2015-09-29wip on a simpler slot handlingQuentin Carbonneaux
2015-09-28stupid hinting works better without traces!Quentin Carbonneaux
2015-09-27compute reg interferences in filllive()Quentin Carbonneaux