]> git.xonotic.org Git - xonotic/gmqcc.git/log
xonotic/gmqcc.git
11 years agoRemoved -fenhanced-diagnostics - it's now --correct, which makes sense since it doesn...
Wolfgang Bumiller [Sat, 12 Jan 2013 16:10:07 +0000 (17:10 +0100)]
Removed -fenhanced-diagnostics - it's now --correct, which makes sense since it doesn't affect the compilation process itself

11 years agoUhh I did it again
Dale Weiler [Sat, 12 Jan 2013 15:47:41 +0000 (15:47 +0000)]
Uhh I did it again

11 years agoserpate line travis-ci build url for notifications
Dale Weiler [Sat, 12 Jan 2013 15:47:08 +0000 (15:47 +0000)]
serpate line travis-ci build url for notifications

11 years agofix a build issue
Wolfgang Bumiller [Sat, 12 Jan 2013 15:38:49 +0000 (16:38 +0100)]
fix a build issue

11 years agovararg testcases
Wolfgang Bumiller [Sat, 12 Jan 2013 15:37:26 +0000 (16:37 +0100)]
vararg testcases

11 years agogmqcc.ini.example: VARIADIC_ARGS
Wolfgang Bumiller [Sat, 12 Jan 2013 15:32:36 +0000 (16:32 +0100)]
gmqcc.ini.example: VARIADIC_ARGS

11 years agomanpage: -fvariadic-args
Wolfgang Bumiller [Sat, 12 Jan 2013 15:31:51 +0000 (16:31 +0100)]
manpage: -fvariadic-args

11 years agoguarding vararg code by -fvariadic-args
Wolfgang Bumiller [Sat, 12 Jan 2013 15:28:04 +0000 (16:28 +0100)]
guarding vararg code by -fvariadic-args

11 years agothis is useless and just confused me a lot, removing
Wolfgang Bumiller [Sat, 12 Jan 2013 15:20:31 +0000 (16:20 +0100)]
this is useless and just confused me a lot, removing

11 years agoentity setter array subscript needs to get a correct field type
Wolfgang Bumiller [Sat, 12 Jan 2013 14:49:31 +0000 (15:49 +0100)]
entity setter array subscript needs to get a correct field type

11 years agocopying the output type on ast_array_index_codegen
Wolfgang Bumiller [Sat, 12 Jan 2013 14:15:58 +0000 (15:15 +0100)]
copying the output type on ast_array_index_codegen

11 years agoCopying arg counter into the local
Wolfgang Bumiller [Sat, 12 Jan 2013 14:06:19 +0000 (15:06 +0100)]
Copying arg counter into the local

11 years agoCreating the argument counter if requested
Wolfgang Bumiller [Sat, 12 Jan 2013 13:59:30 +0000 (14:59 +0100)]
Creating the argument counter if requested

11 years agoupdated CHANGES file
Wolfgang Bumiller [Sat, 12 Jan 2013 13:54:11 +0000 (14:54 +0100)]
updated CHANGES file

11 years agoAdded '...(idx,type)' to access varargs
Wolfgang Bumiller [Sat, 12 Jan 2013 13:53:48 +0000 (14:53 +0100)]
Added '...(idx,type)' to access varargs

11 years agoadded gen_function_varargs_copy
Wolfgang Bumiller [Sat, 12 Jan 2013 13:11:34 +0000 (14:11 +0100)]
added gen_function_varargs_copy

11 years agomask -Olocal-temps by IR_FLAG_MASK_NO_LOCAL_TEMPS which now equals IR_FLAG_MASK_NO_OV...
Wolfgang Bumiller [Sat, 12 Jan 2013 13:02:45 +0000 (14:02 +0100)]
mask -Olocal-temps by IR_FLAG_MASK_NO_LOCAL_TEMPS which now equals IR_FLAG_MASK_NO_OVERLAP - though HAS_ARRAYS usually suffices, but not for code which _depends_ on uninitialized variables

