[LV] Add helper function for predicated block probability (NFC)
authorMatthew Simpson <mssimpso@codeaurora.org>
Wed, 5 Oct 2016 18:30:36 +0000 (18:30 +0000)
committerMatthew Simpson <mssimpso@codeaurora.org>
Wed, 5 Oct 2016 18:30:36 +0000 (18:30 +0000)
commit1755d81b29ddd16fdb7067ed2406c36f522fcbc5
tree97d034330341ad78e12cbe198982cce29151d2e5
parent299dbd6cd15807d154cc91b7748b73da5adf0bda
[LV] Add helper function for predicated block probability (NFC)

The cost model has to estimate the probability of executing predicated blocks.
However, we currently always assume predicated blocks have a 50% chance of
executing (this value is hardcoded in several places throughout the code).
Since we always use the same value, this patch adds a helper function for
getting this uniform probability. The function simplifies some comments and
makes our assumptions more clear. In the future, we may want to extend this
with actual block probability information if it's available.

llvm-svn: 283354
llvm/lib/Transforms/Vectorize/LoopVectorize.cpp