diff options
Diffstat (limited to 'polly/docs/Architecture.rst')
-rw-r--r-- | polly/docs/Architecture.rst | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/polly/docs/Architecture.rst b/polly/docs/Architecture.rst new file mode 100644 index 00000000000..c0745c19d37 --- /dev/null +++ b/polly/docs/Architecture.rst @@ -0,0 +1,13 @@ +================ +The Architecture +================ + +Polly is a loop optimizer for LLVM. Starting from LLVM-IR it detects and +extracts interesting loop kernels. For each kernel a mathematical model is +derived which precisely describes the individual computations and memory +accesses in the kernels. Within Polly a variety of analysis and code +transformations are performed on this mathematical model. After all +optimizations have been derived and applied, optimized LLVM-IR is regenerated +and inserted into the LLVM-IR module. + +.. image:: images/architecture.png |