Lines Matching +full:docs +full:- +full:polly +full:- +full:html
2 Tips and Tricks on using and contributing to Polly
5 Committing to polly trunk
6 -------------------------
7 …- `General reference to git-svn workflow <https://stackoverflow.com/questions/190431/is-git-svn-dc…
11 --------------------------------------------------
18 - ``$ bugpoint <file.ll> <pass that causes the crash> -opt-args <opt option flags>``
22 …- ``$ bugpoint crash.ll -polly-codegen -opt-args -polly-canonicalize -polly-process-unprofitable``
24 … For more documentation on bugpoint, `Visit the LLVM manual <https://llvm.org/docs/Bugpoint.html>`_
28 --------------------------------------------------
30 If you know that something like `opt -O3 -polly` makes a change, but you wish to
33 …- ``$ bugpoint -O3 file.ll -opt-args -polly`` will allow bugpoint to track down the pass which ca…
37 …- ``$ opt -O3 -polly -debug-pass=Arguments`` to get all passes that are run by default. ``-debug-p…
38 - Bisect down to the pass that changes it.
42 --------------------------------------------------------------
45 of Polly behaved as expected and a later version does not), bisecting over the
50 `<https://github.com/llvm/llvm-project>`_. How to bisect on a
52 `<https://www.metaltoad.com/blog/beginners-guide-git-bisect-process-elimination>`_.
54 `<https://www.metaltoad.com/blog/mechanizing-git-bisect-bug-hunting-lazy>`_.