11 years agoir_function stores max_varargs now
Wolfgang Bumiller [Sat, 12 Jan 2013 13:01:16 +0000 (14:01 +0100)]
ir_function stores max_varargs now

11 years agobuiltins are generally not declared const, so don't expect CV_CONST, otherwise we...
Wolfgang Bumiller [Sat, 12 Jan 2013 12:52:42 +0000 (13:52 +0100)]
builtins are generally not declared const, so don't expect CV_CONST, otherwise we write out va_count for builtin calls as well...

11 years agoWhile at it: moving generation of reserved:version to just before the functions so...
Wolfgang Bumiller [Sat, 12 Jan 2013 12:49:06 +0000 (13:49 +0100)]
While at it: moving generation of reserved:version to just before the functions so no global/immedate is generated _after_ it - at least from the parser's point of view

11 years agocreate store to reserved:va_count; fix: don't build vararg accessor ast tree after...
Wolfgang Bumiller [Sat, 12 Jan 2013 12:47:56 +0000 (13:47 +0100)]
create store to reserved:va_count; fix: don't build vararg accessor ast tree after generating immediates as they create new ones

11 years agoast_call now has a va_count which causes a store to reserved:va_count before the...
Wolfgang Bumiller [Sat, 12 Jan 2013 12:29:47 +0000 (13:29 +0100)]
ast_call now has a va_count which causes a store to reserved:va_count before the call

11 years agovararg accessor generation
Wolfgang Bumiller [Sat, 12 Jan 2013 12:01:20 +0000 (13:01 +0100)]
vararg accessor generation

11 years agoparsing of vararg-counter
Wolfgang Bumiller [Sat, 12 Jan 2013 10:29:03 +0000 (11:29 +0100)]
parsing of vararg-counter

11 years agoupdated CHANGES file
Wolfgang Bumiller [Sat, 12 Jan 2013 10:11:31 +0000 (11:11 +0100)]
updated CHANGES file

11 years agotype restricted varargs
Wolfgang Bumiller [Sat, 12 Jan 2013 10:10:29 +0000 (11:10 +0100)]
type restricted varargs

11 years agoDeclaration of type-restricted varargs
Wolfgang Bumiller [Sat, 12 Jan 2013 10:03:17 +0000 (11:03 +0100)]
Declaration of type-restricted varargs

11 years agokeep track of the highest parameter count of calls for later for varargs
Wolfgang Bumiller [Sat, 12 Jan 2013 09:57:44 +0000 (10:57 +0100)]
keep track of the highest parameter count of calls for later for varargs

11 years ago'static' shouldn't be accepted in the global scope for now
Wolfgang Bumiller [Sat, 12 Jan 2013 09:52:18 +0000 (10:52 +0100)]
'static' shouldn't be accepted in the global scope for now

11 years agofilling type_name in exec.c
Wolfgang Bumiller [Fri, 11 Jan 2013 22:15:16 +0000 (23:15 +0100)]
filling type_name in exec.c

11 years agocode cleanup: prog_tempstring used to cast const char * parameter to char * due to...
Wolfgang Bumiller [Fri, 11 Jan 2013 22:13:36 +0000 (23:13 +0100)]
code cleanup: prog_tempstring used to cast const char * parameter to char * due to the old vector code which is now gone

11 years agofixing CHANGES: this actually was not part of 0.2
Wolfgang Bumiller [Fri, 11 Jan 2013 22:12:00 +0000 (23:12 +0100)]
fixing CHANGES: this actually was not part of 0.2

11 years agoCHANGES file updated
Wolfgang Bumiller [Fri, 11 Jan 2013 22:10:41 +0000 (23:10 +0100)]
CHANGES file updated

11 years agoFix a typo - why the hell does clang not complain? Why the hell does it even compile...
Wolfgang Bumiller [Fri, 11 Jan 2013 19:04:46 +0000 (20:04 +0100)]
Fix a typo - why the hell does clang not complain? Why the hell does it even compile with clang...

