diff options
author | Tobias Grosser <grosser@fim.uni-passau.de> | 2013-03-22 23:42:53 +0000 |
---|---|---|
committer | Tobias Grosser <grosser@fim.uni-passau.de> | 2013-03-22 23:42:53 +0000 |
commit | 369430ffca16505f8f6257f70b815fa7de7d9526 (patch) | |
tree | 34ecce2aae52be40bb46e65dee6cc19ea9f69904 /llvm/docs | |
parent | c1946cd8e1965b33fd567e33a7d1b906adced152 (diff) | |
download | bcm5719-llvm-369430ffca16505f8f6257f70b815fa7de7d9526.tar.gz bcm5719-llvm-369430ffca16505f8f6257f70b815fa7de7d9526.zip |
codegen: properly instantiate SCEVs to the place where they are used
Given the following code
for (i = 0; i < 10; i++) {
;
}
S: A[i] = 0
When code generating S using scev based code generation, we need to retrieve
the scev of 'i' at the location of 'S'. If we do not do this the scev that
we obtain will be expressed as {0,+,1}_for and will reference loop iterators
that do not surround 'S' and that we consequently do not know how to code
generate. What we really want is the scev to be instantiated to the value of 'i'
after the loop. This value is {10} and it can be code generated without
troubles.
llvm-svn: 177777
Diffstat (limited to 'llvm/docs')
0 files changed, 0 insertions, 0 deletions