summaryrefslogtreecommitdiffstats
path: root/libacc/acc.cpp
Commit message (Expand)AuthorAgeFilesLines
* Preliminary struct and union support.Jack Palevich2009-08-261-95/+385
* Make pointer casting work.Jack Palevich2009-08-251-91/+81
* Add ARM hardware floating point support.Jack Palevich2009-08-201-13/+342
* Handle functions with anonymous argumentsJack Palevich2009-08-191-2/+6
* Allow redefinition of macros.Jack Palevich2009-08-181-8/+14
* Allow '//'-style comments in #defines.Jack Palevich2009-08-181-1/+13
* Allow parenthesized expressions as the value of definesJack Palevich2009-08-181-3/+0
* do not merge: cherry-picked ecd23c09e87d7088285f8b7c2eeb98815c2e69e0 from mas...Jack Palevich2009-08-171-3/+10
* Support 2D arrays.Jack Palevich2009-08-041-4/+15
* Implement arrays.Jack Palevich2009-08-041-36/+175
* Add support for "short" data type.Jack Palevich2009-08-031-6/+56
* Fix parsing of function declarations that return pointers.Jack Palevich2009-07-311-5/+1
* Support brackets for accessing array values.Jack Palevich2009-07-311-13/+23
* Clean up the way we handle postfix operators.Jack Palevich2009-07-311-69/+67
* Implement pre-increment / pre-decrementJack Palevich2009-07-311-27/+35
* Support the comma operator.Jack Palevich2009-07-311-6/+15
* Implement op=.Jack Palevich2009-07-311-0/+19
* Assignment in ordinary expressions is now handled using lvals and rvals.Jack Palevich2009-07-301-23/+19
* Start using lvals and rvals.Jack Palevich2009-07-301-19/+60
* Change assignment code gen to use leaR0 .. storeR0ToTOS.Jack Palevich2009-07-301-119/+11
* Fix bad ARM code generation for '||' and '&&' operators.Jack Palevich2009-07-301-1/+2
* Load function symbols using lea syntax.Jack Palevich2009-07-291-48/+97
* Remove loadR0 in favor of lea + loadR0FromR0.Jack Palevich2009-07-291-140/+10
* Implement inc/dec in a more lval-friendly way.Jack Palevich2009-07-291-32/+106
* Adjust stack alignment for local variables to work more like arguments.Jack Palevich2009-07-271-7/+43
* Keep track of the current arena.Jack Palevich2009-07-231-51/+52
* Fix the ARM postdecrement operator.Jack Palevich2009-07-231-1/+1
* Code generator cleanupJack Palevich2009-07-171-124/+153
* Remove unused logging code.Jack Palevich2009-07-171-24/+0
* Track lvalues vs. rvalues.Jack Palevich2009-07-171-5/+24
* Report error (rather than crashing) when a declaration name is missing.Jack Palevich2009-07-161-9/+18
* Coerce R0 to destination type before storing it into a variable.Jack Palevich2009-07-161-15/+21
* Implement a "#line" directive.Jack Palevich2009-07-161-40/+44
* Detect assignments to undeclared variables.Jack Palevich2009-07-161-13/+27
* If the compile failed, return NULL from symbol lookups.Jack Palevich2009-07-161-7/+11
* Improve error handlingJack Palevich2009-07-151-1/+10
* Improve numerical constant parsing.Jack Palevich2009-07-151-48/+85
* Add accRegisterSymbolCallback API to control external symbol linkage.Jack Palevich2009-07-141-2/+30
* Make forward declarations of external symbols really work.Jack Palevich2009-07-141-15/+23
* Remove unused variable.Jack Palevich2009-07-141-2/+1
* Implement pointer arithmetic.Jack Palevich2009-07-131-66/+170
* Implement support for "char" local and global variables.Jack Palevich2009-07-131-3/+67
* Implement general casts and pointer dereferencing.Jack Palevich2009-07-131-32/+27
* Implement floating point for ARM.Jack Palevich2009-07-091-232/+778
* Add x86 floating point test.Jack Palevich2009-07-091-1/+0
* Finish implementing x86 floating pointJack Palevich2009-07-091-10/+48
* Implement x86 floating point operationsJack Palevich2009-07-081-43/+215
* Class with virtual methods should have virtual destructors too.Marco Nelissen2009-07-081-0/+2
* Implement global, local, and stack based float and double variables.Jack Palevich2009-07-081-27/+111
* Implement x86 int <--> float.Jack Palevich2009-07-081-10/+65