11 years agomanpage: --add-info
Wolfgang Bumiller [Fri, 11 Jan 2013 18:23:03 +0000 (19:23 +0100)]
manpage: --add-info

11 years agoadded the --add-info compile switch: it adds a global const string named version...
Wolfgang Bumiller [Fri, 11 Jan 2013 18:18:51 +0000 (19:18 +0100)]
added the --add-info compile switch: it adds a global const string named version to the 'reserved' namespace, ie ends up named 'reserved:version', containing the --version string

11 years agoAdded a flag to both ast and ir which enforces the generation of a globaldef for...
Wolfgang Bumiller [Fri, 11 Jan 2013 18:15:59 +0000 (19:15 +0100)]
Added a flag to both ast and ir which enforces the generation of a globaldef for a value

11 years agoIn order to avoid release version strings in non-git builds, by default --version...
Wolfgang Bumiller [Fri, 11 Jan 2013 09:37:54 +0000 (10:37 +0100)]
In order to avoid release version strings in non-git builds, by default --version on non-tagged commits now also prints 'development build' as the 2nd line

11 years agoreplacing an error message in the enum parsing
Wolfgang Bumiller [Thu, 10 Jan 2013 21:08:49 +0000 (22:08 +0100)]
replacing an error message in the enum parsing

11 years agomention CHANGES in README
Dale Weiler [Thu, 10 Jan 2013 20:52:23 +0000 (20:52 +0000)]
mention CHANGES in README

11 years agoBetter enumeration test
Dale Weiler [Thu, 10 Jan 2013 20:50:42 +0000 (20:50 +0000)]
Better enumeration test

11 years agoenum testcase
Wolfgang Bumiller [Thu, 10 Jan 2013 20:38:17 +0000 (21:38 +0100)]
enum testcase

11 years agowill warn about "check" no such file or directory (since it aliases in the rule for...
Dale Weiler [Thu, 10 Jan 2013 20:28:53 +0000 (20:28 +0000)]
will warn about "check" no such file or directory (since it aliases in the rule for the Makefile)

11 years agocorrection fix: don't try to create edits for an empty string
Wolfgang Bumiller [Thu, 10 Jan 2013 20:09:44 +0000 (21:09 +0100)]
correction fix: don't try to create edits for an empty string

11 years agoCHANGES file updated
Wolfgang Bumiller [Thu, 10 Jan 2013 20:05:10 +0000 (21:05 +0100)]
CHANGES file updated

11 years agoAllow accessing vector components via the . operator, including components
Wolfgang Bumiller [Thu, 10 Jan 2013 20:03:35 +0000 (21:03 +0100)]
Allow accessing vector components via the . operator, including components
of expressions, like: (3 * a_vector).y.

11 years agoCHANGES file updated
Wolfgang Bumiller [Thu, 10 Jan 2013 18:59:01 +0000 (19:59 +0100)]
CHANGES file updated

11 years agoparse_expression_leave: also end at a closing } - enum: check for } and , after an...
Wolfgang Bumiller [Thu, 10 Jan 2013 17:52:43 +0000 (18:52 +0100)]
parse_expression_leave: also end at a closing } - enum: check for } and , after an expression again

11 years agosimple 'enum' implementation
Wolfgang Bumiller [Thu, 10 Jan 2013 17:38:57 +0000 (18:38 +0100)]
simple 'enum' implementation

11 years agostrictness sweep: (void)-ing all vec_ macros which don't evaluate to a sensible value
Wolfgang Bumiller [Thu, 10 Jan 2013 17:26:35 +0000 (18:26 +0100)]
strictness sweep: (void)-ing all vec_ macros which don't evaluate to a sensible value

11 years agogit package is now named gmqcc-git, also added conflicts/provides
Wolfgang Bumiller [Thu, 10 Jan 2013 15:31:01 +0000 (16:31 +0100)]
git package is now named gmqcc-git, also added conflicts/provides

