add support for structs
commitab7a70089011bf3c834f9a16ae6a594956cbe45a
authorSven Verdoolaege <skimo@kotnet.org>
Thu, 8 Aug 2013 12:50:08 +0000 (8 14:50 +0200)
committerSven Verdoolaege <skimo@kotnet.org>
Wed, 16 Oct 2013 13:22:18 +0000 (16 15:22 +0200)
treea06223c4913f95edcbaaa24b6688c3787a5a7735
parente1a954c2e22b17c952aacc9b40f6093ae783c265
add support for structs

A member access is represented by an index expression and access
relation with a wrapped range.  The domain of the wrapped range
represents the structure, while the range of the wrapped range
represents the member.  The domain may in turn be a wrapped relation
in case of nested member accesses.
For example, an access of the form

s.f[i].a[j]

is represented as

{ S_0[i, j] -> s_f_a[s_f[s[] -> f[i]] -> a[j]] }

We also keep track of all the structure definitions involved
as some users may need to print these definitions.

Signed-off-by: Sven Verdoolaege <skimo@kotnet.org>
30 files changed:
clang.cc
clang.h
emit.c
include/pet.h
parse.c
scan.cc
scan.h
scop.c
scop_plus.cc
scop_plus.h
tests/struct1.c [new file with mode: 0644]
tests/struct1.scop [new file with mode: 0644]
tests/struct10.c [new file with mode: 0644]
tests/struct10.scop [new file with mode: 0644]
tests/struct2.c [new file with mode: 0644]
tests/struct2.scop [new file with mode: 0644]
tests/struct3.c [new file with mode: 0644]
tests/struct3.scop [new file with mode: 0644]
tests/struct4.c [new file with mode: 0644]
tests/struct4.scop [new file with mode: 0644]
tests/struct5.c [new file with mode: 0644]
tests/struct5.scop [new file with mode: 0644]
tests/struct6.c [new file with mode: 0644]
tests/struct6.scop [new file with mode: 0644]
tests/struct7.c [new file with mode: 0644]
tests/struct7.scop [new file with mode: 0644]
tests/struct8.c [new file with mode: 0644]
tests/struct8.scop [new file with mode: 0644]
tests/struct9.c [new file with mode: 0644]
tests/struct9.scop [new file with mode: 0644]