<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in func_entry.proftext</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>3d6f5301 - [PGO] Include the mem ops into the function hash.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Transforms/PGOProfile/Inputs/func_entry.proftext#3d6f5301</link>
        <description>[PGO] Include the mem ops into the function hash.To avoid hash collisions when the only difference is in mem ops.

            List of files:
            /llvm-project-15.0.7/llvm/test/Transforms/PGOProfile/Inputs/func_entry.proftext</description>
        <pubDate>Wed, 29 Jul 2020 22:22:13 +0000</pubDate>
        <dc:creator>Hiroshi Yamauchi &lt;yamauchi@google.com&gt;</dc:creator>
    </item>
<item>
        <title>ae7589e1 - Revert &quot;[PGO] Include the mem ops into the function hash.&quot;</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Transforms/PGOProfile/Inputs/func_entry.proftext#ae7589e1</link>
        <description>Revert &quot;[PGO] Include the mem ops into the function hash.&quot;This reverts commit 120e66b3418b37b95fc1dbbb23e296a602a24fa8.Due to a buildbot failure.

            List of files:
            /llvm-project-15.0.7/llvm/test/Transforms/PGOProfile/Inputs/func_entry.proftext</description>
        <pubDate>Wed, 29 Jul 2020 22:04:57 +0000</pubDate>
        <dc:creator>Hiroshi Yamauchi &lt;yamauchi@google.com&gt;</dc:creator>
    </item>
<item>
        <title>120e66b3 - [PGO] Include the mem ops into the function hash.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Transforms/PGOProfile/Inputs/func_entry.proftext#120e66b3</link>
        <description>[PGO] Include the mem ops into the function hash.To avoid hash collisions when the only difference is in mem ops.Differential Revision: https://reviews.llvm.org/D84782

            List of files:
            /llvm-project-15.0.7/llvm/test/Transforms/PGOProfile/Inputs/func_entry.proftext</description>
        <pubDate>Tue, 28 Jul 2020 17:09:49 +0000</pubDate>
        <dc:creator>Hiroshi Yamauchi &lt;yamauchi@google.com&gt;</dc:creator>
    </item>
<item>
        <title>50da55a5 - [PGO] Supporting code for always instrumenting entry block</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Transforms/PGOProfile/Inputs/func_entry.proftext#50da55a5</link>
        <description>[PGO] Supporting code for always instrumenting entry blockThis patch includes the supporting code that enables alwaysinstrumenting the function entry block by default.This patch will NOT the default behavior.It adds a variant bit in the profile version, adds new directives intext profile format, and changes llvm-profdata tool accordingly.This patch is a split of D83024 (https://reviews.llvm.org/D83024)Many test changes from D83024 are also included.Differential Revision: https://reviews.llvm.org/D84261

            List of files:
            /llvm-project-15.0.7/llvm/test/Transforms/PGOProfile/Inputs/func_entry.proftext</description>
        <pubDate>Wed, 22 Jul 2020 21:58:42 +0000</pubDate>
        <dc:creator>Rong Xu &lt;xur@google.com&gt;</dc:creator>
    </item>
<item>
        <title>fd2044f2 - [PGO] Change hardcoded thresholds for cold/inlinehint to use summary</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Transforms/PGOProfile/Inputs/func_entry.proftext#fd2044f2</link>
        <description>[PGO] Change hardcoded thresholds for cold/inlinehint to use summarySummary:The PGO counter reading will add cold and inlinehint (hot) attributesto functions that are very cold or hot. This was using hardcodedthresholds, instead of the profile summary cutoffs which are used inother hot/cold detection and are more dynamic and adaptable. Switchto using the summary-based cold/hot detection.The hardcoded limits were causing some code that had a medium level ofhotness (per the summary) to be incorrectly marked with a coldattribute, blocking inlining.Reviewers: davidxlSubscribers: llvm-commitsTags: #llvmDifferential Revision: https://reviews.llvm.org/D67673llvm-svn: 372189

            List of files:
            /llvm-project-15.0.7/llvm/test/Transforms/PGOProfile/Inputs/func_entry.proftext</description>
        <pubDate>Tue, 17 Sep 2019 23:12:13 +0000</pubDate>
        <dc:creator>Teresa Johnson &lt;tejohnson@google.com&gt;</dc:creator>
    </item>
<item>
        <title>cee313d2 - Revert &quot;Temporarily Revert &quot;Add basic loop fusion pass.&quot;&quot;</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Transforms/PGOProfile/Inputs/func_entry.proftext#cee313d2</link>
        <description>Revert &quot;Temporarily Revert &quot;Add basic loop fusion pass.&quot;&quot;The reversion apparently deleted the test/Transforms directory.Will be re-reverting again.llvm-svn: 358552

            List of files:
            /llvm-project-15.0.7/llvm/test/Transforms/PGOProfile/Inputs/func_entry.proftext</description>
        <pubDate>Wed, 17 Apr 2019 04:52:47 +0000</pubDate>
        <dc:creator>Eric Christopher &lt;echristo@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>fb4bcc45 - [PGO] Exit early if all count values are zero</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Transforms/PGOProfile/Inputs/func_entry.proftext#fb4bcc45</link>
        <description>[PGO] Exit early if all count values are zeroIf all the edge counts for a function are zero, skip count population andannotation, as nothing will happen. This can save some compile time.Differential Revision: https://reviews.llvm.org/D54212llvm-svn: 346370

            List of files:
            /llvm-project-15.0.7/llvm/test/Transforms/PGOProfile/Inputs/func_entry.proftext</description>
        <pubDate>Wed, 07 Nov 2018 23:51:20 +0000</pubDate>
        <dc:creator>Rong Xu &lt;xur@google.com&gt;</dc:creator>
    </item>
</channel>
</rss>
