summaryrefslogtreecommitdiffstats
path: root/libacc/acc.cpp
Commit message (Expand)AuthorAgeFilesLines
* fix build on darwin.Nick Kralevich2010-04-261-0/+4
* make libacc run with execute stack protections enabled.Nick Kralevich2010-04-231-5/+4
* Fix memory deallocation bug in toy vector class.Jack Palevich2009-11-271-4/+12
* am 556c60f4: am 51da51a2: am 02effee6: Correctly compute the type of an assig...Jack Palevich2009-11-091-0/+2
|\
| * Correctly compute the type of an assignment expression.Jack Palevich2009-11-091-0/+2
* | Fix type bug that breaks 64-bit OSX build.Jack Palevich2009-10-291-1/+1
* | Add support for the continue statementJack Palevich2009-10-291-7/+17
* | Implement typedef.Jack Palevich2009-10-281-46/+151
* | Support nested macros. (Still don't support macro arguments.)Jack Palevich2009-10-271-67/+107
|/
* Improve error-handling when an expected token is missing.Jack Palevich2009-09-181-2/+1
* Produce error rather than assert when encountering a nested function.Jack Palevich2009-09-181-28/+36
* Update peephole optimizerJack Palevich2009-09-101-11/+48
* Implement a simple peephole optimization framework for ARM.Jack Palevich2009-09-091-56/+293
* Move ARM disassembler out of libacc and into the acc command-line tool.Jack Palevich2009-09-091-75/+10
* Turn an assert into an error to handle bad struct members more gracefully.Jack Palevich2009-09-081-9/+19
* Improved DEBUG_SAVE_INPUT_TO_FILE logic.Jack Palevich2009-09-081-1/+8
* Generate an error for the use of an undeclared struct.Jack Palevich2009-09-081-3/+48
* Improve error message for unknown struct membersJack Palevich2009-09-041-4/+5
* Improve address operator (unary &).Jack Palevich2009-09-041-5/+13
* acc error tweaksJoe Onorato2009-08-281-2/+1
* 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