]> git.xonotic.org Git - xonotic/gmqcc.git/log
xonotic/gmqcc.git
10 years agoPerform some strict aliasing all over this biatch. We ain't trippin on code that...
Dale Weiler [Wed, 14 Aug 2013 10:16:04 +0000 (10:16 +0000)]
Perform some strict aliasing all over this biatch. We ain't trippin on code that breaks it.

10 years agoremove the 'opts' global from test.c and exec.c as opts.c defines it and is linked...
Wolfgang Bumiller [Wed, 14 Aug 2013 10:09:26 +0000 (12:09 +0200)]
remove the 'opts' global from test.c and exec.c as opts.c defines it and is linked into both the testsuite and qcvm

10 years agoHandle some more errors
Dale Weiler [Wed, 14 Aug 2013 07:41:09 +0000 (07:41 +0000)]
Handle some more errors

10 years agoSome bug fixes
Dale Weiler [Wed, 14 Aug 2013 07:19:49 +0000 (07:19 +0000)]
Some bug fixes

10 years agoRemove my MT impl for PRNG, it's full of buffer overflows that I don't want to fix...
Dale Weiler [Wed, 14 Aug 2013 06:22:32 +0000 (06:22 +0000)]
Remove my MT impl for PRNG, it's full of buffer overflows that I don't want to fix. Just fallback to using srand/rand

10 years agoRemove vec_upload
Dale Weiler [Wed, 14 Aug 2013 06:19:48 +0000 (06:19 +0000)]
Remove vec_upload

10 years agoUpdate deps
Dale Weiler [Wed, 14 Aug 2013 06:12:43 +0000 (06:12 +0000)]
Update deps

10 years agoMade intrinsics seperate from the parser.
Dale Weiler [Wed, 14 Aug 2013 06:02:15 +0000 (06:02 +0000)]
Made intrinsics seperate from the parser.

10 years agoFix
Dale Weiler [Wed, 14 Aug 2013 04:27:11 +0000 (04:27 +0000)]
Fix

10 years agoCleanups
Dale Weiler [Wed, 14 Aug 2013 04:24:06 +0000 (04:24 +0000)]
Cleanups

10 years agoSome statistics as Samual wanted.
Dale Weiler [Wed, 14 Aug 2013 04:08:00 +0000 (04:08 +0000)]
Some statistics as Samual wanted.

10 years agoDisable statistics that are irrelevant to QuakeC coders
Dale Weiler [Wed, 14 Aug 2013 03:24:00 +0000 (03:24 +0000)]
Disable statistics that are irrelevant to QuakeC coders

10 years agoRemove the attempt at ast_intrinsic node
Dale Weiler [Wed, 14 Aug 2013 03:05:14 +0000 (03:05 +0000)]
Remove the attempt at ast_intrinsic node

10 years agoSome intrinsic cleanups
Dale Weiler [Wed, 14 Aug 2013 03:03:49 +0000 (03:03 +0000)]
Some intrinsic cleanups

10 years agoSome typos
Dale Weiler [Wed, 14 Aug 2013 02:07:12 +0000 (02:07 +0000)]
Some typos

10 years agoincrement the optimization counter for DCE'd folds, also enable -O3 for compilation.
Dale Weiler [Thu, 1 Aug 2013 14:24:10 +0000 (14:24 +0000)]
increment the optimization counter for DCE'd folds, also enable -O3 for compilation.

