search for: fe2e1ee6

Displaying 2 results from an estimated 2 matches for "fe2e1ee6".

2017 Apr 24
3
Disable optimization on basic block level
...ng to scheduling algos. It would just take someone to setup a proper test-suite and a bot for it and I'd happily contribute more tests :) - Matthias -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170424/fe2e1ee6/attachment.html>
2017 Apr 24
3
Disable optimization on basic block level
How do you disable optimization for a function? I ask because my application often compiles machine-generated code that results in pathological structures that take a long time to optimize, for little benefit. As an example, if a basic block has over a million instructions in it, then DSE can take a while, as it is O(n^2) in the number of instructions in the block. In my application (at least),