11 years agothe -git PKGBUILD needs 'git' as makedepends according to the guidelines on the arch...
Wolfgang Bumiller [Thu, 10 Jan 2013 15:25:36 +0000 (16:25 +0100)]
the -git PKGBUILD needs 'git' as makedepends according to the guidelines on the arch wiki

11 years agochecking if git even is available
Wolfgang Bumiller [Thu, 10 Jan 2013 15:13:47 +0000 (16:13 +0100)]
checking if git even is available

11 years ago--version now prints GMQCC_GITINFO, which is not not defined in gmqcc.h to some empty...
Wolfgang Bumiller [Thu, 10 Jan 2013 15:07:33 +0000 (16:07 +0100)]
--version now prints GMQCC_GITINFO, which is not not defined in gmqcc.h to some empty string, it just won't exist in release builds

11 years agoFix a warning
Wolfgang Bumiller [Thu, 10 Jan 2013 15:04:58 +0000 (16:04 +0100)]
Fix a warning

11 years agoThis file seems to live in the past. Let's pull it over
Wolfgang Bumiller [Thu, 10 Jan 2013 14:55:58 +0000 (15:55 +0100)]
This file seems to live in the past. Let's pull it over

11 years agomanpage: updating the section about nil vs fteqcc-__NULL__
Wolfgang Bumiller [Thu, 10 Jan 2013 14:41:36 +0000 (15:41 +0100)]
manpage: updating the section about nil vs fteqcc-__NULL__

11 years agofixed a bug which allowed some statements to end in tokens other than semicolons...
Wolfgang Bumiller [Thu, 10 Jan 2013 14:23:04 +0000 (15:23 +0100)]
fixed a bug which allowed some statements to end in tokens other than semicolons... (ie closing parens)

11 years agofor compile-time constants << and >> are now available
Wolfgang Bumiller [Thu, 10 Jan 2013 14:12:19 +0000 (15:12 +0100)]
for compile-time constants << and >> are now available

11 years agomanpage: A note about __NULL__ vs nil
Wolfgang Bumiller [Wed, 9 Jan 2013 20:54:36 +0000 (21:54 +0100)]
manpage: A note about __NULL__ vs nil

11 years agoAdding a CHANGES file
Wolfgang Bumiller [Wed, 9 Jan 2013 20:49:28 +0000 (21:49 +0100)]
Adding a CHANGES file

11 years agomanpage: __DATE__, __TIME__ predefs
Wolfgang Bumiller [Wed, 9 Jan 2013 20:32:17 +0000 (21:32 +0100)]
manpage: __DATE__, __TIME__ predefs

11 years agodon't call correct_edit anew for each scope
Wolfgang Bumiller [Wed, 9 Jan 2013 20:16:22 +0000 (21:16 +0100)]
don't call correct_edit anew for each scope

11 years agoFactor out the adding of globals in various places into parser_addglobal; Add globals...
Wolfgang Bumiller [Wed, 9 Jan 2013 19:42:33 +0000 (20:42 +0100)]
Factor out the adding of globals in various places into parser_addglobal; Add globals to the correct_variables lists

11 years agomanpage: Document change to -Wall
Wolfgang Bumiller [Wed, 9 Jan 2013 19:41:12 +0000 (20:41 +0100)]
manpage: Document change to -Wall

11 years ago-Wall now does not set -Wuninitialized-global
Wolfgang Bumiller [Wed, 9 Jan 2013 19:39:17 +0000 (20:39 +0100)]
-Wall now does not set -Wuninitialized-global

11 years agofixing a crash caused by the correction: setting correct=NULL after freeing so the...
Wolfgang Bumiller [Wed, 9 Jan 2013 18:12:27 +0000 (19:12 +0100)]
fixing a crash caused by the correction: setting correct=NULL after freeing so the later if(correct) check properly fails

