Dale Weiler
092067482f
added -fdefault-eraseable which is the same as adding [[eraseable]] to all definitions
...
instead the opposite behavior can be controlled with [[noerase]] attribute
2018-05-09 21:18:37 -04:00
Dale Weiler
9a21c638fa
error if a function is called from global scope opposed to crashing
2018-05-05 15:38:12 -04:00
Wolfgang Bumiller
97a74eb677
catch broken vector member access
...
These kinds of expressions currently cannot be handled
without pionter support in the qcvm without scanning the
ast from within ast_member::codegen for an assignments as
seen in the added test case.
This change makes code like that return a pointer type which
will cause an error that we did not get a vector or field
back. With pointer support this pointer could actually be
used instead.
So at least it shouldn't silently produce broken code
anymore.
Signed-off-by: Wolfgang Bumiller <wry.git@bumiller.com>
2018-01-14 10:58:29 +01:00
Wolfgang Bumiller
f84c8ea629
add variable search order test
...
Signed-off-by: Wolfgang Bumiller <wry.git@bumiller.com>
2018-01-14 09:33:05 +01:00
Wolfgang Bumiller
e920766b10
Make parser_find_local only actually search locals
...
Fixes #163
Signed-off-by: Wolfgang Bumiller <wry.git@bumiller.com>
2018-01-14 09:33:05 +01:00
Wolfgang Bumiller
e006aa8238
Revert "search for funciton param first before function locals, this fixes #163 "
...
This reverts commit 3cf2c52fce
.
2018-01-14 09:33:05 +01:00
Dale Weiler
73d3d7eec1
fix some UB
2017-12-01 13:55:19 -05:00
Dale Weiler
3cf2c52fce
search for funciton param first before function locals, this fixes #163
2017-12-01 12:24:50 -05:00
Dale Weiler
1580c23556
Merge branch 'master' of github.com:graphitemaster/gmqcc
2017-11-26 17:48:13 -05:00
Dale Weiler
b14a02e735
don't generate storep for vector field unless it's an ent field
2017-11-26 17:47:27 -05:00
Dale Weiler
679e3771de
Merge pull request #177 from xonotic/terencehill/warning_removal
...
Get rid of a warning on Windows
2017-11-26 17:30:42 -05:00
Dale Weiler
d9127bf28a
Merge pull request #180 from xonotic/mem_leak_fix_on_failure_paths
...
two small memory leak fixes on failure paths
2017-11-26 17:30:30 -05:00
Dale Weiler
fa7dce495b
fix writing of globaldefs for vector subcomponents so that FTE field remapping works
2017-11-26 17:26:00 -05:00
Dale Weiler
02b20dbd09
fix member binops on entity fields to generate STOREP, this fixes stuff like ent.vec.x += value.
2017-11-26 17:09:38 -05:00
Wolfgang Bumiller
6ad5f18ef1
cleanup: 'move of a temporary object prevents copy elision'
2017-07-23 10:11:31 +02:00
Wolfgang Bumiller
047ecd426f
move more parser code to c++, fix crashes with gcc
...
we initialized the parser with malloc -> memset to zero ->
placement new. With gcc the latter caused the memset to be
optimized out, causing uninitialized value accesses.
2017-07-23 10:11:31 +02:00
Wolfgang Bumiller
fb3af2831b
cleanup some silly more warnings
2017-07-23 10:11:31 +02:00
Wolfgang Bumiller
5a0d645ede
cleanup: silence fallthrough warnings
2017-07-23 10:11:31 +02:00
terencehill
27c0886ffb
Get rid of a warning on Windows
2017-06-23 16:21:22 +02:00
Wolfgang Bumiller
163c4b99a4
tests: add check for vector negation
2017-06-22 08:45:38 +02:00
Wolfgang Bumiller
eb2d478770
qcvm: add stov builtin #16
2017-06-22 08:45:18 +02:00
Wolfgang Bumiller
3f5305af58
ir: fix vector negation using the nil value
...
We cannot use OFS_NULL as it is only a single value and
overlaps with OFS_RETURN.
2017-06-22 08:44:36 +02:00
David Carlier
8538658e83
two small memory leak fixes on failure paths
2017-05-23 21:56:03 +01:00
Wolfgang Bumiller
8b2149e315
sanitize: shift 1u (unsigned) for flag bits
2017-02-14 19:24:04 +01:00
Wolfgang Bumiller
c285eb385d
c++: exec.cpp
2017-02-11 11:43:58 +01:00
Wolfgang Bumiller
2dde6d903e
c++: ir_function::m_params
2016-12-03 21:42:15 +01:00
Wolfgang Bumiller
4bf63bb379
c++: ir: function_allocator
2016-12-03 21:39:09 +01:00
Wolfgang Bumiller
95d232ca72
c++: ir_block::m_instr
2016-12-03 21:30:33 +01:00
Wolfgang Bumiller
90f190f5e1
c++: ir_block::m_exits
2016-12-03 20:34:42 +01:00
Wolfgang Bumiller
566c17a964
c++: ir_block::m_entries
2016-12-03 20:32:26 +01:00
Dale Weiler
a5636899f2
Cleaner way to set the mask for -Wunused-component
2016-11-24 19:54:17 +00:00
Dale Weiler
17c0812ae4
Just mark LOCAL_RETURN noref instead of checking for '#' in the name
2016-11-24 15:50:48 +00:00
Dale Weiler
3a7848d67c
Remove parser m_uses in favor of {IR,AST}_FLAG_NOREF instead
2016-11-24 15:33:58 +00:00
Dale Weiler
def1a26b12
Add -Wunused-component like -Wunused-variable but warns about unused components of vector
2016-11-24 14:52:57 +00:00
Dale Weiler
eab20602b1
more intelligent handling of unused vector fields
2016-11-24 14:44:28 +00:00
Dale Weiler
69fa4f8dbd
Fix #158
2016-11-24 14:08:38 +00:00
Dale Weiler
966991601c
Fix #161
2016-11-24 13:41:26 +00:00
Dale Weiler
01f3447e5b
Fix #171
2016-11-24 13:40:22 +00:00
Dale Weiler
9821b6a075
Fix fieldfuncs test and track unused variables through writes as well.
2016-11-19 12:19:00 +00:00
Dale Weiler
6938567c6c
Don't generate unused warnings for unused constants
2016-11-19 11:46:32 +00:00
Wolfgang Bumiller
0b94d7583c
fix access to fields of vector members
...
When ast_member encounters the result of an ast_entfield it
has to replace the ast_entfield's codegen as we cannot
evaluate the field access first.
We then perform the same action as ast_entfield but call
vectorMember on the field before issuing the load/address
instruction.
This effectively turns the codegen of the following ast
structure:
member_of {
field_of {
entity,
a_vector
}
memberid
}
into the one of this structure:
field_of {
entity,
member_of {
a_vector
memberid
}
}
2016-11-19 16:22:18 +01:00
Wolfgang Bumiller
4c48bae203
Revert "Fix ent.vec.{x,y,z} writes"
...
This reverts commit ad1cfcfeaa
.
2016-11-19 16:22:13 +01:00
Dale Weiler
ad1cfcfeaa
Fix ent.vec.{x,y,z} writes
2016-11-19 10:42:33 +00:00
Dale Weiler
eca4e2c309
Unused globals even if they have an initial value should produce unused diagnostic
2016-11-19 10:05:58 +00:00
Dale Weiler
167207e98c
Warning
2016-05-23 16:47:40 -04:00
Wolfgang Bumiller
e06ad170de
update .gitignore
2016-02-10 19:01:12 +01:00
Dale Weiler
3714a507c2
Merge pull request #172 from TimePath/cmake
...
Add CMakeLists.txt
2016-01-03 01:15:18 -05:00
TimePath
63c679ee81
Add CMakeLists.txt
2016-01-03 17:14:02 +11:00
Dale Weiler
be64736dd4
Fixes
2016-01-03 00:38:58 -05:00
Dale Weiler
f6bc9705d2
eh
2016-01-03 00:35:12 -05:00