10 years agoTestsuite now returns the correct value on test failures (also prints how many tests...
Dale Weiler [Thu, 1 Aug 2013 07:20:02 +0000 (07:20 +0000)]
Testsuite now returns the correct value on test failures (also prints how many tests failed .. if any fail)

10 years agoDisable the macros to keep clang happy (just uncomment them for when more constant...
Dale Weiler [Thu, 1 Aug 2013 07:12:21 +0000 (07:12 +0000)]
Disable the macros to keep clang happy (just uncomment them for when more constant folding optimizations need them)

10 years agoAdded -Oconst-fold-dce (dead code elimination optimization for when constant expressi...
Dale Weiler [Thu, 1 Aug 2013 07:07:59 +0000 (07:07 +0000)]
Added -Oconst-fold-dce (dead code elimination optimization for when constant expressions form the basis of the dead code, i.e if else with constant expression). Fixed deps and added documentation. Cleaned up folds for ir_value (can now use the same macros as the ast_value ones).

10 years agoFix that typecast
Dale Weiler [Wed, 31 Jul 2013 19:36:09 +0000 (19:36 +0000)]
Fix that typecast

10 years agoMove const-branch-elision into fold.c
Dale Weiler [Wed, 31 Jul 2013 19:34:38 +0000 (19:34 +0000)]
Move const-branch-elision into fold.c

10 years agoRemove debugging aid and left over cruft.
Dale Weiler [Wed, 31 Jul 2013 18:54:38 +0000 (18:54 +0000)]
Remove debugging aid and left over cruft.

10 years agoThe problem was so subtle
Dale Weiler [Wed, 31 Jul 2013 18:53:00 +0000 (18:53 +0000)]
The problem was so subtle

10 years agoFixes
Dale Weiler [Wed, 31 Jul 2013 17:24:32 +0000 (17:24 +0000)]
Fixes

10 years agofixed vector ops constant folding.
Dale Weiler [Wed, 31 Jul 2013 17:05:43 +0000 (17:05 +0000)]
fixed vector ops constant folding.

10 years agomore fixes
Dale Weiler [Wed, 31 Jul 2013 16:31:45 +0000 (16:31 +0000)]
more fixes

10 years agoFixes
Dale Weiler [Wed, 31 Jul 2013 15:56:56 +0000 (15:56 +0000)]
Fixes

10 years agoOperator constant folding rewrite almost complete, just need to track down why two...
Dale Weiler [Wed, 31 Jul 2013 15:49:45 +0000 (15:49 +0000)]
Operator constant folding rewrite almost complete, just need to track down why two tests are failing.

10 years agofolding for lteqgt (less than equal to or greater than) operator a.k.a <=> which...
Dale Weiler [Wed, 31 Jul 2013 12:59:34 +0000 (12:59 +0000)]
folding for lteqgt (less than equal to or greater than) operator a.k.a <=> which maps values to -1,0,1 depending on the result (think of the result as a troolan) .. it's a perl thing :P

10 years agoFeed clang demon
Dale Weiler [Wed, 31 Jul 2013 12:17:52 +0000 (12:17 +0000)]
Feed clang demon

10 years ago&& and || op folding
Dale Weiler [Wed, 31 Jul 2013 12:11:03 +0000 (12:11 +0000)]
&& and || op folding

10 years agoFold for div op
Dale Weiler [Wed, 31 Jul 2013 11:48:43 +0000 (11:48 +0000)]
Fold for div op

10 years agoAdded constant folding support for '*' .. Clever ascii trick prevail :D
Dale Weiler [Wed, 31 Jul 2013 10:40:17 +0000 (10:40 +0000)]
Added constant folding support for '*' .. Clever ascii trick prevail :D

10 years agoSome cleanups and more support for constant folding.
Dale Weiler [Wed, 31 Jul 2013 09:56:45 +0000 (09:56 +0000)]
Some cleanups and more support for constant folding.

10 years agoWork in progress constant-folding rewrite.
Dale Weiler [Wed, 31 Jul 2013 09:04:19 +0000 (09:04 +0000)]
Work in progress constant-folding rewrite.

10 years agoExperimental/Initial try at in-ast constant folding. (for TYPE_FLOAT currently ....
Dale Weiler [Tue, 30 Jul 2013 18:06:42 +0000 (18:06 +0000)]
Experimental/Initial try at in-ast constant folding. (for TYPE_FLOAT currently .. since comparisions on UTF8 strings need to be worked out yet ..)

10 years agoI'm in a state of confusion as to why constant folding was never done on comparisions...
Dale Weiler [Tue, 30 Jul 2013 17:27:54 +0000 (17:27 +0000)]
I'm in a state of confusion as to why constant folding was never done on comparisions, now it is ;)

10 years agoUse the _t consistency naming scheme. Also various cleanups.
Dale Weiler [Tue, 30 Jul 2013 16:00:51 +0000 (16:00 +0000)]
Use the _t consistency naming scheme. Also various cleanups.

10 years agoMove some things around
Dale Weiler [Tue, 30 Jul 2013 15:32:24 +0000 (15:32 +0000)]
Move some things around

10 years agoSome cleanups and smaller binaries!
Dale Weiler [Sun, 28 Jul 2013 00:23:15 +0000 (00:23 +0000)]
Some cleanups and smaller binaries!

10 years agocherry-pick diagnostics testsuite into cooking. We can now create compiler diagnostic...
Dale Weiler [Sun, 28 Jul 2013 00:02:48 +0000 (00:02 +0000)]
cherry-pick diagnostics testsuite into cooking. We can now create compiler diagnostic tests, i.e if the compiler errors on syntax, we can match the error messages.

10 years agoMerge pull request #116 from ignatenkobrain/cooking
Dale Weiler [Sat, 27 Jul 2013 18:29:14 +0000 (11:29 -0700)]
Merge pull request #116 from ignatenkobrain/cooking

Add instruction for Fedora and other RPM distros

10 years agoadd instruction
Igor Gnatenko [Sat, 27 Jul 2013 18:24:43 +0000 (22:24 +0400)]
add instruction

Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
10 years agoadd updated spec and rename it
Igor Gnatenko [Sat, 27 Jul 2013 18:09:39 +0000 (22:09 +0400)]
add updated spec and rename it

Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
10 years agonot needed yet
Igor Gnatenko [Sat, 27 Jul 2013 18:08:43 +0000 (22:08 +0400)]
not needed yet

Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
10 years agoClear out for now.
Dale Weiler [Sat, 27 Jul 2013 17:57:29 +0000 (17:57 +0000)]
Clear out for now.

10 years agoMake COMPILER_QCC default to please the stuborn Quake community.
Dale Weiler [Sat, 27 Jul 2013 17:56:46 +0000 (17:56 +0000)]
Make COMPILER_QCC default to please the stuborn Quake community.

10 years agoSome typos
Dale Weiler [Sat, 27 Jul 2013 16:39:17 +0000 (16:39 +0000)]
Some typos

10 years agoNot to be included
Dale Weiler [Sat, 27 Jul 2013 16:35:15 +0000 (16:35 +0000)]
Not to be included

10 years agoFedora spec files (0.2.9 and 0.3.0) + INSTALL documentation, thanks Igor Gnatenko.
Dale Weiler [Sat, 27 Jul 2013 16:33:33 +0000 (16:33 +0000)]
Fedora spec files (0.2.9 and 0.3.0) + INSTALL documentation, thanks Igor Gnatenko.

10 years agoPlease the whitespace gods
Dale Weiler [Sat, 27 Jul 2013 11:48:55 +0000 (11:48 +0000)]
Please the whitespace gods

10 years agoRevert "Smaller memory footprint, 4/8 bytes vs 12/24 for individual token lex_ctx...
Dale Weiler [Fri, 26 Jul 2013 16:17:41 +0000 (16:17 +0000)]
Revert "Smaller memory footprint, 4/8 bytes vs 12/24 for individual token lex_ctx's. Use to be a 'shallow' copy of the details in lex_file, now it's a pointer to the contents in lex_file."

This reverts commit cddf70f46bc9c46b6adda39a83e9564bf0cf34d3.

10 years agoSmaller memory footprint, 4/8 bytes vs 12/24 for individual token lex_ctx's. Use...
Dale Weiler [Fri, 26 Jul 2013 16:09:26 +0000 (16:09 +0000)]
Smaller memory footprint, 4/8 bytes vs 12/24 for individual token lex_ctx's. Use to be a 'shallow' copy of the details in lex_file, now it's a pointer to the contents in lex_file.

10 years agoTrack strdup memory too
Dale Weiler [Fri, 26 Jul 2013 14:57:21 +0000 (14:57 +0000)]
Track strdup memory too

10 years agoThere was too many 16-sized buckets when compiling xonotic, increase the size: this...
Dale Weiler [Fri, 26 Jul 2013 14:50:37 +0000 (14:50 +0000)]
There was too many 16-sized buckets when compiling xonotic, increase the size: this is cheaper on memory and slightly faster.

10 years agoFix the ctype replacements to work with macro arguments that have side-effect, with...
Dale Weiler [Fri, 26 Jul 2013 12:28:02 +0000 (12:28 +0000)]
Fix the ctype replacements to work with macro arguments that have side-effect, with exception to isspace which *might* need to become a function.

10 years agoEeasy fix for that
Dale Weiler [Sun, 21 Jul 2013 22:07:22 +0000 (22:07 +0000)]
Eeasy fix for that

10 years agoOne last one
Dale Weiler [Sun, 21 Jul 2013 22:00:07 +0000 (22:00 +0000)]
One last one

10 years agoAnother one
Dale Weiler [Sun, 21 Jul 2013 21:56:03 +0000 (21:56 +0000)]
Another one

10 years agoTechnically GCC was wrong here, since opts_ini_parse is guranteed to change error.
Dale Weiler [Sun, 21 Jul 2013 21:51:34 +0000 (21:51 +0000)]
Technically GCC was wrong here, since opts_ini_parse is guranteed to change error.

10 years agoCleanups
Dale Weiler [Fri, 19 Jul 2013 11:43:22 +0000 (11:43 +0000)]
Cleanups

10 years agoUpdate gmqcc.ini.example
Dale Weiler [Thu, 4 Jul 2013 19:24:55 +0000 (15:24 -0400)]
Update gmqcc.ini.example

10 years agofix typo
Wolfgang Bumiller [Mon, 1 Jul 2013 08:37:51 +0000 (10:37 +0200)]
fix typo

10 years agoactually no :)
Wolfgang Bumiller [Sat, 22 Jun 2013 18:31:50 +0000 (20:31 +0200)]
actually no :)

10 years agoFix a case of the uninitialized blues
Dale Weiler [Sat, 22 Jun 2013 02:25:19 +0000 (02:25 +0000)]
Fix a case of the uninitialized blues

10 years agoFix some more bugs (coverity you're a life saver)
Dale Weiler [Sat, 22 Jun 2013 02:05:04 +0000 (02:05 +0000)]
Fix some more bugs (coverity you're a life saver)

10 years agoBuffer overflow!
Dale Weiler [Sat, 22 Jun 2013 01:58:20 +0000 (01:58 +0000)]
Buffer overflow!

10 years agoFix some bugs and a memleak in the testsuite.
Dale Weiler [Sat, 22 Jun 2013 01:56:22 +0000 (01:56 +0000)]
Fix some bugs and a memleak in the testsuite.

10 years agoMore bug fixes and dead code elimination
Dale Weiler [Sat, 22 Jun 2013 01:23:59 +0000 (01:23 +0000)]
More bug fixes and dead code elimination

10 years agoFix out of bound access
Dale Weiler [Sat, 22 Jun 2013 01:16:24 +0000 (01:16 +0000)]
Fix out of bound access

10 years agoFix some more bugs, and use dup2 because dup leaks on some implementations.
Dale Weiler [Sat, 22 Jun 2013 01:14:13 +0000 (01:14 +0000)]
Fix some more bugs, and use dup2 because dup leaks on some implementations.

10 years agoUpdate clean rules in makefiles to remove coverity stuff
Dale Weiler [Sat, 22 Jun 2013 00:16:44 +0000 (00:16 +0000)]
Update clean rules in makefiles to remove coverity stuff

10 years agoFixed possible bug in VM. Added coverity rules to makefiles.
Dale Weiler [Sat, 22 Jun 2013 00:15:25 +0000 (00:15 +0000)]
Fixed possible bug in VM. Added coverity rules to makefiles.

10 years agoFix uninitialized data
Dale Weiler [Sat, 22 Jun 2013 00:00:17 +0000 (00:00 +0000)]
Fix uninitialized data

10 years agoFix a sizeof bug
Dale Weiler [Fri, 21 Jun 2013 23:55:47 +0000 (23:55 +0000)]
Fix a sizeof bug

10 years agoI'm assuming this is a bug since all other read tests compare with itself's ir_value...
Dale Weiler [Fri, 21 Jun 2013 23:54:09 +0000 (23:54 +0000)]
I'm assuming this is a bug since all other read tests compare with itself's ir_value, and only this one doesn't. Otherwise why would you need to load to an ir_value for vec?

10 years agoCatch that one too
Dale Weiler [Fri, 21 Jun 2013 23:51:49 +0000 (23:51 +0000)]
Catch that one too

10 years agoImproper use of a possible negative value.
Dale Weiler [Fri, 21 Jun 2013 23:49:08 +0000 (23:49 +0000)]
Improper use of a possible negative value.

10 years agoRemove a ton of dead code and document the one really insane case.
Dale Weiler [Fri, 21 Jun 2013 23:40:51 +0000 (23:40 +0000)]
Remove a ton of dead code and document the one really insane case.

10 years agocppcheck had the right idea, but the wrong scope on this one.
Dale Weiler [Fri, 21 Jun 2013 23:29:50 +0000 (23:29 +0000)]
cppcheck had the right idea, but the wrong scope on this one.

10 years agoFix more bugs (mostly possible NULL pointer dereferences)
Dale Weiler [Fri, 21 Jun 2013 23:26:49 +0000 (23:26 +0000)]
Fix more bugs (mostly possible NULL pointer dereferences)

10 years agoFix possible NULL pointer dereference
Dale Weiler [Fri, 21 Jun 2013 23:21:12 +0000 (23:21 +0000)]
Fix possible NULL pointer dereference

10 years agoFix some bugs
Dale Weiler [Fri, 21 Jun 2013 23:16:00 +0000 (23:16 +0000)]
Fix some bugs

10 years agoOh my god microsoft you suck
Dale Weiler [Thu, 20 Jun 2013 11:20:56 +0000 (11:20 +0000)]
Oh my god microsoft you suck

10 years agoMove code generator into ir_builder for earlier free. It's also a much more cleaner...
Dale Weiler [Thu, 20 Jun 2013 10:52:58 +0000 (10:52 +0000)]
Move code generator into ir_builder for earlier free. It's also a much more cleaner design than load parser->code for all ast/ir operations. We also have a proper chain'd design now (so making this a library will be easier).

10 years agoFix some comments
Dale Weiler [Tue, 18 Jun 2013 07:31:09 +0000 (07:31 +0000)]
Fix some comments

10 years agoRetarded clang warning is retarded.
Dale Weiler [Tue, 18 Jun 2013 07:26:07 +0000 (07:26 +0000)]
Retarded clang warning is retarded.

10 years agoHoly mexicans 15% better hashing == 5% faster compiles.
Dale Weiler [Tue, 18 Jun 2013 07:22:03 +0000 (07:22 +0000)]
Holy mexicans 15% better hashing == 5% faster compiles.

10 years agoMerge branch 'master' into cooking
Dale Weiler [Mon, 17 Jun 2013 20:14:26 +0000 (20:14 +0000)]
Merge branch 'master' into cooking

Conflicts:
opts.def

10 years agoEnable it for gmqcc and fteqcc modes.
Dale Weiler [Mon, 17 Jun 2013 20:13:21 +0000 (20:13 +0000)]
Enable it for gmqcc and fteqcc modes.

10 years agoMerge branch 'master' of github.com:graphitemaster/gmqcc
Dale Weiler [Mon, 17 Jun 2013 20:12:02 +0000 (20:12 +0000)]
Merge branch 'master' of github.com:graphitemaster/gmqcc

10 years agoFix some bugs
Dale Weiler [Mon, 17 Jun 2013 20:11:37 +0000 (20:11 +0000)]
Fix some bugs

10 years agomake source a dependency for the c.o rule
Dale Weiler [Sun, 16 Jun 2013 08:35:58 +0000 (08:35 +0000)]
make source a dependency for the c.o rule

10 years agoFixed
Dale Weiler [Sun, 16 Jun 2013 08:24:13 +0000 (08:24 +0000)]
Fixed

10 years agoUse includes for makefile consistency. Added make depend rule for BSDmakefile.
Dale Weiler [Sun, 16 Jun 2013 08:21:23 +0000 (08:21 +0000)]
Use includes for makefile consistency. Added make depend rule for BSDmakefile.

10 years agoreclassify_token should only deal with tokens < TOKEN_START... should fix #113
Wolfgang Bumiller [Sun, 16 Jun 2013 07:52:49 +0000 (09:52 +0200)]
reclassify_token should only deal with tokens < TOKEN_START... should fix #113

10 years agoreclassify_token should only deal with tokens < TOKEN_START... should fix #113
Wolfgang Bumiller [Sun, 16 Jun 2013 07:52:49 +0000 (09:52 +0200)]
reclassify_token should only deal with tokens < TOKEN_START... should fix #113

10 years agoUpdate
Dale Weiler [Sun, 16 Jun 2013 07:51:55 +0000 (07:51 +0000)]
Update

10 years agoBetter scheme
Dale Weiler [Sun, 16 Jun 2013 07:48:41 +0000 (07:48 +0000)]
Better scheme

10 years agoA new batch of fresh hot dependencies for both
Dale Weiler [Sun, 16 Jun 2013 07:23:51 +0000 (07:23 +0000)]
A new batch of fresh hot dependencies for both