11 years agoremoving a goto loop
Wolfgang Bumiller [Wed, 9 Jan 2013 15:00:16 +0000 (16:00 +0100)]
removing a goto loop

11 years agotestcase for mul_vf/fv
Wolfgang Bumiller [Tue, 8 Jan 2013 20:55:34 +0000 (21:55 +0100)]
testcase for mul_vf/fv

11 years agoSo it wasn't _reall_ the optimization... it just made it easier. -Olocal-temps -...
Wolfgang Bumiller [Tue, 8 Jan 2013 20:23:38 +0000 (21:23 +0100)]
So it wasn't _reall_ the optimization... it just made it easier. -Olocal-temps -> -O3

11 years agomore IR dump verbosity; fix: MUL_VF/FV additional liferange must be propagated to...
Wolfgang Bumiller [Tue, 8 Jan 2013 20:21:52 +0000 (21:21 +0100)]
more IR dump verbosity; fix: MUL_VF/FV additional liferange must be propagated to the full vector when using a vector-member as float-parameter

11 years agosqrt and normalize builtins
Wolfgang Bumiller [Tue, 8 Jan 2013 18:21:24 +0000 (19:21 +0100)]
sqrt and normalize builtins

11 years agobetter solution to blockstart pointlife issues
Wolfgang Bumiller [Tue, 8 Jan 2013 14:22:24 +0000 (15:22 +0100)]
better solution to blockstart pointlife issues

11 years agoSeems like there's still a problem with it - -Olocal-temps back up to -O4
Wolfgang Bumiller [Mon, 7 Jan 2013 19:27:50 +0000 (20:27 +0100)]
Seems like there's still a problem with it - -Olocal-temps back up to -O4

11 years agoadded a testcase for -Olocal-temps
Wolfgang Bumiller [Mon, 7 Jan 2013 18:09:15 +0000 (19:09 +0100)]
added a testcase for -Olocal-temps

11 years agoerror when trying to break/continue outside of loops/switches instead of segfaulting...
Wolfgang Bumiller [Mon, 7 Jan 2013 14:19:53 +0000 (15:19 +0100)]
error when trying to break/continue outside of loops/switches instead of segfaulting at codegen

11 years agoMoving -Olocal-temps back to -O3
Wolfgang Bumiller [Mon, 7 Jan 2013 13:55:42 +0000 (14:55 +0100)]
Moving -Olocal-temps back to -O3

11 years agoThis should fix the -Olocal-temps issue; set v->unique_life for any v with a point...
Wolfgang Bumiller [Mon, 7 Jan 2013 13:55:01 +0000 (14:55 +0100)]
This should fix the -Olocal-temps issue; set v->unique_life for any v with a point-life - this is a bad solution: proper dead code elimination should be done instead

11 years agomore info in the IR dump
Wolfgang Bumiller [Mon, 7 Jan 2013 13:25:01 +0000 (14:25 +0100)]
more info in the IR dump

11 years agoclose #76 implemented -Werror-some-warning section [errors] for the ini system.
Dale Weiler [Mon, 7 Jan 2013 12:46:50 +0000 (12:46 +0000)]
close #76 implemented -Werror-some-warning section [errors] for the ini system.

11 years agoMerge branch 'master' of github.com:graphitemaster/gmqcc
Dale Weiler [Mon, 7 Jan 2013 12:40:03 +0000 (12:40 +0000)]
Merge branch 'master' of github.com:graphitemaster/gmqcc

11 years agoMove splint.sh into the Makefile
Dale Weiler [Mon, 7 Jan 2013 12:39:33 +0000 (12:39 +0000)]
Move splint.sh into the Makefile

11 years agomoving -Olocal-temps to -O4 until the issues are solved
Wolfgang Bumiller [Mon, 7 Jan 2013 11:58:56 +0000 (12:58 +0100)]
moving -Olocal-temps to -O4 until the issues are solved

