VLA fix: save stack pointer right after modification
commit44c330d647c3e1a17e7169f5aa5abb322166fdae
authorPhilip <pipcet@gmail.com>
Tue, 28 Apr 2015 09:23:29 +0000 (28 09:23 +0000)
committerPhilip <pipcet@gmail.com>
Tue, 28 Apr 2015 09:23:29 +0000 (28 09:23 +0000)
tree156d320df5b092f03fb22035722eca749cb31f68
parentd2dd6fdbfb491c87138eb8d7590fbb28f471ec8d
VLA fix: save stack pointer right after modification

This patch disables the optimization of saving stack pointers lazily,
which didn't fully take into account that control flow might not reach
the stack-saving instructions. I've decided to leave in the extra calls
to vla_sp_save() in case anyone wants to restore this optimization.

Tests added and enabled.

There are two remaining bugs: VLA variables can be modified, and jumping
into the scope of a declared VLA will cause a segfault rather than a
compiler error. Both of these do not affect correct C code, but should
be fixed at some point. Once VLA variables have been made properly
immutable, we can share them with the saved stack pointer and save stack
and instructions.
tccgen.c
tests/tests2/79_vla_continue.c
tests/tests2/79_vla_continue.expect
tests/tests2/Makefile