LLVM
I am on the LLVM team. I am responsible for the alpha backend. I also use the system in my daily research. I am currently implementing a random sampling based profiling framework for LLVM.
Stepmania patch for gamecon.c
Update: Someone finally got arround to adding this functionality officially, so this patch is unnecessary.
gamecon.c supports parallel port adaptors for console system game controllers. However, it maps the direction keys onto the primary joystick axis, which is a bad thing for pressing left and right at the same time, as is necessary in DDR. Thus the patch to map the arrows also to supplementary axis.
The file, circa linux 2.6.6ocamlyacc
A patch to make ocamlyacc support * and +. A bit of a hack :)Lets you do this:
%token ‹ int › INT_LITERAL
%token EOF
%start main /* entry point */
%type ‹ int list › main
%%
main:
INT_LITERAL+ EOF {}
;
More to come
I shall have to get arround to updating this section with all my stuff sometime.