This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from f66defb43a0 Update the Swift version numbers reported by objdump new b7c4b42cc3b [HotColdSplitting] Outline more than once per function new d0e8089e646 [HotColdSplitting] Refine definition of unlikelyExecuted
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: lib/Transforms/IPO/HotColdSplitting.cpp | 492 +++++++++++++-------- test/Transforms/HotColdSplit/eh-pads.ll | 65 +++ .../extraction-subregion-breaks-phis.ll | 63 +++ .../forward-dfs-reaches-marked-block.ll | 29 ++ .../HotColdSplit/mark-the-whole-func-cold.ll | 64 +++ test/Transforms/HotColdSplit/noreturn.ll | 73 +++ test/Transforms/HotColdSplit/outline-cold-asm.ll | 27 ++ .../HotColdSplit/outline-disjoint-diamonds.ll | 57 +++ .../HotColdSplit/outline-multiple-entry-region.ll | 81 ++++ test/Transforms/HotColdSplit/outline-while-loop.ll | 49 ++ .../phi-with-distinct-outlined-values.ll | 35 ++ test/Transforms/HotColdSplit/region-overlap.ll | 65 +++ .../HotColdSplit/succ-block-with-self-edge.ll | 56 +++ 13 files changed, 967 insertions(+), 189 deletions(-) create mode 100644 test/Transforms/HotColdSplit/eh-pads.ll create mode 100644 test/Transforms/HotColdSplit/extraction-subregion-breaks-phis.ll create mode 100644 test/Transforms/HotColdSplit/forward-dfs-reaches-marked-block.ll create mode 100644 test/Transforms/HotColdSplit/mark-the-whole-func-cold.ll create mode 100644 test/Transforms/HotColdSplit/noreturn.ll create mode 100644 test/Transforms/HotColdSplit/outline-cold-asm.ll create mode 100644 test/Transforms/HotColdSplit/outline-disjoint-diamonds.ll create mode 100644 test/Transforms/HotColdSplit/outline-multiple-entry-region.ll create mode 100644 test/Transforms/HotColdSplit/phi-with-distinct-outlined-values.ll create mode 100644 test/Transforms/HotColdSplit/region-overlap.ll create mode 100644 test/Transforms/HotColdSplit/succ-block-with-self-edge.ll