11 years agoGuard 2 peephole optimizations which should only work on the currently-last instructi...
Wolfgang Bumiller [Sun, 6 Jan 2013 23:22:54 +0000 (00:22 +0100)]
Guard 2 peephole optimizations which should only work on the currently-last instruction by a check if it's actually really at the end...

11 years agoFix some possible NULL access in an error case
Wolfgang Bumiller [Sun, 6 Jan 2013 23:22:16 +0000 (00:22 +0100)]
Fix some possible NULL access in an error case

11 years ago__STD_QCCX__ on -std=qccx - I have no idea about what qccx does/can do but at least...
Wolfgang Bumiller [Sun, 6 Jan 2013 19:52:12 +0000 (20:52 +0100)]
__STD_QCCX__ on -std=qccx - I have no idea about what qccx does/can do but at least now -fftepp includes the macros...

11 years agomanpage: bring the list of included -f and -W flags for each described -std up to...
Wolfgang Bumiller [Sun, 6 Jan 2013 19:50:18 +0000 (20:50 +0100)]
manpage: bring the list of included -f and -W flags for each described -std up to date

11 years agoAdding -ftranslatable-strings to -std=gmqcc
Wolfgang Bumiller [Sun, 6 Jan 2013 19:49:57 +0000 (20:49 +0100)]
Adding -ftranslatable-strings to -std=gmqcc

11 years agomake the LNOF header compiler friendlier
Wolfgang Bumiller [Sun, 6 Jan 2013 15:40:38 +0000 (16:40 +0100)]
make the LNOF header compiler friendlier

11 years agoMerge branch 'master' of git://github.com/graphitemaster/gmqcc
Wolfgang Bumiller [Sun, 6 Jan 2013 15:37:05 +0000 (16:37 +0100)]
Merge branch 'master' of git://github.com/graphitemaster/gmqcc

11 years agofixup qcvm parameter handling, now progs.dat can be specified anywhere not just at...
Wolfgang Bumiller [Sun, 6 Jan 2013 15:37:02 +0000 (16:37 +0100)]
fixup qcvm parameter handling, now progs.dat can be specified anywhere not just at the end

11 years agoPipe stderr from makedepend for depend rule in makefile to /dev/null
Dale Weiler [Sun, 6 Jan 2013 15:27:39 +0000 (15:27 +0000)]
Pipe stderr from makedepend for depend rule in makefile to /dev/null

11 years agoAdd test alias to check for make file
Dale Weiler [Sun, 6 Jan 2013 15:12:46 +0000 (15:12 +0000)]
Add test alias to check for make file

11 years agoAdd splint rule to makefile
Dale Weiler [Sun, 6 Jan 2013 12:43:46 +0000 (12:43 +0000)]
Add splint rule to makefile

11 years agoremove never reached return
Dale Weiler [Sun, 6 Jan 2013 12:39:37 +0000 (12:39 +0000)]
remove never reached return

11 years agoEnable corrector by default
Dale Weiler [Sun, 6 Jan 2013 12:29:25 +0000 (12:29 +0000)]
Enable corrector by default

11 years agoMerge branch 'screwaround'
Dale Weiler [Sun, 6 Jan 2013 12:29:07 +0000 (12:29 +0000)]
Merge branch 'screwaround'

11 years agoremove a the
Dale Weiler [Sun, 6 Jan 2013 12:28:27 +0000 (12:28 +0000)]
remove a the

11 years agoDocument the awesome hack
Dale Weiler [Sun, 6 Jan 2013 12:24:05 +0000 (12:24 +0000)]
Document the awesome hack

11 years agoAn evil optimization to the trie, now has a fixed amount of branches and uses a char...
Wolfgang Bumiller [Sun, 6 Jan 2013 12:07:28 +0000 (13:07 +0100)]
An evil optimization to the trie, now has a fixed amount of branches and uses a char-to-index map to index into the branches...