]> git.xonotic.org Git - xonotic/gmqcc.git/history - parser.c
Change the parser to use the hashtable functions
[xonotic/gmqcc.git] / parser.c
2012-11-25 Wolfgang (Blub)... Change the parser to use the hashtable functions
2012-11-24 Dale WeilerAdd respective license headers + some cleanups
2012-11-23 Wolfgang (Blub)... turn the message about global variable double-declarati...
2012-11-23 Wolfgang (Blub)... warn about double function declarations...
2012-11-23 Wolfgang (Blub)... 'var' is now no keyword anymore, :\
2012-11-23 Wolfgang (Blub)... handling 'const' - still need correct separation of...
2012-11-23 Wolfgang (Blub)... Adding an unrecognized keywords error
2012-11-23 Wolfgang (Blub)... operator &~=
2012-11-23 Wolfgang (Blub)... operators &= and |=
2012-11-23 Wolfgang (Blub)... *= and /= operators
2012-11-23 Wolfgang (Blub)... correcting an error message
2012-11-23 Wolfgang (Blub)... Suffix operators, and remembering the const-float-1...
2012-11-23 Wolfgang (Blub)... Parsing of suffix operators, NOTE: applied like prefix...
2012-11-23 Wolfgang (Blub)... Prefix ++,--
2012-11-23 Wolfgang (Blub)... a type_name -> ast_type_to_string conversion
2012-11-23 Dale WeilerUse memcmp for comparing doubles
2012-11-23 Dale WeilerMake it compile with -Wall and -pedantic
2012-11-22 Wolfgang (Blub)... unused params in parser.c
2012-11-22 Wolfgang (Blub)... Remove unused macro
2012-11-22 Wolfgang (Blub)... Fixing shadows in parser.c - moving generate_checksum...
2012-11-22 Dale WeilerMerge branch 'master' of github.com:graphitemaster...
2012-11-21 Wolfgang (Blub)... -dump vs -dumpfin; to see the IR before and after final...
2012-11-21 Wolfgang (Blub)... error if the ternary operands aren't of the same type...
2012-11-21 Wolfgang (Blub)... check 'ternaries' count
2012-11-21 Wolfgang (Blub)... Utilizing vec_last more
2012-11-21 Wolfgang (Blub)... operator handling for ternary
2012-11-21 Wolfgang (Blub)... Removing some obsolete messages
2012-11-21 Wolfgang (Blub)... parsing the ternary
2012-11-19 Wolfgang (Blub)... -frelaxed-switch to enable switch on non-constant cases
2012-11-19 Wolfgang (Blub)... Parsing of switches
2012-11-19 Wolfgang (Blub)... fix a warning and remove unused variables
2012-11-19 Wolfgang (Blub)... break and continue support
2012-11-19 Wolfgang (Blub)... moving 'return' parsing into a function
2012-11-19 Dale WeilerMerge branch 'master' into test-suite
2012-11-18 Wolfgang (Blub)... Make functions copy their extparams
2012-11-18 Wolfgang (Blub)... Make the >8 parameter message a warning
2012-11-18 Wolfgang (Blub)... The ftepp now always outputs into a string buffer,...
2012-11-18 Wolfgang (Blub)... Merge branch 'master' into ftepp
2012-11-18 Wolfgang (Blub)... Collect accessor functions in the parser so they can...
2012-11-18 Wolfgang (Blub)... Removing some code duplication
2012-11-18 Wolfgang (Blub)... Some printf/con_out/con_err conversions, guarded some...
2012-11-15 Wolfgang (Blub)... Replaced it all...
2012-11-15 Dale WeilerUse new console system everywhere.
2012-11-14 Wolfgang (Blub)... Merging in new-syntax
2012-11-14 Dale Weilerpreliminary segregated console subsystem
2012-11-13 Wolfgang (Blub)... if not() support
2012-11-13 Wolfgang (Blub)... if not() support
2012-11-13 Wolfgang (Blub)... improve the warning
2012-11-13 Wolfgang (Blub)... Warn (via -Wextensions) when accessing a field-of-array...
2012-11-12 Wolfgang (Blub)... when finishing an array-indexing operation the parser...
2012-11-12 Wolfgang (Blub)... allowing inexing of array-fields
2012-11-12 Wolfgang (Blub)... array-field setter needs to use STOREP*
2012-11-12 Wolfgang (Blub)... support for ast_entfield nodes with specific output...
2012-11-12 Wolfgang (Blub)... entity-array-field-setter generation
2012-11-12 Wolfgang (Blub)... code to instantiate field-array accessors
2012-11-12 Wolfgang (Blub)... Preparing to generate accessors for field arrays
2012-11-12 Wolfgang (Blub)... more factorizing and shortening of code
2012-11-12 Wolfgang (Blub)... shorten some code
2012-11-11 Wolfgang (Blub)... call ir_function_finalize on array accessors otherwise...
2012-11-11 Wolfgang (Blub)... handling of op-[
2012-11-11 Wolfgang (Blub)... Handling [ in the SYA
2012-11-11 Wolfgang (Blub)... array index opening-paren can now return TOKEN_OPERATOR...
2012-11-11 Wolfgang (Blub)... SY_PAREN_ constants to replace magic numbers
2012-11-11 Wolfgang (Blub)... Store accessors in the ast_value for access from within...
2012-11-11 Wolfgang (Blub)... array accessor function genaration
2012-11-11 Wolfgang (Blub)... properly in all situations where an array is part of...
2012-11-11 Wolfgang (Blub)... Don't allow arrays and other unsupported parameter...
2012-11-11 Wolfgang (Blub)... Starting to add error messages for when using array...
2012-11-11 Wolfgang (Blub)... need to use ast_unref rather than ast_delete on the...
2012-11-11 Wolfgang (Blub)... parser_compile_file vs parser_compile_string
2012-11-11 Wolfgang (Blub)... parse arrays
2012-11-11 Wolfgang (Blub)... first parsing of [ - pushing temp changes
2012-11-11 Wolfgang (Blub)... Preparing to parse arrays: adding TYPE_ARRAY and union...
2012-11-11 Wolfgang (Blub)... Support non-const initialized locals
2012-11-11 Wolfgang (Blub)... Shouldn't require a 'local' keyword for local fieldpointers
2012-11-11 Wolfgang (Blub)... globals of type .vector will now properly generate...
2012-11-11 Wolfgang (Blub)... Support in the AST for TYPE_FIELD globals which are...
2012-11-11 Wolfgang (Blub)... added 'var' to the keywords when not in -std=qcc, suppo...
2012-11-11 Wolfgang (Blub)... -std=qcc now errors on C-style function syntax
2012-11-11 Wolfgang (Blub)... -std=qcc should error when the '=' is missing in a...
2012-11-11 Wolfgang (Blub)... Removing old commented-out parsing code
2012-11-11 Wolfgang (Blub)... Making the = in front of function bodies optional
2012-11-11 Wolfgang (Blub)... new-style syntax
2012-11-11 Wolfgang (Blub)... Enable 'local-already-declared' check for locals even...
2012-11-11 Wolfgang (Blub)... fixing a stupid typo - why doesn't any compiler warn...
2012-11-09 Wolfgang (Blub)... Merged parsing of variable and field declarations into...
2012-11-04 Wolfgang (Blub)... gcc lost it's magic analyzer and now complains about...
2012-11-02 Wolfgang (Blub)... error on more than 8 params for now since more need...
2012-10-28 Wolfgang (Blub)... Error when trying to assign variables whose types are...
2012-10-28 Wolfgang (Blub)... a failing 'parse-statement' call should not print ...
2012-10-28 Wolfgang (Blub)... The proper way to deal with error messages which did...
2012-10-28 Wolfgang (Blub)... add error for function parameters of invalid types
2012-10-28 Wolfgang (Blub)... When erroring while parsing a function and the function...
2012-10-02 Wolfgang (Blub)... Cleaner crc implementation
2012-10-02 Wolfgang (Blub)... Generating checksums
2012-10-02 Wolfgang (Blub)... Print a warning if end_sys_fields was declared as a...
2012-10-02 Wolfgang (Blub)... don't warn about unused end_sys_{globals,fields}
2012-08-24 Wolfgang (Blub)... the lexer now doesn't _allocate_ the token structure...
2012-08-24 Wolfgang (Blub)... parse_variable refactored, moved out the parsing of...
2012-08-24 Wolfgang (Blub)... renaming some parser functions, mainly shortining thing...
next